diff --git a/tools/Build-WrapperModule.ps1 b/tools/Build-WrapperModule.ps1 index 436f28fa6de..b17800a9742 100644 --- a/tools/Build-WrapperModule.ps1 +++ b/tools/Build-WrapperModule.ps1 @@ -55,6 +55,24 @@ dotnet build configuration. Default: Debug. .PARAMETER SkipKiota Reuse the previously generated client (fast inner loop when only the wrappers changed). +.PARAMETER NoCollisionData +Generate the unresolved command surface used to derive collision and parity data. This output +is not shippable and should be generated only in an isolated worktree. + +.PARAMETER GenerateOnly +Stop after wrapper source generation. Intended for source-based inventory and parity capture; +cannot be combined with -Pack. +.PARAMETER ModuleVersion +Three-part version for the wrapper packages. Default 3.0.0 - the wrapper modules are the v3 +line, not a build of the v2 service-module release train whose version lives in +config/ModuleMetadata.json. + +.PARAMETER Prerelease +Prerelease label carried by every package (alphanumeric, never empty). Defaults to +alpha in CI and alpha locally, so no two builds ever publish the same +id and version with different contents. Wrapper packages stay prereleases until the quality +bar for public distribution is agreed. + .PARAMETER Pack Also produce a package per module under //. @@ -79,11 +97,31 @@ param( [string]$Configuration = 'Debug', [string]$ModuleMappingConfigPath, [string]$ArtifactsLocation, + # The wrapper modules are the v3 line, not a build of the v2 service-module release train, + # so their version is their own rather than ModuleMetadata.json's (which belongs to v2 and + # is still read here for authors, tags and the rest of the package identity). + [ValidatePattern('^\d+\.\d+\.\d+$')] + [string]$ModuleVersion = '3.0.0', + # Wrapper packages always carry a prerelease label, and every build gets a DISTINCT one: + # two packages that share an id and version but not their contents are indistinguishable to + # a feed and to anyone who already installed one. The build id supplies that distinctness in + # CI; a UTC timestamp does locally, where no build id exists. + # The pattern is DELIBERATELY narrower than the PowerShellGet prerelease grammar rather than a + # restatement of it: PowerShellGet also accepts a hyphen, which this rejects. A label is joined + # to the version by a hyphen already, so one that itself begins with a hyphen reads as + # '3.0.0--label', and one containing a hyphen splits the label when a version string is parsed + # by eye. Alphanumeric-only keeps every generated label unambiguous, and both defaults above + # ('alpha' plus a build id or a UTC timestamp) satisfy it by construction. + [ValidatePattern('^[A-Za-z0-9]+$')] + [string]$Prerelease = "alpha$(if ($env:BUILD_BUILDID) { $env:BUILD_BUILDID } else { (Get-Date).ToUniversalTime().ToString('yyyyMMddHHmm') })", [switch]$SkipKiota, + [switch]$NoCollisionData, + [switch]$GenerateOnly, [switch]$Pack ) $ErrorActionPreference = 'Stop' +if ($GenerateOnly -and $Pack) { throw '-GenerateOnly cannot be combined with -Pack.' } $repoRoot = (Resolve-Path (Join-Path $PSScriptRoot '..')).Path if (-not $SpecRoot) { $SpecRoot = Join-Path $repoRoot 'openApiDocs_KiotaCompat' } @@ -91,7 +129,7 @@ $generatorProject = Join-Path $repoRoot 'tools\WrapperGenerator' $authCsproj = Join-Path $repoRoot 'src\Authentication\Authentication\Microsoft.Graph.Authentication.csproj' $runtimeCsproj = Join-Path $repoRoot 'src\GraphWrapperRuntime\Runtime\Microsoft.Graph.Wrapper.Runtime.csproj' # The Authentication version the wrappers compile against, for the manifest's RequiredModules -# minimum. Read from the project, never written here. +# minimum and the nuspec dependency floor. Read from the project, never written here. $authVersion = ([xml](Get-Content $authCsproj -Raw)).Project.PropertyGroup.Version | Where-Object { $_ } | Select-Object -First 1 if (-not $authVersion) { throw "no Version in $authCsproj" } @@ -110,16 +148,17 @@ $targetFramework = "$targetFramework".Trim() if (-not $ModuleMappingConfigPath) { $ModuleMappingConfigPath = Join-Path $repoRoot 'config\ModulesMapping.jsonc' } if (-not $ArtifactsLocation) { $ArtifactsLocation = Join-Path $repoRoot 'artifacts' } -# Package metadata comes from the same single source the AutoRest service modules use, so a -# wrapper package and the module it will eventually replace cannot disagree about version or -# ownership. +# Package identity (authors, owners, licence, tags) comes from the same single source the +# AutoRest service modules use, so a wrapper package and the module it will eventually replace +# cannot disagree about ownership. The VERSION is deliberately not taken from there: that +# entry tracks the v2 release train, and a wrapper package stamped with it would claim a +# version the real SDK is about to publish. $moduleMetadataPath = Join-Path $repoRoot 'config\ModuleMetadata.json' [hashtable]$moduleMetadata = Get-Content $moduleMetadataPath -Raw | ConvertFrom-Json -AsHashTable -$versionEntry = $moduleMetadata.versions[$ApiVersion] -if (-not $versionEntry -or -not $versionEntry.version) { throw "No version configured for '$ApiVersion' in $moduleMetadataPath." } -$moduleVersion = $versionEntry.version -$modulePrerelease = $versionEntry.prerelease -$fullVersion = if ($modulePrerelease) { "$moduleVersion-$modulePrerelease" } else { $moduleVersion } +# The metadata prerelease field belongs to the service-module release train and is deliberately +# not read; the wrapper label (validated non-empty) is appended unconditionally, because a +# wrapper package without one cannot exist. +$fullVersion = "$ModuleVersion-$Prerelease" # The population is the specs this generator can actually read, intersected with the modules the # repository is configured to ship - the same two inputs tools/GenerateServiceModule.ps1 uses. @@ -162,6 +201,32 @@ function New-ProjectFromTemplate { Set-Content -Path $DestinationPath -Value $content -Encoding utf8 } +# The manifest GUID is a module's identity for ModuleSpecification matching (RequiredModules, +# Import-Module -FullyQualifiedName), so it must be the SAME across builds. The shipped SDK +# locks GUIDs to the published gallery entry (tools/BuildModule.ps1, autorest.powershell#981); +# a never-published wrapper has no gallery entry to lock to, so its identity is DERIVED +# instead: an RFC 4122 name-based (v5) UUID - SHA-1 over a fixed namespace GUID plus the module +# name - identical on every build with no lookup table to maintain. The namespace constant and +# the algorithm ARE the identity contract: changing either orphans every previously installed +# wrapper module. +function Get-WrapperModuleGuid { + param([Parameter(Mandatory)][string]$ModuleName) + + $namespaceBytes = ([guid]'8a11e1b5-95b3-4dbf-b0ba-6d58b0f6f6a4').ToByteArray() + # Guid.ToByteArray() emits the first three fields little-endian; RFC 4122 hashes network order. + [Array]::Reverse($namespaceBytes, 0, 4); [Array]::Reverse($namespaceBytes, 4, 2); [Array]::Reverse($namespaceBytes, 6, 2) + $sha1 = [System.Security.Cryptography.SHA1]::Create() + try { + $hash = $sha1.ComputeHash([byte[]]($namespaceBytes + [System.Text.Encoding]::UTF8.GetBytes($ModuleName))) + } + finally { $sha1.Dispose() } + $guidBytes = $hash[0..15] + $guidBytes[6] = ($guidBytes[6] -band 0x0F) -bor 0x50 # version 5 + $guidBytes[8] = ($guidBytes[8] -band 0x3F) -bor 0x80 # RFC 4122 variant + [Array]::Reverse($guidBytes, 0, 4); [Array]::Reverse($guidBytes, 4, 2); [Array]::Reverse($guidBytes, 6, 2) + [guid][byte[]]$guidBytes +} + function Get-CompiledCmdletNames { param([Parameter(Mandatory)][string]$AssemblyPath) @@ -262,7 +327,11 @@ function Build-Module { } } - $wrapperOut = & dotnet run --project $generatorProject -c $Configuration -- -d $spec -o $cmdletsDir -n $clientNs --api-version $ApiVersion 2>&1 + $wrapperOut = if ($NoCollisionData) { + & dotnet run --project $generatorProject -c $Configuration -- -d $spec -o $cmdletsDir -n $clientNs --api-version $ApiVersion --no-collision-data 2>&1 + } else { + & dotnet run --project $generatorProject -c $Configuration -- -d $spec -o $cmdletsDir -n $clientNs --api-version $ApiVersion 2>&1 + } if ($LASTEXITCODE -ne 0) { # Skip warnings precede the failure; the exception message is what identifies it. $result.FailedAt = 'wrapper-generator' @@ -277,6 +346,26 @@ function Build-Module { return $result } + # With -NoCollisionData the generator REPORTS each cmdlet collision instead of throwing on + # it, and that report is the collision inventory: data/collision-inventory..txt is + # captured from this output, and Derive-CollisionResolutions.ps1 reads it. The output is + # only inspected above on failure and otherwise discarded, so the one run whose purpose is + # to produce the inventory printed nothing. Written to the host rather than the pipeline + # because this function returns $result, and emitted output would be merged into it. + if ($NoCollisionData) { + $wrapperOut | ForEach-Object { Write-Host "$_" } + } + + if ($GenerateOnly) { + $cmdletCount = @(Get-ChildItem $cmdletsDir -Filter '*.g.cs' -File | + Where-Object Name -ne 'Shared.g.cs').Count + $result.Status = if ($cmdletCount -gt 0) { 'OK' } else { 'NO-CMDLETS' } + $result.CmdletCount = $cmdletCount + $result.Psd1 = $cmdletsDir + $result.Detail = 'source generation only' + return $result + } + $clientAssemblyName = "$moduleName.Client" $clientCsprojPath = Join-Path $clientDir 'Client.csproj' New-ProjectFromTemplate -TemplatePath $clientProjectTemplate -DestinationPath $clientCsprojPath -Replacements @{ @@ -340,7 +429,9 @@ function Build-Module { $manifestArgs = @{ Path = $psd1Path RootModule = "$moduleName.dll" - ModuleVersion = $moduleVersion + Guid = Get-WrapperModuleGuid -ModuleName $moduleName + ModuleVersion = $ModuleVersion + Prerelease = $Prerelease RequiredModules = @(@{ ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = $authVersion }) Author = 'Microsoft Graph' CompanyName = 'Microsoft' @@ -350,14 +441,15 @@ function Build-Module { AliasesToExport = @() VariablesToExport = @() } - if ($modulePrerelease) { $manifestArgs.Prerelease = $modulePrerelease } - # Std.UriTemplate is requested by the kiota HTTP library, which lives in Authentication's - # isolated load context - a requester whose directory probing can never reach this module - # folder, and whose request Authentication cannot serve because its Dependencies folder - # does not ship the assembly. Preloading it here puts it in the default context, where - # the isolated context's fallback resolution unifies with it. The Multipart serializer - # needs no entry: its requester is the client assembly in this folder, so normal - # module-directory probing finds it. Proven live in Test-LiveSmoke on the session path. + # Std.UriTemplate is requested by Microsoft.Kiota.Abstractions (measured: the AssemblyRef + # lives there, not in the HTTP library). That requester sits in Authentication's isolated + # load context, so its directory probing can never reach this module folder - and + # Authentication cannot serve the request either, because its Dependencies folder does + # not ship the assembly. Preloading it here puts it in the default context, where the + # isolated context's fallback resolution unifies with it. The Multipart serializer needs + # no entry: its requester is the client assembly in this folder, so normal + # module-directory probing finds it. Proven live by tools/Test-WrapperLive.ps1 on the + # session path. $manifestArgs.RequiredAssemblies = @('Std.UriTemplate.dll') New-ModuleManifest @manifestArgs @@ -368,6 +460,12 @@ function Build-Module { # and the shared Authentication/kiota closure via the PruneModuleBin target - both at # the project level, the only place that intent can be expressed. See # tools/Templates/WrapperModule.csproj.template for why the closure must not ship. + # The nuspec must declare the Authentication dependency even though the psd1 already + # does: Install-Module resolves dependencies from NUGET metadata, not the manifest, + # so without this element a clean machine gets the wrapper with no Authentication and + # import fails. Declared as an open floor, not the shipped SDK's exact bracket pin - + # matching the manifest's RequiredModules minimum and the use-latest ruling (Ramses, + # 2026-08-19: pins existed only for AutoRest limitations). $nuspecPath = Join-Path $binDir "$moduleName.nuspec" $tags = ($moduleMetadata['tags']) -join ' ' # Native runtime payloads only exist when a dependency ships them; dotnet pack fails @@ -392,6 +490,9 @@ function Build-Module { $($moduleMetadata['releaseNotes']) $($moduleMetadata['copyright']) $tags + + + @@ -408,7 +509,7 @@ function Build-Module { # a PowerShell module package. NuspecBasePath resolves the globs against the build # output so the nuspec need not know how deep bin// is. $packArgs = @($csprojPath, '-c', $Configuration, '--no-build', '--nologo', '-v', 'minimal', - "-p:NuspecFile=$nuspecPath", "-p:NuspecBasePath=$binDir", "-p:Version=$moduleVersion", + "-p:NuspecFile=$nuspecPath", "-p:NuspecBasePath=$binDir", "-p:Version=$ModuleVersion", '-p:NoPackageAnalysis=true', '-o', $moduleArtifacts) $packOut = & dotnet pack @packArgs 2>&1 if ($LASTEXITCODE -ne 0) { diff --git a/tools/Derive-ParityResolutions.ps1 b/tools/Derive-ParityResolutions.ps1 index d3439121246..bc6ea2f7159 100644 --- a/tools/Derive-ParityResolutions.ps1 +++ b/tools/Derive-ParityResolutions.ps1 @@ -42,7 +42,9 @@ Re-derive and byte-compare against the checked-in data files instead of writing #> [CmdletBinding()] param( - [string]$GeneratedRoot = "$PSScriptRoot\..\artifacts\wrapper-modules", + # The committed corpus root. Modules live at //wrapper//Cmdlets, + # the same shape Compare-WrapperOperationInventory.ps1 walks from -Path src. + [string]$GeneratedRoot = "$PSScriptRoot\..\src", [string]$OraclePath = "$PSScriptRoot\..\src\Authentication\Authentication\custom\common\MgCommandMetadata.json", [string]$OutDir = "$PSScriptRoot\WrapperGenerator\data", [ValidateSet('v1.0', 'beta')] @@ -72,7 +74,7 @@ if (-not $CaptureInput) { else { # ---- 1. collect the gate's ledger over every module ------------------------------------- $moduleDirs = @(Get-ChildItem $GeneratedRoot -Directory | ForEach-Object { - $c = Join-Path $_.FullName 'src\Cmdlets' + $c = Join-Path $_.FullName "wrapper\$ApiVersion\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 } diff --git a/tools/Invoke-WrapperGates.ps1 b/tools/Invoke-WrapperGates.ps1 index 1112627523b..fc074f19737 100644 --- a/tools/Invoke-WrapperGates.ps1 +++ b/tools/Invoke-WrapperGates.ps1 @@ -19,19 +19,26 @@ Three rules the runner enforces on itself: 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 CorpusRoot +Root of the committed wrapper corpus, whose modules live at +//wrapper//. Default: /src - the same root +Compare-WrapperOperationInventory.ps1 walks. Build-WrapperModule.ps1 writes there and nowhere +else, so this is a root to READ, not a destination to choose. + +.PARAMETER ApiVersion +Which generated API version the gates read. Default: v1.0. .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. +Build configuration for the gates that compile and read build output. Default: Release. The +runtime gate is not one of them - it validates the packed module, and refuses a package older +than the project that produced it. .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 +Reuse the modules already under -CorpusRoot 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 @@ -42,7 +49,9 @@ describes whatever is on disk; the runtime gate's staleness check is what stops #> [CmdletBinding()] param( - [string]$OutputRoot, + [string]$CorpusRoot, + [ValidateSet('v1.0', 'beta')] + [string]$ApiVersion = 'v1.0', [string]$Configuration = 'Release', [string]$InventoryBaseline, [switch]$SkipBuild @@ -50,7 +59,17 @@ param( $ErrorActionPreference = 'Stop' $repoRoot = (Resolve-Path (Join-Path $PSScriptRoot '..')).Path -if (-not $OutputRoot) { $OutputRoot = Join-Path $repoRoot 'artifacts\wrapper-modules' } +if (-not $CorpusRoot) { $CorpusRoot = Join-Path $repoRoot 'src' } + +# Every gate reads modules from the same place and by the same shape, so a layout change lands +# in one helper rather than in four globs that can drift apart - which is exactly how this +# runner came to be pointing at a directory nothing had written to since the corpus moved. +function Get-ModuleCmdletDirs { + Get-ChildItem $CorpusRoot -Directory -ErrorAction SilentlyContinue | ForEach-Object { + $c = Join-Path $_.FullName "wrapper\$ApiVersion\Cmdlets" + if (Test-Path $c) { [pscustomobject]@{ Module = $_.Name; Cmdlets = $c } } + } +} $results = [System.Collections.Generic.List[object]]::new() @@ -97,14 +116,14 @@ Add-Gate 'unit-tests' 'classification and emission rules' { } } -# --- 3. generate + compile every module ---------------------------------------------------- +# --- 3. generate + compile + pack 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 + $mods = @(Get-ModuleCmdletDirs | Select-Object -ExpandProperty Module) + if (-not $mods) { return [pscustomobject]@{ Status = 'FAIL'; Population = 'no modules'; Detail = "no /wrapper/$ApiVersion/Cmdlets under $CorpusRoot" } } + $o = & (Join-Path $PSScriptRoot 'Build-WrapperModule.ps1') -Module $mods -ApiVersion $ApiVersion -Configuration $Configuration -SkipKiota -Pack *>&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. @@ -125,22 +144,23 @@ Add-Gate 'naming-parity' 'generated cmdlet names match the published SDK invento # 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 + $dirs = @(Get-ModuleCmdletDirs | ForEach-Object { + if (-not @(Get-ChildItem $_.Cmdlets -Filter *.g.cs -File | Where-Object Name -ne 'Shared.g.cs')) { + $empty.Add($_.Module); 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 + # The module name travels WITH its path rather than being reconstructed by counting + # Split-Path levels: that count was silently wrong the moment the layout gained a level, + # and reported every module as "wrapper". + foreach ($entry in $dirs) { + $o = & (Join-Path $PSScriptRoot 'Compare-WrapperCmdletNames.ps1') -GeneratedPath $entry.Cmdlets *>&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)) } + if ($code -ne 0) { $failing.Add($entry.Module) } } $emptyNote = if ($empty.Count) { "; $($empty.Count) module(s) emitted no cmdlets and were not compared: $($empty -join ', ')" } else { '' } [pscustomobject]@{ @@ -180,10 +200,17 @@ Add-Gate 'coverage-sweep' 'what the classifier itself reports as unbound' { # --- 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) + # The target framework is not named here: the module projects declare it in their template, + # and a hard-coded folder went silently blind the day that value changed. + $mods = @(Get-ModuleCmdletDirs | Where-Object { + $bin = Join-Path (Split-Path $_.Cmdlets -Parent) "bin\$Configuration" + (Test-Path $bin) -and @(Get-ChildItem $bin -Recurse -Filter 'Microsoft.Graph.Wrapper.*.psd1' -File -ErrorAction SilentlyContinue) + } | Select-Object -ExpandProperty Module | 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 + # No -Configuration: this gate validates the PACKED module, not build output, and + # Test-WrapperModule.ps1 has no such parameter - passing it threw before the call ran. + # Staleness is that script's own concern; it refuses a package older than its project. + $o = & (Join-Path $PSScriptRoot 'Test-WrapperModule.ps1') -Module $mods -ApiVersion $ApiVersion *>&1 | Out-String $code = $LASTEXITCODE $pass = [regex]::Matches($o, '(?m)^\s+PASS: ').Count $fail = [regex]::Matches($o, '(?m)^\s+FAIL: ').Count @@ -211,7 +238,7 @@ Add-Gate 'operation-inventory' 'a parameter change did not alter which operation 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 + $o = & (Join-Path $PSScriptRoot 'Compare-WrapperOperationInventory.ps1') -Path $CorpusRoot -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 diff --git a/tools/README.md b/tools/README.md new file mode 100644 index 00000000000..53ba1fde822 --- /dev/null +++ b/tools/README.md @@ -0,0 +1,165 @@ +# tools/ + +This directory holds two separate toolchains. + +**The Kiota wrapper generator** — the 13 `*-Wrapper*`, `Derive-*` and `Test-BodyBindingCoverage` +scripts documented below. They generate, build, package and verify the wrapper modules under +`src//wrapper//`. + +**The AutoRest v2 pipeline** — everything else (`GenerateModules.ps1`, `BuildModule.ps1`, +`PackModule.ps1`, `PublishModule.ps1`, and the rest). Those build the shipping +`Microsoft.Graph.*` modules and are driven from `build.proj`; they are not covered here. + +The generator itself is documented in +[WrapperGenerator/README.md](WrapperGenerator/README.md) — what it emits and why. This file is +about the scripts around it: what depends on what, and which one to reach for. + +## Start here + +```powershell +.\tools\Build-WrapperModule.ps1 -Module Mail # generate + build one module +.\tools\Invoke-WrapperGates.ps1 # run every gate, with a population each +``` + +Everything else is a narrower tool for one of the scenarios below. + +## The scripts + +| Script | Does | Reads | Writes | +|---|---|---|---| +| `Build-WrapperModule.ps1` | kiota client + generated cmdlets + compiled dll + manifest, per module | OpenAPI spec, `config/ModulesMapping.jsonc` | `src//wrapper//`, `artifacts/` with `-Pack` | +| `Invoke-WrapperGates.ps1` | runs all 8 gates in order, reporting a population per gate | the corpus | console report; exit 1 fail, 2 incomplete | +| `Compare-WrapperCmdletNames.ps1` | naming-parity gate — every generated name against the published inventory | generated `*.g.cs` + the compiled dll + `MgCommandMetadata.json` | `-OutLedger` CSV of per-file dispositions | +| `Compare-WrapperOperationInventory.ps1` | did a change alter *which* operations become cmdlets | the corpus, a baseline CSV | baseline CSV, or a diff | +| `Test-BodyBindingCoverage.ps1` | every settable kiota body member is bound or cited by a named policy | spec + generated cmdlets | console report | +| `Test-WrapperModule.ps1` | smoke test — imports the **package** and exercises a dispatcher | `artifacts//*.nupkg` | console report | +| `Test-WrapperPaging.ps1` | pagination against a stub transport, no tenant data | compiled module | console report | +| `Test-WrapperDelta.ps1` | delta pagination against a stub transport | compiled module | console report | +| `Test-WrapperLive.ps1` | the one gate that calls real Graph; read-only, needs `User.Read` | compiled module + a session | console report | +| `Derive-CollisionResolutions.ps1` | derives collision suppressions/renames from the oracle | `data/collision-inventory..txt`, `MgCommandMetadata.json` | `data/collision-*.json`, ledger CSV | +| `Derive-ParityResolutions.ps1` | derives parity renames/suppressions for the whole surface | frozen input ledger, or `-CaptureInput` to build one | `data/parity-*.json`, ledger CSVs | +| `Update-WrapperParityData.ps1` | orchestrates a clean parity refresh in an isolated copy | — | the four `data/parity-*` files | +| `New-WrapperOutputManifest.ps1` | reviewable inventory of the committed output | the corpus | `docs/WrapperCmdlets-*.csv` | + +## What depends on what + +``` +config/ModulesMapping.jsonc ─┐ +OpenAPI (openApiDocs_KiotaCompat) ─┴─► Build-WrapperModule.ps1 ─► src//wrapper// + │ │ + -NoCollisionData ─────┤ ├─► Compare-WrapperCmdletNames.ps1 ──► ledger CSV + prints the collision │ │ │ + report, which IS │ └─► Test-BodyBindingCoverage.ps1 │ + data/collision- │ └─► New-WrapperOutputManifest.ps1 │ + inventory..txt │ └─► Compare-WrapperOperationInventory.ps1 │ + │ │ + -Pack ──► artifacts//*.nupkg ──► Test-WrapperModule.ps1 │ + │ +data/collision-inventory..txt ──► Derive-CollisionResolutions.ps1 ──► data/collision-*.json ──┐ │ +MgCommandMetadata.json (the oracle) ──┘ │ │ + ├──► embedded into the generator +Update-WrapperParityData.ps1 ──► Derive-ParityResolutions.ps1 ◄─────────────────────────────────── ┘ │ + (isolated copy, -NoCollisionData) └── -CaptureInput invokes Compare-WrapperCmdletNames ◄─────────────┘ +``` + +Two dependencies are easy to miss: + +**The collision inventory is script output, not a hand-written file.** `Build-WrapperModule.ps1 +-NoCollisionData` makes the generator *report* each collision instead of throwing, and that +report is what `data/collision-inventory..txt` is captured from. `Derive-CollisionResolutions.ps1` +then reads that file. Run without the switch and there is nothing to capture. + +**The parity derivation does not re-implement the oracle join.** `Derive-ParityResolutions.ps1 +-CaptureInput` calls `Compare-WrapperCmdletNames.ps1` per module and derives from its ledger, so +the gate and the derivation cannot drift apart. Without `-CaptureInput` it requires the frozen +`data/parity-input-ledger..csv` and fails if it is missing. + +## Scenarios + +### I changed the generator and want to see what it did to the output + +```powershell +.\tools\Build-WrapperModule.ps1 -Module Mail -Configuration Release +git diff src/Mail/wrapper/v1.0/ +``` + +Regeneration rewrites the committed folder in place, so the diff *is* the effect of your change. +For the whole surface, omit `-Module`. Add `-GenerateOnly` to skip compilation while iterating, +and `-SkipKiota` to reuse the client already on disk — kiota is only needed when the spec changes. + +### I want to try a module + +```powershell +.\tools\Build-WrapperModule.ps1 -Module Mail -Configuration Release +Import-Module .\src\Mail\wrapper\v1.0\bin\Release\netstandard2.0\Microsoft.Graph.Wrapper.Mail.psd1 +``` + +### I want a package a tester can install + +```powershell +.\tools\Build-WrapperModule.ps1 -ApiVersion v1.0 -Pack +.\tools\Test-WrapperModule.ps1 -Module Mail +``` + +`Test-WrapperModule.ps1` reads the **package**, not `bin/` — importing build output proves the +compiler ran, not that the artifact a user installs carries its dependencies and a manifest that +agrees with them. So pack before you smoke-test. + +### The naming-parity gate failed + +```powershell +.\tools\Compare-WrapperCmdletNames.ps1 -GeneratedPath src\Mail\wrapper\v1.0\Cmdlets -OutLedger ledger.csv +``` + +The ledger gives one row per cmdlet with its disposition — `matched`, `mismatch`, `corrected`, +`no-oracle`, `ambiguous`, `dispatcher`, `no-route`. Filter to `mismatch` to see what actually +diverged before deciding whether it is a generator defect or a deliberate correction. + +### I need to refresh the derived data + +```powershell +.\tools\Update-WrapperParityData.ps1 # parity: full clean refresh +.\tools\Derive-CollisionResolutions.ps1 -Validate # collisions: check for drift first +``` + +Both derivations have a `-Validate` mode that re-derives and fails if the checked-in files no +longer match. That is the safe thing to run in CI or before a PR; run without `-Validate` only +when you intend to update the data. + +### I'm about to open a PR + +```powershell +.\tools\Invoke-WrapperGates.ps1 +``` + +Eight gates, in this order — each reports the population it examined, because a gate that +examined nothing cannot pass: + +1. `generator-build` — the generator compiles +2. `unit-tests` — classification and emission rules +3. `module-compile` — emitted CLR types match the generated kiota members +4. `naming-parity` — names match the published SDK inventory +5. `omission-oracle` — every settable body member is bound or cited +6. `coverage-sweep` — what the classifier itself reports as unbound +7. `runtime-binding` — PowerShell converts each bound shape at runtime +8. `operation-inventory` — the change did not alter which operations generate + +A gate that could not run reports NOT-RUN rather than PASS, and the overall verdict is then +INCOMPLETE (exit 2), which is distinct from a failure (exit 1). + +`operation-inventory` needs `-InventoryBaseline` pointing at a CSV captured from a *previous* +generator; without one it reports NOT-RUN, because comparing a tree against itself proves nothing. + +### I want to check it against real Graph + +```powershell +.\tools\Test-WrapperLive.ps1 -Configuration Release +``` + +Read-only — every call is a GET of the signed-in user's own object. Consent floor is `User.Read`, +and it needs pwsh 7. It is the only gate that touches a tenant, and it exists because +offline gates are structurally blind to runtime assembly-resolution defects. + +For pagination and delta there are deterministic equivalents that need no tenant data beyond one +`/me` call: `Test-WrapperPaging.ps1` and `Test-WrapperDelta.ps1`, both driving the real compiled +cmdlets through a stub transport. diff --git a/tools/Update-WrapperParityData.ps1 b/tools/Update-WrapperParityData.ps1 new file mode 100644 index 00000000000..820b953f880 --- /dev/null +++ b/tools/Update-WrapperParityData.ps1 @@ -0,0 +1,82 @@ +<# +.SYNOPSIS +Regenerates parity derivation data from an isolated unresolved wrapper corpus. + +.DESCRIPTION +Snapshots all current tracked changes, including the index, into a temporary detached Git +worktree. Every configured wrapper module is regenerated there with collision/parity data +disabled, then Derive-ParityResolutions.ps1 captures and derives the four parity data files. +The active source tree is never used as generation output, and no data is published until the +complete generation and derivation both succeed. + +.PARAMETER ApiVersion +API version to capture. Default: v1.0. + +.PARAMETER Configuration +Build configuration used by the generator and module compilation. Default: Release. + +.PARAMETER OutDir +Destination for the validated parity data. Default: tools/WrapperGenerator/data. + +.EXAMPLE +.\tools\Update-WrapperParityData.ps1 +#> +[CmdletBinding()] +param( + [ValidateSet('v1.0', 'beta')] + [string]$ApiVersion = 'v1.0', + [string]$Configuration = 'Release', + [string]$OutDir +) + +$ErrorActionPreference = 'Stop' +$repoRoot = (Resolve-Path (Join-Path $PSScriptRoot '..')).Path +if (-not $OutDir) { $OutDir = Join-Path $PSScriptRoot 'WrapperGenerator\data' } + +$snapshot = (& git -C $repoRoot stash create 'isolated wrapper parity capture').Trim() +if ($LASTEXITCODE -ne 0) { throw 'git stash create failed while snapshotting the current tracked state.' } +if (-not $snapshot) { $snapshot = (& git -C $repoRoot rev-parse HEAD).Trim() } +if ($LASTEXITCODE -ne 0 -or -not $snapshot) { throw 'Could not resolve a Git snapshot for parity capture.' } + +$captureRoot = Join-Path ([System.IO.Path]::GetTempPath()) "wrapper-parity-capture-$PID" +$captureData = Join-Path $captureRoot 'capture-data' +$worktreeAdded = $false + +try { + $worktreeOutput = & git -C $repoRoot worktree add --detach $captureRoot $snapshot 2>&1 + if ($LASTEXITCODE -ne 0) { throw "Could not create isolated capture worktree: $($worktreeOutput -join ' ')" } + $worktreeAdded = $true + + $buildScript = Join-Path $captureRoot 'tools\Build-WrapperModule.ps1' + & pwsh -NoProfile -File $buildScript -ApiVersion $ApiVersion -Configuration $Configuration -SkipKiota -NoCollisionData -GenerateOnly + if ($LASTEXITCODE -ne 0) { throw "Raw wrapper corpus generation failed with exit code $LASTEXITCODE." } + + New-Item -ItemType Directory -Path $captureData | Out-Null + $deriveScript = Join-Path $captureRoot 'tools\Derive-ParityResolutions.ps1' + & pwsh -NoProfile -File $deriveScript ` + -GeneratedRoot (Join-Path $captureRoot 'src') ` + -OraclePath (Join-Path $captureRoot 'src\Authentication\Authentication\custom\common\MgCommandMetadata.json') ` + -OutDir $captureData ` + -ApiVersion $ApiVersion ` + -CaptureInput + if ($LASTEXITCODE -ne 0) { throw "Parity derivation failed with exit code $LASTEXITCODE." } + + $outputs = @( + "parity-input-ledger.$ApiVersion.csv" + "parity-renames.$ApiVersion.json" + "parity-suppressions.$ApiVersion.json" + "parity-resolution-ledger.$ApiVersion.csv" + ) + $missing = @($outputs | Where-Object { -not (Test-Path (Join-Path $captureData $_)) }) + if ($missing) { throw "Parity derivation did not produce: $($missing -join ', ')" } + + New-Item -ItemType Directory -Path $OutDir -Force | Out-Null + foreach ($name in $outputs) { + Copy-Item -LiteralPath (Join-Path $captureData $name) -Destination (Join-Path $OutDir $name) -Force + } + Write-Host "Published $($outputs.Count) parity data files from isolated snapshot $($snapshot.Substring(0, 12))." -ForegroundColor Green +} +finally { + if ($worktreeAdded) { & git -C $repoRoot worktree remove --force $captureRoot 2>$null | Out-Null } + if (Test-Path $captureRoot) { Remove-Item $captureRoot -Recurse -Force -ErrorAction SilentlyContinue } +} \ No newline at end of file diff --git a/tools/WrapperGenerator/PowerShellWrapperGenerationService.cs b/tools/WrapperGenerator/PowerShellWrapperGenerationService.cs index f869c59994b..81afca2838d 100644 --- a/tools/WrapperGenerator/PowerShellWrapperGenerationService.cs +++ b/tools/WrapperGenerator/PowerShellWrapperGenerationService.cs @@ -341,11 +341,23 @@ public async Task GenerateAsync(CancellationToken cancellationToken) // All collisions for the run are reported together so one generation surfaces the // complete list; see docs/edge-cases/naming-edge-cases.md for how each kind is resolved. + // + // Fatal only when the derived collision data is IN USE: there a collision means the data + // no longer covers the spec, and generating over it would silently drop an operation. + // With --no-collision-data the collisions ARE the intended output - that mode exists so + // tools/Derive-ParityResolutions.ps1 can inventory the raw, unresolved names - so they + // are reported and generation completes. Throwing there made the documented capture + // procedure impossible: the derivation asks for a tree the generator refused to produce. if (fileCollisions.Count > 0) { - throw new InvalidOperationException( - $"{fileCollisions.Count} cmdlet name collision(s): a later operation would overwrite an already-written cmdlet file. " + - $"Resolve each with a NamingOverrides rename or suppression.\n " + string.Join("\n ", fileCollisions)); + var summary = $"{fileCollisions.Count} cmdlet name collision(s): a later operation would overwrite an already-written cmdlet file."; + if (config.UseCollisionData) + { + throw new InvalidOperationException( + $"{summary} Resolve each with a NamingOverrides rename or suppression.\n " + string.Join("\n ", fileCollisions)); + } + + LogRawCollisionInventory(summary, string.Join("\n ", fileCollisions)); } LogBodyPropertyReconciliation( @@ -534,6 +546,10 @@ private async Task WriteCmdletFileAsync(CmdletNaming naming, string source, private partial void LogSuppressedOperation(string method, string pathTemplate); [LoggerMessage(Level = LogLevel.Warning, Message = "Skipped {Method} {PathTemplate}: {Reason}")] private partial void LogSkippedUnsupportedOperation(string method, string pathTemplate, string reason); + // Only reachable with collision data disabled, where colliding names are the intended output + // rather than a defect: the derivation reads them to produce the resolutions. + [LoggerMessage(Level = LogLevel.Warning, Message = "{Summary} Collision data is disabled, so these are the raw inventory this run exists to produce.\n {Collisions}")] + private partial void LogRawCollisionInventory(string summary, string collisions); // Information, not Warning: an unbindable body property is a known coverage gap per shape, // not a defect in this run, and at Graph scale these would drown the operation warnings. [LoggerMessage(Level = LogLevel.Information, Message = "Unbound body property {Noun}.{Property}: {Shape} (required={IsRequired})")] diff --git a/tools/WrapperGenerator/README.md b/tools/WrapperGenerator/README.md index 8948e1ea8ee..aa93b7a8604 100644 --- a/tools/WrapperGenerator/README.md +++ b/tools/WrapperGenerator/README.md @@ -127,7 +127,94 @@ Filtered OpenAPI (Graph) └─► [2] WrapperGenerator ─► the cmdlet wrappers (this tool) ``` -The wrappers compile and run only alongside step 1's output. Wiring the two into one buildable module is later work (see Gaps). +The wrappers compile and run only alongside step 1's output. `tools/Build-WrapperModule.ps1` runs both steps and wires the result into one buildable module; the next section is that path end to end. + +## Build a module end to end + +`tools/Build-WrapperModule.ps1` runs both steps above and everything after them, so one command +takes a module from an OpenAPI document to something `Import-Module` accepts. + +**Prerequisites** — the .NET SDK, PowerShell 7+, and the kiota CLI on `PATH`: + +```powershell +dotnet tool install --global Microsoft.OpenApi.Kiota +``` + +**Build one module:** + +```powershell +.\tools\Build-WrapperModule.ps1 -Module Mail +``` + +Everything lands in `src/Mail/wrapper/v1.0/`. Per module the script runs: + +| Step | Produces | +|---|---| +| 1. `kiota generate` | `Client/` — the `ApiClient` and its models | +| 2. WrapperGenerator | `Cmdlets/` — one `*.g.cs` per cmdlet, plus `Shared.g.cs` | +| 3–4. project files from `tools/Templates/` | `Client/Client.csproj` and `Microsoft.Graph.Wrapper.Mail.csproj` | +| 5. `dotnet build` | `bin/{Configuration}/netstandard2.0/Microsoft.Graph.Wrapper.Mail.dll` | +| 6. `New-ModuleManifest` | `Microsoft.Graph.Wrapper.Mail.psd1`, next to the dll | +| 7. `dotnet pack` (only with `-Pack`) | `artifacts/Mail/Microsoft.Graph.Wrapper.Mail.{version}.nupkg` | + +Steps 1 and 2 read the **same** OpenAPI document, so the wrappers always match the client they +compile against — that is the reason one script owns both rather than two run in sequence. + +**Import what you just built:** + +```powershell +Import-Module .\src\Mail\wrapper\v1.0\bin\Debug\netstandard2.0\Microsoft.Graph.Wrapper.Mail.psd1 +``` + +The module is named `Microsoft.Graph.Wrapper.{Module}`, so it imports side by side with an +installed `Microsoft.Graph.{Module}` without colliding. + +**The switches you will actually reach for:** + +| To | Use | +|---|---| +| build every module configured for the API version | omit `-Module` | +| re-run only the wrappers, reusing the client on disk | `-SkipKiota` | +| build what the gates build | `-Configuration Release` | +| read a different spec root | `-SpecRoot` (default `openApiDocs_KiotaCompat`) | + +`Get-Help .\tools\Build-WrapperModule.ps1 -Full` documents each parameter and why its default is +what it is. + +**Package it** — `-Pack` writes one nupkg per module under `artifacts/{Module}/`: + +```powershell +.\tools\Build-WrapperModule.ps1 -ApiVersion v1.0 -Pack +``` + +Packages are `3.0.0` (`-ModuleVersion`) and always carry a prerelease label (`-Prerelease`, +defaulting to `alpha{build id}` in CI and `alpha{UTC timestamp}` locally). Neither default is +cosmetic. The wrappers are the v3 line, not a build of the v2 service-module release train whose +version lives in `config/ModuleMetadata.json`, so a stable-versioned wrapper package would +collide number-for-number with a real SDK release; and two packages sharing an id and version but +not their contents are indistinguishable to a feed and to anyone who already installed one. + +Three properties are what make a package installable rather than merely produced, and each is +there because its absence was observed: the nuspec declares `Microsoft.Graph.Authentication` as a +dependency, because `Install-Module` resolves from NuGet metadata and not from the manifest, so +without it a clean machine gets a wrapper that cannot import; the prerelease label is mandatory +rather than optional; and the manifest GUID is derived from the module name — a name-based RFC +4122 UUID, identical on every build — so `Update-Module` keeps its identity across handouts +instead of seeing a new module each time. + +**Check it** — the smoke test reads the **package**, not `bin/`, in a fresh pwsh process per +module. Importing build output proves the compiler ran; it does not prove the artifact a user +installs carries the assembly, its dependencies and a manifest that agrees with them. So pack +first: + +```powershell +.\tools\Build-WrapperModule.ps1 -Module Mail -Pack +.\tools\Test-WrapperModule.ps1 -Module Mail +``` + +It refuses a package packed before any of its compile inputs under `src` — a green run cannot be +a stale one — and reports `n/a` rather than a pass for a shape the module never binds. The full +gate set, in order and with a population reported per gate, is `.\tools\Invoke-WrapperGates.ps1`. ## The source files @@ -144,7 +231,10 @@ The wrappers compile and run only alongside step 1's output. Wiring the two into | `OperationInfo.cs`, `EmitContext.cs`, `GeneratorConfig.cs` | Small data/config carriers | | `GeneratorExtensions.cs` | String + schema helper methods | -## Build, run, test +## Run the generator on its own + +Step 2 by itself — for changing the generator, or emitting a handful of operations without +building a whole module. **Build:** @@ -207,8 +297,7 @@ diff shows exactly what the change did to the output: .\tools\New-WrapperOutputManifest.ps1 # refresh docs/WrapperCmdlets-V1.0*.csv ``` -Omit `-Module` to build every module configured for the API version; add `-Pack` to produce a -package per module under `artifacts/{Module}/`. +The switches are the same ones described under [Build a module end to end](#build-a-module-end-to-end). `docs/WrapperCmdlets-V1.0.csv` is the reviewable inventory of that output — one row per emitted cmdlet with its module, verb, noun and request path — with per-module totals in @@ -233,12 +322,12 @@ dotnet test tools/WrapperGenerator.Tests .\tools\Test-BodyBindingCoverage.ps1 # 5. Runtime gate: the module imports and each bound shape accepts what a person would type -.\tools\Test-WrapperModule.ps1 -Module -Configuration Release +.\tools\Test-WrapperModule.ps1 -Module # needs -Pack output; see above ``` 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. Naming parity is enforced independently by `Compare-WrapperCmdletNames.ps1`. 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. +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. Naming parity is enforced independently by `Compare-WrapperCmdletNames.ps1`. The runtime gate reads the packed artifact rather than `bin/`, and refuses one packed before any of its compile inputs under `src`, so it cannot validate a stale build and report green. ## Gaps / not done yet diff --git a/tools/WrapperGenerator/data/parity-input-ledger.v1.0.csv b/tools/WrapperGenerator/data/parity-input-ledger.v1.0.csv index 91ba24c8ca8..2ac3a2106a8 100644 --- a/tools/WrapperGenerator/data/parity-input-ledger.v1.0.csv +++ b/tools/WrapperGenerator/data/parity-input-ledger.v1.0.csv @@ -1,13947 +1,14002 @@ "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","" +"Cmdlets","GetMgApplication_Get.g.cs","v1.0","Get-MgApplication","GET","/applications/{param}","matched","Get-MgApplication" +"Cmdlets","GetMgApplication_List.g.cs","v1.0","Get-MgApplication","GET","/applications","matched","Get-MgApplication" +"Cmdlets","GetMgApplication.g.cs","v1.0","Get-MgApplication","","","dispatcher","" +"Cmdlets","GetMgApplicationAppManagementPolicy.g.cs","v1.0","Get-MgApplicationAppManagementPolicy","GET","/applications/{param}/appManagementPolicies","matched","Get-MgApplicationAppManagementPolicy" +"Cmdlets","GetMgApplicationAppManagementPolicyByRef.g.cs","v1.0","Get-MgApplicationAppManagementPolicyByRef","GET","/applications/{param}/appManagementPolicies/$ref","matched","Get-MgApplicationAppManagementPolicyByRef" +"Cmdlets","GetMgApplicationAppManagementPolicyCount.g.cs","v1.0","Get-MgApplicationAppManagementPolicyCount","GET","/applications/{param}/appManagementPolicies/$count","matched","Get-MgApplicationAppManagementPolicyCount" +"Cmdlets","GetMgApplicationCount.g.cs","v1.0","Get-MgApplicationCount","GET","/applications/$count","matched","Get-MgApplicationCount" +"Cmdlets","GetMgApplicationCreatedOnBehalfOf.g.cs","v1.0","Get-MgApplicationCreatedOnBehalfOf","GET","/applications/{param}/createdOnBehalfOf","matched","Get-MgApplicationCreatedOnBehalfOf" +"Cmdlets","GetMgApplicationDelta.g.cs","v1.0","Get-MgApplicationDelta","GET","/applications/delta","matched","Get-MgApplicationDelta" +"Cmdlets","GetMgApplicationExtensionProperty_Get.g.cs","v1.0","Get-MgApplicationExtensionProperty","GET","/applications/{param}/extensionProperties/{param}","matched","Get-MgApplicationExtensionProperty" +"Cmdlets","GetMgApplicationExtensionProperty_List.g.cs","v1.0","Get-MgApplicationExtensionProperty","GET","/applications/{param}/extensionProperties","matched","Get-MgApplicationExtensionProperty" +"Cmdlets","GetMgApplicationExtensionProperty.g.cs","v1.0","Get-MgApplicationExtensionProperty","","","dispatcher","" +"Cmdlets","GetMgApplicationExtensionPropertyCount.g.cs","v1.0","Get-MgApplicationExtensionPropertyCount","GET","/applications/{param}/extensionProperties/$count","matched","Get-MgApplicationExtensionPropertyCount" +"Cmdlets","GetMgApplicationFederatedIdentityCredential_Get.g.cs","v1.0","Get-MgApplicationFederatedIdentityCredential","GET","/applications/{param}/federatedIdentityCredentials/{param}","matched","Get-MgApplicationFederatedIdentityCredential" +"Cmdlets","GetMgApplicationFederatedIdentityCredential_List.g.cs","v1.0","Get-MgApplicationFederatedIdentityCredential","GET","/applications/{param}/federatedIdentityCredentials","matched","Get-MgApplicationFederatedIdentityCredential" +"Cmdlets","GetMgApplicationFederatedIdentityCredential.g.cs","v1.0","Get-MgApplicationFederatedIdentityCredential","","","dispatcher","" +"Cmdlets","GetMgApplicationFederatedIdentityCredentialCount.g.cs","v1.0","Get-MgApplicationFederatedIdentityCredentialCount","GET","/applications/{param}/federatedIdentityCredentials/$count","matched","Get-MgApplicationFederatedIdentityCredentialCount" +"Cmdlets","GetMgApplicationHomeRealmDiscoveryPolicy_Get.g.cs","v1.0","Get-MgApplicationHomeRealmDiscoveryPolicy","GET","/applications/{param}/homeRealmDiscoveryPolicies/{param}","matched","Get-MgApplicationHomeRealmDiscoveryPolicy" +"Cmdlets","GetMgApplicationHomeRealmDiscoveryPolicy_List.g.cs","v1.0","Get-MgApplicationHomeRealmDiscoveryPolicy","GET","/applications/{param}/homeRealmDiscoveryPolicies","matched","Get-MgApplicationHomeRealmDiscoveryPolicy" +"Cmdlets","GetMgApplicationHomeRealmDiscoveryPolicy.g.cs","v1.0","Get-MgApplicationHomeRealmDiscoveryPolicy","","","dispatcher","" +"Cmdlets","GetMgApplicationHomeRealmDiscoveryPolicyCount.g.cs","v1.0","Get-MgApplicationHomeRealmDiscoveryPolicyCount","GET","/applications/{param}/homeRealmDiscoveryPolicies/$count","matched","Get-MgApplicationHomeRealmDiscoveryPolicyCount" +"Cmdlets","GetMgApplicationLogo.g.cs","v1.0","Get-MgApplicationLogo","GET","/applications/{param}/logo","matched","Get-MgApplicationLogo" +"Cmdlets","GetMgApplicationOwner.g.cs","v1.0","Get-MgApplicationOwner","GET","/applications/{param}/owners","matched","Get-MgApplicationOwner" +"Cmdlets","GetMgApplicationOwnerAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgApplicationOwnerAsAppRoleAssignment","GET","/applications/{param}/owners/{param}/appRoleAssignment","matched","Get-MgApplicationOwnerAsAppRoleAssignment" +"Cmdlets","GetMgApplicationOwnerAsAppRoleAssignment_List.g.cs","v1.0","Get-MgApplicationOwnerAsAppRoleAssignment","GET","/applications/{param}/owners/appRoleAssignment","matched","Get-MgApplicationOwnerAsAppRoleAssignment" +"Cmdlets","GetMgApplicationOwnerAsAppRoleAssignment.g.cs","v1.0","Get-MgApplicationOwnerAsAppRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgApplicationOwnerAsEndpoint_Get.g.cs","v1.0","Get-MgApplicationOwnerAsEndpoint","GET","/applications/{param}/owners/{param}/endpoint","matched","Get-MgApplicationOwnerAsEndpoint" +"Cmdlets","GetMgApplicationOwnerAsEndpoint_List.g.cs","v1.0","Get-MgApplicationOwnerAsEndpoint","GET","/applications/{param}/owners/endpoint","matched","Get-MgApplicationOwnerAsEndpoint" +"Cmdlets","GetMgApplicationOwnerAsEndpoint.g.cs","v1.0","Get-MgApplicationOwnerAsEndpoint","","","dispatcher","" +"Cmdlets","GetMgApplicationOwnerAsServicePrincipal_Get.g.cs","v1.0","Get-MgApplicationOwnerAsServicePrincipal","GET","/applications/{param}/owners/{param}/servicePrincipal","matched","Get-MgApplicationOwnerAsServicePrincipal" +"Cmdlets","GetMgApplicationOwnerAsServicePrincipal_List.g.cs","v1.0","Get-MgApplicationOwnerAsServicePrincipal","GET","/applications/{param}/owners/servicePrincipal","matched","Get-MgApplicationOwnerAsServicePrincipal" +"Cmdlets","GetMgApplicationOwnerAsServicePrincipal.g.cs","v1.0","Get-MgApplicationOwnerAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgApplicationOwnerAsUser_Get.g.cs","v1.0","Get-MgApplicationOwnerAsUser","GET","/applications/{param}/owners/{param}/user","matched","Get-MgApplicationOwnerAsUser" +"Cmdlets","GetMgApplicationOwnerAsUser_List.g.cs","v1.0","Get-MgApplicationOwnerAsUser","GET","/applications/{param}/owners/user","matched","Get-MgApplicationOwnerAsUser" +"Cmdlets","GetMgApplicationOwnerAsUser.g.cs","v1.0","Get-MgApplicationOwnerAsUser","","","dispatcher","" +"Cmdlets","GetMgApplicationOwnerByRef.g.cs","v1.0","Get-MgApplicationOwnerByRef","GET","/applications/{param}/owners/$ref","matched","Get-MgApplicationOwnerByRef" +"Cmdlets","GetMgApplicationOwnerCount.g.cs","v1.0","Get-MgApplicationOwnerCount","GET","/applications/{param}/owners/$count","matched","Get-MgApplicationOwnerCount" +"Cmdlets","GetMgApplicationOwnerCountAsAppRoleAssignment.g.cs","v1.0","Get-MgApplicationOwnerCountAsAppRoleAssignment","GET","/applications/{param}/owners/appRoleAssignment/$count","matched","Get-MgApplicationOwnerCountAsAppRoleAssignment" +"Cmdlets","GetMgApplicationOwnerCountAsEndpoint.g.cs","v1.0","Get-MgApplicationOwnerCountAsEndpoint","GET","/applications/{param}/owners/endpoint/$count","matched","Get-MgApplicationOwnerCountAsEndpoint" +"Cmdlets","GetMgApplicationOwnerCountAsServicePrincipal.g.cs","v1.0","Get-MgApplicationOwnerCountAsServicePrincipal","GET","/applications/{param}/owners/servicePrincipal/$count","matched","Get-MgApplicationOwnerCountAsServicePrincipal" +"Cmdlets","GetMgApplicationOwnerCountAsUser.g.cs","v1.0","Get-MgApplicationOwnerCountAsUser","GET","/applications/{param}/owners/user/$count","matched","Get-MgApplicationOwnerCountAsUser" +"Cmdlets","GetMgApplicationSynchronization.g.cs","v1.0","Get-MgApplicationSynchronization","GET","/applications/{param}/synchronization","matched","Get-MgApplicationSynchronization" +"Cmdlets","GetMgApplicationSynchronizationJob_Get.g.cs","v1.0","Get-MgApplicationSynchronizationJob","GET","/applications/{param}/synchronization/jobs/{param}","matched","Get-MgApplicationSynchronizationJob" +"Cmdlets","GetMgApplicationSynchronizationJob_List.g.cs","v1.0","Get-MgApplicationSynchronizationJob","GET","/applications/{param}/synchronization/jobs","matched","Get-MgApplicationSynchronizationJob" +"Cmdlets","GetMgApplicationSynchronizationJob.g.cs","v1.0","Get-MgApplicationSynchronizationJob","","","dispatcher","" +"Cmdlets","GetMgApplicationSynchronizationJobBulkUpload.g.cs","v1.0","Get-MgApplicationSynchronizationJobBulkUpload","GET","/applications/{param}/synchronization/jobs/{param}/bulkUpload","matched","Get-MgApplicationSynchronizationJobBulkUpload" +"Cmdlets","GetMgApplicationSynchronizationJobBulkUploadContent.g.cs","v1.0","Get-MgApplicationSynchronizationJobBulkUploadContent","GET","/applications/{param}/synchronization/jobs/{param}/bulkUpload/$value","matched","Get-MgApplicationSynchronizationJobBulkUploadContent" +"Cmdlets","GetMgApplicationSynchronizationJobCount.g.cs","v1.0","Get-MgApplicationSynchronizationJobCount","GET","/applications/{param}/synchronization/jobs/$count","matched","Get-MgApplicationSynchronizationJobCount" +"Cmdlets","GetMgApplicationSynchronizationJobSchema.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchema","GET","/applications/{param}/synchronization/jobs/{param}/schema","matched","Get-MgApplicationSynchronizationJobSchema" +"Cmdlets","GetMgApplicationSynchronizationJobSchemaDirectory_Get.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchemaDirectory","GET","/applications/{param}/synchronization/jobs/{param}/schema/directories/{param}","matched","Get-MgApplicationSynchronizationJobSchemaDirectory" +"Cmdlets","GetMgApplicationSynchronizationJobSchemaDirectory_List.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchemaDirectory","GET","/applications/{param}/synchronization/jobs/{param}/schema/directories","matched","Get-MgApplicationSynchronizationJobSchemaDirectory" +"Cmdlets","GetMgApplicationSynchronizationJobSchemaDirectory.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchemaDirectory","","","dispatcher","" +"Cmdlets","GetMgApplicationSynchronizationJobSchemaDirectoryCount.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchemaDirectoryCount","GET","/applications/{param}/synchronization/jobs/{param}/schema/directories/$count","matched","Get-MgApplicationSynchronizationJobSchemaDirectoryCount" +"Cmdlets","GetMgApplicationSynchronizationJobSchemaFilterOperators.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchemaFilterOperators","GET","/applications/{param}/synchronization/jobs/{param}/schema/filterOperators","mismatch","Invoke-MgFilterApplicationSynchronizationJobSchemaOperator" +"Cmdlets","GetMgApplicationSynchronizationJobSchemaFunctions.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchemaFunctions","GET","/applications/{param}/synchronization/jobs/{param}/schema/functions","mismatch","Invoke-MgFunctionApplicationSynchronizationJobSchema" +"Cmdlets","GetMgApplicationSynchronizationSecretCount.g.cs","v1.0","Get-MgApplicationSynchronizationSecretCount","GET","/applications/{param}/synchronization/secrets/$count","matched","Get-MgApplicationSynchronizationSecretCount" +"Cmdlets","GetMgApplicationSynchronizationTemplate_Get.g.cs","v1.0","Get-MgApplicationSynchronizationTemplate","GET","/applications/{param}/synchronization/templates/{param}","matched","Get-MgApplicationSynchronizationTemplate" +"Cmdlets","GetMgApplicationSynchronizationTemplate_List.g.cs","v1.0","Get-MgApplicationSynchronizationTemplate","GET","/applications/{param}/synchronization/templates","matched","Get-MgApplicationSynchronizationTemplate" +"Cmdlets","GetMgApplicationSynchronizationTemplate.g.cs","v1.0","Get-MgApplicationSynchronizationTemplate","","","dispatcher","" +"Cmdlets","GetMgApplicationSynchronizationTemplateCount.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateCount","GET","/applications/{param}/synchronization/templates/$count","matched","Get-MgApplicationSynchronizationTemplateCount" +"Cmdlets","GetMgApplicationSynchronizationTemplateSchema.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchema","GET","/applications/{param}/synchronization/templates/{param}/schema","matched","Get-MgApplicationSynchronizationTemplateSchema" +"Cmdlets","GetMgApplicationSynchronizationTemplateSchemaDirectory_Get.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchemaDirectory","GET","/applications/{param}/synchronization/templates/{param}/schema/directories/{param}","matched","Get-MgApplicationSynchronizationTemplateSchemaDirectory" +"Cmdlets","GetMgApplicationSynchronizationTemplateSchemaDirectory_List.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchemaDirectory","GET","/applications/{param}/synchronization/templates/{param}/schema/directories","matched","Get-MgApplicationSynchronizationTemplateSchemaDirectory" +"Cmdlets","GetMgApplicationSynchronizationTemplateSchemaDirectory.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchemaDirectory","","","dispatcher","" +"Cmdlets","GetMgApplicationSynchronizationTemplateSchemaDirectoryCount.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount","GET","/applications/{param}/synchronization/templates/{param}/schema/directories/$count","matched","Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount" +"Cmdlets","GetMgApplicationSynchronizationTemplateSchemaFilterOperators.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchemaFilterOperators","GET","/applications/{param}/synchronization/templates/{param}/schema/filterOperators","mismatch","Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator" +"Cmdlets","GetMgApplicationSynchronizationTemplateSchemaFunctions.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchemaFunctions","GET","/applications/{param}/synchronization/templates/{param}/schema/functions","mismatch","Invoke-MgFunctionApplicationSynchronizationTemplateSchema" +"Cmdlets","GetMgApplicationTemplate_Get.g.cs","v1.0","Get-MgApplicationTemplate","GET","/applicationTemplates/{param}","matched","Get-MgApplicationTemplate" +"Cmdlets","GetMgApplicationTemplate_List.g.cs","v1.0","Get-MgApplicationTemplate","GET","/applicationTemplates","matched","Get-MgApplicationTemplate" +"Cmdlets","GetMgApplicationTemplate.g.cs","v1.0","Get-MgApplicationTemplate","","","dispatcher","" +"Cmdlets","GetMgApplicationTemplateCount.g.cs","v1.0","Get-MgApplicationTemplateCount","GET","/applicationTemplates/$count","matched","Get-MgApplicationTemplateCount" +"Cmdlets","GetMgApplicationTokenIssuancePolicy.g.cs","v1.0","Get-MgApplicationTokenIssuancePolicy","GET","/applications/{param}/tokenIssuancePolicies","matched","Get-MgApplicationTokenIssuancePolicy" +"Cmdlets","GetMgApplicationTokenIssuancePolicyByRef.g.cs","v1.0","Get-MgApplicationTokenIssuancePolicyByRef","GET","/applications/{param}/tokenIssuancePolicies/$ref","matched","Get-MgApplicationTokenIssuancePolicyByRef" +"Cmdlets","GetMgApplicationTokenIssuancePolicyCount.g.cs","v1.0","Get-MgApplicationTokenIssuancePolicyCount","GET","/applications/{param}/tokenIssuancePolicies/$count","matched","Get-MgApplicationTokenIssuancePolicyCount" +"Cmdlets","GetMgApplicationTokenLifetimePolicy.g.cs","v1.0","Get-MgApplicationTokenLifetimePolicy","GET","/applications/{param}/tokenLifetimePolicies","matched","Get-MgApplicationTokenLifetimePolicy" +"Cmdlets","GetMgApplicationTokenLifetimePolicyByRef.g.cs","v1.0","Get-MgApplicationTokenLifetimePolicyByRef","GET","/applications/{param}/tokenLifetimePolicies/$ref","matched","Get-MgApplicationTokenLifetimePolicyByRef" +"Cmdlets","GetMgApplicationTokenLifetimePolicyCount.g.cs","v1.0","Get-MgApplicationTokenLifetimePolicyCount","GET","/applications/{param}/tokenLifetimePolicies/$count","matched","Get-MgApplicationTokenLifetimePolicyCount" +"Cmdlets","GetMgGroupAppRoleAssignment_Get.g.cs","v1.0","Get-MgGroupAppRoleAssignment","GET","/groups/{param}/appRoleAssignments/{param}","matched","Get-MgGroupAppRoleAssignment" +"Cmdlets","GetMgGroupAppRoleAssignment_List.g.cs","v1.0","Get-MgGroupAppRoleAssignment","GET","/groups/{param}/appRoleAssignments","matched","Get-MgGroupAppRoleAssignment" +"Cmdlets","GetMgGroupAppRoleAssignment.g.cs","v1.0","Get-MgGroupAppRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgGroupAppRoleAssignmentCount.g.cs","v1.0","Get-MgGroupAppRoleAssignmentCount","GET","/groups/{param}/appRoleAssignments/$count","matched","Get-MgGroupAppRoleAssignmentCount" +"Cmdlets","GetMgServicePrincipal_Get.g.cs","v1.0","Get-MgServicePrincipal","GET","/servicePrincipals/{param}","matched","Get-MgServicePrincipal" +"Cmdlets","GetMgServicePrincipal_List.g.cs","v1.0","Get-MgServicePrincipal","GET","/servicePrincipals","matched","Get-MgServicePrincipal" +"Cmdlets","GetMgServicePrincipal.g.cs","v1.0","Get-MgServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalAppManagementPolicy_Get.g.cs","v1.0","Get-MgServicePrincipalAppManagementPolicy","GET","/servicePrincipals/{param}/appManagementPolicies/{param}","matched","Get-MgServicePrincipalAppManagementPolicy" +"Cmdlets","GetMgServicePrincipalAppManagementPolicy_List.g.cs","v1.0","Get-MgServicePrincipalAppManagementPolicy","GET","/servicePrincipals/{param}/appManagementPolicies","matched","Get-MgServicePrincipalAppManagementPolicy" +"Cmdlets","GetMgServicePrincipalAppManagementPolicy.g.cs","v1.0","Get-MgServicePrincipalAppManagementPolicy","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalAppManagementPolicyCount.g.cs","v1.0","Get-MgServicePrincipalAppManagementPolicyCount","GET","/servicePrincipals/{param}/appManagementPolicies/$count","matched","Get-MgServicePrincipalAppManagementPolicyCount" +"Cmdlets","GetMgServicePrincipalAppRoleAssignedTo_Get.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignedTo","GET","/servicePrincipals/{param}/appRoleAssignedTo/{param}","matched","Get-MgServicePrincipalAppRoleAssignedTo" +"Cmdlets","GetMgServicePrincipalAppRoleAssignedTo_List.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignedTo","GET","/servicePrincipals/{param}/appRoleAssignedTo","matched","Get-MgServicePrincipalAppRoleAssignedTo" +"Cmdlets","GetMgServicePrincipalAppRoleAssignedTo.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignedTo","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalAppRoleAssignedToCount.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignedToCount","GET","/servicePrincipals/{param}/appRoleAssignedTo/$count","matched","Get-MgServicePrincipalAppRoleAssignedToCount" +"Cmdlets","GetMgServicePrincipalAppRoleAssignment_Get.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignment","GET","/servicePrincipals/{param}/appRoleAssignments/{param}","matched","Get-MgServicePrincipalAppRoleAssignment" +"Cmdlets","GetMgServicePrincipalAppRoleAssignment_List.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignment","GET","/servicePrincipals/{param}/appRoleAssignments","matched","Get-MgServicePrincipalAppRoleAssignment" +"Cmdlets","GetMgServicePrincipalAppRoleAssignment.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalAppRoleAssignmentCount.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignmentCount","GET","/servicePrincipals/{param}/appRoleAssignments/$count","matched","Get-MgServicePrincipalAppRoleAssignmentCount" +"Cmdlets","GetMgServicePrincipalClaimMappingPolicy.g.cs","v1.0","Get-MgServicePrincipalClaimMappingPolicy","GET","/servicePrincipals/{param}/claimsMappingPolicies","matched","Get-MgServicePrincipalClaimMappingPolicy" +"Cmdlets","GetMgServicePrincipalClaimMappingPolicyByRef.g.cs","v1.0","Get-MgServicePrincipalClaimMappingPolicyByRef","GET","/servicePrincipals/{param}/claimsMappingPolicies/$ref","matched","Get-MgServicePrincipalClaimMappingPolicyByRef" +"Cmdlets","GetMgServicePrincipalClaimMappingPolicyCount.g.cs","v1.0","Get-MgServicePrincipalClaimMappingPolicyCount","GET","/servicePrincipals/{param}/claimsMappingPolicies/$count","matched","Get-MgServicePrincipalClaimMappingPolicyCount" +"Cmdlets","GetMgServicePrincipalCount.g.cs","v1.0","Get-MgServicePrincipalCount","GET","/servicePrincipals/$count","matched","Get-MgServicePrincipalCount" +"Cmdlets","GetMgServicePrincipalCreatedObject_Get.g.cs","v1.0","Get-MgServicePrincipalCreatedObject","GET","/servicePrincipals/{param}/createdObjects/{param}","matched","Get-MgServicePrincipalCreatedObject" +"Cmdlets","GetMgServicePrincipalCreatedObject_List.g.cs","v1.0","Get-MgServicePrincipalCreatedObject","GET","/servicePrincipals/{param}/createdObjects","matched","Get-MgServicePrincipalCreatedObject" +"Cmdlets","GetMgServicePrincipalCreatedObject.g.cs","v1.0","Get-MgServicePrincipalCreatedObject","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalCreatedObjectAsServicePrincipal_Get.g.cs","v1.0","Get-MgServicePrincipalCreatedObjectAsServicePrincipal","GET","/servicePrincipals/{param}/createdObjects/{param}/servicePrincipal","matched","Get-MgServicePrincipalCreatedObjectAsServicePrincipal" +"Cmdlets","GetMgServicePrincipalCreatedObjectAsServicePrincipal_List.g.cs","v1.0","Get-MgServicePrincipalCreatedObjectAsServicePrincipal","GET","/servicePrincipals/{param}/createdObjects/servicePrincipal","matched","Get-MgServicePrincipalCreatedObjectAsServicePrincipal" +"Cmdlets","GetMgServicePrincipalCreatedObjectAsServicePrincipal.g.cs","v1.0","Get-MgServicePrincipalCreatedObjectAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalCreatedObjectCount.g.cs","v1.0","Get-MgServicePrincipalCreatedObjectCount","GET","/servicePrincipals/{param}/createdObjects/$count","matched","Get-MgServicePrincipalCreatedObjectCount" +"Cmdlets","GetMgServicePrincipalCreatedObjectCountAsServicePrincipal.g.cs","v1.0","Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal","GET","/servicePrincipals/{param}/createdObjects/servicePrincipal/$count","matched","Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal" +"Cmdlets","GetMgServicePrincipalDelegatedPermissionClassification_Get.g.cs","v1.0","Get-MgServicePrincipalDelegatedPermissionClassification","GET","/servicePrincipals/{param}/delegatedPermissionClassifications/{param}","matched","Get-MgServicePrincipalDelegatedPermissionClassification" +"Cmdlets","GetMgServicePrincipalDelegatedPermissionClassification_List.g.cs","v1.0","Get-MgServicePrincipalDelegatedPermissionClassification","GET","/servicePrincipals/{param}/delegatedPermissionClassifications","matched","Get-MgServicePrincipalDelegatedPermissionClassification" +"Cmdlets","GetMgServicePrincipalDelegatedPermissionClassification.g.cs","v1.0","Get-MgServicePrincipalDelegatedPermissionClassification","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalDelegatedPermissionClassificationCount.g.cs","v1.0","Get-MgServicePrincipalDelegatedPermissionClassificationCount","GET","/servicePrincipals/{param}/delegatedPermissionClassifications/$count","matched","Get-MgServicePrincipalDelegatedPermissionClassificationCount" +"Cmdlets","GetMgServicePrincipalDelta.g.cs","v1.0","Get-MgServicePrincipalDelta","GET","/servicePrincipals/delta","matched","Get-MgServicePrincipalDelta" +"Cmdlets","GetMgServicePrincipalEndpoint_Get.g.cs","v1.0","Get-MgServicePrincipalEndpoint","GET","/servicePrincipals/{param}/endpoints/{param}","matched","Get-MgServicePrincipalEndpoint" +"Cmdlets","GetMgServicePrincipalEndpoint_List.g.cs","v1.0","Get-MgServicePrincipalEndpoint","GET","/servicePrincipals/{param}/endpoints","matched","Get-MgServicePrincipalEndpoint" +"Cmdlets","GetMgServicePrincipalEndpoint.g.cs","v1.0","Get-MgServicePrincipalEndpoint","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalEndpointCount.g.cs","v1.0","Get-MgServicePrincipalEndpointCount","GET","/servicePrincipals/{param}/endpoints/$count","matched","Get-MgServicePrincipalEndpointCount" +"Cmdlets","GetMgServicePrincipalFederatedIdentityCredential_Get.g.cs","v1.0","Get-MgServicePrincipalFederatedIdentityCredential","GET","/servicePrincipals/{param}/federatedIdentityCredentials/{param}","no-oracle","" +"Cmdlets","GetMgServicePrincipalFederatedIdentityCredential_List.g.cs","v1.0","Get-MgServicePrincipalFederatedIdentityCredential","GET","/servicePrincipals/{param}/federatedIdentityCredentials","no-oracle","" +"Cmdlets","GetMgServicePrincipalFederatedIdentityCredential.g.cs","v1.0","Get-MgServicePrincipalFederatedIdentityCredential","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalFederatedIdentityCredentialCount.g.cs","v1.0","Get-MgServicePrincipalFederatedIdentityCredentialCount","GET","/servicePrincipals/{param}/federatedIdentityCredentials/$count","no-oracle","" +"Cmdlets","GetMgServicePrincipalHomeRealmDiscoveryPolicy.g.cs","v1.0","Get-MgServicePrincipalHomeRealmDiscoveryPolicy","GET","/servicePrincipals/{param}/homeRealmDiscoveryPolicies","matched","Get-MgServicePrincipalHomeRealmDiscoveryPolicy" +"Cmdlets","GetMgServicePrincipalHomeRealmDiscoveryPolicyByRef.g.cs","v1.0","Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef","GET","/servicePrincipals/{param}/homeRealmDiscoveryPolicies/$ref","matched","Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef" +"Cmdlets","GetMgServicePrincipalHomeRealmDiscoveryPolicyCount.g.cs","v1.0","Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount","GET","/servicePrincipals/{param}/homeRealmDiscoveryPolicies/$count","matched","Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount" +"Cmdlets","GetMgServicePrincipalMemberOf_Get.g.cs","v1.0","Get-MgServicePrincipalMemberOf","GET","/servicePrincipals/{param}/memberOf/{param}","matched","Get-MgServicePrincipalMemberOf" +"Cmdlets","GetMgServicePrincipalMemberOf_List.g.cs","v1.0","Get-MgServicePrincipalMemberOf","GET","/servicePrincipals/{param}/memberOf","matched","Get-MgServicePrincipalMemberOf" +"Cmdlets","GetMgServicePrincipalMemberOf.g.cs","v1.0","Get-MgServicePrincipalMemberOf","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsAdministrativeUnit","GET","/servicePrincipals/{param}/memberOf/{param}/administrativeUnit","matched","Get-MgServicePrincipalMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgServicePrincipalMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsAdministrativeUnit","GET","/servicePrincipals/{param}/memberOf/administrativeUnit","matched","Get-MgServicePrincipalMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgServicePrincipalMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsAdministrativeUnit","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalMemberOfAsDirectoryRole_Get.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsDirectoryRole","GET","/servicePrincipals/{param}/memberOf/{param}/directoryRole","matched","Get-MgServicePrincipalMemberOfAsDirectoryRole" +"Cmdlets","GetMgServicePrincipalMemberOfAsDirectoryRole_List.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsDirectoryRole","GET","/servicePrincipals/{param}/memberOf/directoryRole","matched","Get-MgServicePrincipalMemberOfAsDirectoryRole" +"Cmdlets","GetMgServicePrincipalMemberOfAsDirectoryRole.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsDirectoryRole","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalMemberOfAsGroup_Get.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsGroup","GET","/servicePrincipals/{param}/memberOf/{param}/group","matched","Get-MgServicePrincipalMemberOfAsGroup" +"Cmdlets","GetMgServicePrincipalMemberOfAsGroup_List.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsGroup","GET","/servicePrincipals/{param}/memberOf/group","matched","Get-MgServicePrincipalMemberOfAsGroup" +"Cmdlets","GetMgServicePrincipalMemberOfAsGroup.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsGroup","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalMemberOfCount.g.cs","v1.0","Get-MgServicePrincipalMemberOfCount","GET","/servicePrincipals/{param}/memberOf/$count","matched","Get-MgServicePrincipalMemberOfCount" +"Cmdlets","GetMgServicePrincipalMemberOfCountAsAdministrativeUnit.g.cs","v1.0","Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit","GET","/servicePrincipals/{param}/memberOf/administrativeUnit/$count","matched","Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit" +"Cmdlets","GetMgServicePrincipalMemberOfCountAsDirectoryRole.g.cs","v1.0","Get-MgServicePrincipalMemberOfCountAsDirectoryRole","GET","/servicePrincipals/{param}/memberOf/directoryRole/$count","matched","Get-MgServicePrincipalMemberOfCountAsDirectoryRole" +"Cmdlets","GetMgServicePrincipalMemberOfCountAsGroup.g.cs","v1.0","Get-MgServicePrincipalMemberOfCountAsGroup","GET","/servicePrincipals/{param}/memberOf/group/$count","matched","Get-MgServicePrincipalMemberOfCountAsGroup" +"Cmdlets","GetMgServicePrincipalOauth2PermissionGrant_Get.g.cs","v1.0","Get-MgServicePrincipalOauth2PermissionGrant","GET","/servicePrincipals/{param}/oauth2PermissionGrants/{param}","matched","Get-MgServicePrincipalOauth2PermissionGrant" +"Cmdlets","GetMgServicePrincipalOauth2PermissionGrant_List.g.cs","v1.0","Get-MgServicePrincipalOauth2PermissionGrant","GET","/servicePrincipals/{param}/oauth2PermissionGrants","matched","Get-MgServicePrincipalOauth2PermissionGrant" +"Cmdlets","GetMgServicePrincipalOauth2PermissionGrant.g.cs","v1.0","Get-MgServicePrincipalOauth2PermissionGrant","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalOauth2PermissionGrantCount.g.cs","v1.0","Get-MgServicePrincipalOauth2PermissionGrantCount","GET","/servicePrincipals/{param}/oauth2PermissionGrants/$count","matched","Get-MgServicePrincipalOauth2PermissionGrantCount" +"Cmdlets","GetMgServicePrincipalOwnedObject_Get.g.cs","v1.0","Get-MgServicePrincipalOwnedObject","GET","/servicePrincipals/{param}/ownedObjects/{param}","matched","Get-MgServicePrincipalOwnedObject" +"Cmdlets","GetMgServicePrincipalOwnedObject_List.g.cs","v1.0","Get-MgServicePrincipalOwnedObject","GET","/servicePrincipals/{param}/ownedObjects","matched","Get-MgServicePrincipalOwnedObject" +"Cmdlets","GetMgServicePrincipalOwnedObject.g.cs","v1.0","Get-MgServicePrincipalOwnedObject","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsApplication_Get.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsApplication","GET","/servicePrincipals/{param}/ownedObjects/{param}/application","matched","Get-MgServicePrincipalOwnedObjectAsApplication" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsApplication_List.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsApplication","GET","/servicePrincipals/{param}/ownedObjects/application","matched","Get-MgServicePrincipalOwnedObjectAsApplication" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsApplication.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsApplication","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment","GET","/servicePrincipals/{param}/ownedObjects/{param}/appRoleAssignment","matched","Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsAppRoleAssignment_List.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment","GET","/servicePrincipals/{param}/ownedObjects/appRoleAssignment","matched","Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsAppRoleAssignment.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsEndpoint_Get.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsEndpoint","GET","/servicePrincipals/{param}/ownedObjects/{param}/endpoint","matched","Get-MgServicePrincipalOwnedObjectAsEndpoint" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsEndpoint_List.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsEndpoint","GET","/servicePrincipals/{param}/ownedObjects/endpoint","matched","Get-MgServicePrincipalOwnedObjectAsEndpoint" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsEndpoint.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsEndpoint","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsGroup_Get.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsGroup","GET","/servicePrincipals/{param}/ownedObjects/{param}/group","matched","Get-MgServicePrincipalOwnedObjectAsGroup" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsGroup_List.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsGroup","GET","/servicePrincipals/{param}/ownedObjects/group","matched","Get-MgServicePrincipalOwnedObjectAsGroup" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsGroup.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsGroup","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsServicePrincipal_Get.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsServicePrincipal","GET","/servicePrincipals/{param}/ownedObjects/{param}/servicePrincipal","matched","Get-MgServicePrincipalOwnedObjectAsServicePrincipal" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsServicePrincipal_List.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsServicePrincipal","GET","/servicePrincipals/{param}/ownedObjects/servicePrincipal","matched","Get-MgServicePrincipalOwnedObjectAsServicePrincipal" +"Cmdlets","GetMgServicePrincipalOwnedObjectAsServicePrincipal.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalOwnedObjectCount.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectCount","GET","/servicePrincipals/{param}/ownedObjects/$count","matched","Get-MgServicePrincipalOwnedObjectCount" +"Cmdlets","GetMgServicePrincipalOwnedObjectCountAsApplication.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectCountAsApplication","GET","/servicePrincipals/{param}/ownedObjects/application/$count","matched","Get-MgServicePrincipalOwnedObjectCountAsApplication" +"Cmdlets","GetMgServicePrincipalOwnedObjectCountAsAppRoleAssignment.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment","GET","/servicePrincipals/{param}/ownedObjects/appRoleAssignment/$count","matched","Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment" +"Cmdlets","GetMgServicePrincipalOwnedObjectCountAsEndpoint.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectCountAsEndpoint","GET","/servicePrincipals/{param}/ownedObjects/endpoint/$count","matched","Get-MgServicePrincipalOwnedObjectCountAsEndpoint" +"Cmdlets","GetMgServicePrincipalOwnedObjectCountAsGroup.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectCountAsGroup","GET","/servicePrincipals/{param}/ownedObjects/group/$count","matched","Get-MgServicePrincipalOwnedObjectCountAsGroup" +"Cmdlets","GetMgServicePrincipalOwnedObjectCountAsServicePrincipal.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal","GET","/servicePrincipals/{param}/ownedObjects/servicePrincipal/$count","matched","Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal" +"Cmdlets","GetMgServicePrincipalOwner.g.cs","v1.0","Get-MgServicePrincipalOwner","GET","/servicePrincipals/{param}/owners","matched","Get-MgServicePrincipalOwner" +"Cmdlets","GetMgServicePrincipalOwnerAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgServicePrincipalOwnerAsAppRoleAssignment","GET","/servicePrincipals/{param}/owners/{param}/appRoleAssignment","matched","Get-MgServicePrincipalOwnerAsAppRoleAssignment" +"Cmdlets","GetMgServicePrincipalOwnerAsAppRoleAssignment_List.g.cs","v1.0","Get-MgServicePrincipalOwnerAsAppRoleAssignment","GET","/servicePrincipals/{param}/owners/appRoleAssignment","matched","Get-MgServicePrincipalOwnerAsAppRoleAssignment" +"Cmdlets","GetMgServicePrincipalOwnerAsAppRoleAssignment.g.cs","v1.0","Get-MgServicePrincipalOwnerAsAppRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalOwnerAsEndpoint_Get.g.cs","v1.0","Get-MgServicePrincipalOwnerAsEndpoint","GET","/servicePrincipals/{param}/owners/{param}/endpoint","matched","Get-MgServicePrincipalOwnerAsEndpoint" +"Cmdlets","GetMgServicePrincipalOwnerAsEndpoint_List.g.cs","v1.0","Get-MgServicePrincipalOwnerAsEndpoint","GET","/servicePrincipals/{param}/owners/endpoint","matched","Get-MgServicePrincipalOwnerAsEndpoint" +"Cmdlets","GetMgServicePrincipalOwnerAsEndpoint.g.cs","v1.0","Get-MgServicePrincipalOwnerAsEndpoint","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalOwnerAsServicePrincipal_Get.g.cs","v1.0","Get-MgServicePrincipalOwnerAsServicePrincipal","GET","/servicePrincipals/{param}/owners/{param}/servicePrincipal","matched","Get-MgServicePrincipalOwnerAsServicePrincipal" +"Cmdlets","GetMgServicePrincipalOwnerAsServicePrincipal_List.g.cs","v1.0","Get-MgServicePrincipalOwnerAsServicePrincipal","GET","/servicePrincipals/{param}/owners/servicePrincipal","matched","Get-MgServicePrincipalOwnerAsServicePrincipal" +"Cmdlets","GetMgServicePrincipalOwnerAsServicePrincipal.g.cs","v1.0","Get-MgServicePrincipalOwnerAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalOwnerAsUser_Get.g.cs","v1.0","Get-MgServicePrincipalOwnerAsUser","GET","/servicePrincipals/{param}/owners/{param}/user","matched","Get-MgServicePrincipalOwnerAsUser" +"Cmdlets","GetMgServicePrincipalOwnerAsUser_List.g.cs","v1.0","Get-MgServicePrincipalOwnerAsUser","GET","/servicePrincipals/{param}/owners/user","matched","Get-MgServicePrincipalOwnerAsUser" +"Cmdlets","GetMgServicePrincipalOwnerAsUser.g.cs","v1.0","Get-MgServicePrincipalOwnerAsUser","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalOwnerByRef.g.cs","v1.0","Get-MgServicePrincipalOwnerByRef","GET","/servicePrincipals/{param}/owners/$ref","matched","Get-MgServicePrincipalOwnerByRef" +"Cmdlets","GetMgServicePrincipalOwnerCount.g.cs","v1.0","Get-MgServicePrincipalOwnerCount","GET","/servicePrincipals/{param}/owners/$count","matched","Get-MgServicePrincipalOwnerCount" +"Cmdlets","GetMgServicePrincipalOwnerCountAsAppRoleAssignment.g.cs","v1.0","Get-MgServicePrincipalOwnerCountAsAppRoleAssignment","GET","/servicePrincipals/{param}/owners/appRoleAssignment/$count","matched","Get-MgServicePrincipalOwnerCountAsAppRoleAssignment" +"Cmdlets","GetMgServicePrincipalOwnerCountAsEndpoint.g.cs","v1.0","Get-MgServicePrincipalOwnerCountAsEndpoint","GET","/servicePrincipals/{param}/owners/endpoint/$count","matched","Get-MgServicePrincipalOwnerCountAsEndpoint" +"Cmdlets","GetMgServicePrincipalOwnerCountAsServicePrincipal.g.cs","v1.0","Get-MgServicePrincipalOwnerCountAsServicePrincipal","GET","/servicePrincipals/{param}/owners/servicePrincipal/$count","matched","Get-MgServicePrincipalOwnerCountAsServicePrincipal" +"Cmdlets","GetMgServicePrincipalOwnerCountAsUser.g.cs","v1.0","Get-MgServicePrincipalOwnerCountAsUser","GET","/servicePrincipals/{param}/owners/user/$count","matched","Get-MgServicePrincipalOwnerCountAsUser" +"Cmdlets","GetMgServicePrincipalRemoteDesktopSecurityConfiguration.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfiguration","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfiguration" +"Cmdlets","GetMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp_Get.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps/{param}","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"Cmdlets","GetMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp_List.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"Cmdlets","GetMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps/$count","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount" +"Cmdlets","GetMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup_Get.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{param}","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"Cmdlets","GetMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup_List.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"Cmdlets","GetMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups/$count","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount" +"Cmdlets","GetMgServicePrincipalSynchronization.g.cs","v1.0","Get-MgServicePrincipalSynchronization","GET","/servicePrincipals/{param}/synchronization","matched","Get-MgServicePrincipalSynchronization" +"Cmdlets","GetMgServicePrincipalSynchronizationJob_Get.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJob","GET","/servicePrincipals/{param}/synchronization/jobs/{param}","matched","Get-MgServicePrincipalSynchronizationJob" +"Cmdlets","GetMgServicePrincipalSynchronizationJob_List.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJob","GET","/servicePrincipals/{param}/synchronization/jobs","matched","Get-MgServicePrincipalSynchronizationJob" +"Cmdlets","GetMgServicePrincipalSynchronizationJob.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJob","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalSynchronizationJobBulkUpload.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobBulkUpload","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload","matched","Get-MgServicePrincipalSynchronizationJobBulkUpload" +"Cmdlets","GetMgServicePrincipalSynchronizationJobBulkUploadContent.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobBulkUploadContent","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload/$value","matched","Get-MgServicePrincipalSynchronizationJobBulkUploadContent" +"Cmdlets","GetMgServicePrincipalSynchronizationJobCount.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobCount","GET","/servicePrincipals/{param}/synchronization/jobs/$count","matched","Get-MgServicePrincipalSynchronizationJobCount" +"Cmdlets","GetMgServicePrincipalSynchronizationJobSchema.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchema","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema","matched","Get-MgServicePrincipalSynchronizationJobSchema" +"Cmdlets","GetMgServicePrincipalSynchronizationJobSchemaDirectory_Get.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchemaDirectory","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/{param}","matched","Get-MgServicePrincipalSynchronizationJobSchemaDirectory" +"Cmdlets","GetMgServicePrincipalSynchronizationJobSchemaDirectory_List.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchemaDirectory","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories","matched","Get-MgServicePrincipalSynchronizationJobSchemaDirectory" +"Cmdlets","GetMgServicePrincipalSynchronizationJobSchemaDirectory.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchemaDirectory","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalSynchronizationJobSchemaDirectoryCount.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/$count","matched","Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount" +"Cmdlets","GetMgServicePrincipalSynchronizationJobSchemaFilterOperators.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchemaFilterOperators","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/filterOperators","mismatch","Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator" +"Cmdlets","GetMgServicePrincipalSynchronizationJobSchemaFunctions.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchemaFunctions","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/functions","mismatch","Invoke-MgFunctionServicePrincipalSynchronizationJobSchema" +"Cmdlets","GetMgServicePrincipalSynchronizationSecretCount.g.cs","v1.0","Get-MgServicePrincipalSynchronizationSecretCount","GET","/servicePrincipals/{param}/synchronization/secrets/$count","matched","Get-MgServicePrincipalSynchronizationSecretCount" +"Cmdlets","GetMgServicePrincipalSynchronizationTemplate_Get.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplate","GET","/servicePrincipals/{param}/synchronization/templates/{param}","matched","Get-MgServicePrincipalSynchronizationTemplate" +"Cmdlets","GetMgServicePrincipalSynchronizationTemplate_List.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplate","GET","/servicePrincipals/{param}/synchronization/templates","matched","Get-MgServicePrincipalSynchronizationTemplate" +"Cmdlets","GetMgServicePrincipalSynchronizationTemplate.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplate","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalSynchronizationTemplateCount.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateCount","GET","/servicePrincipals/{param}/synchronization/templates/$count","matched","Get-MgServicePrincipalSynchronizationTemplateCount" +"Cmdlets","GetMgServicePrincipalSynchronizationTemplateSchema.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchema","GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema","matched","Get-MgServicePrincipalSynchronizationTemplateSchema" +"Cmdlets","GetMgServicePrincipalSynchronizationTemplateSchemaDirectory_Get.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory","GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/{param}","matched","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"Cmdlets","GetMgServicePrincipalSynchronizationTemplateSchemaDirectory_List.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory","GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories","matched","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"Cmdlets","GetMgServicePrincipalSynchronizationTemplateSchemaDirectory.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalSynchronizationTemplateSchemaDirectoryCount.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount","GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/$count","matched","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount" +"Cmdlets","GetMgServicePrincipalSynchronizationTemplateSchemaFilterOperators.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchemaFilterOperators","GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/filterOperators","mismatch","Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator" +"Cmdlets","GetMgServicePrincipalSynchronizationTemplateSchemaFunctions.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchemaFunctions","GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/functions","mismatch","Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema" +"Cmdlets","GetMgServicePrincipalTokenIssuancePolicy.g.cs","v1.0","Get-MgServicePrincipalTokenIssuancePolicy","GET","/servicePrincipals/{param}/tokenIssuancePolicies","matched","Get-MgServicePrincipalTokenIssuancePolicy" +"Cmdlets","GetMgServicePrincipalTokenIssuancePolicyByRef.g.cs","v1.0","Get-MgServicePrincipalTokenIssuancePolicyByRef","GET","/servicePrincipals/{param}/tokenIssuancePolicies/$ref","matched","Get-MgServicePrincipalTokenIssuancePolicyByRef" +"Cmdlets","GetMgServicePrincipalTokenIssuancePolicyCount.g.cs","v1.0","Get-MgServicePrincipalTokenIssuancePolicyCount","GET","/servicePrincipals/{param}/tokenIssuancePolicies/$count","matched","Get-MgServicePrincipalTokenIssuancePolicyCount" +"Cmdlets","GetMgServicePrincipalTokenLifetimePolicy.g.cs","v1.0","Get-MgServicePrincipalTokenLifetimePolicy","GET","/servicePrincipals/{param}/tokenLifetimePolicies","matched","Get-MgServicePrincipalTokenLifetimePolicy" +"Cmdlets","GetMgServicePrincipalTokenLifetimePolicyByRef.g.cs","v1.0","Get-MgServicePrincipalTokenLifetimePolicyByRef","GET","/servicePrincipals/{param}/tokenLifetimePolicies/$ref","matched","Get-MgServicePrincipalTokenLifetimePolicyByRef" +"Cmdlets","GetMgServicePrincipalTokenLifetimePolicyCount.g.cs","v1.0","Get-MgServicePrincipalTokenLifetimePolicyCount","GET","/servicePrincipals/{param}/tokenLifetimePolicies/$count","matched","Get-MgServicePrincipalTokenLifetimePolicyCount" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOf_Get.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOf","GET","/servicePrincipals/{param}/transitiveMemberOf/{param}","matched","Get-MgServicePrincipalTransitiveMemberOf" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOf_List.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOf","GET","/servicePrincipals/{param}/transitiveMemberOf","matched","Get-MgServicePrincipalTransitiveMemberOf" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOf.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOf","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit","GET","/servicePrincipals/{param}/transitiveMemberOf/{param}/administrativeUnit","matched","Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit","GET","/servicePrincipals/{param}/transitiveMemberOf/administrativeUnit","matched","Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfAsDirectoryRole_Get.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole","GET","/servicePrincipals/{param}/transitiveMemberOf/{param}/directoryRole","matched","Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfAsDirectoryRole_List.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole","GET","/servicePrincipals/{param}/transitiveMemberOf/directoryRole","matched","Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfAsDirectoryRole.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfAsGroup_Get.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsGroup","GET","/servicePrincipals/{param}/transitiveMemberOf/{param}/group","matched","Get-MgServicePrincipalTransitiveMemberOfAsGroup" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfAsGroup_List.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsGroup","GET","/servicePrincipals/{param}/transitiveMemberOf/group","matched","Get-MgServicePrincipalTransitiveMemberOfAsGroup" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfAsGroup.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsGroup","","","dispatcher","" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfCount.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfCount","GET","/servicePrincipals/{param}/transitiveMemberOf/$count","matched","Get-MgServicePrincipalTransitiveMemberOfCount" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit","GET","/servicePrincipals/{param}/transitiveMemberOf/administrativeUnit/$count","matched","Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfCountAsDirectoryRole.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole","GET","/servicePrincipals/{param}/transitiveMemberOf/directoryRole/$count","matched","Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole" +"Cmdlets","GetMgServicePrincipalTransitiveMemberOfCountAsGroup.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfCountAsGroup","GET","/servicePrincipals/{param}/transitiveMemberOf/group/$count","matched","Get-MgServicePrincipalTransitiveMemberOfCountAsGroup" +"Cmdlets","GetMgUserAppRoleAssignment_Get.g.cs","v1.0","Get-MgUserAppRoleAssignment","GET","/users/{param}/appRoleAssignments/{param}","matched","Get-MgUserAppRoleAssignment" +"Cmdlets","GetMgUserAppRoleAssignment_List.g.cs","v1.0","Get-MgUserAppRoleAssignment","GET","/users/{param}/appRoleAssignments","matched","Get-MgUserAppRoleAssignment" +"Cmdlets","GetMgUserAppRoleAssignment.g.cs","v1.0","Get-MgUserAppRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgUserAppRoleAssignmentCount.g.cs","v1.0","Get-MgUserAppRoleAssignmentCount","GET","/users/{param}/appRoleAssignments/$count","matched","Get-MgUserAppRoleAssignmentCount" +"Cmdlets","InvokeMgApplicationAddKey.g.cs","v1.0","Invoke-MgApplicationAddKey","POST","/applications/{param}/addKey","mismatch","Add-MgApplicationKey" +"Cmdlets","InvokeMgApplicationAddPassword.g.cs","v1.0","Invoke-MgApplicationAddPassword","POST","/applications/{param}/addPassword","mismatch","Add-MgApplicationPassword" +"Cmdlets","InvokeMgApplicationCheckMemberGroups.g.cs","v1.0","Invoke-MgApplicationCheckMemberGroups","POST","/applications/{param}/checkMemberGroups","mismatch","Confirm-MgApplicationMemberGroup" +"Cmdlets","InvokeMgApplicationCheckMemberObjects.g.cs","v1.0","Invoke-MgApplicationCheckMemberObjects","POST","/applications/{param}/checkMemberObjects","mismatch","Confirm-MgApplicationMemberObject" +"Cmdlets","InvokeMgApplicationGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgApplicationGetAvailableExtensionProperties","POST","/applications/getAvailableExtensionProperties","no-oracle","" +"Cmdlets","InvokeMgApplicationGetByIds.g.cs","v1.0","Invoke-MgApplicationGetByIds","POST","/applications/getByIds","mismatch","Get-MgApplicationById" +"Cmdlets","InvokeMgApplicationGetMemberGroups.g.cs","v1.0","Invoke-MgApplicationGetMemberGroups","POST","/applications/{param}/getMemberGroups","mismatch","Get-MgApplicationMemberGroup" +"Cmdlets","InvokeMgApplicationGetMemberObjects.g.cs","v1.0","Invoke-MgApplicationGetMemberObjects","POST","/applications/{param}/getMemberObjects","mismatch","Get-MgApplicationMemberObject" +"Cmdlets","InvokeMgApplicationRemoveKey.g.cs","v1.0","Invoke-MgApplicationRemoveKey","POST","/applications/{param}/removeKey","mismatch","Remove-MgApplicationKey" +"Cmdlets","InvokeMgApplicationRemovePassword.g.cs","v1.0","Invoke-MgApplicationRemovePassword","POST","/applications/{param}/removePassword","mismatch","Remove-MgApplicationPassword" +"Cmdlets","InvokeMgApplicationRestore.g.cs","v1.0","Invoke-MgApplicationRestore","POST","/applications/{param}/restore","no-oracle","" +"Cmdlets","InvokeMgApplicationSetVerifiedPublisher.g.cs","v1.0","Invoke-MgApplicationSetVerifiedPublisher","POST","/applications/{param}/setVerifiedPublisher","mismatch","Set-MgApplicationVerifiedPublisher" +"Cmdlets","InvokeMgApplicationSynchronizationAcquireAccessToken.g.cs","v1.0","Invoke-MgApplicationSynchronizationAcquireAccessToken","POST","/applications/{param}/synchronization/acquireAccessToken","mismatch","Get-MgApplicationSynchronizationAccessToken" +"Cmdlets","InvokeMgApplicationSynchronizationJobPause.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobPause","POST","/applications/{param}/synchronization/jobs/{param}/pause","mismatch","Suspend-MgApplicationSynchronizationJob" +"Cmdlets","InvokeMgApplicationSynchronizationJobProvisionOnDemand.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobProvisionOnDemand","POST","/applications/{param}/synchronization/jobs/{param}/provisionOnDemand","mismatch","New-MgApplicationSynchronizationJobOnDemand" +"Cmdlets","InvokeMgApplicationSynchronizationJobRestart.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobRestart","POST","/applications/{param}/synchronization/jobs/{param}/restart","mismatch","Restart-MgApplicationSynchronizationJob" +"Cmdlets","InvokeMgApplicationSynchronizationJobSchemaDirectoryDiscover.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobSchemaDirectoryDiscover","POST","/applications/{param}/synchronization/jobs/{param}/schema/directories/{param}/discover","mismatch","Find-MgApplicationSynchronizationJobSchemaDirectory" +"Cmdlets","InvokeMgApplicationSynchronizationJobSchemaParseExpression.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobSchemaParseExpression","POST","/applications/{param}/synchronization/jobs/{param}/schema/parseExpression","mismatch","Invoke-MgParseApplicationSynchronizationJobSchemaExpression" +"Cmdlets","InvokeMgApplicationSynchronizationJobStart.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobStart","POST","/applications/{param}/synchronization/jobs/{param}/start","mismatch","Start-MgApplicationSynchronizationJob" +"Cmdlets","InvokeMgApplicationSynchronizationJobValidateCredentials.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobValidateCredentials","POST","/applications/{param}/synchronization/jobs/{param}/validateCredentials","mismatch","Test-MgApplicationSynchronizationJobCredential" +"Cmdlets","InvokeMgApplicationSynchronizationTemplateSchemaDirectoryDiscover.g.cs","v1.0","Invoke-MgApplicationSynchronizationTemplateSchemaDirectoryDiscover","POST","/applications/{param}/synchronization/templates/{param}/schema/directories/{param}/discover","mismatch","Find-MgApplicationSynchronizationTemplateSchemaDirectory" +"Cmdlets","InvokeMgApplicationSynchronizationTemplateSchemaParseExpression.g.cs","v1.0","Invoke-MgApplicationSynchronizationTemplateSchemaParseExpression","POST","/applications/{param}/synchronization/templates/{param}/schema/parseExpression","mismatch","Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression" +"Cmdlets","InvokeMgApplicationTemplateInstantiate.g.cs","v1.0","Invoke-MgApplicationTemplateInstantiate","POST","/applicationTemplates/{param}/instantiate","mismatch","Invoke-MgInstantiateApplicationTemplate" +"Cmdlets","InvokeMgApplicationUnsetVerifiedPublisher.g.cs","v1.0","Invoke-MgApplicationUnsetVerifiedPublisher","POST","/applications/{param}/unsetVerifiedPublisher","mismatch","Clear-MgApplicationVerifiedPublisher" +"Cmdlets","InvokeMgApplicationValidateProperties.g.cs","v1.0","Invoke-MgApplicationValidateProperties","POST","/applications/validateProperties","mismatch","Test-MgApplicationProperty" +"Cmdlets","InvokeMgServicePrincipalAddKey.g.cs","v1.0","Invoke-MgServicePrincipalAddKey","POST","/servicePrincipals/{param}/addKey","mismatch","Add-MgServicePrincipalKey" +"Cmdlets","InvokeMgServicePrincipalAddPassword.g.cs","v1.0","Invoke-MgServicePrincipalAddPassword","POST","/servicePrincipals/{param}/addPassword","mismatch","Add-MgServicePrincipalPassword" +"Cmdlets","InvokeMgServicePrincipalAddTokenSigningCertificate.g.cs","v1.0","Invoke-MgServicePrincipalAddTokenSigningCertificate","POST","/servicePrincipals/{param}/addTokenSigningCertificate","mismatch","Add-MgServicePrincipalTokenSigningCertificate" +"Cmdlets","InvokeMgServicePrincipalCheckMemberGroups.g.cs","v1.0","Invoke-MgServicePrincipalCheckMemberGroups","POST","/servicePrincipals/{param}/checkMemberGroups","mismatch","Confirm-MgServicePrincipalMemberGroup" +"Cmdlets","InvokeMgServicePrincipalCheckMemberObjects.g.cs","v1.0","Invoke-MgServicePrincipalCheckMemberObjects","POST","/servicePrincipals/{param}/checkMemberObjects","mismatch","Confirm-MgServicePrincipalMemberObject" +"Cmdlets","InvokeMgServicePrincipalGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgServicePrincipalGetAvailableExtensionProperties","POST","/servicePrincipals/getAvailableExtensionProperties","no-oracle","" +"Cmdlets","InvokeMgServicePrincipalGetByIds.g.cs","v1.0","Invoke-MgServicePrincipalGetByIds","POST","/servicePrincipals/getByIds","mismatch","Get-MgServicePrincipalById" +"Cmdlets","InvokeMgServicePrincipalGetMemberGroups.g.cs","v1.0","Invoke-MgServicePrincipalGetMemberGroups","POST","/servicePrincipals/{param}/getMemberGroups","mismatch","Get-MgServicePrincipalMemberGroup" +"Cmdlets","InvokeMgServicePrincipalGetMemberObjects.g.cs","v1.0","Invoke-MgServicePrincipalGetMemberObjects","POST","/servicePrincipals/{param}/getMemberObjects","mismatch","Get-MgServicePrincipalMemberObject" +"Cmdlets","InvokeMgServicePrincipalRemoveKey.g.cs","v1.0","Invoke-MgServicePrincipalRemoveKey","POST","/servicePrincipals/{param}/removeKey","mismatch","Remove-MgServicePrincipalKey" +"Cmdlets","InvokeMgServicePrincipalRemovePassword.g.cs","v1.0","Invoke-MgServicePrincipalRemovePassword","POST","/servicePrincipals/{param}/removePassword","mismatch","Remove-MgServicePrincipalPassword" +"Cmdlets","InvokeMgServicePrincipalRestore.g.cs","v1.0","Invoke-MgServicePrincipalRestore","POST","/servicePrincipals/{param}/restore","no-oracle","" +"Cmdlets","InvokeMgServicePrincipalSynchronizationAcquireAccessToken.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationAcquireAccessToken","POST","/servicePrincipals/{param}/synchronization/acquireAccessToken","mismatch","Get-MgServicePrincipalSynchronizationAccessToken" +"Cmdlets","InvokeMgServicePrincipalSynchronizationJobPause.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobPause","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/pause","mismatch","Suspend-MgServicePrincipalSynchronizationJob" +"Cmdlets","InvokeMgServicePrincipalSynchronizationJobProvisionOnDemand.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobProvisionOnDemand","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/provisionOnDemand","mismatch","New-MgServicePrincipalSynchronizationJobOnDemand" +"Cmdlets","InvokeMgServicePrincipalSynchronizationJobRestart.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobRestart","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/restart","mismatch","Restart-MgServicePrincipalSynchronizationJob" +"Cmdlets","InvokeMgServicePrincipalSynchronizationJobSchemaDirectoryDiscover.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobSchemaDirectoryDiscover","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/{param}/discover","mismatch","Find-MgServicePrincipalSynchronizationJobSchemaDirectory" +"Cmdlets","InvokeMgServicePrincipalSynchronizationJobSchemaParseExpression.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobSchemaParseExpression","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/parseExpression","mismatch","Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression" +"Cmdlets","InvokeMgServicePrincipalSynchronizationJobStart.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobStart","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/start","mismatch","Start-MgServicePrincipalSynchronizationJob" +"Cmdlets","InvokeMgServicePrincipalSynchronizationJobValidateCredentials.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobValidateCredentials","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/validateCredentials","mismatch","Test-MgServicePrincipalSynchronizationJobCredential" +"Cmdlets","InvokeMgServicePrincipalSynchronizationTemplateSchemaDirectoryDiscover.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationTemplateSchemaDirectoryDiscover","POST","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/{param}/discover","mismatch","Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"Cmdlets","InvokeMgServicePrincipalSynchronizationTemplateSchemaParseExpression.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationTemplateSchemaParseExpression","POST","/servicePrincipals/{param}/synchronization/templates/{param}/schema/parseExpression","mismatch","Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression" +"Cmdlets","InvokeMgServicePrincipalValidateProperties.g.cs","v1.0","Invoke-MgServicePrincipalValidateProperties","POST","/servicePrincipals/validateProperties","mismatch","Test-MgServicePrincipalProperty" +"Cmdlets","NewMgApplication.g.cs","v1.0","New-MgApplication","POST","/applications","matched","New-MgApplication" +"Cmdlets","NewMgApplicationAppManagementPolicyByRef.g.cs","v1.0","New-MgApplicationAppManagementPolicyByRef","POST","/applications/{param}/appManagementPolicies/$ref","matched","New-MgApplicationAppManagementPolicyByRef" +"Cmdlets","NewMgApplicationExtensionProperty.g.cs","v1.0","New-MgApplicationExtensionProperty","POST","/applications/{param}/extensionProperties","matched","New-MgApplicationExtensionProperty" +"Cmdlets","NewMgApplicationFederatedIdentityCredential.g.cs","v1.0","New-MgApplicationFederatedIdentityCredential","POST","/applications/{param}/federatedIdentityCredentials","matched","New-MgApplicationFederatedIdentityCredential" +"Cmdlets","NewMgApplicationOwnerByRef.g.cs","v1.0","New-MgApplicationOwnerByRef","POST","/applications/{param}/owners/$ref","matched","New-MgApplicationOwnerByRef" +"Cmdlets","NewMgApplicationSynchronizationJob.g.cs","v1.0","New-MgApplicationSynchronizationJob","POST","/applications/{param}/synchronization/jobs","matched","New-MgApplicationSynchronizationJob" +"Cmdlets","NewMgApplicationSynchronizationJobSchemaDirectory.g.cs","v1.0","New-MgApplicationSynchronizationJobSchemaDirectory","POST","/applications/{param}/synchronization/jobs/{param}/schema/directories","matched","New-MgApplicationSynchronizationJobSchemaDirectory" +"Cmdlets","NewMgApplicationSynchronizationTemplate.g.cs","v1.0","New-MgApplicationSynchronizationTemplate","POST","/applications/{param}/synchronization/templates","matched","New-MgApplicationSynchronizationTemplate" +"Cmdlets","NewMgApplicationSynchronizationTemplateSchemaDirectory.g.cs","v1.0","New-MgApplicationSynchronizationTemplateSchemaDirectory","POST","/applications/{param}/synchronization/templates/{param}/schema/directories","matched","New-MgApplicationSynchronizationTemplateSchemaDirectory" +"Cmdlets","NewMgApplicationTokenIssuancePolicyByRef.g.cs","v1.0","New-MgApplicationTokenIssuancePolicyByRef","POST","/applications/{param}/tokenIssuancePolicies/$ref","matched","New-MgApplicationTokenIssuancePolicyByRef" +"Cmdlets","NewMgApplicationTokenLifetimePolicyByRef.g.cs","v1.0","New-MgApplicationTokenLifetimePolicyByRef","POST","/applications/{param}/tokenLifetimePolicies/$ref","matched","New-MgApplicationTokenLifetimePolicyByRef" +"Cmdlets","NewMgGroupAppRoleAssignment.g.cs","v1.0","New-MgGroupAppRoleAssignment","POST","/groups/{param}/appRoleAssignments","matched","New-MgGroupAppRoleAssignment" +"Cmdlets","NewMgServicePrincipal.g.cs","v1.0","New-MgServicePrincipal","POST","/servicePrincipals","matched","New-MgServicePrincipal" +"Cmdlets","NewMgServicePrincipalAppRoleAssignedTo.g.cs","v1.0","New-MgServicePrincipalAppRoleAssignedTo","POST","/servicePrincipals/{param}/appRoleAssignedTo","matched","New-MgServicePrincipalAppRoleAssignedTo" +"Cmdlets","NewMgServicePrincipalAppRoleAssignment.g.cs","v1.0","New-MgServicePrincipalAppRoleAssignment","POST","/servicePrincipals/{param}/appRoleAssignments","matched","New-MgServicePrincipalAppRoleAssignment" +"Cmdlets","NewMgServicePrincipalClaimMappingPolicyByRef.g.cs","v1.0","New-MgServicePrincipalClaimMappingPolicyByRef","POST","/servicePrincipals/{param}/claimsMappingPolicies/$ref","matched","New-MgServicePrincipalClaimMappingPolicyByRef" +"Cmdlets","NewMgServicePrincipalDelegatedPermissionClassification.g.cs","v1.0","New-MgServicePrincipalDelegatedPermissionClassification","POST","/servicePrincipals/{param}/delegatedPermissionClassifications","matched","New-MgServicePrincipalDelegatedPermissionClassification" +"Cmdlets","NewMgServicePrincipalEndpoint.g.cs","v1.0","New-MgServicePrincipalEndpoint","POST","/servicePrincipals/{param}/endpoints","matched","New-MgServicePrincipalEndpoint" +"Cmdlets","NewMgServicePrincipalFederatedIdentityCredential.g.cs","v1.0","New-MgServicePrincipalFederatedIdentityCredential","POST","/servicePrincipals/{param}/federatedIdentityCredentials","no-oracle","" +"Cmdlets","NewMgServicePrincipalHomeRealmDiscoveryPolicyByRef.g.cs","v1.0","New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef","POST","/servicePrincipals/{param}/homeRealmDiscoveryPolicies/$ref","matched","New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef" +"Cmdlets","NewMgServicePrincipalOwnerByRef.g.cs","v1.0","New-MgServicePrincipalOwnerByRef","POST","/servicePrincipals/{param}/owners/$ref","matched","New-MgServicePrincipalOwnerByRef" +"Cmdlets","NewMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.g.cs","v1.0","New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","POST","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps","matched","New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"Cmdlets","NewMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.g.cs","v1.0","New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","POST","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups","matched","New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"Cmdlets","NewMgServicePrincipalSynchronizationJob.g.cs","v1.0","New-MgServicePrincipalSynchronizationJob","POST","/servicePrincipals/{param}/synchronization/jobs","matched","New-MgServicePrincipalSynchronizationJob" +"Cmdlets","NewMgServicePrincipalSynchronizationJobSchemaDirectory.g.cs","v1.0","New-MgServicePrincipalSynchronizationJobSchemaDirectory","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories","matched","New-MgServicePrincipalSynchronizationJobSchemaDirectory" +"Cmdlets","NewMgServicePrincipalSynchronizationTemplate.g.cs","v1.0","New-MgServicePrincipalSynchronizationTemplate","POST","/servicePrincipals/{param}/synchronization/templates","matched","New-MgServicePrincipalSynchronizationTemplate" +"Cmdlets","NewMgServicePrincipalSynchronizationTemplateSchemaDirectory.g.cs","v1.0","New-MgServicePrincipalSynchronizationTemplateSchemaDirectory","POST","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories","matched","New-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"Cmdlets","NewMgServicePrincipalTokenIssuancePolicyByRef.g.cs","v1.0","New-MgServicePrincipalTokenIssuancePolicyByRef","POST","/servicePrincipals/{param}/tokenIssuancePolicies/$ref","matched","New-MgServicePrincipalTokenIssuancePolicyByRef" +"Cmdlets","NewMgServicePrincipalTokenLifetimePolicyByRef.g.cs","v1.0","New-MgServicePrincipalTokenLifetimePolicyByRef","POST","/servicePrincipals/{param}/tokenLifetimePolicies/$ref","matched","New-MgServicePrincipalTokenLifetimePolicyByRef" +"Cmdlets","NewMgUserAppRoleAssignment.g.cs","v1.0","New-MgUserAppRoleAssignment","POST","/users/{param}/appRoleAssignments","matched","New-MgUserAppRoleAssignment" +"Cmdlets","RemoveMgApplication.g.cs","v1.0","Remove-MgApplication","DELETE","/applications/{param}","matched","Remove-MgApplication" +"Cmdlets","RemoveMgApplicationAppManagementPolicyByRef.g.cs","v1.0","Remove-MgApplicationAppManagementPolicyByRef","DELETE","/applications/{param}/appManagementPolicies/{param}/$ref","mismatch","Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef" +"Cmdlets","RemoveMgApplicationExtensionProperty.g.cs","v1.0","Remove-MgApplicationExtensionProperty","DELETE","/applications/{param}/extensionProperties/{param}","matched","Remove-MgApplicationExtensionProperty" +"Cmdlets","RemoveMgApplicationFederatedIdentityCredential.g.cs","v1.0","Remove-MgApplicationFederatedIdentityCredential","DELETE","/applications/{param}/federatedIdentityCredentials/{param}","matched","Remove-MgApplicationFederatedIdentityCredential" +"Cmdlets","RemoveMgApplicationLogo.g.cs","v1.0","Remove-MgApplicationLogo","DELETE","/applications/{param}/logo","matched","Remove-MgApplicationLogo" +"Cmdlets","RemoveMgApplicationOwnerByRef.g.cs","v1.0","Remove-MgApplicationOwnerByRef","DELETE","/applications/{param}/owners/{param}/$ref","mismatch","Remove-MgApplicationOwnerDirectoryObjectByRef" +"Cmdlets","RemoveMgApplicationSynchronization.g.cs","v1.0","Remove-MgApplicationSynchronization","DELETE","/applications/{param}/synchronization","matched","Remove-MgApplicationSynchronization" +"Cmdlets","RemoveMgApplicationSynchronizationJob.g.cs","v1.0","Remove-MgApplicationSynchronizationJob","DELETE","/applications/{param}/synchronization/jobs/{param}","matched","Remove-MgApplicationSynchronizationJob" +"Cmdlets","RemoveMgApplicationSynchronizationJobBulkUpload.g.cs","v1.0","Remove-MgApplicationSynchronizationJobBulkUpload","DELETE","/applications/{param}/synchronization/jobs/{param}/bulkUpload","matched","Remove-MgApplicationSynchronizationJobBulkUpload" +"Cmdlets","RemoveMgApplicationSynchronizationJobBulkUploadContent.g.cs","v1.0","Remove-MgApplicationSynchronizationJobBulkUploadContent","DELETE","/applications/{param}/synchronization/jobs/{param}/bulkUpload/$value","matched","Remove-MgApplicationSynchronizationJobBulkUploadContent" +"Cmdlets","RemoveMgApplicationSynchronizationJobSchema.g.cs","v1.0","Remove-MgApplicationSynchronizationJobSchema","DELETE","/applications/{param}/synchronization/jobs/{param}/schema","matched","Remove-MgApplicationSynchronizationJobSchema" +"Cmdlets","RemoveMgApplicationSynchronizationJobSchemaDirectory.g.cs","v1.0","Remove-MgApplicationSynchronizationJobSchemaDirectory","DELETE","/applications/{param}/synchronization/jobs/{param}/schema/directories/{param}","matched","Remove-MgApplicationSynchronizationJobSchemaDirectory" +"Cmdlets","RemoveMgApplicationSynchronizationTemplate.g.cs","v1.0","Remove-MgApplicationSynchronizationTemplate","DELETE","/applications/{param}/synchronization/templates/{param}","matched","Remove-MgApplicationSynchronizationTemplate" +"Cmdlets","RemoveMgApplicationSynchronizationTemplateSchema.g.cs","v1.0","Remove-MgApplicationSynchronizationTemplateSchema","DELETE","/applications/{param}/synchronization/templates/{param}/schema","matched","Remove-MgApplicationSynchronizationTemplateSchema" +"Cmdlets","RemoveMgApplicationSynchronizationTemplateSchemaDirectory.g.cs","v1.0","Remove-MgApplicationSynchronizationTemplateSchemaDirectory","DELETE","/applications/{param}/synchronization/templates/{param}/schema/directories/{param}","matched","Remove-MgApplicationSynchronizationTemplateSchemaDirectory" +"Cmdlets","RemoveMgApplicationTokenIssuancePolicyByRef.g.cs","v1.0","Remove-MgApplicationTokenIssuancePolicyByRef","DELETE","/applications/{param}/tokenIssuancePolicies/{param}/$ref","mismatch","Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef" +"Cmdlets","RemoveMgApplicationTokenLifetimePolicyByRef.g.cs","v1.0","Remove-MgApplicationTokenLifetimePolicyByRef","DELETE","/applications/{param}/tokenLifetimePolicies/{param}/$ref","mismatch","Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef" +"Cmdlets","RemoveMgGroupAppRoleAssignment.g.cs","v1.0","Remove-MgGroupAppRoleAssignment","DELETE","/groups/{param}/appRoleAssignments/{param}","matched","Remove-MgGroupAppRoleAssignment" +"Cmdlets","RemoveMgServicePrincipal.g.cs","v1.0","Remove-MgServicePrincipal","DELETE","/servicePrincipals/{param}","matched","Remove-MgServicePrincipal" +"Cmdlets","RemoveMgServicePrincipalAppRoleAssignedTo.g.cs","v1.0","Remove-MgServicePrincipalAppRoleAssignedTo","DELETE","/servicePrincipals/{param}/appRoleAssignedTo/{param}","matched","Remove-MgServicePrincipalAppRoleAssignedTo" +"Cmdlets","RemoveMgServicePrincipalAppRoleAssignment.g.cs","v1.0","Remove-MgServicePrincipalAppRoleAssignment","DELETE","/servicePrincipals/{param}/appRoleAssignments/{param}","matched","Remove-MgServicePrincipalAppRoleAssignment" +"Cmdlets","RemoveMgServicePrincipalClaimMappingPolicyByRef.g.cs","v1.0","Remove-MgServicePrincipalClaimMappingPolicyByRef","DELETE","/servicePrincipals/{param}/claimsMappingPolicies/{param}/$ref","mismatch","Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef" +"Cmdlets","RemoveMgServicePrincipalDelegatedPermissionClassification.g.cs","v1.0","Remove-MgServicePrincipalDelegatedPermissionClassification","DELETE","/servicePrincipals/{param}/delegatedPermissionClassifications/{param}","matched","Remove-MgServicePrincipalDelegatedPermissionClassification" +"Cmdlets","RemoveMgServicePrincipalEndpoint.g.cs","v1.0","Remove-MgServicePrincipalEndpoint","DELETE","/servicePrincipals/{param}/endpoints/{param}","matched","Remove-MgServicePrincipalEndpoint" +"Cmdlets","RemoveMgServicePrincipalFederatedIdentityCredential.g.cs","v1.0","Remove-MgServicePrincipalFederatedIdentityCredential","DELETE","/servicePrincipals/{param}/federatedIdentityCredentials/{param}","no-oracle","" +"Cmdlets","RemoveMgServicePrincipalHomeRealmDiscoveryPolicyByRef.g.cs","v1.0","Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef","DELETE","/servicePrincipals/{param}/homeRealmDiscoveryPolicies/{param}/$ref","mismatch","Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef" +"Cmdlets","RemoveMgServicePrincipalOwnerByRef.g.cs","v1.0","Remove-MgServicePrincipalOwnerByRef","DELETE","/servicePrincipals/{param}/owners/{param}/$ref","mismatch","Remove-MgServicePrincipalOwnerDirectoryObjectByRef" +"Cmdlets","RemoveMgServicePrincipalRemoteDesktopSecurityConfiguration.g.cs","v1.0","Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration","DELETE","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration","matched","Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration" +"Cmdlets","RemoveMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.g.cs","v1.0","Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","DELETE","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps/{param}","matched","Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"Cmdlets","RemoveMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.g.cs","v1.0","Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","DELETE","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{param}","matched","Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"Cmdlets","RemoveMgServicePrincipalSynchronization.g.cs","v1.0","Remove-MgServicePrincipalSynchronization","DELETE","/servicePrincipals/{param}/synchronization","matched","Remove-MgServicePrincipalSynchronization" +"Cmdlets","RemoveMgServicePrincipalSynchronizationJob.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationJob","DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}","matched","Remove-MgServicePrincipalSynchronizationJob" +"Cmdlets","RemoveMgServicePrincipalSynchronizationJobBulkUpload.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationJobBulkUpload","DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload","matched","Remove-MgServicePrincipalSynchronizationJobBulkUpload" +"Cmdlets","RemoveMgServicePrincipalSynchronizationJobBulkUploadContent.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationJobBulkUploadContent","DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload/$value","matched","Remove-MgServicePrincipalSynchronizationJobBulkUploadContent" +"Cmdlets","RemoveMgServicePrincipalSynchronizationJobSchema.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationJobSchema","DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}/schema","matched","Remove-MgServicePrincipalSynchronizationJobSchema" +"Cmdlets","RemoveMgServicePrincipalSynchronizationJobSchemaDirectory.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationJobSchemaDirectory","DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/{param}","matched","Remove-MgServicePrincipalSynchronizationJobSchemaDirectory" +"Cmdlets","RemoveMgServicePrincipalSynchronizationTemplate.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationTemplate","DELETE","/servicePrincipals/{param}/synchronization/templates/{param}","matched","Remove-MgServicePrincipalSynchronizationTemplate" +"Cmdlets","RemoveMgServicePrincipalSynchronizationTemplateSchema.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationTemplateSchema","DELETE","/servicePrincipals/{param}/synchronization/templates/{param}/schema","matched","Remove-MgServicePrincipalSynchronizationTemplateSchema" +"Cmdlets","RemoveMgServicePrincipalSynchronizationTemplateSchemaDirectory.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory","DELETE","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/{param}","matched","Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"Cmdlets","RemoveMgServicePrincipalTokenIssuancePolicyByRef.g.cs","v1.0","Remove-MgServicePrincipalTokenIssuancePolicyByRef","DELETE","/servicePrincipals/{param}/tokenIssuancePolicies/{param}/$ref","mismatch","Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef" +"Cmdlets","RemoveMgServicePrincipalTokenLifetimePolicyByRef.g.cs","v1.0","Remove-MgServicePrincipalTokenLifetimePolicyByRef","DELETE","/servicePrincipals/{param}/tokenLifetimePolicies/{param}/$ref","mismatch","Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef" +"Cmdlets","RemoveMgUserAppRoleAssignment.g.cs","v1.0","Remove-MgUserAppRoleAssignment","DELETE","/users/{param}/appRoleAssignments/{param}","matched","Remove-MgUserAppRoleAssignment" +"Cmdlets","SetMgApplicationSynchronization.g.cs","v1.0","Set-MgApplicationSynchronization","PUT","/applications/{param}/synchronization","matched","Set-MgApplicationSynchronization" +"Cmdlets","SetMgServicePrincipalSynchronization.g.cs","v1.0","Set-MgServicePrincipalSynchronization","PUT","/servicePrincipals/{param}/synchronization","matched","Set-MgServicePrincipalSynchronization" +"Cmdlets","UpdateMgApplication.g.cs","v1.0","Update-MgApplication","PATCH","/applications/{param}","matched","Update-MgApplication" +"Cmdlets","UpdateMgApplicationExtensionProperty.g.cs","v1.0","Update-MgApplicationExtensionProperty","PATCH","/applications/{param}/extensionProperties/{param}","matched","Update-MgApplicationExtensionProperty" +"Cmdlets","UpdateMgApplicationFederatedIdentityCredential.g.cs","v1.0","Update-MgApplicationFederatedIdentityCredential","PATCH","/applications/{param}/federatedIdentityCredentials/{param}","matched","Update-MgApplicationFederatedIdentityCredential" +"Cmdlets","UpdateMgApplicationSynchronizationJob.g.cs","v1.0","Update-MgApplicationSynchronizationJob","PATCH","/applications/{param}/synchronization/jobs/{param}","matched","Update-MgApplicationSynchronizationJob" +"Cmdlets","UpdateMgApplicationSynchronizationJobBulkUpload.g.cs","v1.0","Update-MgApplicationSynchronizationJobBulkUpload","PATCH","/applications/{param}/synchronization/jobs/{param}/bulkUpload","matched","Update-MgApplicationSynchronizationJobBulkUpload" +"Cmdlets","UpdateMgApplicationSynchronizationJobSchema.g.cs","v1.0","Update-MgApplicationSynchronizationJobSchema","PATCH","/applications/{param}/synchronization/jobs/{param}/schema","matched","Update-MgApplicationSynchronizationJobSchema" +"Cmdlets","UpdateMgApplicationSynchronizationJobSchemaDirectory.g.cs","v1.0","Update-MgApplicationSynchronizationJobSchemaDirectory","PATCH","/applications/{param}/synchronization/jobs/{param}/schema/directories/{param}","matched","Update-MgApplicationSynchronizationJobSchemaDirectory" +"Cmdlets","UpdateMgApplicationSynchronizationTemplate.g.cs","v1.0","Update-MgApplicationSynchronizationTemplate","PATCH","/applications/{param}/synchronization/templates/{param}","matched","Update-MgApplicationSynchronizationTemplate" +"Cmdlets","UpdateMgApplicationSynchronizationTemplateSchema.g.cs","v1.0","Update-MgApplicationSynchronizationTemplateSchema","PATCH","/applications/{param}/synchronization/templates/{param}/schema","matched","Update-MgApplicationSynchronizationTemplateSchema" +"Cmdlets","UpdateMgApplicationSynchronizationTemplateSchemaDirectory.g.cs","v1.0","Update-MgApplicationSynchronizationTemplateSchemaDirectory","PATCH","/applications/{param}/synchronization/templates/{param}/schema/directories/{param}","matched","Update-MgApplicationSynchronizationTemplateSchemaDirectory" +"Cmdlets","UpdateMgGroupAppRoleAssignment.g.cs","v1.0","Update-MgGroupAppRoleAssignment","PATCH","/groups/{param}/appRoleAssignments/{param}","matched","Update-MgGroupAppRoleAssignment" +"Cmdlets","UpdateMgServicePrincipal.g.cs","v1.0","Update-MgServicePrincipal","PATCH","/servicePrincipals/{param}","matched","Update-MgServicePrincipal" +"Cmdlets","UpdateMgServicePrincipalAppRoleAssignedTo.g.cs","v1.0","Update-MgServicePrincipalAppRoleAssignedTo","PATCH","/servicePrincipals/{param}/appRoleAssignedTo/{param}","matched","Update-MgServicePrincipalAppRoleAssignedTo" +"Cmdlets","UpdateMgServicePrincipalAppRoleAssignment.g.cs","v1.0","Update-MgServicePrincipalAppRoleAssignment","PATCH","/servicePrincipals/{param}/appRoleAssignments/{param}","matched","Update-MgServicePrincipalAppRoleAssignment" +"Cmdlets","UpdateMgServicePrincipalDelegatedPermissionClassification.g.cs","v1.0","Update-MgServicePrincipalDelegatedPermissionClassification","PATCH","/servicePrincipals/{param}/delegatedPermissionClassifications/{param}","matched","Update-MgServicePrincipalDelegatedPermissionClassification" +"Cmdlets","UpdateMgServicePrincipalEndpoint.g.cs","v1.0","Update-MgServicePrincipalEndpoint","PATCH","/servicePrincipals/{param}/endpoints/{param}","matched","Update-MgServicePrincipalEndpoint" +"Cmdlets","UpdateMgServicePrincipalFederatedIdentityCredential.g.cs","v1.0","Update-MgServicePrincipalFederatedIdentityCredential","PATCH","/servicePrincipals/{param}/federatedIdentityCredentials/{param}","no-oracle","" +"Cmdlets","UpdateMgServicePrincipalRemoteDesktopSecurityConfiguration.g.cs","v1.0","Update-MgServicePrincipalRemoteDesktopSecurityConfiguration","PATCH","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration","matched","Update-MgServicePrincipalRemoteDesktopSecurityConfiguration" +"Cmdlets","UpdateMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.g.cs","v1.0","Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","PATCH","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps/{param}","matched","Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"Cmdlets","UpdateMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.g.cs","v1.0","Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","PATCH","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{param}","matched","Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"Cmdlets","UpdateMgServicePrincipalSynchronizationJob.g.cs","v1.0","Update-MgServicePrincipalSynchronizationJob","PATCH","/servicePrincipals/{param}/synchronization/jobs/{param}","matched","Update-MgServicePrincipalSynchronizationJob" +"Cmdlets","UpdateMgServicePrincipalSynchronizationJobBulkUpload.g.cs","v1.0","Update-MgServicePrincipalSynchronizationJobBulkUpload","PATCH","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload","matched","Update-MgServicePrincipalSynchronizationJobBulkUpload" +"Cmdlets","UpdateMgServicePrincipalSynchronizationJobSchema.g.cs","v1.0","Update-MgServicePrincipalSynchronizationJobSchema","PATCH","/servicePrincipals/{param}/synchronization/jobs/{param}/schema","matched","Update-MgServicePrincipalSynchronizationJobSchema" +"Cmdlets","UpdateMgServicePrincipalSynchronizationJobSchemaDirectory.g.cs","v1.0","Update-MgServicePrincipalSynchronizationJobSchemaDirectory","PATCH","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/{param}","matched","Update-MgServicePrincipalSynchronizationJobSchemaDirectory" +"Cmdlets","UpdateMgServicePrincipalSynchronizationTemplate.g.cs","v1.0","Update-MgServicePrincipalSynchronizationTemplate","PATCH","/servicePrincipals/{param}/synchronization/templates/{param}","matched","Update-MgServicePrincipalSynchronizationTemplate" +"Cmdlets","UpdateMgServicePrincipalSynchronizationTemplateSchema.g.cs","v1.0","Update-MgServicePrincipalSynchronizationTemplateSchema","PATCH","/servicePrincipals/{param}/synchronization/templates/{param}/schema","matched","Update-MgServicePrincipalSynchronizationTemplateSchema" +"Cmdlets","UpdateMgServicePrincipalSynchronizationTemplateSchemaDirectory.g.cs","v1.0","Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory","PATCH","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/{param}","matched","Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"Cmdlets","UpdateMgUserAppRoleAssignment.g.cs","v1.0","Update-MgUserAppRoleAssignment","PATCH","/users/{param}/appRoleAssignments/{param}","matched","Update-MgUserAppRoleAssignment" +"Cmdlets","GetMgSolutionBackupRestore.g.cs","v1.0","Get-MgSolutionBackupRestore","GET","/solutions/backupRestore","matched","Get-MgSolutionBackupRestore" +"Cmdlets","GetMgSolutionBackupRestoreBrowseSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreBrowseSession","GET","/solutions/backupRestore/browseSessions/{param}","matched","Get-MgSolutionBackupRestoreBrowseSession" +"Cmdlets","GetMgSolutionBackupRestoreBrowseSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreBrowseSession","GET","/solutions/backupRestore/browseSessions","matched","Get-MgSolutionBackupRestoreBrowseSession" +"Cmdlets","GetMgSolutionBackupRestoreBrowseSession.g.cs","v1.0","Get-MgSolutionBackupRestoreBrowseSession","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreBrowseSessionBrowseWithNextFetchToken.g.cs","v1.0","Get-MgSolutionBackupRestoreBrowseSessionBrowseWithNextFetchToken","GET","/solutions/backupRestore/browseSessions/{param}/browse(nextFetchToken='{nextFetchToken}')","no-oracle","" +"Cmdlets","GetMgSolutionBackupRestoreBrowseSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreBrowseSessionCount","GET","/solutions/backupRestore/browseSessions/$count","matched","Get-MgSolutionBackupRestoreBrowseSessionCount" +"Cmdlets","GetMgSolutionBackupRestoreDriveInclusionRule_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveInclusionRule","GET","/solutions/backupRestore/driveInclusionRules/{param}","matched","Get-MgSolutionBackupRestoreDriveInclusionRule" +"Cmdlets","GetMgSolutionBackupRestoreDriveInclusionRule_List.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveInclusionRule","GET","/solutions/backupRestore/driveInclusionRules","matched","Get-MgSolutionBackupRestoreDriveInclusionRule" +"Cmdlets","GetMgSolutionBackupRestoreDriveInclusionRule.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveInclusionRule","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreDriveInclusionRuleCount.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveInclusionRuleCount","GET","/solutions/backupRestore/driveInclusionRules/$count","matched","Get-MgSolutionBackupRestoreDriveInclusionRuleCount" +"Cmdlets","GetMgSolutionBackupRestoreDriveProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnit","GET","/solutions/backupRestore/driveProtectionUnits/{param}","matched","Get-MgSolutionBackupRestoreDriveProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreDriveProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnit","GET","/solutions/backupRestore/driveProtectionUnits","matched","Get-MgSolutionBackupRestoreDriveProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreDriveProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnit","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs/{param}","matched","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob_List.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs","matched","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount","GET","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs/$count","matched","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount" +"Cmdlets","GetMgSolutionBackupRestoreDriveProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnitCount","GET","/solutions/backupRestore/driveProtectionUnits/$count","matched","Get-MgSolutionBackupRestoreDriveProtectionUnitCount" +"Cmdlets","GetMgSolutionBackupRestoreEmailNotificationSetting.g.cs","v1.0","Get-MgSolutionBackupRestoreEmailNotificationSetting","GET","/solutions/backupRestore/emailNotificationsSetting","matched","Get-MgSolutionBackupRestoreEmailNotificationSetting" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicy_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicy","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicy" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicy_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicy","GET","/solutions/backupRestore/exchangeProtectionPolicies","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicy" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicy.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicy","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount","GET","/solutions/backupRestore/exchangeProtectionPolicies/$count","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxInclusionRules/{param}","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxInclusionRules","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxInclusionRules/$count","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnits/{param}","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnits","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnitsBulkAdditionJobs/{param}","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnitsBulkAdditionJobs","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnitsBulkAdditionJobs/$count","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount" +"Cmdlets","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnits/$count","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSession","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}","matched","Get-MgSolutionBackupRestoreExchangeRestoreSession" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSession","GET","/solutions/backupRestore/exchangeRestoreSessions","matched","Get-MgSolutionBackupRestoreExchangeRestoreSession" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSession.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSession","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionCount","GET","/solutions/backupRestore/exchangeRestoreSessions/$count","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionCount" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/{param}","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/$count","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/{param}/restorePoint","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/{param}","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests/{param}","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests/$count","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/$count","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount" +"Cmdlets","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/{param}/restorePoint","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint" +"Cmdlets","GetMgSolutionBackupRestoreMailboxInclusionRule_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxInclusionRule","GET","/solutions/backupRestore/mailboxInclusionRules/{param}","matched","Get-MgSolutionBackupRestoreMailboxInclusionRule" +"Cmdlets","GetMgSolutionBackupRestoreMailboxInclusionRule_List.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxInclusionRule","GET","/solutions/backupRestore/mailboxInclusionRules","matched","Get-MgSolutionBackupRestoreMailboxInclusionRule" +"Cmdlets","GetMgSolutionBackupRestoreMailboxInclusionRule.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxInclusionRule","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreMailboxInclusionRuleCount.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxInclusionRuleCount","GET","/solutions/backupRestore/mailboxInclusionRules/$count","matched","Get-MgSolutionBackupRestoreMailboxInclusionRuleCount" +"Cmdlets","GetMgSolutionBackupRestoreMailboxProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnit","GET","/solutions/backupRestore/mailboxProtectionUnits/{param}","matched","Get-MgSolutionBackupRestoreMailboxProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreMailboxProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnit","GET","/solutions/backupRestore/mailboxProtectionUnits","matched","Get-MgSolutionBackupRestoreMailboxProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreMailboxProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnit","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs/{param}","matched","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob_List.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs","matched","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount","GET","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs/$count","matched","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount" +"Cmdlets","GetMgSolutionBackupRestoreMailboxProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnitCount","GET","/solutions/backupRestore/mailboxProtectionUnits/$count","matched","Get-MgSolutionBackupRestoreMailboxProtectionUnitCount" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessBrowseSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","GET","/solutions/backupRestore/oneDriveForBusinessBrowseSessions/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessBrowseSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","GET","/solutions/backupRestore/oneDriveForBusinessBrowseSessions","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessBrowseSession.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount","GET","/solutions/backupRestore/oneDriveForBusinessBrowseSessions/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveInclusionRules/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveInclusionRules","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveInclusionRules/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnits/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnits","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnitsBulkAdditionJobs/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnitsBulkAdditionJobs","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnitsBulkAdditionJobs/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnits/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSession.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/{param}/restorePoint","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount" +"Cmdlets","GetMgSolutionBackupRestorePoint_Get.g.cs","v1.0","Get-MgSolutionBackupRestorePoint","GET","/solutions/backupRestore/restorePoints/{param}","matched","Get-MgSolutionBackupRestorePoint" +"Cmdlets","GetMgSolutionBackupRestorePoint_List.g.cs","v1.0","Get-MgSolutionBackupRestorePoint","GET","/solutions/backupRestore/restorePoints","matched","Get-MgSolutionBackupRestorePoint" +"Cmdlets","GetMgSolutionBackupRestorePoint.g.cs","v1.0","Get-MgSolutionBackupRestorePoint","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestorePointCount.g.cs","v1.0","Get-MgSolutionBackupRestorePointCount","GET","/solutions/backupRestore/restorePoints/$count","matched","Get-MgSolutionBackupRestorePointCount" +"Cmdlets","GetMgSolutionBackupRestorePointProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestorePointProtectionUnit","GET","/solutions/backupRestore/restorePoints/{param}/protectionUnit","matched","Get-MgSolutionBackupRestorePointProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreProtectionPolicy_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionPolicy","GET","/solutions/backupRestore/protectionPolicies/{param}","matched","Get-MgSolutionBackupRestoreProtectionPolicy" +"Cmdlets","GetMgSolutionBackupRestoreProtectionPolicy_List.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionPolicy","GET","/solutions/backupRestore/protectionPolicies","matched","Get-MgSolutionBackupRestoreProtectionPolicy" +"Cmdlets","GetMgSolutionBackupRestoreProtectionPolicy.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionPolicy","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreProtectionPolicyCount.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionPolicyCount","GET","/solutions/backupRestore/protectionPolicies/$count","matched","Get-MgSolutionBackupRestoreProtectionPolicyCount" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnit","GET","/solutions/backupRestore/protectionUnits/{param}","matched","Get-MgSolutionBackupRestoreProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnit","GET","/solutions/backupRestore/protectionUnits","matched","Get-MgSolutionBackupRestoreProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnit","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit","GET","/solutions/backupRestore/protectionUnits/{param}/driveProtectionUnit","matched","Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit","GET","/solutions/backupRestore/protectionUnits/driveProtectionUnit","matched","Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit","GET","/solutions/backupRestore/protectionUnits/{param}/mailboxProtectionUnit","matched","Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit","GET","/solutions/backupRestore/protectionUnits/mailboxProtectionUnit","matched","Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit","GET","/solutions/backupRestore/protectionUnits/{param}/siteProtectionUnit","matched","Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit","GET","/solutions/backupRestore/protectionUnits/siteProtectionUnit","matched","Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitCount","GET","/solutions/backupRestore/protectionUnits/$count","matched","Get-MgSolutionBackupRestoreProtectionUnitCount" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit","GET","/solutions/backupRestore/protectionUnits/driveProtectionUnit/$count","matched","Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit","GET","/solutions/backupRestore/protectionUnits/mailboxProtectionUnit/$count","matched","Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit","GET","/solutions/backupRestore/protectionUnits/siteProtectionUnit/$count","matched","Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreServiceApp_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreServiceApp","GET","/solutions/backupRestore/serviceApps/{param}","matched","Get-MgSolutionBackupRestoreServiceApp" +"Cmdlets","GetMgSolutionBackupRestoreServiceApp_List.g.cs","v1.0","Get-MgSolutionBackupRestoreServiceApp","GET","/solutions/backupRestore/serviceApps","matched","Get-MgSolutionBackupRestoreServiceApp" +"Cmdlets","GetMgSolutionBackupRestoreServiceApp.g.cs","v1.0","Get-MgSolutionBackupRestoreServiceApp","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreServiceAppCount.g.cs","v1.0","Get-MgSolutionBackupRestoreServiceAppCount","GET","/solutions/backupRestore/serviceApps/$count","matched","Get-MgSolutionBackupRestoreServiceAppCount" +"Cmdlets","GetMgSolutionBackupRestoreSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSession","GET","/solutions/backupRestore/restoreSessions/{param}","matched","Get-MgSolutionBackupRestoreSession" +"Cmdlets","GetMgSolutionBackupRestoreSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSession","GET","/solutions/backupRestore/restoreSessions","matched","Get-MgSolutionBackupRestoreSession" +"Cmdlets","GetMgSolutionBackupRestoreSession.g.cs","v1.0","Get-MgSolutionBackupRestoreSession","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSessionCount","GET","/solutions/backupRestore/restoreSessions/$count","matched","Get-MgSolutionBackupRestoreSessionCount" +"Cmdlets","GetMgSolutionBackupRestoreSharePointBrowseSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointBrowseSession","GET","/solutions/backupRestore/sharePointBrowseSessions/{param}","matched","Get-MgSolutionBackupRestoreSharePointBrowseSession" +"Cmdlets","GetMgSolutionBackupRestoreSharePointBrowseSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointBrowseSession","GET","/solutions/backupRestore/sharePointBrowseSessions","matched","Get-MgSolutionBackupRestoreSharePointBrowseSession" +"Cmdlets","GetMgSolutionBackupRestoreSharePointBrowseSession.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointBrowseSession","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSharePointBrowseSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointBrowseSessionCount","GET","/solutions/backupRestore/sharePointBrowseSessions/$count","matched","Get-MgSolutionBackupRestoreSharePointBrowseSessionCount" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicy_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicy","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicy" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicy_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicy","GET","/solutions/backupRestore/sharePointProtectionPolicies","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicy" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicy.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicy","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicyCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount","GET","/solutions/backupRestore/sharePointProtectionPolicies/$count","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteInclusionRules/{param}","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteInclusionRules","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteInclusionRules/$count","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnits/{param}","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnits","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnitsBulkAdditionJobs/{param}","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnitsBulkAdditionJobs","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnitsBulkAdditionJobs/$count","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount" +"Cmdlets","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnits/$count","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSession","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}","matched","Get-MgSolutionBackupRestoreSharePointRestoreSession" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSession","GET","/solutions/backupRestore/sharePointRestoreSessions","matched","Get-MgSolutionBackupRestoreSharePointRestoreSession" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSession.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSession","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionCount","GET","/solutions/backupRestore/sharePointRestoreSessions/$count","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionCount" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts/{param}","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts/$count","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/{param}","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests/{param}","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests/$count","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/$count","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount" +"Cmdlets","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/{param}/restorePoint","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint" +"Cmdlets","GetMgSolutionBackupRestoreSiteInclusionRule_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteInclusionRule","GET","/solutions/backupRestore/siteInclusionRules/{param}","matched","Get-MgSolutionBackupRestoreSiteInclusionRule" +"Cmdlets","GetMgSolutionBackupRestoreSiteInclusionRule_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteInclusionRule","GET","/solutions/backupRestore/siteInclusionRules","matched","Get-MgSolutionBackupRestoreSiteInclusionRule" +"Cmdlets","GetMgSolutionBackupRestoreSiteInclusionRule.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteInclusionRule","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSiteInclusionRuleCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteInclusionRuleCount","GET","/solutions/backupRestore/siteInclusionRules/$count","matched","Get-MgSolutionBackupRestoreSiteInclusionRuleCount" +"Cmdlets","GetMgSolutionBackupRestoreSiteProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnit","GET","/solutions/backupRestore/siteProtectionUnits/{param}","matched","Get-MgSolutionBackupRestoreSiteProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreSiteProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnit","GET","/solutions/backupRestore/siteProtectionUnits","matched","Get-MgSolutionBackupRestoreSiteProtectionUnit" +"Cmdlets","GetMgSolutionBackupRestoreSiteProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnit","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs/{param}","matched","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs","matched","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","","","dispatcher","" +"Cmdlets","GetMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount","GET","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs/$count","matched","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount" +"Cmdlets","GetMgSolutionBackupRestoreSiteProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnitCount","GET","/solutions/backupRestore/siteProtectionUnits/$count","matched","Get-MgSolutionBackupRestoreSiteProtectionUnitCount" +"Cmdlets","InvokeMgSolutionBackupRestoreBrowseSessionBrowse.g.cs","v1.0","Invoke-MgSolutionBackupRestoreBrowseSessionBrowse","POST","/solutions/backupRestore/browseSessions/{param}/browse","mismatch","Invoke-MgBrowseSolutionBackupRestoreBrowseSession" +"Cmdlets","InvokeMgSolutionBackupRestoreEnable.g.cs","v1.0","Invoke-MgSolutionBackupRestoreEnable","POST","/solutions/backupRestore/enable","mismatch","Enable-MgSolutionBackupRestore" +"Cmdlets","InvokeMgSolutionBackupRestorePointSearch.g.cs","v1.0","Invoke-MgSolutionBackupRestorePointSearch","POST","/solutions/backupRestore/restorePoints/search","mismatch","Search-MgSolutionBackupRestorePoint" +"Cmdlets","InvokeMgSolutionBackupRestoreProtectionPolicyActivate.g.cs","v1.0","Invoke-MgSolutionBackupRestoreProtectionPolicyActivate","POST","/solutions/backupRestore/protectionPolicies/{param}/activate","mismatch","Initialize-MgSolutionBackupRestoreProtectionPolicy" +"Cmdlets","InvokeMgSolutionBackupRestoreProtectionPolicyDeactivate.g.cs","v1.0","Invoke-MgSolutionBackupRestoreProtectionPolicyDeactivate","POST","/solutions/backupRestore/protectionPolicies/{param}/deactivate","mismatch","Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy" +"Cmdlets","InvokeMgSolutionBackupRestoreProtectionUnitCancelOffboard.g.cs","v1.0","Invoke-MgSolutionBackupRestoreProtectionUnitCancelOffboard","POST","/solutions/backupRestore/protectionUnits/{param}/cancelOffboard","mismatch","Stop-MgSolutionBackupRestoreProtectionUnitOffboard" +"Cmdlets","InvokeMgSolutionBackupRestoreProtectionUnitOffboard.g.cs","v1.0","Invoke-MgSolutionBackupRestoreProtectionUnitOffboard","POST","/solutions/backupRestore/protectionUnits/{param}/offboard","mismatch","Invoke-MgOffboardSolutionBackupRestoreProtectionUnit" +"Cmdlets","InvokeMgSolutionBackupRestoreServiceAppActivate.g.cs","v1.0","Invoke-MgSolutionBackupRestoreServiceAppActivate","POST","/solutions/backupRestore/serviceApps/{param}/activate","mismatch","Initialize-MgSolutionBackupRestoreServiceApp" +"Cmdlets","InvokeMgSolutionBackupRestoreServiceAppDeactivate.g.cs","v1.0","Invoke-MgSolutionBackupRestoreServiceAppDeactivate","POST","/solutions/backupRestore/serviceApps/{param}/deactivate","mismatch","Invoke-MgDeactivateSolutionBackupRestoreServiceApp" +"Cmdlets","InvokeMgSolutionBackupRestoreSessionActivate.g.cs","v1.0","Invoke-MgSolutionBackupRestoreSessionActivate","POST","/solutions/backupRestore/restoreSessions/{param}/activate","mismatch","Initialize-MgSolutionBackupRestoreSession" +"Cmdlets","NewMgSolutionBackupRestoreBrowseSession.g.cs","v1.0","New-MgSolutionBackupRestoreBrowseSession","POST","/solutions/backupRestore/browseSessions","matched","New-MgSolutionBackupRestoreBrowseSession" +"Cmdlets","NewMgSolutionBackupRestoreDriveInclusionRule.g.cs","v1.0","New-MgSolutionBackupRestoreDriveInclusionRule","POST","/solutions/backupRestore/driveInclusionRules","matched","New-MgSolutionBackupRestoreDriveInclusionRule" +"Cmdlets","NewMgSolutionBackupRestoreDriveProtectionUnit.g.cs","v1.0","New-MgSolutionBackupRestoreDriveProtectionUnit","POST","/solutions/backupRestore/driveProtectionUnits","matched","New-MgSolutionBackupRestoreDriveProtectionUnit" +"Cmdlets","NewMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.g.cs","v1.0","New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","POST","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs","matched","New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"Cmdlets","NewMgSolutionBackupRestoreExchangeProtectionPolicy.g.cs","v1.0","New-MgSolutionBackupRestoreExchangeProtectionPolicy","POST","/solutions/backupRestore/exchangeProtectionPolicies","matched","New-MgSolutionBackupRestoreExchangeProtectionPolicy" +"Cmdlets","NewMgSolutionBackupRestoreExchangeRestoreSession.g.cs","v1.0","New-MgSolutionBackupRestoreExchangeRestoreSession","POST","/solutions/backupRestore/exchangeRestoreSessions","matched","New-MgSolutionBackupRestoreExchangeRestoreSession" +"Cmdlets","NewMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.g.cs","v1.0","New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","POST","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts","matched","New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"Cmdlets","NewMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.g.cs","v1.0","New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","POST","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts","matched","New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"Cmdlets","NewMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.g.cs","v1.0","New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","POST","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests","matched","New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"Cmdlets","NewMgSolutionBackupRestoreMailboxInclusionRule.g.cs","v1.0","New-MgSolutionBackupRestoreMailboxInclusionRule","POST","/solutions/backupRestore/mailboxInclusionRules","matched","New-MgSolutionBackupRestoreMailboxInclusionRule" +"Cmdlets","NewMgSolutionBackupRestoreMailboxProtectionUnit.g.cs","v1.0","New-MgSolutionBackupRestoreMailboxProtectionUnit","POST","/solutions/backupRestore/mailboxProtectionUnits","matched","New-MgSolutionBackupRestoreMailboxProtectionUnit" +"Cmdlets","NewMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.g.cs","v1.0","New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","POST","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs","matched","New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"Cmdlets","NewMgSolutionBackupRestoreOneDriveForBusinessBrowseSession.g.cs","v1.0","New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","POST","/solutions/backupRestore/oneDriveForBusinessBrowseSessions","matched","New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"Cmdlets","NewMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.g.cs","v1.0","New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","POST","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies","matched","New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"Cmdlets","NewMgSolutionBackupRestoreOneDriveForBusinessRestoreSession.g.cs","v1.0","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","POST","/solutions/backupRestore/oneDriveForBusinessRestoreSessions","matched","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"Cmdlets","NewMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.g.cs","v1.0","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","POST","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts","matched","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"Cmdlets","NewMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.g.cs","v1.0","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","POST","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests","matched","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"Cmdlets","NewMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.g.cs","v1.0","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","POST","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts","matched","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"Cmdlets","NewMgSolutionBackupRestorePoint.g.cs","v1.0","New-MgSolutionBackupRestorePoint","POST","/solutions/backupRestore/restorePoints","matched","New-MgSolutionBackupRestorePoint" +"Cmdlets","NewMgSolutionBackupRestoreProtectionPolicy.g.cs","v1.0","New-MgSolutionBackupRestoreProtectionPolicy","POST","/solutions/backupRestore/protectionPolicies","matched","New-MgSolutionBackupRestoreProtectionPolicy" +"Cmdlets","NewMgSolutionBackupRestoreServiceApp.g.cs","v1.0","New-MgSolutionBackupRestoreServiceApp","POST","/solutions/backupRestore/serviceApps","matched","New-MgSolutionBackupRestoreServiceApp" +"Cmdlets","NewMgSolutionBackupRestoreSession.g.cs","v1.0","New-MgSolutionBackupRestoreSession","POST","/solutions/backupRestore/restoreSessions","matched","New-MgSolutionBackupRestoreSession" +"Cmdlets","NewMgSolutionBackupRestoreSharePointBrowseSession.g.cs","v1.0","New-MgSolutionBackupRestoreSharePointBrowseSession","POST","/solutions/backupRestore/sharePointBrowseSessions","matched","New-MgSolutionBackupRestoreSharePointBrowseSession" +"Cmdlets","NewMgSolutionBackupRestoreSharePointProtectionPolicy.g.cs","v1.0","New-MgSolutionBackupRestoreSharePointProtectionPolicy","POST","/solutions/backupRestore/sharePointProtectionPolicies","matched","New-MgSolutionBackupRestoreSharePointProtectionPolicy" +"Cmdlets","NewMgSolutionBackupRestoreSharePointRestoreSession.g.cs","v1.0","New-MgSolutionBackupRestoreSharePointRestoreSession","POST","/solutions/backupRestore/sharePointRestoreSessions","matched","New-MgSolutionBackupRestoreSharePointRestoreSession" +"Cmdlets","NewMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.g.cs","v1.0","New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","POST","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts","matched","New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"Cmdlets","NewMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.g.cs","v1.0","New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","POST","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts","matched","New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"Cmdlets","NewMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.g.cs","v1.0","New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","POST","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests","matched","New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"Cmdlets","NewMgSolutionBackupRestoreSiteInclusionRule.g.cs","v1.0","New-MgSolutionBackupRestoreSiteInclusionRule","POST","/solutions/backupRestore/siteInclusionRules","matched","New-MgSolutionBackupRestoreSiteInclusionRule" +"Cmdlets","NewMgSolutionBackupRestoreSiteProtectionUnit.g.cs","v1.0","New-MgSolutionBackupRestoreSiteProtectionUnit","POST","/solutions/backupRestore/siteProtectionUnits","matched","New-MgSolutionBackupRestoreSiteProtectionUnit" +"Cmdlets","NewMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.g.cs","v1.0","New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","POST","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs","matched","New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"Cmdlets","RemoveMgSolutionBackupRestore.g.cs","v1.0","Remove-MgSolutionBackupRestore","DELETE","/solutions/backupRestore","matched","Remove-MgSolutionBackupRestore" +"Cmdlets","RemoveMgSolutionBackupRestoreBrowseSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreBrowseSession","DELETE","/solutions/backupRestore/browseSessions/{param}","matched","Remove-MgSolutionBackupRestoreBrowseSession" +"Cmdlets","RemoveMgSolutionBackupRestoreDriveInclusionRule.g.cs","v1.0","Remove-MgSolutionBackupRestoreDriveInclusionRule","DELETE","/solutions/backupRestore/driveInclusionRules/{param}","matched","Remove-MgSolutionBackupRestoreDriveInclusionRule" +"Cmdlets","RemoveMgSolutionBackupRestoreDriveProtectionUnit.g.cs","v1.0","Remove-MgSolutionBackupRestoreDriveProtectionUnit","DELETE","/solutions/backupRestore/driveProtectionUnits/{param}","matched","Remove-MgSolutionBackupRestoreDriveProtectionUnit" +"Cmdlets","RemoveMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.g.cs","v1.0","Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","DELETE","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs/{param}","matched","Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"Cmdlets","RemoveMgSolutionBackupRestoreEmailNotificationSetting.g.cs","v1.0","Remove-MgSolutionBackupRestoreEmailNotificationSetting","DELETE","/solutions/backupRestore/emailNotificationsSetting","matched","Remove-MgSolutionBackupRestoreEmailNotificationSetting" +"Cmdlets","RemoveMgSolutionBackupRestoreExchangeProtectionPolicy.g.cs","v1.0","Remove-MgSolutionBackupRestoreExchangeProtectionPolicy","DELETE","/solutions/backupRestore/exchangeProtectionPolicies/{param}","matched","Remove-MgSolutionBackupRestoreExchangeProtectionPolicy" +"Cmdlets","RemoveMgSolutionBackupRestoreExchangeRestoreSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreExchangeRestoreSession","DELETE","/solutions/backupRestore/exchangeRestoreSessions/{param}","matched","Remove-MgSolutionBackupRestoreExchangeRestoreSession" +"Cmdlets","RemoveMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.g.cs","v1.0","Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","DELETE","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/{param}","matched","Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"Cmdlets","RemoveMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.g.cs","v1.0","Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","DELETE","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/{param}","matched","Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"Cmdlets","RemoveMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","DELETE","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests/{param}","matched","Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"Cmdlets","RemoveMgSolutionBackupRestoreMailboxInclusionRule.g.cs","v1.0","Remove-MgSolutionBackupRestoreMailboxInclusionRule","DELETE","/solutions/backupRestore/mailboxInclusionRules/{param}","matched","Remove-MgSolutionBackupRestoreMailboxInclusionRule" +"Cmdlets","RemoveMgSolutionBackupRestoreMailboxProtectionUnit.g.cs","v1.0","Remove-MgSolutionBackupRestoreMailboxProtectionUnit","DELETE","/solutions/backupRestore/mailboxProtectionUnits/{param}","matched","Remove-MgSolutionBackupRestoreMailboxProtectionUnit" +"Cmdlets","RemoveMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.g.cs","v1.0","Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","DELETE","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs/{param}","matched","Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"Cmdlets","RemoveMgSolutionBackupRestoreOneDriveForBusinessBrowseSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","DELETE","/solutions/backupRestore/oneDriveForBusinessBrowseSessions/{param}","matched","Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"Cmdlets","RemoveMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.g.cs","v1.0","Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","DELETE","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}","matched","Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"Cmdlets","RemoveMgSolutionBackupRestoreOneDriveForBusinessRestoreSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","DELETE","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}","matched","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"Cmdlets","RemoveMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.g.cs","v1.0","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","DELETE","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/{param}","matched","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"Cmdlets","RemoveMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","DELETE","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests/{param}","matched","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"Cmdlets","RemoveMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.g.cs","v1.0","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","DELETE","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts/{param}","matched","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"Cmdlets","RemoveMgSolutionBackupRestorePoint.g.cs","v1.0","Remove-MgSolutionBackupRestorePoint","DELETE","/solutions/backupRestore/restorePoints/{param}","matched","Remove-MgSolutionBackupRestorePoint" +"Cmdlets","RemoveMgSolutionBackupRestoreProtectionPolicy.g.cs","v1.0","Remove-MgSolutionBackupRestoreProtectionPolicy","DELETE","/solutions/backupRestore/protectionPolicies/{param}","matched","Remove-MgSolutionBackupRestoreProtectionPolicy" +"Cmdlets","RemoveMgSolutionBackupRestoreServiceApp.g.cs","v1.0","Remove-MgSolutionBackupRestoreServiceApp","DELETE","/solutions/backupRestore/serviceApps/{param}","matched","Remove-MgSolutionBackupRestoreServiceApp" +"Cmdlets","RemoveMgSolutionBackupRestoreSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreSession","DELETE","/solutions/backupRestore/restoreSessions/{param}","matched","Remove-MgSolutionBackupRestoreSession" +"Cmdlets","RemoveMgSolutionBackupRestoreSharePointBrowseSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreSharePointBrowseSession","DELETE","/solutions/backupRestore/sharePointBrowseSessions/{param}","matched","Remove-MgSolutionBackupRestoreSharePointBrowseSession" +"Cmdlets","RemoveMgSolutionBackupRestoreSharePointProtectionPolicy.g.cs","v1.0","Remove-MgSolutionBackupRestoreSharePointProtectionPolicy","DELETE","/solutions/backupRestore/sharePointProtectionPolicies/{param}","matched","Remove-MgSolutionBackupRestoreSharePointProtectionPolicy" +"Cmdlets","RemoveMgSolutionBackupRestoreSharePointRestoreSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreSharePointRestoreSession","DELETE","/solutions/backupRestore/sharePointRestoreSessions/{param}","matched","Remove-MgSolutionBackupRestoreSharePointRestoreSession" +"Cmdlets","RemoveMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.g.cs","v1.0","Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","DELETE","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts/{param}","matched","Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"Cmdlets","RemoveMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.g.cs","v1.0","Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","DELETE","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/{param}","matched","Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"Cmdlets","RemoveMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","DELETE","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests/{param}","matched","Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"Cmdlets","RemoveMgSolutionBackupRestoreSiteInclusionRule.g.cs","v1.0","Remove-MgSolutionBackupRestoreSiteInclusionRule","DELETE","/solutions/backupRestore/siteInclusionRules/{param}","matched","Remove-MgSolutionBackupRestoreSiteInclusionRule" +"Cmdlets","RemoveMgSolutionBackupRestoreSiteProtectionUnit.g.cs","v1.0","Remove-MgSolutionBackupRestoreSiteProtectionUnit","DELETE","/solutions/backupRestore/siteProtectionUnits/{param}","matched","Remove-MgSolutionBackupRestoreSiteProtectionUnit" +"Cmdlets","RemoveMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.g.cs","v1.0","Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","DELETE","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs/{param}","matched","Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"Cmdlets","UpdateMgSolutionBackupRestore.g.cs","v1.0","Update-MgSolutionBackupRestore","PATCH","/solutions/backupRestore","matched","Update-MgSolutionBackupRestore" +"Cmdlets","UpdateMgSolutionBackupRestoreBrowseSession.g.cs","v1.0","Update-MgSolutionBackupRestoreBrowseSession","PATCH","/solutions/backupRestore/browseSessions/{param}","matched","Update-MgSolutionBackupRestoreBrowseSession" +"Cmdlets","UpdateMgSolutionBackupRestoreDriveInclusionRule.g.cs","v1.0","Update-MgSolutionBackupRestoreDriveInclusionRule","PATCH","/solutions/backupRestore/driveInclusionRules/{param}","matched","Update-MgSolutionBackupRestoreDriveInclusionRule" +"Cmdlets","UpdateMgSolutionBackupRestoreDriveProtectionUnit.g.cs","v1.0","Update-MgSolutionBackupRestoreDriveProtectionUnit","PATCH","/solutions/backupRestore/driveProtectionUnits/{param}","matched","Update-MgSolutionBackupRestoreDriveProtectionUnit" +"Cmdlets","UpdateMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.g.cs","v1.0","Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","PATCH","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs/{param}","matched","Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"Cmdlets","UpdateMgSolutionBackupRestoreEmailNotificationSetting.g.cs","v1.0","Update-MgSolutionBackupRestoreEmailNotificationSetting","PATCH","/solutions/backupRestore/emailNotificationsSetting","matched","Update-MgSolutionBackupRestoreEmailNotificationSetting" +"Cmdlets","UpdateMgSolutionBackupRestoreExchangeProtectionPolicy.g.cs","v1.0","Update-MgSolutionBackupRestoreExchangeProtectionPolicy","PATCH","/solutions/backupRestore/exchangeProtectionPolicies/{param}","matched","Update-MgSolutionBackupRestoreExchangeProtectionPolicy" +"Cmdlets","UpdateMgSolutionBackupRestoreExchangeRestoreSession.g.cs","v1.0","Update-MgSolutionBackupRestoreExchangeRestoreSession","PATCH","/solutions/backupRestore/exchangeRestoreSessions/{param}","matched","Update-MgSolutionBackupRestoreExchangeRestoreSession" +"Cmdlets","UpdateMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.g.cs","v1.0","Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","PATCH","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/{param}","matched","Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"Cmdlets","UpdateMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.g.cs","v1.0","Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","PATCH","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/{param}","matched","Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"Cmdlets","UpdateMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","PATCH","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests/{param}","matched","Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"Cmdlets","UpdateMgSolutionBackupRestoreMailboxInclusionRule.g.cs","v1.0","Update-MgSolutionBackupRestoreMailboxInclusionRule","PATCH","/solutions/backupRestore/mailboxInclusionRules/{param}","matched","Update-MgSolutionBackupRestoreMailboxInclusionRule" +"Cmdlets","UpdateMgSolutionBackupRestoreMailboxProtectionUnit.g.cs","v1.0","Update-MgSolutionBackupRestoreMailboxProtectionUnit","PATCH","/solutions/backupRestore/mailboxProtectionUnits/{param}","matched","Update-MgSolutionBackupRestoreMailboxProtectionUnit" +"Cmdlets","UpdateMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.g.cs","v1.0","Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","PATCH","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs/{param}","matched","Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"Cmdlets","UpdateMgSolutionBackupRestoreOneDriveForBusinessBrowseSession.g.cs","v1.0","Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","PATCH","/solutions/backupRestore/oneDriveForBusinessBrowseSessions/{param}","matched","Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"Cmdlets","UpdateMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.g.cs","v1.0","Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","PATCH","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}","matched","Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"Cmdlets","UpdateMgSolutionBackupRestoreOneDriveForBusinessRestoreSession.g.cs","v1.0","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","PATCH","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}","matched","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"Cmdlets","UpdateMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.g.cs","v1.0","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","PATCH","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/{param}","matched","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"Cmdlets","UpdateMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","PATCH","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests/{param}","matched","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"Cmdlets","UpdateMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.g.cs","v1.0","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","PATCH","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts/{param}","matched","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"Cmdlets","UpdateMgSolutionBackupRestorePoint.g.cs","v1.0","Update-MgSolutionBackupRestorePoint","PATCH","/solutions/backupRestore/restorePoints/{param}","matched","Update-MgSolutionBackupRestorePoint" +"Cmdlets","UpdateMgSolutionBackupRestoreProtectionPolicy.g.cs","v1.0","Update-MgSolutionBackupRestoreProtectionPolicy","PATCH","/solutions/backupRestore/protectionPolicies/{param}","matched","Update-MgSolutionBackupRestoreProtectionPolicy" +"Cmdlets","UpdateMgSolutionBackupRestoreServiceApp.g.cs","v1.0","Update-MgSolutionBackupRestoreServiceApp","PATCH","/solutions/backupRestore/serviceApps/{param}","matched","Update-MgSolutionBackupRestoreServiceApp" +"Cmdlets","UpdateMgSolutionBackupRestoreSession.g.cs","v1.0","Update-MgSolutionBackupRestoreSession","PATCH","/solutions/backupRestore/restoreSessions/{param}","matched","Update-MgSolutionBackupRestoreSession" +"Cmdlets","UpdateMgSolutionBackupRestoreSharePointBrowseSession.g.cs","v1.0","Update-MgSolutionBackupRestoreSharePointBrowseSession","PATCH","/solutions/backupRestore/sharePointBrowseSessions/{param}","matched","Update-MgSolutionBackupRestoreSharePointBrowseSession" +"Cmdlets","UpdateMgSolutionBackupRestoreSharePointProtectionPolicy.g.cs","v1.0","Update-MgSolutionBackupRestoreSharePointProtectionPolicy","PATCH","/solutions/backupRestore/sharePointProtectionPolicies/{param}","matched","Update-MgSolutionBackupRestoreSharePointProtectionPolicy" +"Cmdlets","UpdateMgSolutionBackupRestoreSharePointRestoreSession.g.cs","v1.0","Update-MgSolutionBackupRestoreSharePointRestoreSession","PATCH","/solutions/backupRestore/sharePointRestoreSessions/{param}","matched","Update-MgSolutionBackupRestoreSharePointRestoreSession" +"Cmdlets","UpdateMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.g.cs","v1.0","Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","PATCH","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts/{param}","matched","Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"Cmdlets","UpdateMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.g.cs","v1.0","Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","PATCH","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/{param}","matched","Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"Cmdlets","UpdateMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","PATCH","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests/{param}","matched","Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"Cmdlets","UpdateMgSolutionBackupRestoreSiteInclusionRule.g.cs","v1.0","Update-MgSolutionBackupRestoreSiteInclusionRule","PATCH","/solutions/backupRestore/siteInclusionRules/{param}","matched","Update-MgSolutionBackupRestoreSiteInclusionRule" +"Cmdlets","UpdateMgSolutionBackupRestoreSiteProtectionUnit.g.cs","v1.0","Update-MgSolutionBackupRestoreSiteProtectionUnit","PATCH","/solutions/backupRestore/siteProtectionUnits/{param}","matched","Update-MgSolutionBackupRestoreSiteProtectionUnit" +"Cmdlets","UpdateMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.g.cs","v1.0","Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","PATCH","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs/{param}","matched","Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"Cmdlets","GetMgBookingBusiness_Get.g.cs","v1.0","Get-MgBookingBusiness","GET","/solutions/bookingBusinesses/{param}","matched","Get-MgBookingBusiness" +"Cmdlets","GetMgBookingBusiness_List.g.cs","v1.0","Get-MgBookingBusiness","GET","/solutions/bookingBusinesses","matched","Get-MgBookingBusiness" +"Cmdlets","GetMgBookingBusiness.g.cs","v1.0","Get-MgBookingBusiness","","","dispatcher","" +"Cmdlets","GetMgBookingBusinessAppointment_Get.g.cs","v1.0","Get-MgBookingBusinessAppointment","GET","/solutions/bookingBusinesses/{param}/appointments/{param}","matched","Get-MgBookingBusinessAppointment" +"Cmdlets","GetMgBookingBusinessAppointment_List.g.cs","v1.0","Get-MgBookingBusinessAppointment","GET","/solutions/bookingBusinesses/{param}/appointments","matched","Get-MgBookingBusinessAppointment" +"Cmdlets","GetMgBookingBusinessAppointment.g.cs","v1.0","Get-MgBookingBusinessAppointment","","","dispatcher","" +"Cmdlets","GetMgBookingBusinessAppointmentCount.g.cs","v1.0","Get-MgBookingBusinessAppointmentCount","GET","/solutions/bookingBusinesses/{param}/appointments/$count","matched","Get-MgBookingBusinessAppointmentCount" +"Cmdlets","GetMgBookingBusinessCalendarView_Get.g.cs","v1.0","Get-MgBookingBusinessCalendarView","GET","/solutions/bookingBusinesses/{param}/calendarView/{param}","matched","Get-MgBookingBusinessCalendarView" +"Cmdlets","GetMgBookingBusinessCalendarView_List.g.cs","v1.0","Get-MgBookingBusinessCalendarView","GET","/solutions/bookingBusinesses/{param}/calendarView","matched","Get-MgBookingBusinessCalendarView" +"Cmdlets","GetMgBookingBusinessCalendarView.g.cs","v1.0","Get-MgBookingBusinessCalendarView","","","dispatcher","" +"Cmdlets","GetMgBookingBusinessCalendarViewCount.g.cs","v1.0","Get-MgBookingBusinessCalendarViewCount","GET","/solutions/bookingBusinesses/{param}/calendarView/$count","matched","Get-MgBookingBusinessCalendarViewCount" +"Cmdlets","GetMgBookingBusinessCount.g.cs","v1.0","Get-MgBookingBusinessCount","GET","/solutions/bookingBusinesses/$count","matched","Get-MgBookingBusinessCount" +"Cmdlets","GetMgBookingBusinessCustomer_Get.g.cs","v1.0","Get-MgBookingBusinessCustomer","GET","/solutions/bookingBusinesses/{param}/customers/{param}","matched","Get-MgBookingBusinessCustomer" +"Cmdlets","GetMgBookingBusinessCustomer_List.g.cs","v1.0","Get-MgBookingBusinessCustomer","GET","/solutions/bookingBusinesses/{param}/customers","matched","Get-MgBookingBusinessCustomer" +"Cmdlets","GetMgBookingBusinessCustomer.g.cs","v1.0","Get-MgBookingBusinessCustomer","","","dispatcher","" +"Cmdlets","GetMgBookingBusinessCustomerCount.g.cs","v1.0","Get-MgBookingBusinessCustomerCount","GET","/solutions/bookingBusinesses/{param}/customers/$count","matched","Get-MgBookingBusinessCustomerCount" +"Cmdlets","GetMgBookingBusinessCustomQuestion_Get.g.cs","v1.0","Get-MgBookingBusinessCustomQuestion","GET","/solutions/bookingBusinesses/{param}/customQuestions/{param}","matched","Get-MgBookingBusinessCustomQuestion" +"Cmdlets","GetMgBookingBusinessCustomQuestion_List.g.cs","v1.0","Get-MgBookingBusinessCustomQuestion","GET","/solutions/bookingBusinesses/{param}/customQuestions","matched","Get-MgBookingBusinessCustomQuestion" +"Cmdlets","GetMgBookingBusinessCustomQuestion.g.cs","v1.0","Get-MgBookingBusinessCustomQuestion","","","dispatcher","" +"Cmdlets","GetMgBookingBusinessCustomQuestionCount.g.cs","v1.0","Get-MgBookingBusinessCustomQuestionCount","GET","/solutions/bookingBusinesses/{param}/customQuestions/$count","matched","Get-MgBookingBusinessCustomQuestionCount" +"Cmdlets","GetMgBookingBusinessService_Get.g.cs","v1.0","Get-MgBookingBusinessService","GET","/solutions/bookingBusinesses/{param}/services/{param}","matched","Get-MgBookingBusinessService" +"Cmdlets","GetMgBookingBusinessService_List.g.cs","v1.0","Get-MgBookingBusinessService","GET","/solutions/bookingBusinesses/{param}/services","matched","Get-MgBookingBusinessService" +"Cmdlets","GetMgBookingBusinessService.g.cs","v1.0","Get-MgBookingBusinessService","","","dispatcher","" +"Cmdlets","GetMgBookingBusinessServiceCount.g.cs","v1.0","Get-MgBookingBusinessServiceCount","GET","/solutions/bookingBusinesses/{param}/services/$count","matched","Get-MgBookingBusinessServiceCount" +"Cmdlets","GetMgBookingBusinessStaffMember_Get.g.cs","v1.0","Get-MgBookingBusinessStaffMember","GET","/solutions/bookingBusinesses/{param}/staffMembers/{param}","matched","Get-MgBookingBusinessStaffMember" +"Cmdlets","GetMgBookingBusinessStaffMember_List.g.cs","v1.0","Get-MgBookingBusinessStaffMember","GET","/solutions/bookingBusinesses/{param}/staffMembers","matched","Get-MgBookingBusinessStaffMember" +"Cmdlets","GetMgBookingBusinessStaffMember.g.cs","v1.0","Get-MgBookingBusinessStaffMember","","","dispatcher","" +"Cmdlets","GetMgBookingBusinessStaffMemberCount.g.cs","v1.0","Get-MgBookingBusinessStaffMemberCount","GET","/solutions/bookingBusinesses/{param}/staffMembers/$count","matched","Get-MgBookingBusinessStaffMemberCount" +"Cmdlets","GetMgBookingCurrency_Get.g.cs","v1.0","Get-MgBookingCurrency","GET","/solutions/bookingCurrencies/{param}","matched","Get-MgBookingCurrency" +"Cmdlets","GetMgBookingCurrency_List.g.cs","v1.0","Get-MgBookingCurrency","GET","/solutions/bookingCurrencies","matched","Get-MgBookingCurrency" +"Cmdlets","GetMgBookingCurrency.g.cs","v1.0","Get-MgBookingCurrency","","","dispatcher","" +"Cmdlets","GetMgBookingCurrencyCount.g.cs","v1.0","Get-MgBookingCurrencyCount","GET","/solutions/bookingCurrencies/$count","matched","Get-MgBookingCurrencyCount" +"Cmdlets","GetMgVirtualEvent_Get.g.cs","v1.0","Get-MgVirtualEvent","GET","/solutions/virtualEvents/events/{param}","matched","Get-MgVirtualEvent" +"Cmdlets","GetMgVirtualEvent_List.g.cs","v1.0","Get-MgVirtualEvent","GET","/solutions/virtualEvents/events","matched","Get-MgVirtualEvent" +"Cmdlets","GetMgVirtualEvent.g.cs","v1.0","Get-MgVirtualEvent","","","dispatcher","" +"Cmdlets","GetMgVirtualEventCount.g.cs","v1.0","Get-MgVirtualEventCount","GET","/solutions/virtualEvents/events/$count","matched","Get-MgVirtualEventCount" +"Cmdlets","GetMgVirtualEventPresenter_Get.g.cs","v1.0","Get-MgVirtualEventPresenter","GET","/solutions/virtualEvents/events/{param}/presenters/{param}","matched","Get-MgVirtualEventPresenter" +"Cmdlets","GetMgVirtualEventPresenter_List.g.cs","v1.0","Get-MgVirtualEventPresenter","GET","/solutions/virtualEvents/events/{param}/presenters","matched","Get-MgVirtualEventPresenter" +"Cmdlets","GetMgVirtualEventPresenter.g.cs","v1.0","Get-MgVirtualEventPresenter","","","dispatcher","" +"Cmdlets","GetMgVirtualEventPresenterCount.g.cs","v1.0","Get-MgVirtualEventPresenterCount","GET","/solutions/virtualEvents/events/{param}/presenters/$count","matched","Get-MgVirtualEventPresenterCount" +"Cmdlets","GetMgVirtualEventSession_Get.g.cs","v1.0","Get-MgVirtualEventSession","GET","/solutions/virtualEvents/events/{param}/sessions/{param}","matched","Get-MgVirtualEventSession" +"Cmdlets","GetMgVirtualEventSession_List.g.cs","v1.0","Get-MgVirtualEventSession","GET","/solutions/virtualEvents/events/{param}/sessions","matched","Get-MgVirtualEventSession" +"Cmdlets","GetMgVirtualEventSession.g.cs","v1.0","Get-MgVirtualEventSession","","","dispatcher","" +"Cmdlets","GetMgVirtualEventSessionAttendanceReport_Get.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReport","GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}","matched","Get-MgVirtualEventSessionAttendanceReport" +"Cmdlets","GetMgVirtualEventSessionAttendanceReport_List.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReport","GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports","matched","Get-MgVirtualEventSessionAttendanceReport" +"Cmdlets","GetMgVirtualEventSessionAttendanceReport.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReport","","","dispatcher","" +"Cmdlets","GetMgVirtualEventSessionAttendanceReportAttendanceRecord_Get.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReportAttendanceRecord","GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Get-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"Cmdlets","GetMgVirtualEventSessionAttendanceReportAttendanceRecord_List.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReportAttendanceRecord","GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","matched","Get-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"Cmdlets","GetMgVirtualEventSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReportAttendanceRecord","","","dispatcher","" +"Cmdlets","GetMgVirtualEventSessionAttendanceReportAttendanceRecordCount.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount","GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/$count","matched","Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount" +"Cmdlets","GetMgVirtualEventSessionAttendanceReportCount.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReportCount","GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/$count","matched","Get-MgVirtualEventSessionAttendanceReportCount" +"Cmdlets","GetMgVirtualEventSessionCount.g.cs","v1.0","Get-MgVirtualEventSessionCount","GET","/solutions/virtualEvents/events/{param}/sessions/$count","matched","Get-MgVirtualEventSessionCount" +"Cmdlets","GetMgVirtualEventTownhall_Get.g.cs","v1.0","Get-MgVirtualEventTownhall","GET","/solutions/virtualEvents/townhalls/{param}","matched","Get-MgVirtualEventTownhall" +"Cmdlets","GetMgVirtualEventTownhall_List.g.cs","v1.0","Get-MgVirtualEventTownhall","GET","/solutions/virtualEvents/townhalls","matched","Get-MgVirtualEventTownhall" +"Cmdlets","GetMgVirtualEventTownhall.g.cs","v1.0","Get-MgVirtualEventTownhall","","","dispatcher","" +"Cmdlets","GetMgVirtualEventTownhallCount.g.cs","v1.0","Get-MgVirtualEventTownhallCount","GET","/solutions/virtualEvents/townhalls/$count","matched","Get-MgVirtualEventTownhallCount" +"Cmdlets","GetMgVirtualEventTownhallGetByUserIdAndRoleWithUserIdWithRole.g.cs","v1.0","Get-MgVirtualEventTownhallGetByUserIdAndRoleWithUserIdWithRole","GET","/solutions/virtualEvents/townhalls/getByUserIdAndRole(userId='{userId}',role='{role}')","mismatch","Get-MgVirtualEventTownhallByUserIdAndRole" +"Cmdlets","GetMgVirtualEventTownhallGetByUserRoleWithRole.g.cs","v1.0","Get-MgVirtualEventTownhallGetByUserRoleWithRole","GET","/solutions/virtualEvents/townhalls/getByUserRole(role='{role}')","mismatch","Get-MgVirtualEventTownhallByUserRole" +"Cmdlets","GetMgVirtualEventTownhallPresenter_Get.g.cs","v1.0","Get-MgVirtualEventTownhallPresenter","GET","/solutions/virtualEvents/townhalls/{param}/presenters/{param}","matched","Get-MgVirtualEventTownhallPresenter" +"Cmdlets","GetMgVirtualEventTownhallPresenter_List.g.cs","v1.0","Get-MgVirtualEventTownhallPresenter","GET","/solutions/virtualEvents/townhalls/{param}/presenters","matched","Get-MgVirtualEventTownhallPresenter" +"Cmdlets","GetMgVirtualEventTownhallPresenter.g.cs","v1.0","Get-MgVirtualEventTownhallPresenter","","","dispatcher","" +"Cmdlets","GetMgVirtualEventTownhallPresenterCount.g.cs","v1.0","Get-MgVirtualEventTownhallPresenterCount","GET","/solutions/virtualEvents/townhalls/{param}/presenters/$count","matched","Get-MgVirtualEventTownhallPresenterCount" +"Cmdlets","GetMgVirtualEventTownhallSession_Get.g.cs","v1.0","Get-MgVirtualEventTownhallSession","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}","matched","Get-MgVirtualEventTownhallSession" +"Cmdlets","GetMgVirtualEventTownhallSession_List.g.cs","v1.0","Get-MgVirtualEventTownhallSession","GET","/solutions/virtualEvents/townhalls/{param}/sessions","matched","Get-MgVirtualEventTownhallSession" +"Cmdlets","GetMgVirtualEventTownhallSession.g.cs","v1.0","Get-MgVirtualEventTownhallSession","","","dispatcher","" +"Cmdlets","GetMgVirtualEventTownhallSessionAttendanceReport_Get.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReport","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}","matched","Get-MgVirtualEventTownhallSessionAttendanceReport" +"Cmdlets","GetMgVirtualEventTownhallSessionAttendanceReport_List.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReport","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports","matched","Get-MgVirtualEventTownhallSessionAttendanceReport" +"Cmdlets","GetMgVirtualEventTownhallSessionAttendanceReport.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReport","","","dispatcher","" +"Cmdlets","GetMgVirtualEventTownhallSessionAttendanceReportAttendanceRecord_Get.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"Cmdlets","GetMgVirtualEventTownhallSessionAttendanceReportAttendanceRecord_List.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","matched","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"Cmdlets","GetMgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","","","dispatcher","" +"Cmdlets","GetMgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/$count","matched","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount" +"Cmdlets","GetMgVirtualEventTownhallSessionAttendanceReportCount.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReportCount","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/$count","matched","Get-MgVirtualEventTownhallSessionAttendanceReportCount" +"Cmdlets","GetMgVirtualEventTownhallSessionCount.g.cs","v1.0","Get-MgVirtualEventTownhallSessionCount","GET","/solutions/virtualEvents/townhalls/{param}/sessions/$count","matched","Get-MgVirtualEventTownhallSessionCount" +"Cmdlets","GetMgVirtualEventWebinar_Get.g.cs","v1.0","Get-MgVirtualEventWebinar","GET","/solutions/virtualEvents/webinars/{param}","matched","Get-MgVirtualEventWebinar" +"Cmdlets","GetMgVirtualEventWebinar_List.g.cs","v1.0","Get-MgVirtualEventWebinar","GET","/solutions/virtualEvents/webinars","matched","Get-MgVirtualEventWebinar" +"Cmdlets","GetMgVirtualEventWebinar.g.cs","v1.0","Get-MgVirtualEventWebinar","","","dispatcher","" +"Cmdlets","GetMgVirtualEventWebinarCount.g.cs","v1.0","Get-MgVirtualEventWebinarCount","GET","/solutions/virtualEvents/webinars/$count","matched","Get-MgVirtualEventWebinarCount" +"Cmdlets","GetMgVirtualEventWebinarGetByUserIdAndRoleWithUserIdWithRole.g.cs","v1.0","Get-MgVirtualEventWebinarGetByUserIdAndRoleWithUserIdWithRole","GET","/solutions/virtualEvents/webinars/getByUserIdAndRole(userId='{userId}',role='{role}')","mismatch","Get-MgVirtualEventWebinarByUserIdAndRole" +"Cmdlets","GetMgVirtualEventWebinarGetByUserRoleWithRole.g.cs","v1.0","Get-MgVirtualEventWebinarGetByUserRoleWithRole","GET","/solutions/virtualEvents/webinars/getByUserRole(role='{role}')","mismatch","Get-MgVirtualEventWebinarByUserRole" +"Cmdlets","GetMgVirtualEventWebinarPresenter_Get.g.cs","v1.0","Get-MgVirtualEventWebinarPresenter","GET","/solutions/virtualEvents/webinars/{param}/presenters/{param}","matched","Get-MgVirtualEventWebinarPresenter" +"Cmdlets","GetMgVirtualEventWebinarPresenter_List.g.cs","v1.0","Get-MgVirtualEventWebinarPresenter","GET","/solutions/virtualEvents/webinars/{param}/presenters","matched","Get-MgVirtualEventWebinarPresenter" +"Cmdlets","GetMgVirtualEventWebinarPresenter.g.cs","v1.0","Get-MgVirtualEventWebinarPresenter","","","dispatcher","" +"Cmdlets","GetMgVirtualEventWebinarPresenterCount.g.cs","v1.0","Get-MgVirtualEventWebinarPresenterCount","GET","/solutions/virtualEvents/webinars/{param}/presenters/$count","matched","Get-MgVirtualEventWebinarPresenterCount" +"Cmdlets","GetMgVirtualEventWebinarRegistration_Get.g.cs","v1.0","Get-MgVirtualEventWebinarRegistration","GET","/solutions/virtualEvents/webinars/{param}/registrations/{param}","matched","Get-MgVirtualEventWebinarRegistration" +"Cmdlets","GetMgVirtualEventWebinarRegistration_List.g.cs","v1.0","Get-MgVirtualEventWebinarRegistration","GET","/solutions/virtualEvents/webinars/{param}/registrations","matched","Get-MgVirtualEventWebinarRegistration" +"Cmdlets","GetMgVirtualEventWebinarRegistration.g.cs","v1.0","Get-MgVirtualEventWebinarRegistration","","","dispatcher","" +"Cmdlets","GetMgVirtualEventWebinarRegistrationConfiguration.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationConfiguration","GET","/solutions/virtualEvents/webinars/{param}/registrationConfiguration","matched","Get-MgVirtualEventWebinarRegistrationConfiguration" +"Cmdlets","GetMgVirtualEventWebinarRegistrationConfigurationQuestion_Get.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationConfigurationQuestion","GET","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions/{param}","matched","Get-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"Cmdlets","GetMgVirtualEventWebinarRegistrationConfigurationQuestion_List.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationConfigurationQuestion","GET","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions","matched","Get-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"Cmdlets","GetMgVirtualEventWebinarRegistrationConfigurationQuestion.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationConfigurationQuestion","","","dispatcher","" +"Cmdlets","GetMgVirtualEventWebinarRegistrationConfigurationQuestionCount.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount","GET","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions/$count","matched","Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount" +"Cmdlets","GetMgVirtualEventWebinarRegistrationCount.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationCount","GET","/solutions/virtualEvents/webinars/{param}/registrations/$count","matched","Get-MgVirtualEventWebinarRegistrationCount" +"Cmdlets","GetMgVirtualEventWebinarRegistrationSession_Get.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationSession","GET","/solutions/virtualEvents/webinars/{param}/registrations/{param}/sessions/{param}","matched","Get-MgVirtualEventWebinarRegistrationSession" +"Cmdlets","GetMgVirtualEventWebinarRegistrationSession_List.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationSession","GET","/solutions/virtualEvents/webinars/{param}/registrations/{param}/sessions","matched","Get-MgVirtualEventWebinarRegistrationSession" +"Cmdlets","GetMgVirtualEventWebinarRegistrationSession.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationSession","","","dispatcher","" +"Cmdlets","GetMgVirtualEventWebinarRegistrationSessionCount.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationSessionCount","GET","/solutions/virtualEvents/webinars/{param}/registrations/{param}/sessions/$count","matched","Get-MgVirtualEventWebinarRegistrationSessionCount" +"Cmdlets","GetMgVirtualEventWebinarSession_Get.g.cs","v1.0","Get-MgVirtualEventWebinarSession","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}","matched","Get-MgVirtualEventWebinarSession" +"Cmdlets","GetMgVirtualEventWebinarSession_List.g.cs","v1.0","Get-MgVirtualEventWebinarSession","GET","/solutions/virtualEvents/webinars/{param}/sessions","matched","Get-MgVirtualEventWebinarSession" +"Cmdlets","GetMgVirtualEventWebinarSession.g.cs","v1.0","Get-MgVirtualEventWebinarSession","","","dispatcher","" +"Cmdlets","GetMgVirtualEventWebinarSessionAttendanceReport_Get.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReport","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}","matched","Get-MgVirtualEventWebinarSessionAttendanceReport" +"Cmdlets","GetMgVirtualEventWebinarSessionAttendanceReport_List.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReport","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports","matched","Get-MgVirtualEventWebinarSessionAttendanceReport" +"Cmdlets","GetMgVirtualEventWebinarSessionAttendanceReport.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReport","","","dispatcher","" +"Cmdlets","GetMgVirtualEventWebinarSessionAttendanceReportAttendanceRecord_Get.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"Cmdlets","GetMgVirtualEventWebinarSessionAttendanceReportAttendanceRecord_List.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","matched","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"Cmdlets","GetMgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","","","dispatcher","" +"Cmdlets","GetMgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/$count","matched","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount" +"Cmdlets","GetMgVirtualEventWebinarSessionAttendanceReportCount.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReportCount","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/$count","matched","Get-MgVirtualEventWebinarSessionAttendanceReportCount" +"Cmdlets","GetMgVirtualEventWebinarSessionCount.g.cs","v1.0","Get-MgVirtualEventWebinarSessionCount","GET","/solutions/virtualEvents/webinars/{param}/sessions/$count","matched","Get-MgVirtualEventWebinarSessionCount" +"Cmdlets","InvokeMgBookingBusinessAppointmentCancel.g.cs","v1.0","Invoke-MgBookingBusinessAppointmentCancel","POST","/solutions/bookingBusinesses/{param}/appointments/{param}/cancel","mismatch","Stop-MgBookingBusinessAppointment" +"Cmdlets","InvokeMgBookingBusinessCalendarViewCancel.g.cs","v1.0","Invoke-MgBookingBusinessCalendarViewCancel","POST","/solutions/bookingBusinesses/{param}/calendarView/{param}/cancel","mismatch","Stop-MgBookingBusinessCalendarView" +"Cmdlets","InvokeMgBookingBusinessGetStaffAvailability.g.cs","v1.0","Invoke-MgBookingBusinessGetStaffAvailability","POST","/solutions/bookingBusinesses/{param}/getStaffAvailability","mismatch","Get-MgBookingBusinessStaffAvailability" +"Cmdlets","InvokeMgBookingBusinessPublish.g.cs","v1.0","Invoke-MgBookingBusinessPublish","POST","/solutions/bookingBusinesses/{param}/publish","mismatch","Publish-MgBookingBusiness" +"Cmdlets","InvokeMgBookingBusinessUnpublish.g.cs","v1.0","Invoke-MgBookingBusinessUnpublish","POST","/solutions/bookingBusinesses/{param}/unpublish","mismatch","Unpublish-MgBookingBusiness" +"Cmdlets","InvokeMgVirtualEventCancel.g.cs","v1.0","Invoke-MgVirtualEventCancel","POST","/solutions/virtualEvents/events/{param}/cancel","mismatch","Stop-MgVirtualEvent" +"Cmdlets","InvokeMgVirtualEventPublish.g.cs","v1.0","Invoke-MgVirtualEventPublish","POST","/solutions/virtualEvents/events/{param}/publish","mismatch","Publish-MgVirtualEvent" +"Cmdlets","InvokeMgVirtualEventSetExternalEventInformation.g.cs","v1.0","Invoke-MgVirtualEventSetExternalEventInformation","POST","/solutions/virtualEvents/events/{param}/setExternalEventInformation","mismatch","Set-MgVirtualEventExternalEventInformation" +"Cmdlets","InvokeMgVirtualEventWebinarRegistrationCancel.g.cs","v1.0","Invoke-MgVirtualEventWebinarRegistrationCancel","POST","/solutions/virtualEvents/webinars/{param}/registrations/{param}/cancel","mismatch","Stop-MgVirtualEventWebinarRegistration" +"Cmdlets","NewMgBookingBusiness.g.cs","v1.0","New-MgBookingBusiness","POST","/solutions/bookingBusinesses","matched","New-MgBookingBusiness" +"Cmdlets","NewMgBookingBusinessAppointment.g.cs","v1.0","New-MgBookingBusinessAppointment","POST","/solutions/bookingBusinesses/{param}/appointments","matched","New-MgBookingBusinessAppointment" +"Cmdlets","NewMgBookingBusinessCalendarView.g.cs","v1.0","New-MgBookingBusinessCalendarView","POST","/solutions/bookingBusinesses/{param}/calendarView","matched","New-MgBookingBusinessCalendarView" +"Cmdlets","NewMgBookingBusinessCustomer.g.cs","v1.0","New-MgBookingBusinessCustomer","POST","/solutions/bookingBusinesses/{param}/customers","matched","New-MgBookingBusinessCustomer" +"Cmdlets","NewMgBookingBusinessCustomQuestion.g.cs","v1.0","New-MgBookingBusinessCustomQuestion","POST","/solutions/bookingBusinesses/{param}/customQuestions","matched","New-MgBookingBusinessCustomQuestion" +"Cmdlets","NewMgBookingBusinessService.g.cs","v1.0","New-MgBookingBusinessService","POST","/solutions/bookingBusinesses/{param}/services","matched","New-MgBookingBusinessService" +"Cmdlets","NewMgBookingBusinessStaffMember.g.cs","v1.0","New-MgBookingBusinessStaffMember","POST","/solutions/bookingBusinesses/{param}/staffMembers","matched","New-MgBookingBusinessStaffMember" +"Cmdlets","NewMgBookingCurrency.g.cs","v1.0","New-MgBookingCurrency","POST","/solutions/bookingCurrencies","matched","New-MgBookingCurrency" +"Cmdlets","NewMgVirtualEvent.g.cs","v1.0","New-MgVirtualEvent","POST","/solutions/virtualEvents/events","matched","New-MgVirtualEvent" +"Cmdlets","NewMgVirtualEventPresenter.g.cs","v1.0","New-MgVirtualEventPresenter","POST","/solutions/virtualEvents/events/{param}/presenters","matched","New-MgVirtualEventPresenter" +"Cmdlets","NewMgVirtualEventSession.g.cs","v1.0","New-MgVirtualEventSession","POST","/solutions/virtualEvents/events/{param}/sessions","matched","New-MgVirtualEventSession" +"Cmdlets","NewMgVirtualEventSessionAttendanceReport.g.cs","v1.0","New-MgVirtualEventSessionAttendanceReport","POST","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports","matched","New-MgVirtualEventSessionAttendanceReport" +"Cmdlets","NewMgVirtualEventSessionAttendanceReportAttendanceRecord.g.cs","v1.0","New-MgVirtualEventSessionAttendanceReportAttendanceRecord","POST","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","matched","New-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"Cmdlets","NewMgVirtualEventTownhall.g.cs","v1.0","New-MgVirtualEventTownhall","POST","/solutions/virtualEvents/townhalls","matched","New-MgVirtualEventTownhall" +"Cmdlets","NewMgVirtualEventTownhallPresenter.g.cs","v1.0","New-MgVirtualEventTownhallPresenter","POST","/solutions/virtualEvents/townhalls/{param}/presenters","matched","New-MgVirtualEventTownhallPresenter" +"Cmdlets","NewMgVirtualEventTownhallSession.g.cs","v1.0","New-MgVirtualEventTownhallSession","POST","/solutions/virtualEvents/townhalls/{param}/sessions","matched","New-MgVirtualEventTownhallSession" +"Cmdlets","NewMgVirtualEventTownhallSessionAttendanceReport.g.cs","v1.0","New-MgVirtualEventTownhallSessionAttendanceReport","POST","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports","matched","New-MgVirtualEventTownhallSessionAttendanceReport" +"Cmdlets","NewMgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.g.cs","v1.0","New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","POST","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","matched","New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"Cmdlets","NewMgVirtualEventWebinar.g.cs","v1.0","New-MgVirtualEventWebinar","POST","/solutions/virtualEvents/webinars","matched","New-MgVirtualEventWebinar" +"Cmdlets","NewMgVirtualEventWebinarPresenter.g.cs","v1.0","New-MgVirtualEventWebinarPresenter","POST","/solutions/virtualEvents/webinars/{param}/presenters","matched","New-MgVirtualEventWebinarPresenter" +"Cmdlets","NewMgVirtualEventWebinarRegistration.g.cs","v1.0","New-MgVirtualEventWebinarRegistration","POST","/solutions/virtualEvents/webinars/{param}/registrations","matched","New-MgVirtualEventWebinarRegistration" +"Cmdlets","NewMgVirtualEventWebinarRegistrationConfigurationQuestion.g.cs","v1.0","New-MgVirtualEventWebinarRegistrationConfigurationQuestion","POST","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions","matched","New-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"Cmdlets","NewMgVirtualEventWebinarSession.g.cs","v1.0","New-MgVirtualEventWebinarSession","POST","/solutions/virtualEvents/webinars/{param}/sessions","matched","New-MgVirtualEventWebinarSession" +"Cmdlets","NewMgVirtualEventWebinarSessionAttendanceReport.g.cs","v1.0","New-MgVirtualEventWebinarSessionAttendanceReport","POST","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports","matched","New-MgVirtualEventWebinarSessionAttendanceReport" +"Cmdlets","NewMgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.g.cs","v1.0","New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","POST","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","matched","New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"Cmdlets","RemoveMgBookingBusiness.g.cs","v1.0","Remove-MgBookingBusiness","DELETE","/solutions/bookingBusinesses/{param}","matched","Remove-MgBookingBusiness" +"Cmdlets","RemoveMgBookingBusinessAppointment.g.cs","v1.0","Remove-MgBookingBusinessAppointment","DELETE","/solutions/bookingBusinesses/{param}/appointments/{param}","matched","Remove-MgBookingBusinessAppointment" +"Cmdlets","RemoveMgBookingBusinessCalendarView.g.cs","v1.0","Remove-MgBookingBusinessCalendarView","DELETE","/solutions/bookingBusinesses/{param}/calendarView/{param}","matched","Remove-MgBookingBusinessCalendarView" +"Cmdlets","RemoveMgBookingBusinessCustomer.g.cs","v1.0","Remove-MgBookingBusinessCustomer","DELETE","/solutions/bookingBusinesses/{param}/customers/{param}","matched","Remove-MgBookingBusinessCustomer" +"Cmdlets","RemoveMgBookingBusinessCustomQuestion.g.cs","v1.0","Remove-MgBookingBusinessCustomQuestion","DELETE","/solutions/bookingBusinesses/{param}/customQuestions/{param}","matched","Remove-MgBookingBusinessCustomQuestion" +"Cmdlets","RemoveMgBookingBusinessService.g.cs","v1.0","Remove-MgBookingBusinessService","DELETE","/solutions/bookingBusinesses/{param}/services/{param}","matched","Remove-MgBookingBusinessService" +"Cmdlets","RemoveMgBookingBusinessStaffMember.g.cs","v1.0","Remove-MgBookingBusinessStaffMember","DELETE","/solutions/bookingBusinesses/{param}/staffMembers/{param}","matched","Remove-MgBookingBusinessStaffMember" +"Cmdlets","RemoveMgBookingCurrency.g.cs","v1.0","Remove-MgBookingCurrency","DELETE","/solutions/bookingCurrencies/{param}","matched","Remove-MgBookingCurrency" +"Cmdlets","RemoveMgVirtualEvent.g.cs","v1.0","Remove-MgVirtualEvent","DELETE","/solutions/virtualEvents/events/{param}","matched","Remove-MgVirtualEvent" +"Cmdlets","RemoveMgVirtualEventPresenter.g.cs","v1.0","Remove-MgVirtualEventPresenter","DELETE","/solutions/virtualEvents/events/{param}/presenters/{param}","matched","Remove-MgVirtualEventPresenter" +"Cmdlets","RemoveMgVirtualEventSession.g.cs","v1.0","Remove-MgVirtualEventSession","DELETE","/solutions/virtualEvents/events/{param}/sessions/{param}","matched","Remove-MgVirtualEventSession" +"Cmdlets","RemoveMgVirtualEventSessionAttendanceReport.g.cs","v1.0","Remove-MgVirtualEventSessionAttendanceReport","DELETE","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}","matched","Remove-MgVirtualEventSessionAttendanceReport" +"Cmdlets","RemoveMgVirtualEventSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord","DELETE","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"Cmdlets","RemoveMgVirtualEventTownhall.g.cs","v1.0","Remove-MgVirtualEventTownhall","DELETE","/solutions/virtualEvents/townhalls/{param}","matched","Remove-MgVirtualEventTownhall" +"Cmdlets","RemoveMgVirtualEventTownhallPresenter.g.cs","v1.0","Remove-MgVirtualEventTownhallPresenter","DELETE","/solutions/virtualEvents/townhalls/{param}/presenters/{param}","matched","Remove-MgVirtualEventTownhallPresenter" +"Cmdlets","RemoveMgVirtualEventTownhallSession.g.cs","v1.0","Remove-MgVirtualEventTownhallSession","DELETE","/solutions/virtualEvents/townhalls/{param}/sessions/{param}","matched","Remove-MgVirtualEventTownhallSession" +"Cmdlets","RemoveMgVirtualEventTownhallSessionAttendanceReport.g.cs","v1.0","Remove-MgVirtualEventTownhallSessionAttendanceReport","DELETE","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}","matched","Remove-MgVirtualEventTownhallSessionAttendanceReport" +"Cmdlets","RemoveMgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","DELETE","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"Cmdlets","RemoveMgVirtualEventWebinar.g.cs","v1.0","Remove-MgVirtualEventWebinar","DELETE","/solutions/virtualEvents/webinars/{param}","matched","Remove-MgVirtualEventWebinar" +"Cmdlets","RemoveMgVirtualEventWebinarPresenter.g.cs","v1.0","Remove-MgVirtualEventWebinarPresenter","DELETE","/solutions/virtualEvents/webinars/{param}/presenters/{param}","matched","Remove-MgVirtualEventWebinarPresenter" +"Cmdlets","RemoveMgVirtualEventWebinarRegistration.g.cs","v1.0","Remove-MgVirtualEventWebinarRegistration","DELETE","/solutions/virtualEvents/webinars/{param}/registrations/{param}","matched","Remove-MgVirtualEventWebinarRegistration" +"Cmdlets","RemoveMgVirtualEventWebinarRegistrationConfiguration.g.cs","v1.0","Remove-MgVirtualEventWebinarRegistrationConfiguration","DELETE","/solutions/virtualEvents/webinars/{param}/registrationConfiguration","matched","Remove-MgVirtualEventWebinarRegistrationConfiguration" +"Cmdlets","RemoveMgVirtualEventWebinarRegistrationConfigurationQuestion.g.cs","v1.0","Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion","DELETE","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions/{param}","matched","Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"Cmdlets","RemoveMgVirtualEventWebinarSession.g.cs","v1.0","Remove-MgVirtualEventWebinarSession","DELETE","/solutions/virtualEvents/webinars/{param}/sessions/{param}","matched","Remove-MgVirtualEventWebinarSession" +"Cmdlets","RemoveMgVirtualEventWebinarSessionAttendanceReport.g.cs","v1.0","Remove-MgVirtualEventWebinarSessionAttendanceReport","DELETE","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}","matched","Remove-MgVirtualEventWebinarSessionAttendanceReport" +"Cmdlets","RemoveMgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","DELETE","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"Cmdlets","UpdateMgBookingBusiness.g.cs","v1.0","Update-MgBookingBusiness","PATCH","/solutions/bookingBusinesses/{param}","matched","Update-MgBookingBusiness" +"Cmdlets","UpdateMgBookingBusinessAppointment.g.cs","v1.0","Update-MgBookingBusinessAppointment","PATCH","/solutions/bookingBusinesses/{param}/appointments/{param}","matched","Update-MgBookingBusinessAppointment" +"Cmdlets","UpdateMgBookingBusinessCalendarView.g.cs","v1.0","Update-MgBookingBusinessCalendarView","PATCH","/solutions/bookingBusinesses/{param}/calendarView/{param}","matched","Update-MgBookingBusinessCalendarView" +"Cmdlets","UpdateMgBookingBusinessCustomer.g.cs","v1.0","Update-MgBookingBusinessCustomer","PATCH","/solutions/bookingBusinesses/{param}/customers/{param}","matched","Update-MgBookingBusinessCustomer" +"Cmdlets","UpdateMgBookingBusinessCustomQuestion.g.cs","v1.0","Update-MgBookingBusinessCustomQuestion","PATCH","/solutions/bookingBusinesses/{param}/customQuestions/{param}","matched","Update-MgBookingBusinessCustomQuestion" +"Cmdlets","UpdateMgBookingBusinessService.g.cs","v1.0","Update-MgBookingBusinessService","PATCH","/solutions/bookingBusinesses/{param}/services/{param}","matched","Update-MgBookingBusinessService" +"Cmdlets","UpdateMgBookingBusinessStaffMember.g.cs","v1.0","Update-MgBookingBusinessStaffMember","PATCH","/solutions/bookingBusinesses/{param}/staffMembers/{param}","matched","Update-MgBookingBusinessStaffMember" +"Cmdlets","UpdateMgBookingCurrency.g.cs","v1.0","Update-MgBookingCurrency","PATCH","/solutions/bookingCurrencies/{param}","matched","Update-MgBookingCurrency" +"Cmdlets","UpdateMgVirtualEvent.g.cs","v1.0","Update-MgVirtualEvent","PATCH","/solutions/virtualEvents/events/{param}","matched","Update-MgVirtualEvent" +"Cmdlets","UpdateMgVirtualEventPresenter.g.cs","v1.0","Update-MgVirtualEventPresenter","PATCH","/solutions/virtualEvents/events/{param}/presenters/{param}","matched","Update-MgVirtualEventPresenter" +"Cmdlets","UpdateMgVirtualEventSession.g.cs","v1.0","Update-MgVirtualEventSession","PATCH","/solutions/virtualEvents/events/{param}/sessions/{param}","matched","Update-MgVirtualEventSession" +"Cmdlets","UpdateMgVirtualEventSessionAttendanceReport.g.cs","v1.0","Update-MgVirtualEventSessionAttendanceReport","PATCH","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}","matched","Update-MgVirtualEventSessionAttendanceReport" +"Cmdlets","UpdateMgVirtualEventSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Update-MgVirtualEventSessionAttendanceReportAttendanceRecord","PATCH","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Update-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"Cmdlets","UpdateMgVirtualEventTownhall.g.cs","v1.0","Update-MgVirtualEventTownhall","PATCH","/solutions/virtualEvents/townhalls/{param}","matched","Update-MgVirtualEventTownhall" +"Cmdlets","UpdateMgVirtualEventTownhallPresenter.g.cs","v1.0","Update-MgVirtualEventTownhallPresenter","PATCH","/solutions/virtualEvents/townhalls/{param}/presenters/{param}","matched","Update-MgVirtualEventTownhallPresenter" +"Cmdlets","UpdateMgVirtualEventTownhallSession.g.cs","v1.0","Update-MgVirtualEventTownhallSession","PATCH","/solutions/virtualEvents/townhalls/{param}/sessions/{param}","matched","Update-MgVirtualEventTownhallSession" +"Cmdlets","UpdateMgVirtualEventTownhallSessionAttendanceReport.g.cs","v1.0","Update-MgVirtualEventTownhallSessionAttendanceReport","PATCH","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}","matched","Update-MgVirtualEventTownhallSessionAttendanceReport" +"Cmdlets","UpdateMgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","PATCH","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"Cmdlets","UpdateMgVirtualEventWebinar.g.cs","v1.0","Update-MgVirtualEventWebinar","PATCH","/solutions/virtualEvents/webinars/{param}","matched","Update-MgVirtualEventWebinar" +"Cmdlets","UpdateMgVirtualEventWebinarPresenter.g.cs","v1.0","Update-MgVirtualEventWebinarPresenter","PATCH","/solutions/virtualEvents/webinars/{param}/presenters/{param}","matched","Update-MgVirtualEventWebinarPresenter" +"Cmdlets","UpdateMgVirtualEventWebinarRegistration.g.cs","v1.0","Update-MgVirtualEventWebinarRegistration","PATCH","/solutions/virtualEvents/webinars/{param}/registrations/{param}","matched","Update-MgVirtualEventWebinarRegistration" +"Cmdlets","UpdateMgVirtualEventWebinarRegistrationConfiguration.g.cs","v1.0","Update-MgVirtualEventWebinarRegistrationConfiguration","PATCH","/solutions/virtualEvents/webinars/{param}/registrationConfiguration","matched","Update-MgVirtualEventWebinarRegistrationConfiguration" +"Cmdlets","UpdateMgVirtualEventWebinarRegistrationConfigurationQuestion.g.cs","v1.0","Update-MgVirtualEventWebinarRegistrationConfigurationQuestion","PATCH","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions/{param}","matched","Update-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"Cmdlets","UpdateMgVirtualEventWebinarSession.g.cs","v1.0","Update-MgVirtualEventWebinarSession","PATCH","/solutions/virtualEvents/webinars/{param}/sessions/{param}","matched","Update-MgVirtualEventWebinarSession" +"Cmdlets","UpdateMgVirtualEventWebinarSessionAttendanceReport.g.cs","v1.0","Update-MgVirtualEventWebinarSessionAttendanceReport","PATCH","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}","matched","Update-MgVirtualEventWebinarSessionAttendanceReport" +"Cmdlets","UpdateMgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","PATCH","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"Cmdlets","GetMgGroupCalendar.g.cs","v1.0","Get-MgGroupCalendar","GET","/groups/{param}/calendar","matched","Get-MgGroupCalendar" +"Cmdlets","GetMgGroupCalendarAllowedCalendarSharingRolesWithUser.g.cs","v1.0","Get-MgGroupCalendarAllowedCalendarSharingRolesWithUser","GET","/groups/{param}/calendar/allowedCalendarSharingRoles(User='{User}')","mismatch","Invoke-MgCalendarGroupCalendar" +"Cmdlets","GetMgGroupCalendarEvent_Get.g.cs","v1.0","Get-MgGroupCalendarEvent","GET","/groups/{param}/calendar/events/{param}","matched","Get-MgGroupCalendarEvent" +"Cmdlets","GetMgGroupCalendarEvent_List.g.cs","v1.0","Get-MgGroupCalendarEvent","GET","/groups/{param}/calendar/events","matched","Get-MgGroupCalendarEvent" +"Cmdlets","GetMgGroupCalendarEvent.g.cs","v1.0","Get-MgGroupCalendarEvent","","","dispatcher","" +"Cmdlets","GetMgGroupCalendarEventAttachment_Get.g.cs","v1.0","Get-MgGroupCalendarEventAttachment","GET","/groups/{param}/calendar/events/{param}/attachments/{param}","no-oracle","" +"Cmdlets","GetMgGroupCalendarEventAttachment_List.g.cs","v1.0","Get-MgGroupCalendarEventAttachment","GET","/groups/{param}/calendar/events/{param}/attachments","no-oracle","" +"Cmdlets","GetMgGroupCalendarEventAttachment.g.cs","v1.0","Get-MgGroupCalendarEventAttachment","","","dispatcher","" +"Cmdlets","GetMgGroupCalendarEventAttachmentCount.g.cs","v1.0","Get-MgGroupCalendarEventAttachmentCount","GET","/groups/{param}/calendar/events/{param}/attachments/$count","no-oracle","" +"Cmdlets","GetMgGroupCalendarEventCalendar.g.cs","v1.0","Get-MgGroupCalendarEventCalendar","GET","/groups/{param}/calendar/events/{param}/calendar","no-oracle","" +"Cmdlets","GetMgGroupCalendarEventCount.g.cs","v1.0","Get-MgGroupCalendarEventCount","GET","/groups/{param}/calendar/events/$count","no-oracle","" +"Cmdlets","GetMgGroupCalendarEventDelta.g.cs","v1.0","Get-MgGroupCalendarEventDelta","GET","/groups/{param}/calendar/events/delta","no-oracle","" +"Cmdlets","GetMgGroupCalendarEventExtension_Get.g.cs","v1.0","Get-MgGroupCalendarEventExtension","GET","/groups/{param}/calendar/events/{param}/extensions/{param}","no-oracle","" +"Cmdlets","GetMgGroupCalendarEventExtension_List.g.cs","v1.0","Get-MgGroupCalendarEventExtension","GET","/groups/{param}/calendar/events/{param}/extensions","no-oracle","" +"Cmdlets","GetMgGroupCalendarEventExtension.g.cs","v1.0","Get-MgGroupCalendarEventExtension","","","dispatcher","" +"Cmdlets","GetMgGroupCalendarEventExtensionCount.g.cs","v1.0","Get-MgGroupCalendarEventExtensionCount","GET","/groups/{param}/calendar/events/{param}/extensions/$count","no-oracle","" +"Cmdlets","GetMgGroupCalendarEventInstance.g.cs","v1.0","Get-MgGroupCalendarEventInstance","GET","/groups/{param}/calendar/events/{param}/instances","no-oracle","" +"Cmdlets","GetMgGroupCalendarEventInstanceDelta.g.cs","v1.0","Get-MgGroupCalendarEventInstanceDelta","GET","/groups/{param}/calendar/events/{param}/instances/delta","no-oracle","" +"Cmdlets","GetMgGroupCalendarPermission_Get.g.cs","v1.0","Get-MgGroupCalendarPermission","GET","/groups/{param}/calendar/calendarPermissions/{param}","matched","Get-MgGroupCalendarPermission" +"Cmdlets","GetMgGroupCalendarPermission_List.g.cs","v1.0","Get-MgGroupCalendarPermission","GET","/groups/{param}/calendar/calendarPermissions","matched","Get-MgGroupCalendarPermission" +"Cmdlets","GetMgGroupCalendarPermission.g.cs","v1.0","Get-MgGroupCalendarPermission","","","dispatcher","" +"Cmdlets","GetMgGroupCalendarPermissionCount.g.cs","v1.0","Get-MgGroupCalendarPermissionCount","GET","/groups/{param}/calendar/calendarPermissions/$count","matched","Get-MgGroupCalendarPermissionCount" +"Cmdlets","GetMgGroupCalendarView.g.cs","v1.0","Get-MgGroupCalendarView","GET","/groups/{param}/calendar/calendarView","matched","Get-MgGroupCalendarView" +"Cmdlets","GetMgGroupCalendarViewDelta.g.cs","v1.0","Get-MgGroupCalendarViewDelta","GET","/groups/{param}/calendar/calendarView/delta","no-oracle","" +"Cmdlets","GetMgGroupEvent_Get.g.cs","v1.0","Get-MgGroupEvent","GET","/groups/{param}/events/{param}","matched","Get-MgGroupEvent" +"Cmdlets","GetMgGroupEvent_List.g.cs","v1.0","Get-MgGroupEvent","GET","/groups/{param}/events","matched","Get-MgGroupEvent" +"Cmdlets","GetMgGroupEvent.g.cs","v1.0","Get-MgGroupEvent","","","dispatcher","" +"Cmdlets","GetMgGroupEventAttachment_Get.g.cs","v1.0","Get-MgGroupEventAttachment","GET","/groups/{param}/events/{param}/attachments/{param}","matched","Get-MgGroupEventAttachment" +"Cmdlets","GetMgGroupEventAttachment_List.g.cs","v1.0","Get-MgGroupEventAttachment","GET","/groups/{param}/events/{param}/attachments","matched","Get-MgGroupEventAttachment" +"Cmdlets","GetMgGroupEventAttachment.g.cs","v1.0","Get-MgGroupEventAttachment","","","dispatcher","" +"Cmdlets","GetMgGroupEventAttachmentCount.g.cs","v1.0","Get-MgGroupEventAttachmentCount","GET","/groups/{param}/events/{param}/attachments/$count","matched","Get-MgGroupEventAttachmentCount" +"Cmdlets","GetMgGroupEventCalendar.g.cs","v1.0","Get-MgGroupEventCalendar","GET","/groups/{param}/events/{param}/calendar","matched","Get-MgGroupEventCalendar" +"Cmdlets","GetMgGroupEventCount.g.cs","v1.0","Get-MgGroupEventCount","GET","/groups/{param}/events/$count","matched","Get-MgGroupEventCount" +"Cmdlets","GetMgGroupEventDelta.g.cs","v1.0","Get-MgGroupEventDelta","GET","/groups/{param}/events/delta","matched","Get-MgGroupEventDelta" +"Cmdlets","GetMgGroupEventExtension_Get.g.cs","v1.0","Get-MgGroupEventExtension","GET","/groups/{param}/events/{param}/extensions/{param}","matched","Get-MgGroupEventExtension" +"Cmdlets","GetMgGroupEventExtension_List.g.cs","v1.0","Get-MgGroupEventExtension","GET","/groups/{param}/events/{param}/extensions","matched","Get-MgGroupEventExtension" +"Cmdlets","GetMgGroupEventExtension.g.cs","v1.0","Get-MgGroupEventExtension","","","dispatcher","" +"Cmdlets","GetMgGroupEventExtensionCount.g.cs","v1.0","Get-MgGroupEventExtensionCount","GET","/groups/{param}/events/{param}/extensions/$count","matched","Get-MgGroupEventExtensionCount" +"Cmdlets","GetMgGroupEventInstance.g.cs","v1.0","Get-MgGroupEventInstance","GET","/groups/{param}/events/{param}/instances","matched","Get-MgGroupEventInstance" +"Cmdlets","GetMgGroupEventInstanceDelta.g.cs","v1.0","Get-MgGroupEventInstanceDelta","GET","/groups/{param}/events/{param}/instances/delta","matched","Get-MgGroupEventInstanceDelta" +"Cmdlets","GetMgPlaceAsBuilding_Get.g.cs","v1.0","Get-MgPlaceAsBuilding","GET","/places/{param}/building","matched","Get-MgPlaceAsBuilding" +"Cmdlets","GetMgPlaceAsBuilding_List.g.cs","v1.0","Get-MgPlaceAsBuilding","GET","/places/building","matched","Get-MgPlaceAsBuilding" +"Cmdlets","GetMgPlaceAsBuilding.g.cs","v1.0","Get-MgPlaceAsBuilding","","","dispatcher","" +"Cmdlets","GetMgPlaceAsBuildingCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsBuildingCheckIn","GET","/places/{param}/building/checkIns/{param}","mismatch","Get-MgPlaceAsBuildingCheck" +"Cmdlets","GetMgPlaceAsBuildingCheckIn_List.g.cs","v1.0","Get-MgPlaceAsBuildingCheckIn","GET","/places/{param}/building/checkIns","mismatch","Get-MgPlaceAsBuildingCheck" +"Cmdlets","GetMgPlaceAsBuildingCheckIn.g.cs","v1.0","Get-MgPlaceAsBuildingCheckIn","","","dispatcher","" +"Cmdlets","GetMgPlaceAsBuildingCheckInCount.g.cs","v1.0","Get-MgPlaceAsBuildingCheckInCount","GET","/places/{param}/building/checkIns/$count","matched","Get-MgPlaceAsBuildingCheckInCount" +"Cmdlets","GetMgPlaceAsBuildingMap.g.cs","v1.0","Get-MgPlaceAsBuildingMap","GET","/places/{param}/building/map","matched","Get-MgPlaceAsBuildingMap" +"Cmdlets","GetMgPlaceAsBuildingMapFootprint_Get.g.cs","v1.0","Get-MgPlaceAsBuildingMapFootprint","GET","/places/{param}/building/map/footprints/{param}","matched","Get-MgPlaceAsBuildingMapFootprint" +"Cmdlets","GetMgPlaceAsBuildingMapFootprint_List.g.cs","v1.0","Get-MgPlaceAsBuildingMapFootprint","GET","/places/{param}/building/map/footprints","matched","Get-MgPlaceAsBuildingMapFootprint" +"Cmdlets","GetMgPlaceAsBuildingMapFootprint.g.cs","v1.0","Get-MgPlaceAsBuildingMapFootprint","","","dispatcher","" +"Cmdlets","GetMgPlaceAsBuildingMapFootprintCount.g.cs","v1.0","Get-MgPlaceAsBuildingMapFootprintCount","GET","/places/{param}/building/map/footprints/$count","matched","Get-MgPlaceAsBuildingMapFootprintCount" +"Cmdlets","GetMgPlaceAsBuildingMapLevel_Get.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevel","GET","/places/{param}/building/map/levels/{param}","matched","Get-MgPlaceAsBuildingMapLevel" +"Cmdlets","GetMgPlaceAsBuildingMapLevel_List.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevel","GET","/places/{param}/building/map/levels","matched","Get-MgPlaceAsBuildingMapLevel" +"Cmdlets","GetMgPlaceAsBuildingMapLevel.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevel","","","dispatcher","" +"Cmdlets","GetMgPlaceAsBuildingMapLevelCount.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelCount","GET","/places/{param}/building/map/levels/$count","matched","Get-MgPlaceAsBuildingMapLevelCount" +"Cmdlets","GetMgPlaceAsBuildingMapLevelFixture_Get.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelFixture","GET","/places/{param}/building/map/levels/{param}/fixtures/{param}","matched","Get-MgPlaceAsBuildingMapLevelFixture" +"Cmdlets","GetMgPlaceAsBuildingMapLevelFixture_List.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelFixture","GET","/places/{param}/building/map/levels/{param}/fixtures","matched","Get-MgPlaceAsBuildingMapLevelFixture" +"Cmdlets","GetMgPlaceAsBuildingMapLevelFixture.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelFixture","","","dispatcher","" +"Cmdlets","GetMgPlaceAsBuildingMapLevelFixtureCount.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelFixtureCount","GET","/places/{param}/building/map/levels/{param}/fixtures/$count","matched","Get-MgPlaceAsBuildingMapLevelFixtureCount" +"Cmdlets","GetMgPlaceAsBuildingMapLevelSection_Get.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelSection","GET","/places/{param}/building/map/levels/{param}/sections/{param}","matched","Get-MgPlaceAsBuildingMapLevelSection" +"Cmdlets","GetMgPlaceAsBuildingMapLevelSection_List.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelSection","GET","/places/{param}/building/map/levels/{param}/sections","matched","Get-MgPlaceAsBuildingMapLevelSection" +"Cmdlets","GetMgPlaceAsBuildingMapLevelSection.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelSection","","","dispatcher","" +"Cmdlets","GetMgPlaceAsBuildingMapLevelSectionCount.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelSectionCount","GET","/places/{param}/building/map/levels/{param}/sections/$count","matched","Get-MgPlaceAsBuildingMapLevelSectionCount" +"Cmdlets","GetMgPlaceAsBuildingMapLevelUnit_Get.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelUnit","GET","/places/{param}/building/map/levels/{param}/units/{param}","matched","Get-MgPlaceAsBuildingMapLevelUnit" +"Cmdlets","GetMgPlaceAsBuildingMapLevelUnit_List.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelUnit","GET","/places/{param}/building/map/levels/{param}/units","matched","Get-MgPlaceAsBuildingMapLevelUnit" +"Cmdlets","GetMgPlaceAsBuildingMapLevelUnit.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelUnit","","","dispatcher","" +"Cmdlets","GetMgPlaceAsBuildingMapLevelUnitCount.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelUnitCount","GET","/places/{param}/building/map/levels/{param}/units/$count","matched","Get-MgPlaceAsBuildingMapLevelUnitCount" +"Cmdlets","GetMgPlaceAsDesk_Get.g.cs","v1.0","Get-MgPlaceAsDesk","GET","/places/{param}/desk","matched","Get-MgPlaceAsDesk" +"Cmdlets","GetMgPlaceAsDesk_List.g.cs","v1.0","Get-MgPlaceAsDesk","GET","/places/desk","matched","Get-MgPlaceAsDesk" +"Cmdlets","GetMgPlaceAsDesk.g.cs","v1.0","Get-MgPlaceAsDesk","","","dispatcher","" +"Cmdlets","GetMgPlaceAsDeskCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsDeskCheckIn","GET","/places/{param}/desk/checkIns/{param}","mismatch","Get-MgPlaceAsDeskCheck" +"Cmdlets","GetMgPlaceAsDeskCheckIn_List.g.cs","v1.0","Get-MgPlaceAsDeskCheckIn","GET","/places/{param}/desk/checkIns","mismatch","Get-MgPlaceAsDeskCheck" +"Cmdlets","GetMgPlaceAsDeskCheckIn.g.cs","v1.0","Get-MgPlaceAsDeskCheckIn","","","dispatcher","" +"Cmdlets","GetMgPlaceAsDeskCheckInCount.g.cs","v1.0","Get-MgPlaceAsDeskCheckInCount","GET","/places/{param}/desk/checkIns/$count","matched","Get-MgPlaceAsDeskCheckInCount" +"Cmdlets","GetMgPlaceAsFloor_Get.g.cs","v1.0","Get-MgPlaceAsFloor","GET","/places/{param}/floor","matched","Get-MgPlaceAsFloor" +"Cmdlets","GetMgPlaceAsFloor_List.g.cs","v1.0","Get-MgPlaceAsFloor","GET","/places/floor","matched","Get-MgPlaceAsFloor" +"Cmdlets","GetMgPlaceAsFloor.g.cs","v1.0","Get-MgPlaceAsFloor","","","dispatcher","" +"Cmdlets","GetMgPlaceAsFloorCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsFloorCheckIn","GET","/places/{param}/floor/checkIns/{param}","mismatch","Get-MgPlaceAsFloorCheck" +"Cmdlets","GetMgPlaceAsFloorCheckIn_List.g.cs","v1.0","Get-MgPlaceAsFloorCheckIn","GET","/places/{param}/floor/checkIns","mismatch","Get-MgPlaceAsFloorCheck" +"Cmdlets","GetMgPlaceAsFloorCheckIn.g.cs","v1.0","Get-MgPlaceAsFloorCheckIn","","","dispatcher","" +"Cmdlets","GetMgPlaceAsFloorCheckInCount.g.cs","v1.0","Get-MgPlaceAsFloorCheckInCount","GET","/places/{param}/floor/checkIns/$count","matched","Get-MgPlaceAsFloorCheckInCount" +"Cmdlets","GetMgPlaceAsRoom_Get.g.cs","v1.0","Get-MgPlaceAsRoom","GET","/places/{param}/room","matched","Get-MgPlaceAsRoom" +"Cmdlets","GetMgPlaceAsRoom_List.g.cs","v1.0","Get-MgPlaceAsRoom","GET","/places/room","matched","Get-MgPlaceAsRoom" +"Cmdlets","GetMgPlaceAsRoom.g.cs","v1.0","Get-MgPlaceAsRoom","","","dispatcher","" +"Cmdlets","GetMgPlaceAsRoomCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsRoomCheckIn","GET","/places/{param}/room/checkIns/{param}","mismatch","Get-MgPlaceAsRoomCheck" +"Cmdlets","GetMgPlaceAsRoomCheckIn_List.g.cs","v1.0","Get-MgPlaceAsRoomCheckIn","GET","/places/{param}/room/checkIns","mismatch","Get-MgPlaceAsRoomCheck" +"Cmdlets","GetMgPlaceAsRoomCheckIn.g.cs","v1.0","Get-MgPlaceAsRoomCheckIn","","","dispatcher","" +"Cmdlets","GetMgPlaceAsRoomCheckInCount.g.cs","v1.0","Get-MgPlaceAsRoomCheckInCount","GET","/places/{param}/room/checkIns/$count","matched","Get-MgPlaceAsRoomCheckInCount" +"Cmdlets","GetMgPlaceAsRoomList_Get.g.cs","v1.0","Get-MgPlaceAsRoomList","GET","/places/{param}/roomList","matched","Get-MgPlaceAsRoomList" +"Cmdlets","GetMgPlaceAsRoomList_List.g.cs","v1.0","Get-MgPlaceAsRoomList","GET","/places/roomList","matched","Get-MgPlaceAsRoomList" +"Cmdlets","GetMgPlaceAsRoomList.g.cs","v1.0","Get-MgPlaceAsRoomList","","","dispatcher","" +"Cmdlets","GetMgPlaceAsRoomListCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsRoomListCheckIn","GET","/places/{param}/roomList/checkIns/{param}","mismatch","Get-MgPlaceAsRoomListCheck" +"Cmdlets","GetMgPlaceAsRoomListCheckIn_List.g.cs","v1.0","Get-MgPlaceAsRoomListCheckIn","GET","/places/{param}/roomList/checkIns","mismatch","Get-MgPlaceAsRoomListCheck" +"Cmdlets","GetMgPlaceAsRoomListCheckIn.g.cs","v1.0","Get-MgPlaceAsRoomListCheckIn","","","dispatcher","" +"Cmdlets","GetMgPlaceAsRoomListCheckInCount.g.cs","v1.0","Get-MgPlaceAsRoomListCheckInCount","GET","/places/{param}/roomList/checkIns/$count","matched","Get-MgPlaceAsRoomListCheckInCount" +"Cmdlets","GetMgPlaceAsRoomListRoom_Get.g.cs","v1.0","Get-MgPlaceAsRoomListRoom","GET","/places/{param}/roomList/rooms/{param}","matched","Get-MgPlaceAsRoomListRoom" +"Cmdlets","GetMgPlaceAsRoomListRoom_List.g.cs","v1.0","Get-MgPlaceAsRoomListRoom","GET","/places/{param}/roomList/rooms","matched","Get-MgPlaceAsRoomListRoom" +"Cmdlets","GetMgPlaceAsRoomListRoom.g.cs","v1.0","Get-MgPlaceAsRoomListRoom","","","dispatcher","" +"Cmdlets","GetMgPlaceAsRoomListRoomCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsRoomListRoomCheckIn","GET","/places/{param}/roomList/rooms/{param}/checkIns/{param}","mismatch","Get-MgPlaceAsRoomListRoomCheck" +"Cmdlets","GetMgPlaceAsRoomListRoomCheckIn_List.g.cs","v1.0","Get-MgPlaceAsRoomListRoomCheckIn","GET","/places/{param}/roomList/rooms/{param}/checkIns","mismatch","Get-MgPlaceAsRoomListRoomCheck" +"Cmdlets","GetMgPlaceAsRoomListRoomCheckIn.g.cs","v1.0","Get-MgPlaceAsRoomListRoomCheckIn","","","dispatcher","" +"Cmdlets","GetMgPlaceAsRoomListRoomCheckInCount.g.cs","v1.0","Get-MgPlaceAsRoomListRoomCheckInCount","GET","/places/{param}/roomList/rooms/{param}/checkIns/$count","matched","Get-MgPlaceAsRoomListRoomCheckInCount" +"Cmdlets","GetMgPlaceAsRoomListRoomCount.g.cs","v1.0","Get-MgPlaceAsRoomListRoomCount","GET","/places/{param}/roomList/rooms/$count","matched","Get-MgPlaceAsRoomListRoomCount" +"Cmdlets","GetMgPlaceAsRoomListWorkspace_Get.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspace","GET","/places/{param}/roomList/workspaces/{param}","matched","Get-MgPlaceAsRoomListWorkspace" +"Cmdlets","GetMgPlaceAsRoomListWorkspace_List.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspace","GET","/places/{param}/roomList/workspaces","matched","Get-MgPlaceAsRoomListWorkspace" +"Cmdlets","GetMgPlaceAsRoomListWorkspace.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspace","","","dispatcher","" +"Cmdlets","GetMgPlaceAsRoomListWorkspaceCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspaceCheckIn","GET","/places/{param}/roomList/workspaces/{param}/checkIns/{param}","mismatch","Get-MgPlaceAsRoomListWorkspaceCheck" +"Cmdlets","GetMgPlaceAsRoomListWorkspaceCheckIn_List.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspaceCheckIn","GET","/places/{param}/roomList/workspaces/{param}/checkIns","mismatch","Get-MgPlaceAsRoomListWorkspaceCheck" +"Cmdlets","GetMgPlaceAsRoomListWorkspaceCheckIn.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspaceCheckIn","","","dispatcher","" +"Cmdlets","GetMgPlaceAsRoomListWorkspaceCheckInCount.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspaceCheckInCount","GET","/places/{param}/roomList/workspaces/{param}/checkIns/$count","matched","Get-MgPlaceAsRoomListWorkspaceCheckInCount" +"Cmdlets","GetMgPlaceAsRoomListWorkspaceCount.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspaceCount","GET","/places/{param}/roomList/workspaces/$count","matched","Get-MgPlaceAsRoomListWorkspaceCount" +"Cmdlets","GetMgPlaceAsSection_Get.g.cs","v1.0","Get-MgPlaceAsSection","GET","/places/{param}/section","matched","Get-MgPlaceAsSection" +"Cmdlets","GetMgPlaceAsSection_List.g.cs","v1.0","Get-MgPlaceAsSection","GET","/places/section","matched","Get-MgPlaceAsSection" +"Cmdlets","GetMgPlaceAsSection.g.cs","v1.0","Get-MgPlaceAsSection","","","dispatcher","" +"Cmdlets","GetMgPlaceAsSectionCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsSectionCheckIn","GET","/places/{param}/section/checkIns/{param}","mismatch","Get-MgPlaceAsSectionCheck" +"Cmdlets","GetMgPlaceAsSectionCheckIn_List.g.cs","v1.0","Get-MgPlaceAsSectionCheckIn","GET","/places/{param}/section/checkIns","mismatch","Get-MgPlaceAsSectionCheck" +"Cmdlets","GetMgPlaceAsSectionCheckIn.g.cs","v1.0","Get-MgPlaceAsSectionCheckIn","","","dispatcher","" +"Cmdlets","GetMgPlaceAsSectionCheckInCount.g.cs","v1.0","Get-MgPlaceAsSectionCheckInCount","GET","/places/{param}/section/checkIns/$count","matched","Get-MgPlaceAsSectionCheckInCount" +"Cmdlets","GetMgPlaceAsWorkspace_Get.g.cs","v1.0","Get-MgPlaceAsWorkspace","GET","/places/{param}/workspace","matched","Get-MgPlaceAsWorkspace" +"Cmdlets","GetMgPlaceAsWorkspace_List.g.cs","v1.0","Get-MgPlaceAsWorkspace","GET","/places/workspace","matched","Get-MgPlaceAsWorkspace" +"Cmdlets","GetMgPlaceAsWorkspace.g.cs","v1.0","Get-MgPlaceAsWorkspace","","","dispatcher","" +"Cmdlets","GetMgPlaceAsWorkspaceCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsWorkspaceCheckIn","GET","/places/{param}/workspace/checkIns/{param}","mismatch","Get-MgPlaceAsWorkspaceCheck" +"Cmdlets","GetMgPlaceAsWorkspaceCheckIn_List.g.cs","v1.0","Get-MgPlaceAsWorkspaceCheckIn","GET","/places/{param}/workspace/checkIns","mismatch","Get-MgPlaceAsWorkspaceCheck" +"Cmdlets","GetMgPlaceAsWorkspaceCheckIn.g.cs","v1.0","Get-MgPlaceAsWorkspaceCheckIn","","","dispatcher","" +"Cmdlets","GetMgPlaceAsWorkspaceCheckInCount.g.cs","v1.0","Get-MgPlaceAsWorkspaceCheckInCount","GET","/places/{param}/workspace/checkIns/$count","matched","Get-MgPlaceAsWorkspaceCheckInCount" +"Cmdlets","GetMgPlaceCheckIn_Get.g.cs","v1.0","Get-MgPlaceCheckIn","GET","/places/{param}/checkIns/{param}","corrected","Get-MgPlaceCheck" +"Cmdlets","GetMgPlaceCheckIn_List.g.cs","v1.0","Get-MgPlaceCheckIn","GET","/places/{param}/checkIns","corrected","Get-MgPlaceCheck" +"Cmdlets","GetMgPlaceCheckIn.g.cs","v1.0","Get-MgPlaceCheckIn","","","dispatcher","" +"Cmdlets","GetMgPlaceCheckInCount.g.cs","v1.0","Get-MgPlaceCheckInCount","GET","/places/{param}/checkIns/$count","matched","Get-MgPlaceCheckInCount" +"Cmdlets","GetMgPlaceCount.g.cs","v1.0","Get-MgPlaceCount","GET","/places/$count","matched","Get-MgPlaceCount" +"Cmdlets","GetMgPlaceCountAsBuilding.g.cs","v1.0","Get-MgPlaceCountAsBuilding","GET","/places/building/$count","matched","Get-MgPlaceCountAsBuilding" +"Cmdlets","GetMgPlaceCountAsDesk.g.cs","v1.0","Get-MgPlaceCountAsDesk","GET","/places/desk/$count","matched","Get-MgPlaceCountAsDesk" +"Cmdlets","GetMgPlaceCountAsFloor.g.cs","v1.0","Get-MgPlaceCountAsFloor","GET","/places/floor/$count","matched","Get-MgPlaceCountAsFloor" +"Cmdlets","GetMgPlaceCountAsRoom.g.cs","v1.0","Get-MgPlaceCountAsRoom","GET","/places/room/$count","matched","Get-MgPlaceCountAsRoom" +"Cmdlets","GetMgPlaceCountAsRoomList.g.cs","v1.0","Get-MgPlaceCountAsRoomList","GET","/places/roomList/$count","matched","Get-MgPlaceCountAsRoomList" +"Cmdlets","GetMgPlaceCountAsSection.g.cs","v1.0","Get-MgPlaceCountAsSection","GET","/places/section/$count","matched","Get-MgPlaceCountAsSection" +"Cmdlets","GetMgPlaceCountAsWorkspace.g.cs","v1.0","Get-MgPlaceCountAsWorkspace","GET","/places/workspace/$count","matched","Get-MgPlaceCountAsWorkspace" +"Cmdlets","GetMgPlaceDescendants.g.cs","v1.0","Get-MgPlaceDescendants","GET","/places/{param}/descendants","mismatch","Invoke-MgDescendantPlace" +"Cmdlets","GetMgUserCalendar_Get.g.cs","v1.0","Get-MgUserCalendar","GET","/users/{param}/calendars/{param}","matched","Get-MgUserCalendar" +"Cmdlets","GetMgUserCalendar_List.g.cs","v1.0","Get-MgUserCalendar","GET","/users/{param}/calendars","matched","Get-MgUserCalendar" +"Cmdlets","GetMgUserCalendar.g.cs","v1.0","Get-MgUserCalendar","","","dispatcher","" +"Cmdlets","GetMgUserCalendarAllowedCalendarSharingRolesWithUser.g.cs","v1.0","Get-MgUserCalendarAllowedCalendarSharingRolesWithUser","GET","/users/{param}/calendar/allowedCalendarSharingRoles(User='{User}')","mismatch","Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles" +"Cmdlets","GetMgUserCalendarCount.g.cs","v1.0","Get-MgUserCalendarCount","GET","/users/{param}/calendars/$count","matched","Get-MgUserCalendarCount" +"Cmdlets","GetMgUserCalendarEvent.g.cs","v1.0","Get-MgUserCalendarEvent","GET","/users/{param}/calendars/{param}/events","matched","Get-MgUserCalendarEvent" +"Cmdlets","GetMgUserCalendarEventCount.g.cs","v1.0","Get-MgUserCalendarEventCount","GET","/users/{param}/calendar/events/$count","no-oracle","" +"Cmdlets","GetMgUserCalendarEventDelta.g.cs","v1.0","Get-MgUserCalendarEventDelta","GET","/users/{param}/calendar/events/delta","no-oracle","" +"Cmdlets","GetMgUserCalendarGroup_Get.g.cs","v1.0","Get-MgUserCalendarGroup","GET","/users/{param}/calendarGroups/{param}","matched","Get-MgUserCalendarGroup" +"Cmdlets","GetMgUserCalendarGroup_List.g.cs","v1.0","Get-MgUserCalendarGroup","GET","/users/{param}/calendarGroups","matched","Get-MgUserCalendarGroup" +"Cmdlets","GetMgUserCalendarGroup.g.cs","v1.0","Get-MgUserCalendarGroup","","","dispatcher","" +"Cmdlets","GetMgUserCalendarGroupCalendar_Get.g.cs","v1.0","Get-MgUserCalendarGroupCalendar","GET","/users/{param}/calendarGroups/{param}/calendars/{param}","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendar_List.g.cs","v1.0","Get-MgUserCalendarGroupCalendar","GET","/users/{param}/calendarGroups/{param}/calendars","matched","Get-MgUserCalendarGroupCalendar" +"Cmdlets","GetMgUserCalendarGroupCalendar.g.cs","v1.0","Get-MgUserCalendarGroupCalendar","","","dispatcher","" +"Cmdlets","GetMgUserCalendarGroupCalendarAllowedCalendarSharingRolesWithUser.g.cs","v1.0","Get-MgUserCalendarGroupCalendarAllowedCalendarSharingRolesWithUser","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/allowedCalendarSharingRoles(User='{User}')","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarCount.g.cs","v1.0","Get-MgUserCalendarGroupCalendarCount","GET","/users/{param}/calendarGroups/{param}/calendars/$count","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEvent_Get.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEvent","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEvent_List.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEvent","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEvent.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEvent","","","dispatcher","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventAttachment_Get.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventAttachment","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/{param}","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventAttachment_List.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventAttachment","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventAttachment.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventAttachment","","","dispatcher","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventAttachmentCount.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventAttachmentCount","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/$count","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventCalendar.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventCalendar","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/calendar","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventCount.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventCount","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/$count","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventDelta.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventDelta","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/delta","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventExtension_Get.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventExtension","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param}","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventExtension_List.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventExtension","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventExtension.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventExtension","","","dispatcher","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventExtensionCount.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventExtensionCount","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/$count","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventInstance.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventInstance","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/instances","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarEventInstanceDelta.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventInstanceDelta","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/instances/delta","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarPermission_Get.g.cs","v1.0","Get-MgUserCalendarGroupCalendarPermission","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param}","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarPermission_List.g.cs","v1.0","Get-MgUserCalendarGroupCalendarPermission","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarPermission.g.cs","v1.0","Get-MgUserCalendarGroupCalendarPermission","","","dispatcher","" +"Cmdlets","GetMgUserCalendarGroupCalendarPermissionCount.g.cs","v1.0","Get-MgUserCalendarGroupCalendarPermissionCount","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/$count","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarView.g.cs","v1.0","Get-MgUserCalendarGroupCalendarView","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarView","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCalendarViewDelta.g.cs","v1.0","Get-MgUserCalendarGroupCalendarViewDelta","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarView/delta","no-oracle","" +"Cmdlets","GetMgUserCalendarGroupCount.g.cs","v1.0","Get-MgUserCalendarGroupCount","GET","/users/{param}/calendarGroups/$count","matched","Get-MgUserCalendarGroupCount" +"Cmdlets","GetMgUserCalendarPermission_Get.g.cs","v1.0","Get-MgUserCalendarPermission","GET","/users/{param}/calendar/calendarPermissions/{param}","matched","Get-MgUserCalendarPermission" +"Cmdlets","GetMgUserCalendarPermission_List.g.cs","v1.0","Get-MgUserCalendarPermission","GET","/users/{param}/calendar/calendarPermissions","matched","Get-MgUserCalendarPermission" +"Cmdlets","GetMgUserCalendarPermission.g.cs","v1.0","Get-MgUserCalendarPermission","","","dispatcher","" +"Cmdlets","GetMgUserCalendarPermissionCount.g.cs","v1.0","Get-MgUserCalendarPermissionCount","GET","/users/{param}/calendar/calendarPermissions/$count","matched","Get-MgUserCalendarPermissionCount" +"Cmdlets","GetMgUserCalendarView.g.cs","v1.0","Get-MgUserCalendarView","GET","/users/{param}/calendar/calendarView","matched","Get-MgUserCalendarView" +"Cmdlets","GetMgUserCalendarViewDelta.g.cs","v1.0","Get-MgUserCalendarViewDelta","GET","/users/{param}/calendar/calendarView/delta","no-oracle","" +"Cmdlets","GetMgUserDefaultCalendar.g.cs","v1.0","Get-MgUserDefaultCalendar","GET","/users/{param}/calendar","matched","Get-MgUserDefaultCalendar" +"Cmdlets","GetMgUserDefaultCalendarEvent.g.cs","v1.0","Get-MgUserDefaultCalendarEvent","GET","/users/{param}/calendar/events","matched","Get-MgUserDefaultCalendarEvent" +"Cmdlets","GetMgUserEvent_Get.g.cs","v1.0","Get-MgUserEvent","GET","/users/{param}/events/{param}","matched","Get-MgUserEvent" +"Cmdlets","GetMgUserEvent_List.g.cs","v1.0","Get-MgUserEvent","GET","/users/{param}/events","matched","Get-MgUserEvent" +"Cmdlets","GetMgUserEvent.g.cs","v1.0","Get-MgUserEvent","","","dispatcher","" +"Cmdlets","GetMgUserEventAttachment_Get.g.cs","v1.0","Get-MgUserEventAttachment","GET","/users/{param}/events/{param}/attachments/{param}","matched","Get-MgUserEventAttachment" +"Cmdlets","GetMgUserEventAttachment_List.g.cs","v1.0","Get-MgUserEventAttachment","GET","/users/{param}/events/{param}/attachments","matched","Get-MgUserEventAttachment" +"Cmdlets","GetMgUserEventAttachment.g.cs","v1.0","Get-MgUserEventAttachment","","","dispatcher","" +"Cmdlets","GetMgUserEventAttachmentCount.g.cs","v1.0","Get-MgUserEventAttachmentCount","GET","/users/{param}/events/{param}/attachments/$count","matched","Get-MgUserEventAttachmentCount" +"Cmdlets","GetMgUserEventCalendar.g.cs","v1.0","Get-MgUserEventCalendar","GET","/users/{param}/events/{param}/calendar","matched","Get-MgUserEventCalendar" +"Cmdlets","GetMgUserEventCount.g.cs","v1.0","Get-MgUserEventCount","GET","/users/{param}/events/$count","matched","Get-MgUserEventCount" +"Cmdlets","GetMgUserEventDelta.g.cs","v1.0","Get-MgUserEventDelta","GET","/users/{param}/events/delta","matched","Get-MgUserEventDelta" +"Cmdlets","GetMgUserEventExtension_Get.g.cs","v1.0","Get-MgUserEventExtension","GET","/users/{param}/events/{param}/extensions/{param}","matched","Get-MgUserEventExtension" +"Cmdlets","GetMgUserEventExtension_List.g.cs","v1.0","Get-MgUserEventExtension","GET","/users/{param}/events/{param}/extensions","matched","Get-MgUserEventExtension" +"Cmdlets","GetMgUserEventExtension.g.cs","v1.0","Get-MgUserEventExtension","","","dispatcher","" +"Cmdlets","GetMgUserEventExtensionCount.g.cs","v1.0","Get-MgUserEventExtensionCount","GET","/users/{param}/events/{param}/extensions/$count","matched","Get-MgUserEventExtensionCount" +"Cmdlets","GetMgUserEventInstance.g.cs","v1.0","Get-MgUserEventInstance","GET","/users/{param}/events/{param}/instances","matched","Get-MgUserEventInstance" +"Cmdlets","GetMgUserEventInstanceDelta.g.cs","v1.0","Get-MgUserEventInstanceDelta","GET","/users/{param}/events/{param}/instances/delta","matched","Get-MgUserEventInstanceDelta" +"Cmdlets","InvokeMgGroupCalendarEventAccept.g.cs","v1.0","Invoke-MgGroupCalendarEventAccept","POST","/groups/{param}/calendar/events/{param}/accept","no-oracle","" +"Cmdlets","InvokeMgGroupCalendarEventAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgGroupCalendarEventAttachmentCreateUploadSession","POST","/groups/{param}/calendar/events/{param}/attachments/createUploadSession","no-oracle","" +"Cmdlets","InvokeMgGroupCalendarEventCancel.g.cs","v1.0","Invoke-MgGroupCalendarEventCancel","POST","/groups/{param}/calendar/events/{param}/cancel","no-oracle","" +"Cmdlets","InvokeMgGroupCalendarEventDecline.g.cs","v1.0","Invoke-MgGroupCalendarEventDecline","POST","/groups/{param}/calendar/events/{param}/decline","no-oracle","" +"Cmdlets","InvokeMgGroupCalendarEventDismissReminder.g.cs","v1.0","Invoke-MgGroupCalendarEventDismissReminder","POST","/groups/{param}/calendar/events/{param}/dismissReminder","no-oracle","" +"Cmdlets","InvokeMgGroupCalendarEventForward.g.cs","v1.0","Invoke-MgGroupCalendarEventForward","POST","/groups/{param}/calendar/events/{param}/forward","no-oracle","" +"Cmdlets","InvokeMgGroupCalendarEventPermanentDelete.g.cs","v1.0","Invoke-MgGroupCalendarEventPermanentDelete","POST","/groups/{param}/calendar/events/{param}/permanentDelete","no-oracle","" +"Cmdlets","InvokeMgGroupCalendarEventSnoozeReminder.g.cs","v1.0","Invoke-MgGroupCalendarEventSnoozeReminder","POST","/groups/{param}/calendar/events/{param}/snoozeReminder","no-oracle","" +"Cmdlets","InvokeMgGroupCalendarEventTentativelyAccept.g.cs","v1.0","Invoke-MgGroupCalendarEventTentativelyAccept","POST","/groups/{param}/calendar/events/{param}/tentativelyAccept","no-oracle","" +"Cmdlets","InvokeMgGroupCalendarGetSchedule.g.cs","v1.0","Invoke-MgGroupCalendarGetSchedule","POST","/groups/{param}/calendar/getSchedule","mismatch","Get-MgGroupCalendarSchedule" +"Cmdlets","InvokeMgGroupCalendarPermanentDelete.g.cs","v1.0","Invoke-MgGroupCalendarPermanentDelete","POST","/groups/{param}/calendar/permanentDelete","mismatch","Remove-MgGroupCalendarPermanent" +"Cmdlets","InvokeMgGroupEventAccept.g.cs","v1.0","Invoke-MgGroupEventAccept","POST","/groups/{param}/events/{param}/accept","mismatch","Invoke-MgAcceptGroupEvent" +"Cmdlets","InvokeMgGroupEventAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgGroupEventAttachmentCreateUploadSession","POST","/groups/{param}/events/{param}/attachments/createUploadSession","mismatch","New-MgGroupEventAttachmentUploadSession" +"Cmdlets","InvokeMgGroupEventCancel.g.cs","v1.0","Invoke-MgGroupEventCancel","POST","/groups/{param}/events/{param}/cancel","mismatch","Stop-MgGroupEvent" +"Cmdlets","InvokeMgGroupEventDecline.g.cs","v1.0","Invoke-MgGroupEventDecline","POST","/groups/{param}/events/{param}/decline","mismatch","Invoke-MgDeclineGroupEvent" +"Cmdlets","InvokeMgGroupEventDismissReminder.g.cs","v1.0","Invoke-MgGroupEventDismissReminder","POST","/groups/{param}/events/{param}/dismissReminder","mismatch","Invoke-MgDismissGroupEventReminder" +"Cmdlets","InvokeMgGroupEventForward.g.cs","v1.0","Invoke-MgGroupEventForward","POST","/groups/{param}/events/{param}/forward","mismatch","Invoke-MgForwardGroupEvent" +"Cmdlets","InvokeMgGroupEventPermanentDelete.g.cs","v1.0","Invoke-MgGroupEventPermanentDelete","POST","/groups/{param}/events/{param}/permanentDelete","mismatch","Remove-MgGroupEventPermanent" +"Cmdlets","InvokeMgGroupEventSnoozeReminder.g.cs","v1.0","Invoke-MgGroupEventSnoozeReminder","POST","/groups/{param}/events/{param}/snoozeReminder","mismatch","Invoke-MgSnoozeGroupEventReminder" +"Cmdlets","InvokeMgGroupEventTentativelyAccept.g.cs","v1.0","Invoke-MgGroupEventTentativelyAccept","POST","/groups/{param}/events/{param}/tentativelyAccept","mismatch","Invoke-MgAcceptGroupEventTentatively" +"Cmdlets","InvokeMgUserCalendarGetSchedule.g.cs","v1.0","Invoke-MgUserCalendarGetSchedule","POST","/users/{param}/calendar/getSchedule","no-oracle","" +"Cmdlets","InvokeMgUserCalendarGroupCalendarEventAccept.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventAccept","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/accept","no-oracle","" +"Cmdlets","InvokeMgUserCalendarGroupCalendarEventAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventAttachmentCreateUploadSession","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/createUploadSession","no-oracle","" +"Cmdlets","InvokeMgUserCalendarGroupCalendarEventCancel.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventCancel","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/cancel","no-oracle","" +"Cmdlets","InvokeMgUserCalendarGroupCalendarEventDecline.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventDecline","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/decline","no-oracle","" +"Cmdlets","InvokeMgUserCalendarGroupCalendarEventDismissReminder.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventDismissReminder","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/dismissReminder","no-oracle","" +"Cmdlets","InvokeMgUserCalendarGroupCalendarEventForward.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventForward","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/forward","no-oracle","" +"Cmdlets","InvokeMgUserCalendarGroupCalendarEventPermanentDelete.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventPermanentDelete","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/permanentDelete","no-oracle","" +"Cmdlets","InvokeMgUserCalendarGroupCalendarEventSnoozeReminder.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventSnoozeReminder","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/snoozeReminder","no-oracle","" +"Cmdlets","InvokeMgUserCalendarGroupCalendarEventTentativelyAccept.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventTentativelyAccept","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/tentativelyAccept","no-oracle","" +"Cmdlets","InvokeMgUserCalendarGroupCalendarGetSchedule.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarGetSchedule","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/getSchedule","no-oracle","" +"Cmdlets","InvokeMgUserCalendarGroupCalendarPermanentDelete.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarPermanentDelete","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/permanentDelete","no-oracle","" +"Cmdlets","InvokeMgUserCalendarPermanentDelete.g.cs","v1.0","Invoke-MgUserCalendarPermanentDelete","POST","/users/{param}/calendar/permanentDelete","mismatch","Remove-MgUserCalendarPermanent" +"Cmdlets","InvokeMgUserEventAccept.g.cs","v1.0","Invoke-MgUserEventAccept","POST","/users/{param}/events/{param}/accept","mismatch","Invoke-MgAcceptUserEvent" +"Cmdlets","InvokeMgUserEventAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgUserEventAttachmentCreateUploadSession","POST","/users/{param}/events/{param}/attachments/createUploadSession","mismatch","New-MgUserEventAttachmentUploadSession" +"Cmdlets","InvokeMgUserEventCancel.g.cs","v1.0","Invoke-MgUserEventCancel","POST","/users/{param}/events/{param}/cancel","mismatch","Stop-MgUserEvent" +"Cmdlets","InvokeMgUserEventDecline.g.cs","v1.0","Invoke-MgUserEventDecline","POST","/users/{param}/events/{param}/decline","mismatch","Invoke-MgDeclineUserEvent" +"Cmdlets","InvokeMgUserEventDismissReminder.g.cs","v1.0","Invoke-MgUserEventDismissReminder","POST","/users/{param}/events/{param}/dismissReminder","mismatch","Invoke-MgDismissUserEventReminder" +"Cmdlets","InvokeMgUserEventForward.g.cs","v1.0","Invoke-MgUserEventForward","POST","/users/{param}/events/{param}/forward","mismatch","Invoke-MgForwardUserEvent" +"Cmdlets","InvokeMgUserEventPermanentDelete.g.cs","v1.0","Invoke-MgUserEventPermanentDelete","POST","/users/{param}/events/{param}/permanentDelete","mismatch","Remove-MgUserEventPermanent" +"Cmdlets","InvokeMgUserEventSnoozeReminder.g.cs","v1.0","Invoke-MgUserEventSnoozeReminder","POST","/users/{param}/events/{param}/snoozeReminder","mismatch","Invoke-MgSnoozeUserEventReminder" +"Cmdlets","InvokeMgUserEventTentativelyAccept.g.cs","v1.0","Invoke-MgUserEventTentativelyAccept","POST","/users/{param}/events/{param}/tentativelyAccept","mismatch","Invoke-MgAcceptUserEventTentatively" +"Cmdlets","NewMgGroupCalendarEvent.g.cs","v1.0","New-MgGroupCalendarEvent","POST","/groups/{param}/calendar/events","matched","New-MgGroupCalendarEvent" +"Cmdlets","NewMgGroupCalendarEventAttachment.g.cs","v1.0","New-MgGroupCalendarEventAttachment","POST","/groups/{param}/calendar/events/{param}/attachments","no-oracle","" +"Cmdlets","NewMgGroupCalendarEventExtension.g.cs","v1.0","New-MgGroupCalendarEventExtension","POST","/groups/{param}/calendar/events/{param}/extensions","no-oracle","" +"Cmdlets","NewMgGroupCalendarPermission.g.cs","v1.0","New-MgGroupCalendarPermission","POST","/groups/{param}/calendar/calendarPermissions","matched","New-MgGroupCalendarPermission" +"Cmdlets","NewMgGroupEvent.g.cs","v1.0","New-MgGroupEvent","POST","/groups/{param}/events","matched","New-MgGroupEvent" +"Cmdlets","NewMgGroupEventAttachment.g.cs","v1.0","New-MgGroupEventAttachment","POST","/groups/{param}/events/{param}/attachments","matched","New-MgGroupEventAttachment" +"Cmdlets","NewMgGroupEventExtension.g.cs","v1.0","New-MgGroupEventExtension","POST","/groups/{param}/events/{param}/extensions","matched","New-MgGroupEventExtension" +"Cmdlets","NewMgPlace.g.cs","v1.0","New-MgPlace","POST","/places","matched","New-MgPlace" +"Cmdlets","NewMgPlaceAsBuildingCheckIn.g.cs","v1.0","New-MgPlaceAsBuildingCheckIn","POST","/places/{param}/building/checkIns","mismatch","New-MgPlaceAsBuildingCheck" +"Cmdlets","NewMgPlaceAsBuildingMapFootprint.g.cs","v1.0","New-MgPlaceAsBuildingMapFootprint","POST","/places/{param}/building/map/footprints","matched","New-MgPlaceAsBuildingMapFootprint" +"Cmdlets","NewMgPlaceAsBuildingMapLevel.g.cs","v1.0","New-MgPlaceAsBuildingMapLevel","POST","/places/{param}/building/map/levels","matched","New-MgPlaceAsBuildingMapLevel" +"Cmdlets","NewMgPlaceAsBuildingMapLevelFixture.g.cs","v1.0","New-MgPlaceAsBuildingMapLevelFixture","POST","/places/{param}/building/map/levels/{param}/fixtures","matched","New-MgPlaceAsBuildingMapLevelFixture" +"Cmdlets","NewMgPlaceAsBuildingMapLevelSection.g.cs","v1.0","New-MgPlaceAsBuildingMapLevelSection","POST","/places/{param}/building/map/levels/{param}/sections","matched","New-MgPlaceAsBuildingMapLevelSection" +"Cmdlets","NewMgPlaceAsBuildingMapLevelUnit.g.cs","v1.0","New-MgPlaceAsBuildingMapLevelUnit","POST","/places/{param}/building/map/levels/{param}/units","matched","New-MgPlaceAsBuildingMapLevelUnit" +"Cmdlets","NewMgPlaceAsDeskCheckIn.g.cs","v1.0","New-MgPlaceAsDeskCheckIn","POST","/places/{param}/desk/checkIns","mismatch","New-MgPlaceAsDeskCheck" +"Cmdlets","NewMgPlaceAsFloorCheckIn.g.cs","v1.0","New-MgPlaceAsFloorCheckIn","POST","/places/{param}/floor/checkIns","mismatch","New-MgPlaceAsFloorCheck" +"Cmdlets","NewMgPlaceAsRoomCheckIn.g.cs","v1.0","New-MgPlaceAsRoomCheckIn","POST","/places/{param}/room/checkIns","mismatch","New-MgPlaceAsRoomCheck" +"Cmdlets","NewMgPlaceAsRoomListCheckIn.g.cs","v1.0","New-MgPlaceAsRoomListCheckIn","POST","/places/{param}/roomList/checkIns","mismatch","New-MgPlaceAsRoomListCheck" +"Cmdlets","NewMgPlaceAsRoomListRoom.g.cs","v1.0","New-MgPlaceAsRoomListRoom","POST","/places/{param}/roomList/rooms","matched","New-MgPlaceAsRoomListRoom" +"Cmdlets","NewMgPlaceAsRoomListRoomCheckIn.g.cs","v1.0","New-MgPlaceAsRoomListRoomCheckIn","POST","/places/{param}/roomList/rooms/{param}/checkIns","mismatch","New-MgPlaceAsRoomListRoomCheck" +"Cmdlets","NewMgPlaceAsRoomListWorkspace.g.cs","v1.0","New-MgPlaceAsRoomListWorkspace","POST","/places/{param}/roomList/workspaces","matched","New-MgPlaceAsRoomListWorkspace" +"Cmdlets","NewMgPlaceAsRoomListWorkspaceCheckIn.g.cs","v1.0","New-MgPlaceAsRoomListWorkspaceCheckIn","POST","/places/{param}/roomList/workspaces/{param}/checkIns","mismatch","New-MgPlaceAsRoomListWorkspaceCheck" +"Cmdlets","NewMgPlaceAsSectionCheckIn.g.cs","v1.0","New-MgPlaceAsSectionCheckIn","POST","/places/{param}/section/checkIns","mismatch","New-MgPlaceAsSectionCheck" +"Cmdlets","NewMgPlaceAsWorkspaceCheckIn.g.cs","v1.0","New-MgPlaceAsWorkspaceCheckIn","POST","/places/{param}/workspace/checkIns","mismatch","New-MgPlaceAsWorkspaceCheck" +"Cmdlets","NewMgPlaceCheckIn.g.cs","v1.0","New-MgPlaceCheckIn","POST","/places/{param}/checkIns","corrected","New-MgPlaceCheck" +"Cmdlets","NewMgUserCalendar.g.cs","v1.0","New-MgUserCalendar","POST","/users/{param}/calendars","matched","New-MgUserCalendar" +"Cmdlets","NewMgUserCalendarEvent.g.cs","v1.0","New-MgUserCalendarEvent","POST","/users/{param}/calendars/{param}/events","matched","New-MgUserCalendarEvent" +"Cmdlets","NewMgUserCalendarGroup.g.cs","v1.0","New-MgUserCalendarGroup","POST","/users/{param}/calendarGroups","matched","New-MgUserCalendarGroup" +"Cmdlets","NewMgUserCalendarGroupCalendar.g.cs","v1.0","New-MgUserCalendarGroupCalendar","POST","/users/{param}/calendarGroups/{param}/calendars","matched","New-MgUserCalendarGroupCalendar" +"Cmdlets","NewMgUserCalendarGroupCalendarEvent.g.cs","v1.0","New-MgUserCalendarGroupCalendarEvent","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events","no-oracle","" +"Cmdlets","NewMgUserCalendarGroupCalendarEventAttachment.g.cs","v1.0","New-MgUserCalendarGroupCalendarEventAttachment","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments","no-oracle","" +"Cmdlets","NewMgUserCalendarGroupCalendarEventExtension.g.cs","v1.0","New-MgUserCalendarGroupCalendarEventExtension","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions","no-oracle","" +"Cmdlets","NewMgUserCalendarGroupCalendarPermission.g.cs","v1.0","New-MgUserCalendarGroupCalendarPermission","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions","no-oracle","" +"Cmdlets","NewMgUserCalendarPermission.g.cs","v1.0","New-MgUserCalendarPermission","POST","/users/{param}/calendar/calendarPermissions","matched","New-MgUserCalendarPermission" +"Cmdlets","NewMgUserDefaultCalendarEvent.g.cs","v1.0","New-MgUserDefaultCalendarEvent","POST","/users/{param}/calendar/events","matched","New-MgUserDefaultCalendarEvent" +"Cmdlets","NewMgUserEvent.g.cs","v1.0","New-MgUserEvent","POST","/users/{param}/events","matched","New-MgUserEvent" +"Cmdlets","NewMgUserEventAttachment.g.cs","v1.0","New-MgUserEventAttachment","POST","/users/{param}/events/{param}/attachments","matched","New-MgUserEventAttachment" +"Cmdlets","NewMgUserEventExtension.g.cs","v1.0","New-MgUserEventExtension","POST","/users/{param}/events/{param}/extensions","matched","New-MgUserEventExtension" +"Cmdlets","RemoveMgGroupCalendarEvent.g.cs","v1.0","Remove-MgGroupCalendarEvent","DELETE","/groups/{param}/calendar/events/{param}","matched","Remove-MgGroupCalendarEvent" +"Cmdlets","RemoveMgGroupCalendarEventAttachment.g.cs","v1.0","Remove-MgGroupCalendarEventAttachment","DELETE","/groups/{param}/calendar/events/{param}/attachments/{param}","no-oracle","" +"Cmdlets","RemoveMgGroupCalendarEventExtension.g.cs","v1.0","Remove-MgGroupCalendarEventExtension","DELETE","/groups/{param}/calendar/events/{param}/extensions/{param}","no-oracle","" +"Cmdlets","RemoveMgGroupCalendarPermission.g.cs","v1.0","Remove-MgGroupCalendarPermission","DELETE","/groups/{param}/calendar/calendarPermissions/{param}","matched","Remove-MgGroupCalendarPermission" +"Cmdlets","RemoveMgGroupEvent.g.cs","v1.0","Remove-MgGroupEvent","DELETE","/groups/{param}/events/{param}","matched","Remove-MgGroupEvent" +"Cmdlets","RemoveMgGroupEventAttachment.g.cs","v1.0","Remove-MgGroupEventAttachment","DELETE","/groups/{param}/events/{param}/attachments/{param}","matched","Remove-MgGroupEventAttachment" +"Cmdlets","RemoveMgGroupEventExtension.g.cs","v1.0","Remove-MgGroupEventExtension","DELETE","/groups/{param}/events/{param}/extensions/{param}","matched","Remove-MgGroupEventExtension" +"Cmdlets","RemoveMgPlace.g.cs","v1.0","Remove-MgPlace","DELETE","/places/{param}","matched","Remove-MgPlace" +"Cmdlets","RemoveMgPlaceAsBuildingCheckIn.g.cs","v1.0","Remove-MgPlaceAsBuildingCheckIn","DELETE","/places/{param}/building/checkIns/{param}","mismatch","Remove-MgPlaceAsBuildingCheck" +"Cmdlets","RemoveMgPlaceAsBuildingMap.g.cs","v1.0","Remove-MgPlaceAsBuildingMap","DELETE","/places/{param}/building/map","matched","Remove-MgPlaceAsBuildingMap" +"Cmdlets","RemoveMgPlaceAsBuildingMapFootprint.g.cs","v1.0","Remove-MgPlaceAsBuildingMapFootprint","DELETE","/places/{param}/building/map/footprints/{param}","matched","Remove-MgPlaceAsBuildingMapFootprint" +"Cmdlets","RemoveMgPlaceAsBuildingMapLevel.g.cs","v1.0","Remove-MgPlaceAsBuildingMapLevel","DELETE","/places/{param}/building/map/levels/{param}","matched","Remove-MgPlaceAsBuildingMapLevel" +"Cmdlets","RemoveMgPlaceAsBuildingMapLevelFixture.g.cs","v1.0","Remove-MgPlaceAsBuildingMapLevelFixture","DELETE","/places/{param}/building/map/levels/{param}/fixtures/{param}","matched","Remove-MgPlaceAsBuildingMapLevelFixture" +"Cmdlets","RemoveMgPlaceAsBuildingMapLevelSection.g.cs","v1.0","Remove-MgPlaceAsBuildingMapLevelSection","DELETE","/places/{param}/building/map/levels/{param}/sections/{param}","matched","Remove-MgPlaceAsBuildingMapLevelSection" +"Cmdlets","RemoveMgPlaceAsBuildingMapLevelUnit.g.cs","v1.0","Remove-MgPlaceAsBuildingMapLevelUnit","DELETE","/places/{param}/building/map/levels/{param}/units/{param}","matched","Remove-MgPlaceAsBuildingMapLevelUnit" +"Cmdlets","RemoveMgPlaceAsDeskCheckIn.g.cs","v1.0","Remove-MgPlaceAsDeskCheckIn","DELETE","/places/{param}/desk/checkIns/{param}","mismatch","Remove-MgPlaceAsDeskCheck" +"Cmdlets","RemoveMgPlaceAsFloorCheckIn.g.cs","v1.0","Remove-MgPlaceAsFloorCheckIn","DELETE","/places/{param}/floor/checkIns/{param}","mismatch","Remove-MgPlaceAsFloorCheck" +"Cmdlets","RemoveMgPlaceAsRoomCheckIn.g.cs","v1.0","Remove-MgPlaceAsRoomCheckIn","DELETE","/places/{param}/room/checkIns/{param}","mismatch","Remove-MgPlaceAsRoomCheck" +"Cmdlets","RemoveMgPlaceAsRoomListCheckIn.g.cs","v1.0","Remove-MgPlaceAsRoomListCheckIn","DELETE","/places/{param}/roomList/checkIns/{param}","mismatch","Remove-MgPlaceAsRoomListCheck" +"Cmdlets","RemoveMgPlaceAsRoomListRoom.g.cs","v1.0","Remove-MgPlaceAsRoomListRoom","DELETE","/places/{param}/roomList/rooms/{param}","matched","Remove-MgPlaceAsRoomListRoom" +"Cmdlets","RemoveMgPlaceAsRoomListRoomCheckIn.g.cs","v1.0","Remove-MgPlaceAsRoomListRoomCheckIn","DELETE","/places/{param}/roomList/rooms/{param}/checkIns/{param}","mismatch","Remove-MgPlaceAsRoomListRoomCheck" +"Cmdlets","RemoveMgPlaceAsRoomListWorkspace.g.cs","v1.0","Remove-MgPlaceAsRoomListWorkspace","DELETE","/places/{param}/roomList/workspaces/{param}","matched","Remove-MgPlaceAsRoomListWorkspace" +"Cmdlets","RemoveMgPlaceAsRoomListWorkspaceCheckIn.g.cs","v1.0","Remove-MgPlaceAsRoomListWorkspaceCheckIn","DELETE","/places/{param}/roomList/workspaces/{param}/checkIns/{param}","mismatch","Remove-MgPlaceAsRoomListWorkspaceCheck" +"Cmdlets","RemoveMgPlaceAsSectionCheckIn.g.cs","v1.0","Remove-MgPlaceAsSectionCheckIn","DELETE","/places/{param}/section/checkIns/{param}","mismatch","Remove-MgPlaceAsSectionCheck" +"Cmdlets","RemoveMgPlaceAsWorkspaceCheckIn.g.cs","v1.0","Remove-MgPlaceAsWorkspaceCheckIn","DELETE","/places/{param}/workspace/checkIns/{param}","mismatch","Remove-MgPlaceAsWorkspaceCheck" +"Cmdlets","RemoveMgPlaceCheckIn.g.cs","v1.0","Remove-MgPlaceCheckIn","DELETE","/places/{param}/checkIns/{param}","corrected","Remove-MgPlaceCheck" +"Cmdlets","RemoveMgUserCalendar.g.cs","v1.0","Remove-MgUserCalendar","DELETE","/users/{param}/calendars/{param}","no-oracle","" +"Cmdlets","RemoveMgUserCalendarGroup.g.cs","v1.0","Remove-MgUserCalendarGroup","DELETE","/users/{param}/calendarGroups/{param}","matched","Remove-MgUserCalendarGroup" +"Cmdlets","RemoveMgUserCalendarGroupCalendar.g.cs","v1.0","Remove-MgUserCalendarGroupCalendar","DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}","no-oracle","" +"Cmdlets","RemoveMgUserCalendarGroupCalendarEvent.g.cs","v1.0","Remove-MgUserCalendarGroupCalendarEvent","DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}","no-oracle","" +"Cmdlets","RemoveMgUserCalendarGroupCalendarEventAttachment.g.cs","v1.0","Remove-MgUserCalendarGroupCalendarEventAttachment","DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/{param}","no-oracle","" +"Cmdlets","RemoveMgUserCalendarGroupCalendarEventExtension.g.cs","v1.0","Remove-MgUserCalendarGroupCalendarEventExtension","DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param}","no-oracle","" +"Cmdlets","RemoveMgUserCalendarGroupCalendarPermission.g.cs","v1.0","Remove-MgUserCalendarGroupCalendarPermission","DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param}","no-oracle","" +"Cmdlets","RemoveMgUserCalendarPermission.g.cs","v1.0","Remove-MgUserCalendarPermission","DELETE","/users/{param}/calendar/calendarPermissions/{param}","matched","Remove-MgUserCalendarPermission" +"Cmdlets","RemoveMgUserEvent.g.cs","v1.0","Remove-MgUserEvent","DELETE","/users/{param}/events/{param}","matched","Remove-MgUserEvent" +"Cmdlets","RemoveMgUserEventAttachment.g.cs","v1.0","Remove-MgUserEventAttachment","DELETE","/users/{param}/events/{param}/attachments/{param}","matched","Remove-MgUserEventAttachment" +"Cmdlets","RemoveMgUserEventExtension.g.cs","v1.0","Remove-MgUserEventExtension","DELETE","/users/{param}/events/{param}/extensions/{param}","matched","Remove-MgUserEventExtension" +"Cmdlets","UpdateMgGroupCalendarEvent.g.cs","v1.0","Update-MgGroupCalendarEvent","PATCH","/groups/{param}/calendar/events/{param}","matched","Update-MgGroupCalendarEvent" +"Cmdlets","UpdateMgGroupCalendarEventExtension.g.cs","v1.0","Update-MgGroupCalendarEventExtension","PATCH","/groups/{param}/calendar/events/{param}/extensions/{param}","no-oracle","" +"Cmdlets","UpdateMgGroupCalendarPermission.g.cs","v1.0","Update-MgGroupCalendarPermission","PATCH","/groups/{param}/calendar/calendarPermissions/{param}","matched","Update-MgGroupCalendarPermission" +"Cmdlets","UpdateMgGroupEvent.g.cs","v1.0","Update-MgGroupEvent","PATCH","/groups/{param}/events/{param}","matched","Update-MgGroupEvent" +"Cmdlets","UpdateMgGroupEventExtension.g.cs","v1.0","Update-MgGroupEventExtension","PATCH","/groups/{param}/events/{param}/extensions/{param}","matched","Update-MgGroupEventExtension" +"Cmdlets","UpdateMgPlace.g.cs","v1.0","Update-MgPlace","PATCH","/places/{param}","matched","Update-MgPlace" +"Cmdlets","UpdateMgPlaceAsBuildingCheckIn.g.cs","v1.0","Update-MgPlaceAsBuildingCheckIn","PATCH","/places/{param}/building/checkIns/{param}","mismatch","Update-MgPlaceAsBuildingCheck" +"Cmdlets","UpdateMgPlaceAsBuildingMap.g.cs","v1.0","Update-MgPlaceAsBuildingMap","PATCH","/places/{param}/building/map","matched","Update-MgPlaceAsBuildingMap" +"Cmdlets","UpdateMgPlaceAsBuildingMapFootprint.g.cs","v1.0","Update-MgPlaceAsBuildingMapFootprint","PATCH","/places/{param}/building/map/footprints/{param}","matched","Update-MgPlaceAsBuildingMapFootprint" +"Cmdlets","UpdateMgPlaceAsBuildingMapLevel.g.cs","v1.0","Update-MgPlaceAsBuildingMapLevel","PATCH","/places/{param}/building/map/levels/{param}","matched","Update-MgPlaceAsBuildingMapLevel" +"Cmdlets","UpdateMgPlaceAsBuildingMapLevelFixture.g.cs","v1.0","Update-MgPlaceAsBuildingMapLevelFixture","PATCH","/places/{param}/building/map/levels/{param}/fixtures/{param}","matched","Update-MgPlaceAsBuildingMapLevelFixture" +"Cmdlets","UpdateMgPlaceAsBuildingMapLevelSection.g.cs","v1.0","Update-MgPlaceAsBuildingMapLevelSection","PATCH","/places/{param}/building/map/levels/{param}/sections/{param}","matched","Update-MgPlaceAsBuildingMapLevelSection" +"Cmdlets","UpdateMgPlaceAsBuildingMapLevelUnit.g.cs","v1.0","Update-MgPlaceAsBuildingMapLevelUnit","PATCH","/places/{param}/building/map/levels/{param}/units/{param}","matched","Update-MgPlaceAsBuildingMapLevelUnit" +"Cmdlets","UpdateMgPlaceAsDeskCheckIn.g.cs","v1.0","Update-MgPlaceAsDeskCheckIn","PATCH","/places/{param}/desk/checkIns/{param}","mismatch","Update-MgPlaceAsDeskCheck" +"Cmdlets","UpdateMgPlaceAsFloorCheckIn.g.cs","v1.0","Update-MgPlaceAsFloorCheckIn","PATCH","/places/{param}/floor/checkIns/{param}","mismatch","Update-MgPlaceAsFloorCheck" +"Cmdlets","UpdateMgPlaceAsRoomCheckIn.g.cs","v1.0","Update-MgPlaceAsRoomCheckIn","PATCH","/places/{param}/room/checkIns/{param}","mismatch","Update-MgPlaceAsRoomCheck" +"Cmdlets","UpdateMgPlaceAsRoomListCheckIn.g.cs","v1.0","Update-MgPlaceAsRoomListCheckIn","PATCH","/places/{param}/roomList/checkIns/{param}","mismatch","Update-MgPlaceAsRoomListCheck" +"Cmdlets","UpdateMgPlaceAsRoomListRoom.g.cs","v1.0","Update-MgPlaceAsRoomListRoom","PATCH","/places/{param}/roomList/rooms/{param}","matched","Update-MgPlaceAsRoomListRoom" +"Cmdlets","UpdateMgPlaceAsRoomListRoomCheckIn.g.cs","v1.0","Update-MgPlaceAsRoomListRoomCheckIn","PATCH","/places/{param}/roomList/rooms/{param}/checkIns/{param}","mismatch","Update-MgPlaceAsRoomListRoomCheck" +"Cmdlets","UpdateMgPlaceAsRoomListWorkspace.g.cs","v1.0","Update-MgPlaceAsRoomListWorkspace","PATCH","/places/{param}/roomList/workspaces/{param}","matched","Update-MgPlaceAsRoomListWorkspace" +"Cmdlets","UpdateMgPlaceAsRoomListWorkspaceCheckIn.g.cs","v1.0","Update-MgPlaceAsRoomListWorkspaceCheckIn","PATCH","/places/{param}/roomList/workspaces/{param}/checkIns/{param}","mismatch","Update-MgPlaceAsRoomListWorkspaceCheck" +"Cmdlets","UpdateMgPlaceAsSectionCheckIn.g.cs","v1.0","Update-MgPlaceAsSectionCheckIn","PATCH","/places/{param}/section/checkIns/{param}","mismatch","Update-MgPlaceAsSectionCheck" +"Cmdlets","UpdateMgPlaceAsWorkspaceCheckIn.g.cs","v1.0","Update-MgPlaceAsWorkspaceCheckIn","PATCH","/places/{param}/workspace/checkIns/{param}","mismatch","Update-MgPlaceAsWorkspaceCheck" +"Cmdlets","UpdateMgPlaceCheckIn.g.cs","v1.0","Update-MgPlaceCheckIn","PATCH","/places/{param}/checkIns/{param}","corrected","Update-MgPlaceCheck" +"Cmdlets","UpdateMgUserCalendar.g.cs","v1.0","Update-MgUserCalendar","PATCH","/users/{param}/calendars/{param}","no-oracle","" +"Cmdlets","UpdateMgUserCalendarGroup.g.cs","v1.0","Update-MgUserCalendarGroup","PATCH","/users/{param}/calendarGroups/{param}","matched","Update-MgUserCalendarGroup" +"Cmdlets","UpdateMgUserCalendarGroupCalendar.g.cs","v1.0","Update-MgUserCalendarGroupCalendar","PATCH","/users/{param}/calendarGroups/{param}/calendars/{param}","no-oracle","" +"Cmdlets","UpdateMgUserCalendarGroupCalendarEvent.g.cs","v1.0","Update-MgUserCalendarGroupCalendarEvent","PATCH","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}","no-oracle","" +"Cmdlets","UpdateMgUserCalendarGroupCalendarEventExtension.g.cs","v1.0","Update-MgUserCalendarGroupCalendarEventExtension","PATCH","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param}","no-oracle","" +"Cmdlets","UpdateMgUserCalendarGroupCalendarPermission.g.cs","v1.0","Update-MgUserCalendarGroupCalendarPermission","PATCH","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param}","no-oracle","" +"Cmdlets","UpdateMgUserCalendarPermission.g.cs","v1.0","Update-MgUserCalendarPermission","PATCH","/users/{param}/calendar/calendarPermissions/{param}","matched","Update-MgUserCalendarPermission" +"Cmdlets","UpdateMgUserEvent.g.cs","v1.0","Update-MgUserEvent","PATCH","/users/{param}/events/{param}","matched","Update-MgUserEvent" +"Cmdlets","UpdateMgUserEventExtension.g.cs","v1.0","Update-MgUserEventExtension","PATCH","/users/{param}/events/{param}/extensions/{param}","matched","Update-MgUserEventExtension" +"Cmdlets","GetMgSubscription_Get.g.cs","v1.0","Get-MgSubscription","GET","/subscriptions/{param}","matched","Get-MgSubscription" +"Cmdlets","GetMgSubscription_List.g.cs","v1.0","Get-MgSubscription","GET","/subscriptions","matched","Get-MgSubscription" +"Cmdlets","GetMgSubscription.g.cs","v1.0","Get-MgSubscription","","","dispatcher","" +"Cmdlets","InvokeMgSubscriptionReauthorize.g.cs","v1.0","Invoke-MgSubscriptionReauthorize","POST","/subscriptions/{param}/reauthorize","mismatch","Invoke-MgReauthorizeSubscription" +"Cmdlets","NewMgSubscription.g.cs","v1.0","New-MgSubscription","POST","/subscriptions","matched","New-MgSubscription" +"Cmdlets","RemoveMgSubscription.g.cs","v1.0","Remove-MgSubscription","DELETE","/subscriptions/{param}","matched","Remove-MgSubscription" +"Cmdlets","UpdateMgSubscription.g.cs","v1.0","Update-MgSubscription","PATCH","/subscriptions/{param}","matched","Update-MgSubscription" +"Cmdlets","GetMgCommunication.g.cs","v1.0","Get-MgCommunication","GET","/communications","no-oracle","" +"Cmdlets","GetMgCommunicationAdhocCall_Get.g.cs","v1.0","Get-MgCommunicationAdhocCall","GET","/communications/adhocCalls/{param}","matched","Get-MgCommunicationAdhocCall" +"Cmdlets","GetMgCommunicationAdhocCall_List.g.cs","v1.0","Get-MgCommunicationAdhocCall","GET","/communications/adhocCalls","matched","Get-MgCommunicationAdhocCall" +"Cmdlets","GetMgCommunicationAdhocCall.g.cs","v1.0","Get-MgCommunicationAdhocCall","","","dispatcher","" +"Cmdlets","GetMgCommunicationAdhocCallCount.g.cs","v1.0","Get-MgCommunicationAdhocCallCount","GET","/communications/adhocCalls/$count","matched","Get-MgCommunicationAdhocCallCount" +"Cmdlets","GetMgCommunicationAdhocCallRecording_Get.g.cs","v1.0","Get-MgCommunicationAdhocCallRecording","GET","/communications/adhocCalls/{param}/recordings/{param}","matched","Get-MgCommunicationAdhocCallRecording" +"Cmdlets","GetMgCommunicationAdhocCallRecording_List.g.cs","v1.0","Get-MgCommunicationAdhocCallRecording","GET","/communications/adhocCalls/{param}/recordings","matched","Get-MgCommunicationAdhocCallRecording" +"Cmdlets","GetMgCommunicationAdhocCallRecording.g.cs","v1.0","Get-MgCommunicationAdhocCallRecording","","","dispatcher","" +"Cmdlets","GetMgCommunicationAdhocCallRecordingContent.g.cs","v1.0","Get-MgCommunicationAdhocCallRecordingContent","GET","/communications/adhocCalls/{param}/recordings/{param}/content","matched","Get-MgCommunicationAdhocCallRecordingContent" +"Cmdlets","GetMgCommunicationAdhocCallRecordingCount.g.cs","v1.0","Get-MgCommunicationAdhocCallRecordingCount","GET","/communications/adhocCalls/{param}/recordings/$count","matched","Get-MgCommunicationAdhocCallRecordingCount" +"Cmdlets","GetMgCommunicationAdhocCallRecordingDelta.g.cs","v1.0","Get-MgCommunicationAdhocCallRecordingDelta","GET","/communications/adhocCalls/{param}/recordings/delta","matched","Get-MgCommunicationAdhocCallRecordingDelta" +"Cmdlets","GetMgCommunicationAdhocCallTranscript_Get.g.cs","v1.0","Get-MgCommunicationAdhocCallTranscript","GET","/communications/adhocCalls/{param}/transcripts/{param}","matched","Get-MgCommunicationAdhocCallTranscript" +"Cmdlets","GetMgCommunicationAdhocCallTranscript_List.g.cs","v1.0","Get-MgCommunicationAdhocCallTranscript","GET","/communications/adhocCalls/{param}/transcripts","matched","Get-MgCommunicationAdhocCallTranscript" +"Cmdlets","GetMgCommunicationAdhocCallTranscript.g.cs","v1.0","Get-MgCommunicationAdhocCallTranscript","","","dispatcher","" +"Cmdlets","GetMgCommunicationAdhocCallTranscriptContent.g.cs","v1.0","Get-MgCommunicationAdhocCallTranscriptContent","GET","/communications/adhocCalls/{param}/transcripts/{param}/content","matched","Get-MgCommunicationAdhocCallTranscriptContent" +"Cmdlets","GetMgCommunicationAdhocCallTranscriptCount.g.cs","v1.0","Get-MgCommunicationAdhocCallTranscriptCount","GET","/communications/adhocCalls/{param}/transcripts/$count","matched","Get-MgCommunicationAdhocCallTranscriptCount" +"Cmdlets","GetMgCommunicationAdhocCallTranscriptDelta.g.cs","v1.0","Get-MgCommunicationAdhocCallTranscriptDelta","GET","/communications/adhocCalls/{param}/transcripts/delta","matched","Get-MgCommunicationAdhocCallTranscriptDelta" +"Cmdlets","GetMgCommunicationAdhocCallTranscriptMetadataContent.g.cs","v1.0","Get-MgCommunicationAdhocCallTranscriptMetadataContent","GET","/communications/adhocCalls/{param}/transcripts/{param}/metadataContent","matched","Get-MgCommunicationAdhocCallTranscriptMetadataContent" +"Cmdlets","GetMgCommunicationCall_Get.g.cs","v1.0","Get-MgCommunicationCall","GET","/communications/calls/{param}","matched","Get-MgCommunicationCall" +"Cmdlets","GetMgCommunicationCall_List.g.cs","v1.0","Get-MgCommunicationCall","GET","/communications/calls","no-oracle","" +"Cmdlets","GetMgCommunicationCall.g.cs","v1.0","Get-MgCommunicationCall","","","dispatcher","" +"Cmdlets","GetMgCommunicationCallAudioRoutingGroup_Get.g.cs","v1.0","Get-MgCommunicationCallAudioRoutingGroup","GET","/communications/calls/{param}/audioRoutingGroups/{param}","matched","Get-MgCommunicationCallAudioRoutingGroup" +"Cmdlets","GetMgCommunicationCallAudioRoutingGroup_List.g.cs","v1.0","Get-MgCommunicationCallAudioRoutingGroup","GET","/communications/calls/{param}/audioRoutingGroups","matched","Get-MgCommunicationCallAudioRoutingGroup" +"Cmdlets","GetMgCommunicationCallAudioRoutingGroup.g.cs","v1.0","Get-MgCommunicationCallAudioRoutingGroup","","","dispatcher","" +"Cmdlets","GetMgCommunicationCallAudioRoutingGroupCount.g.cs","v1.0","Get-MgCommunicationCallAudioRoutingGroupCount","GET","/communications/calls/{param}/audioRoutingGroups/$count","matched","Get-MgCommunicationCallAudioRoutingGroupCount" +"Cmdlets","GetMgCommunicationCallContentSharingSession_Get.g.cs","v1.0","Get-MgCommunicationCallContentSharingSession","GET","/communications/calls/{param}/contentSharingSessions/{param}","matched","Get-MgCommunicationCallContentSharingSession" +"Cmdlets","GetMgCommunicationCallContentSharingSession_List.g.cs","v1.0","Get-MgCommunicationCallContentSharingSession","GET","/communications/calls/{param}/contentSharingSessions","matched","Get-MgCommunicationCallContentSharingSession" +"Cmdlets","GetMgCommunicationCallContentSharingSession.g.cs","v1.0","Get-MgCommunicationCallContentSharingSession","","","dispatcher","" +"Cmdlets","GetMgCommunicationCallContentSharingSessionCount.g.cs","v1.0","Get-MgCommunicationCallContentSharingSessionCount","GET","/communications/calls/{param}/contentSharingSessions/$count","matched","Get-MgCommunicationCallContentSharingSessionCount" +"Cmdlets","GetMgCommunicationCallCount.g.cs","v1.0","Get-MgCommunicationCallCount","GET","/communications/calls/$count","matched","Get-MgCommunicationCallCount" +"Cmdlets","GetMgCommunicationCallOperation_Get.g.cs","v1.0","Get-MgCommunicationCallOperation","GET","/communications/calls/{param}/operations/{param}","matched","Get-MgCommunicationCallOperation" +"Cmdlets","GetMgCommunicationCallOperation_List.g.cs","v1.0","Get-MgCommunicationCallOperation","GET","/communications/calls/{param}/operations","matched","Get-MgCommunicationCallOperation" +"Cmdlets","GetMgCommunicationCallOperation.g.cs","v1.0","Get-MgCommunicationCallOperation","","","dispatcher","" +"Cmdlets","GetMgCommunicationCallOperationCount.g.cs","v1.0","Get-MgCommunicationCallOperationCount","GET","/communications/calls/{param}/operations/$count","matched","Get-MgCommunicationCallOperationCount" +"Cmdlets","GetMgCommunicationCallParticipant_Get.g.cs","v1.0","Get-MgCommunicationCallParticipant","GET","/communications/calls/{param}/participants/{param}","matched","Get-MgCommunicationCallParticipant" +"Cmdlets","GetMgCommunicationCallParticipant_List.g.cs","v1.0","Get-MgCommunicationCallParticipant","GET","/communications/calls/{param}/participants","matched","Get-MgCommunicationCallParticipant" +"Cmdlets","GetMgCommunicationCallParticipant.g.cs","v1.0","Get-MgCommunicationCallParticipant","","","dispatcher","" +"Cmdlets","GetMgCommunicationCallParticipantCount.g.cs","v1.0","Get-MgCommunicationCallParticipantCount","GET","/communications/calls/{param}/participants/$count","matched","Get-MgCommunicationCallParticipantCount" +"Cmdlets","GetMgCommunicationCallRecord_Get.g.cs","v1.0","Get-MgCommunicationCallRecord","GET","/communications/callRecords/{param}","matched","Get-MgCommunicationCallRecord" +"Cmdlets","GetMgCommunicationCallRecord_List.g.cs","v1.0","Get-MgCommunicationCallRecord","GET","/communications/callRecords","no-oracle","" +"Cmdlets","GetMgCommunicationCallRecord.g.cs","v1.0","Get-MgCommunicationCallRecord","","","dispatcher","" +"Cmdlets","GetMgCommunicationCallRecordCount.g.cs","v1.0","Get-MgCommunicationCallRecordCount","GET","/communications/callRecords/$count","matched","Get-MgCommunicationCallRecordCount" +"Cmdlets","GetMgCommunicationCallRecordGetDirectRoutingCallsWithFromDateTimeWithToDateTime.g.cs","v1.0","Get-MgCommunicationCallRecordGetDirectRoutingCallsWithFromDateTimeWithToDateTime","GET","/communications/callRecords/getDirectRoutingCalls(fromDateTime={fromDateTime},toDateTime={toDateTime})","no-oracle","" +"Cmdlets","GetMgCommunicationCallRecordGetPstnCallsWithFromDateTimeWithToDateTime.g.cs","v1.0","Get-MgCommunicationCallRecordGetPstnCallsWithFromDateTimeWithToDateTime","GET","/communications/callRecords/getPstnCalls(fromDateTime={fromDateTime},toDateTime={toDateTime})","no-oracle","" +"Cmdlets","GetMgCommunicationCallRecordOrganizerV2.g.cs","v1.0","Get-MgCommunicationCallRecordOrganizerV2","GET","/communications/callRecords/{param}/organizer_v2","matched","Get-MgCommunicationCallRecordOrganizerV2" +"Cmdlets","GetMgCommunicationCallRecordParticipantV2_Get.g.cs","v1.0","Get-MgCommunicationCallRecordParticipantV2","GET","/communications/callRecords/{param}/participants_v2/{param}","matched","Get-MgCommunicationCallRecordParticipantV2" +"Cmdlets","GetMgCommunicationCallRecordParticipantV2_List.g.cs","v1.0","Get-MgCommunicationCallRecordParticipantV2","GET","/communications/callRecords/{param}/participants_v2","matched","Get-MgCommunicationCallRecordParticipantV2" +"Cmdlets","GetMgCommunicationCallRecordParticipantV2.g.cs","v1.0","Get-MgCommunicationCallRecordParticipantV2","","","dispatcher","" +"Cmdlets","GetMgCommunicationCallRecordParticipantV2Count.g.cs","v1.0","Get-MgCommunicationCallRecordParticipantV2Count","GET","/communications/callRecords/{param}/participants_v2/$count","mismatch","Get-MgCommunicationCallRecordParticipant" +"Cmdlets","GetMgCommunicationCallRecordSession_Get.g.cs","v1.0","Get-MgCommunicationCallRecordSession","GET","/communications/callRecords/{param}/sessions/{param}","matched","Get-MgCommunicationCallRecordSession" +"Cmdlets","GetMgCommunicationCallRecordSession_List.g.cs","v1.0","Get-MgCommunicationCallRecordSession","GET","/communications/callRecords/{param}/sessions","matched","Get-MgCommunicationCallRecordSession" +"Cmdlets","GetMgCommunicationCallRecordSession.g.cs","v1.0","Get-MgCommunicationCallRecordSession","","","dispatcher","" +"Cmdlets","GetMgCommunicationCallRecordSessionCount.g.cs","v1.0","Get-MgCommunicationCallRecordSessionCount","GET","/communications/callRecords/{param}/sessions/$count","matched","Get-MgCommunicationCallRecordSessionCount" +"Cmdlets","GetMgCommunicationCallRecordSessionSegment_Get.g.cs","v1.0","Get-MgCommunicationCallRecordSessionSegment","GET","/communications/callRecords/{param}/sessions/{param}/segments/{param}","no-oracle","" +"Cmdlets","GetMgCommunicationCallRecordSessionSegment_List.g.cs","v1.0","Get-MgCommunicationCallRecordSessionSegment","GET","/communications/callRecords/{param}/sessions/{param}/segments","no-oracle","" +"Cmdlets","GetMgCommunicationCallRecordSessionSegment.g.cs","v1.0","Get-MgCommunicationCallRecordSessionSegment","","","dispatcher","" +"Cmdlets","GetMgCommunicationCallRecordSessionSegmentCount.g.cs","v1.0","Get-MgCommunicationCallRecordSessionSegmentCount","GET","/communications/callRecords/{param}/sessions/{param}/segments/$count","matched","Get-MgCommunicationCallRecordSessionSegmentCount" +"Cmdlets","GetMgCommunicationGetAllOnlineMeetingMessages.g.cs","v1.0","Get-MgCommunicationGetAllOnlineMeetingMessages","GET","/communications/getAllOnlineMeetingMessages","mismatch","Get-MgCommunicationOnlineMeetingMessage" +"Cmdlets","GetMgCommunicationOnlineMeeting_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeeting","GET","/communications/onlineMeetings/{param}","matched","Get-MgCommunicationOnlineMeeting" +"Cmdlets","GetMgCommunicationOnlineMeeting_List.g.cs","v1.0","Get-MgCommunicationOnlineMeeting","GET","/communications/onlineMeetings","matched","Get-MgCommunicationOnlineMeeting" +"Cmdlets","GetMgCommunicationOnlineMeeting.g.cs","v1.0","Get-MgCommunicationOnlineMeeting","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingAttendanceReport_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReport","GET","/communications/onlineMeetings/{param}/attendanceReports/{param}","matched","Get-MgCommunicationOnlineMeetingAttendanceReport" +"Cmdlets","GetMgCommunicationOnlineMeetingAttendanceReport_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReport","GET","/communications/onlineMeetings/{param}/attendanceReports","matched","Get-MgCommunicationOnlineMeetingAttendanceReport" +"Cmdlets","GetMgCommunicationOnlineMeetingAttendanceReport.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReport","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingAttendanceReportAttendanceRecord_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","GET","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"Cmdlets","GetMgCommunicationOnlineMeetingAttendanceReportAttendanceRecord_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","GET","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords","matched","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"Cmdlets","GetMgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount","GET","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/$count","matched","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount" +"Cmdlets","GetMgCommunicationOnlineMeetingAttendanceReportCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReportCount","GET","/communications/onlineMeetings/{param}/attendanceReports/$count","matched","Get-MgCommunicationOnlineMeetingAttendanceReportCount" +"Cmdlets","GetMgCommunicationOnlineMeetingAttendeeReport.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendeeReport","GET","/communications/onlineMeetings/{param}/attendeeReport","matched","Get-MgCommunicationOnlineMeetingAttendeeReport" +"Cmdlets","GetMgCommunicationOnlineMeetingConversation_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversation","GET","/communications/onlineMeetingConversations/{param}","matched","Get-MgCommunicationOnlineMeetingConversation" +"Cmdlets","GetMgCommunicationOnlineMeetingConversation_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversation","GET","/communications/onlineMeetingConversations","matched","Get-MgCommunicationOnlineMeetingConversation" +"Cmdlets","GetMgCommunicationOnlineMeetingConversation.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversation","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationCount","GET","/communications/onlineMeetingConversations/$count","matched","Get-MgCommunicationOnlineMeetingConversationCount" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessage_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessage","GET","/communications/onlineMeetingConversations/{param}/messages/{param}","matched","Get-MgCommunicationOnlineMeetingConversationMessage" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessage_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessage","GET","/communications/onlineMeetingConversations/{param}/messages","matched","Get-MgCommunicationOnlineMeetingConversationMessage" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessage.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessage","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageConversation.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageConversation","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/conversation","matched","Get-MgCommunicationOnlineMeetingConversationMessageConversation" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageCount","GET","/communications/onlineMeetingConversations/{param}/messages/$count","matched","Get-MgCommunicationOnlineMeetingConversationMessageCount" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReaction_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReaction","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions/{param}","matched","Get-MgCommunicationOnlineMeetingConversationMessageReaction" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReaction_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReaction","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions","matched","Get-MgCommunicationOnlineMeetingConversationMessageReaction" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReaction.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReaction","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReactionCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReactionCount","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions/$count","matched","Get-MgCommunicationOnlineMeetingConversationMessageReactionCount" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReply_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReply","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}","matched","Get-MgCommunicationOnlineMeetingConversationMessageReply" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReply_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReply","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies","matched","Get-MgCommunicationOnlineMeetingConversationMessageReply" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReply.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReply","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReplyConversation.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/conversation","matched","Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReplyCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyCount","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/$count","matched","Get-MgCommunicationOnlineMeetingConversationMessageReplyCount" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReplyReaction_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions/{param}","matched","Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReplyReaction_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions","matched","Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReplyReaction.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReplyReactionCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions/$count","matched","Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationMessageReplyTo.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyTo","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replyTo","matched","Get-MgCommunicationOnlineMeetingConversationMessageReplyTo" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationOnlineMeeting.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationOnlineMeeting","GET","/communications/onlineMeetingConversations/{param}/onlineMeeting","matched","Get-MgCommunicationOnlineMeetingConversationOnlineMeeting" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport","GET","/communications/onlineMeetingConversations/{param}/onlineMeeting/attendeeReport","matched","Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarter.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarter","GET","/communications/onlineMeetingConversations/{param}/starter","matched","Get-MgCommunicationOnlineMeetingConversationStarter" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterConversation.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterConversation","GET","/communications/onlineMeetingConversations/{param}/starter/conversation","matched","Get-MgCommunicationOnlineMeetingConversationStarterConversation" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReaction_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReaction","GET","/communications/onlineMeetingConversations/{param}/starter/reactions/{param}","matched","Get-MgCommunicationOnlineMeetingConversationStarterReaction" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReaction_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReaction","GET","/communications/onlineMeetingConversations/{param}/starter/reactions","matched","Get-MgCommunicationOnlineMeetingConversationStarterReaction" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReaction.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReaction","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReactionCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReactionCount","GET","/communications/onlineMeetingConversations/{param}/starter/reactions/$count","matched","Get-MgCommunicationOnlineMeetingConversationStarterReactionCount" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReply_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReply","GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}","matched","Get-MgCommunicationOnlineMeetingConversationStarterReply" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReply_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReply","GET","/communications/onlineMeetingConversations/{param}/starter/replies","matched","Get-MgCommunicationOnlineMeetingConversationStarterReply" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReply.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReply","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReplyConversation.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation","GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/conversation","matched","Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReplyCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyCount","GET","/communications/onlineMeetingConversations/{param}/starter/replies/$count","matched","Get-MgCommunicationOnlineMeetingConversationStarterReplyCount" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReplyReaction_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction","GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions/{param}","matched","Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReplyReaction_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction","GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions","matched","Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReplyReaction.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReplyReactionCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount","GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions/$count","matched","Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount" +"Cmdlets","GetMgCommunicationOnlineMeetingConversationStarterReplyTo.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyTo","GET","/communications/onlineMeetingConversations/{param}/starter/replyTo","matched","Get-MgCommunicationOnlineMeetingConversationStarterReplyTo" +"Cmdlets","GetMgCommunicationOnlineMeetingCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingCount","GET","/communications/onlineMeetings/$count","matched","Get-MgCommunicationOnlineMeetingCount" +"Cmdlets","GetMgCommunicationOnlineMeetingGetVirtualAppointmentJoinWebUrl.g.cs","v1.0","Get-MgCommunicationOnlineMeetingGetVirtualAppointmentJoinWebUrl","GET","/communications/onlineMeetings/{param}/getVirtualAppointmentJoinWebUrl","mismatch","Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl" +"Cmdlets","GetMgCommunicationOnlineMeetingRecording_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingRecording","GET","/communications/onlineMeetings/{param}/recordings/{param}","matched","Get-MgCommunicationOnlineMeetingRecording" +"Cmdlets","GetMgCommunicationOnlineMeetingRecording_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingRecording","GET","/communications/onlineMeetings/{param}/recordings","matched","Get-MgCommunicationOnlineMeetingRecording" +"Cmdlets","GetMgCommunicationOnlineMeetingRecording.g.cs","v1.0","Get-MgCommunicationOnlineMeetingRecording","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingRecordingContent.g.cs","v1.0","Get-MgCommunicationOnlineMeetingRecordingContent","GET","/communications/onlineMeetings/{param}/recordings/{param}/content","matched","Get-MgCommunicationOnlineMeetingRecordingContent" +"Cmdlets","GetMgCommunicationOnlineMeetingRecordingCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingRecordingCount","GET","/communications/onlineMeetings/{param}/recordings/$count","matched","Get-MgCommunicationOnlineMeetingRecordingCount" +"Cmdlets","GetMgCommunicationOnlineMeetingRecordingDelta.g.cs","v1.0","Get-MgCommunicationOnlineMeetingRecordingDelta","GET","/communications/onlineMeetings/{param}/recordings/delta","matched","Get-MgCommunicationOnlineMeetingRecordingDelta" +"Cmdlets","GetMgCommunicationOnlineMeetingTranscript_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingTranscript","GET","/communications/onlineMeetings/{param}/transcripts/{param}","matched","Get-MgCommunicationOnlineMeetingTranscript" +"Cmdlets","GetMgCommunicationOnlineMeetingTranscript_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingTranscript","GET","/communications/onlineMeetings/{param}/transcripts","matched","Get-MgCommunicationOnlineMeetingTranscript" +"Cmdlets","GetMgCommunicationOnlineMeetingTranscript.g.cs","v1.0","Get-MgCommunicationOnlineMeetingTranscript","","","dispatcher","" +"Cmdlets","GetMgCommunicationOnlineMeetingTranscriptContent.g.cs","v1.0","Get-MgCommunicationOnlineMeetingTranscriptContent","GET","/communications/onlineMeetings/{param}/transcripts/{param}/content","matched","Get-MgCommunicationOnlineMeetingTranscriptContent" +"Cmdlets","GetMgCommunicationOnlineMeetingTranscriptCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingTranscriptCount","GET","/communications/onlineMeetings/{param}/transcripts/$count","matched","Get-MgCommunicationOnlineMeetingTranscriptCount" +"Cmdlets","GetMgCommunicationOnlineMeetingTranscriptDelta.g.cs","v1.0","Get-MgCommunicationOnlineMeetingTranscriptDelta","GET","/communications/onlineMeetings/{param}/transcripts/delta","matched","Get-MgCommunicationOnlineMeetingTranscriptDelta" +"Cmdlets","GetMgCommunicationOnlineMeetingTranscriptMetadataContent.g.cs","v1.0","Get-MgCommunicationOnlineMeetingTranscriptMetadataContent","GET","/communications/onlineMeetings/{param}/transcripts/{param}/metadataContent","matched","Get-MgCommunicationOnlineMeetingTranscriptMetadataContent" +"Cmdlets","GetMgCommunicationPresence_Get.g.cs","v1.0","Get-MgCommunicationPresence","GET","/communications/presences/{param}","matched","Get-MgCommunicationPresence" +"Cmdlets","GetMgCommunicationPresence_List.g.cs","v1.0","Get-MgCommunicationPresence","GET","/communications/presences","matched","Get-MgCommunicationPresence" +"Cmdlets","GetMgCommunicationPresence.g.cs","v1.0","Get-MgCommunicationPresence","","","dispatcher","" +"Cmdlets","GetMgCommunicationPresenceCount.g.cs","v1.0","Get-MgCommunicationPresenceCount","GET","/communications/presences/$count","matched","Get-MgCommunicationPresenceCount" +"Cmdlets","GetMgUserOnlineMeeting_Get.g.cs","v1.0","Get-MgUserOnlineMeeting","GET","/users/{param}/onlineMeetings/{param}","matched","Get-MgUserOnlineMeeting" +"Cmdlets","GetMgUserOnlineMeeting_List.g.cs","v1.0","Get-MgUserOnlineMeeting","GET","/users/{param}/onlineMeetings","matched","Get-MgUserOnlineMeeting" +"Cmdlets","GetMgUserOnlineMeeting.g.cs","v1.0","Get-MgUserOnlineMeeting","","","dispatcher","" +"Cmdlets","GetMgUserOnlineMeetingAttendanceReport_Get.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReport","GET","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}","matched","Get-MgUserOnlineMeetingAttendanceReport" +"Cmdlets","GetMgUserOnlineMeetingAttendanceReport_List.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReport","GET","/users/{param}/onlineMeetings/{param}/attendanceReports","matched","Get-MgUserOnlineMeetingAttendanceReport" +"Cmdlets","GetMgUserOnlineMeetingAttendanceReport.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReport","","","dispatcher","" +"Cmdlets","GetMgUserOnlineMeetingAttendanceReportAttendanceRecord_Get.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord","GET","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"Cmdlets","GetMgUserOnlineMeetingAttendanceReportAttendanceRecord_List.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord","GET","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords","matched","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"Cmdlets","GetMgUserOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord","","","dispatcher","" +"Cmdlets","GetMgUserOnlineMeetingAttendanceReportAttendanceRecordCount.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount","GET","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/$count","matched","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount" +"Cmdlets","GetMgUserOnlineMeetingAttendanceReportCount.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReportCount","GET","/users/{param}/onlineMeetings/{param}/attendanceReports/$count","matched","Get-MgUserOnlineMeetingAttendanceReportCount" +"Cmdlets","GetMgUserOnlineMeetingAttendeeReport.g.cs","v1.0","Get-MgUserOnlineMeetingAttendeeReport","GET","/users/{param}/onlineMeetings/{param}/attendeeReport","matched","Get-MgUserOnlineMeetingAttendeeReport" +"Cmdlets","GetMgUserOnlineMeetingCount.g.cs","v1.0","Get-MgUserOnlineMeetingCount","GET","/users/{param}/onlineMeetings/$count","matched","Get-MgUserOnlineMeetingCount" +"Cmdlets","GetMgUserOnlineMeetingGetVirtualAppointmentJoinWebUrl.g.cs","v1.0","Get-MgUserOnlineMeetingGetVirtualAppointmentJoinWebUrl","GET","/users/{param}/onlineMeetings/{param}/getVirtualAppointmentJoinWebUrl","mismatch","Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl" +"Cmdlets","GetMgUserOnlineMeetingRecording_Get.g.cs","v1.0","Get-MgUserOnlineMeetingRecording","GET","/users/{param}/onlineMeetings/{param}/recordings/{param}","matched","Get-MgUserOnlineMeetingRecording" +"Cmdlets","GetMgUserOnlineMeetingRecording_List.g.cs","v1.0","Get-MgUserOnlineMeetingRecording","GET","/users/{param}/onlineMeetings/{param}/recordings","matched","Get-MgUserOnlineMeetingRecording" +"Cmdlets","GetMgUserOnlineMeetingRecording.g.cs","v1.0","Get-MgUserOnlineMeetingRecording","","","dispatcher","" +"Cmdlets","GetMgUserOnlineMeetingRecordingContent.g.cs","v1.0","Get-MgUserOnlineMeetingRecordingContent","GET","/users/{param}/onlineMeetings/{param}/recordings/{param}/content","matched","Get-MgUserOnlineMeetingRecordingContent" +"Cmdlets","GetMgUserOnlineMeetingRecordingCount.g.cs","v1.0","Get-MgUserOnlineMeetingRecordingCount","GET","/users/{param}/onlineMeetings/{param}/recordings/$count","matched","Get-MgUserOnlineMeetingRecordingCount" +"Cmdlets","GetMgUserOnlineMeetingRecordingDelta.g.cs","v1.0","Get-MgUserOnlineMeetingRecordingDelta","GET","/users/{param}/onlineMeetings/{param}/recordings/delta","matched","Get-MgUserOnlineMeetingRecordingDelta" +"Cmdlets","GetMgUserOnlineMeetingTranscript_Get.g.cs","v1.0","Get-MgUserOnlineMeetingTranscript","GET","/users/{param}/onlineMeetings/{param}/transcripts/{param}","matched","Get-MgUserOnlineMeetingTranscript" +"Cmdlets","GetMgUserOnlineMeetingTranscript_List.g.cs","v1.0","Get-MgUserOnlineMeetingTranscript","GET","/users/{param}/onlineMeetings/{param}/transcripts","matched","Get-MgUserOnlineMeetingTranscript" +"Cmdlets","GetMgUserOnlineMeetingTranscript.g.cs","v1.0","Get-MgUserOnlineMeetingTranscript","","","dispatcher","" +"Cmdlets","GetMgUserOnlineMeetingTranscriptContent.g.cs","v1.0","Get-MgUserOnlineMeetingTranscriptContent","GET","/users/{param}/onlineMeetings/{param}/transcripts/{param}/content","matched","Get-MgUserOnlineMeetingTranscriptContent" +"Cmdlets","GetMgUserOnlineMeetingTranscriptCount.g.cs","v1.0","Get-MgUserOnlineMeetingTranscriptCount","GET","/users/{param}/onlineMeetings/{param}/transcripts/$count","matched","Get-MgUserOnlineMeetingTranscriptCount" +"Cmdlets","GetMgUserOnlineMeetingTranscriptDelta.g.cs","v1.0","Get-MgUserOnlineMeetingTranscriptDelta","GET","/users/{param}/onlineMeetings/{param}/transcripts/delta","matched","Get-MgUserOnlineMeetingTranscriptDelta" +"Cmdlets","GetMgUserOnlineMeetingTranscriptMetadataContent.g.cs","v1.0","Get-MgUserOnlineMeetingTranscriptMetadataContent","GET","/users/{param}/onlineMeetings/{param}/transcripts/{param}/metadataContent","matched","Get-MgUserOnlineMeetingTranscriptMetadataContent" +"Cmdlets","GetMgUserPresence.g.cs","v1.0","Get-MgUserPresence","GET","/users/{param}/presence","matched","Get-MgUserPresence" +"Cmdlets","InvokeMgCommunicationCallAddLargeGalleryView.g.cs","v1.0","Invoke-MgCommunicationCallAddLargeGalleryView","POST","/communications/calls/{param}/addLargeGalleryView","mismatch","Add-MgCommunicationCallLargeGalleryView" +"Cmdlets","InvokeMgCommunicationCallAnswer.g.cs","v1.0","Invoke-MgCommunicationCallAnswer","POST","/communications/calls/{param}/answer","mismatch","Invoke-MgAnswerCommunicationCall" +"Cmdlets","InvokeMgCommunicationCallCancelMediaProcessing.g.cs","v1.0","Invoke-MgCommunicationCallCancelMediaProcessing","POST","/communications/calls/{param}/cancelMediaProcessing","mismatch","Stop-MgCommunicationCallMediaProcessing" +"Cmdlets","InvokeMgCommunicationCallChangeScreenSharingRole.g.cs","v1.0","Invoke-MgCommunicationCallChangeScreenSharingRole","POST","/communications/calls/{param}/changeScreenSharingRole","mismatch","Rename-MgCommunicationCallScreenSharingRole" +"Cmdlets","InvokeMgCommunicationCallKeepAlive.g.cs","v1.0","Invoke-MgCommunicationCallKeepAlive","POST","/communications/calls/{param}/keepAlive","mismatch","Invoke-MgKeepCommunicationCallAlive" +"Cmdlets","InvokeMgCommunicationCallLogTeleconferenceDeviceQuality.g.cs","v1.0","Invoke-MgCommunicationCallLogTeleconferenceDeviceQuality","POST","/communications/calls/logTeleconferenceDeviceQuality","mismatch","Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality" +"Cmdlets","InvokeMgCommunicationCallMute.g.cs","v1.0","Invoke-MgCommunicationCallMute","POST","/communications/calls/{param}/mute","mismatch","Invoke-MgMuteCommunicationCall" +"Cmdlets","InvokeMgCommunicationCallParticipantInvite.g.cs","v1.0","Invoke-MgCommunicationCallParticipantInvite","POST","/communications/calls/{param}/participants/invite","mismatch","Invoke-MgInviteCommunicationCallParticipant" +"Cmdlets","InvokeMgCommunicationCallParticipantMute.g.cs","v1.0","Invoke-MgCommunicationCallParticipantMute","POST","/communications/calls/{param}/participants/{param}/mute","mismatch","Invoke-MgMuteCommunicationCallParticipant" +"Cmdlets","InvokeMgCommunicationCallParticipantStartHoldMusic.g.cs","v1.0","Invoke-MgCommunicationCallParticipantStartHoldMusic","POST","/communications/calls/{param}/participants/{param}/startHoldMusic","mismatch","Start-MgCommunicationCallParticipantHoldMusic" +"Cmdlets","InvokeMgCommunicationCallParticipantStopHoldMusic.g.cs","v1.0","Invoke-MgCommunicationCallParticipantStopHoldMusic","POST","/communications/calls/{param}/participants/{param}/stopHoldMusic","mismatch","Stop-MgCommunicationCallParticipantHoldMusic" +"Cmdlets","InvokeMgCommunicationCallPlayPrompt.g.cs","v1.0","Invoke-MgCommunicationCallPlayPrompt","POST","/communications/calls/{param}/playPrompt","mismatch","Invoke-MgPlayCommunicationCallPrompt" +"Cmdlets","InvokeMgCommunicationCallRecordResponse.g.cs","v1.0","Invoke-MgCommunicationCallRecordResponse","POST","/communications/calls/{param}/recordResponse","mismatch","Invoke-MgRecordCommunicationCallResponse" +"Cmdlets","InvokeMgCommunicationCallRedirect.g.cs","v1.0","Invoke-MgCommunicationCallRedirect","POST","/communications/calls/{param}/redirect","mismatch","Invoke-MgRedirectCommunicationCall" +"Cmdlets","InvokeMgCommunicationCallReject.g.cs","v1.0","Invoke-MgCommunicationCallReject","POST","/communications/calls/{param}/reject","mismatch","Invoke-MgRejectCommunicationCall" +"Cmdlets","InvokeMgCommunicationCallSendDtmfTones.g.cs","v1.0","Invoke-MgCommunicationCallSendDtmfTones","POST","/communications/calls/{param}/sendDtmfTones","mismatch","Send-MgCommunicationCallDtmfTone" +"Cmdlets","InvokeMgCommunicationCallSubscribeToTone.g.cs","v1.0","Invoke-MgCommunicationCallSubscribeToTone","POST","/communications/calls/{param}/subscribeToTone","mismatch","Invoke-MgSubscribeCommunicationCallToTone" +"Cmdlets","InvokeMgCommunicationCallTransfer.g.cs","v1.0","Invoke-MgCommunicationCallTransfer","POST","/communications/calls/{param}/transfer","mismatch","Move-MgCommunicationCall" +"Cmdlets","InvokeMgCommunicationCallUnmute.g.cs","v1.0","Invoke-MgCommunicationCallUnmute","POST","/communications/calls/{param}/unmute","mismatch","Invoke-MgUnmuteCommunicationCall" +"Cmdlets","InvokeMgCommunicationCallUpdateRecordingStatus.g.cs","v1.0","Invoke-MgCommunicationCallUpdateRecordingStatus","POST","/communications/calls/{param}/updateRecordingStatus","mismatch","Update-MgCommunicationCallRecordingStatus" +"Cmdlets","InvokeMgCommunicationGetPresencesByUserId.g.cs","v1.0","Invoke-MgCommunicationGetPresencesByUserId","POST","/communications/getPresencesByUserId","mismatch","Get-MgCommunicationPresenceByUserId" +"Cmdlets","InvokeMgCommunicationOnlineMeetingCreateOrGet.g.cs","v1.0","Invoke-MgCommunicationOnlineMeetingCreateOrGet","POST","/communications/onlineMeetings/createOrGet","mismatch","Invoke-MgCreateOrGetCommunicationOnlineMeeting" +"Cmdlets","InvokeMgCommunicationOnlineMeetingSendVirtualAppointmentReminderSms.g.cs","v1.0","Invoke-MgCommunicationOnlineMeetingSendVirtualAppointmentReminderSms","POST","/communications/onlineMeetings/{param}/sendVirtualAppointmentReminderSms","mismatch","Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm" +"Cmdlets","InvokeMgCommunicationOnlineMeetingSendVirtualAppointmentSms.g.cs","v1.0","Invoke-MgCommunicationOnlineMeetingSendVirtualAppointmentSms","POST","/communications/onlineMeetings/{param}/sendVirtualAppointmentSms","mismatch","Send-MgCommunicationOnlineMeetingVirtualAppointmentSm" +"Cmdlets","InvokeMgCommunicationPresenceClearAutomaticLocation.g.cs","v1.0","Invoke-MgCommunicationPresenceClearAutomaticLocation","POST","/communications/presences/{param}/clearAutomaticLocation","mismatch","Clear-MgCommunicationPresenceAutomaticLocation" +"Cmdlets","InvokeMgCommunicationPresenceClearLocation.g.cs","v1.0","Invoke-MgCommunicationPresenceClearLocation","POST","/communications/presences/{param}/clearLocation","mismatch","Clear-MgCommunicationPresenceLocation" +"Cmdlets","InvokeMgCommunicationPresenceClearPresence.g.cs","v1.0","Invoke-MgCommunicationPresenceClearPresence","POST","/communications/presences/{param}/clearPresence","mismatch","Clear-MgCommunicationPresence" +"Cmdlets","InvokeMgCommunicationPresenceClearUserPreferredPresence.g.cs","v1.0","Invoke-MgCommunicationPresenceClearUserPreferredPresence","POST","/communications/presences/{param}/clearUserPreferredPresence","mismatch","Clear-MgCommunicationPresenceUserPreferredPresence" +"Cmdlets","InvokeMgCommunicationPresenceSetAutomaticLocation.g.cs","v1.0","Invoke-MgCommunicationPresenceSetAutomaticLocation","POST","/communications/presences/{param}/setAutomaticLocation","mismatch","Set-MgCommunicationPresenceAutomaticLocation" +"Cmdlets","InvokeMgCommunicationPresenceSetManualLocation.g.cs","v1.0","Invoke-MgCommunicationPresenceSetManualLocation","POST","/communications/presences/{param}/setManualLocation","mismatch","Set-MgCommunicationPresenceManualLocation" +"Cmdlets","InvokeMgCommunicationPresenceSetPresence.g.cs","v1.0","Invoke-MgCommunicationPresenceSetPresence","POST","/communications/presences/{param}/setPresence","mismatch","Set-MgCommunicationPresence" +"Cmdlets","InvokeMgCommunicationPresenceSetStatusMessage.g.cs","v1.0","Invoke-MgCommunicationPresenceSetStatusMessage","POST","/communications/presences/{param}/setStatusMessage","mismatch","Set-MgCommunicationPresenceStatusMessage" +"Cmdlets","InvokeMgCommunicationPresenceSetUserPreferredPresence.g.cs","v1.0","Invoke-MgCommunicationPresenceSetUserPreferredPresence","POST","/communications/presences/{param}/setUserPreferredPresence","mismatch","Set-MgCommunicationPresenceUserPreferredPresence" +"Cmdlets","InvokeMgUserOnlineMeetingCreateOrGet.g.cs","v1.0","Invoke-MgUserOnlineMeetingCreateOrGet","POST","/users/{param}/onlineMeetings/createOrGet","no-oracle","" +"Cmdlets","InvokeMgUserOnlineMeetingSendVirtualAppointmentReminderSms.g.cs","v1.0","Invoke-MgUserOnlineMeetingSendVirtualAppointmentReminderSms","POST","/users/{param}/onlineMeetings/{param}/sendVirtualAppointmentReminderSms","mismatch","Send-MgUserOnlineMeetingVirtualAppointmentReminderSm" +"Cmdlets","InvokeMgUserOnlineMeetingSendVirtualAppointmentSms.g.cs","v1.0","Invoke-MgUserOnlineMeetingSendVirtualAppointmentSms","POST","/users/{param}/onlineMeetings/{param}/sendVirtualAppointmentSms","mismatch","Send-MgUserOnlineMeetingVirtualAppointmentSm" +"Cmdlets","InvokeMgUserPresenceClearAutomaticLocation.g.cs","v1.0","Invoke-MgUserPresenceClearAutomaticLocation","POST","/users/{param}/presence/clearAutomaticLocation","mismatch","Clear-MgUserPresenceAutomaticLocation" +"Cmdlets","InvokeMgUserPresenceClearLocation.g.cs","v1.0","Invoke-MgUserPresenceClearLocation","POST","/users/{param}/presence/clearLocation","mismatch","Clear-MgUserPresenceLocation" +"Cmdlets","InvokeMgUserPresenceClearPresence.g.cs","v1.0","Invoke-MgUserPresenceClearPresence","POST","/users/{param}/presence/clearPresence","mismatch","Clear-MgUserPresence" +"Cmdlets","InvokeMgUserPresenceClearUserPreferredPresence.g.cs","v1.0","Invoke-MgUserPresenceClearUserPreferredPresence","POST","/users/{param}/presence/clearUserPreferredPresence","mismatch","Clear-MgUserPresenceUserPreferredPresence" +"Cmdlets","InvokeMgUserPresenceSetAutomaticLocation.g.cs","v1.0","Invoke-MgUserPresenceSetAutomaticLocation","POST","/users/{param}/presence/setAutomaticLocation","mismatch","Set-MgUserPresenceAutomaticLocation" +"Cmdlets","InvokeMgUserPresenceSetManualLocation.g.cs","v1.0","Invoke-MgUserPresenceSetManualLocation","POST","/users/{param}/presence/setManualLocation","mismatch","Set-MgUserPresenceManualLocation" +"Cmdlets","InvokeMgUserPresenceSetPresence.g.cs","v1.0","Invoke-MgUserPresenceSetPresence","POST","/users/{param}/presence/setPresence","mismatch","Set-MgUserPresence" +"Cmdlets","InvokeMgUserPresenceSetStatusMessage.g.cs","v1.0","Invoke-MgUserPresenceSetStatusMessage","POST","/users/{param}/presence/setStatusMessage","mismatch","Set-MgUserPresenceStatusMessage" +"Cmdlets","InvokeMgUserPresenceSetUserPreferredPresence.g.cs","v1.0","Invoke-MgUserPresenceSetUserPreferredPresence","POST","/users/{param}/presence/setUserPreferredPresence","mismatch","Set-MgUserPresenceUserPreferredPresence" +"Cmdlets","NewMgCommunicationAdhocCall.g.cs","v1.0","New-MgCommunicationAdhocCall","POST","/communications/adhocCalls","matched","New-MgCommunicationAdhocCall" +"Cmdlets","NewMgCommunicationAdhocCallRecording.g.cs","v1.0","New-MgCommunicationAdhocCallRecording","POST","/communications/adhocCalls/{param}/recordings","matched","New-MgCommunicationAdhocCallRecording" +"Cmdlets","NewMgCommunicationAdhocCallTranscript.g.cs","v1.0","New-MgCommunicationAdhocCallTranscript","POST","/communications/adhocCalls/{param}/transcripts","matched","New-MgCommunicationAdhocCallTranscript" +"Cmdlets","NewMgCommunicationCall.g.cs","v1.0","New-MgCommunicationCall","POST","/communications/calls","matched","New-MgCommunicationCall" +"Cmdlets","NewMgCommunicationCallAudioRoutingGroup.g.cs","v1.0","New-MgCommunicationCallAudioRoutingGroup","POST","/communications/calls/{param}/audioRoutingGroups","matched","New-MgCommunicationCallAudioRoutingGroup" +"Cmdlets","NewMgCommunicationCallContentSharingSession.g.cs","v1.0","New-MgCommunicationCallContentSharingSession","POST","/communications/calls/{param}/contentSharingSessions","matched","New-MgCommunicationCallContentSharingSession" +"Cmdlets","NewMgCommunicationCallOperation.g.cs","v1.0","New-MgCommunicationCallOperation","POST","/communications/calls/{param}/operations","matched","New-MgCommunicationCallOperation" +"Cmdlets","NewMgCommunicationCallParticipant.g.cs","v1.0","New-MgCommunicationCallParticipant","POST","/communications/calls/{param}/participants","matched","New-MgCommunicationCallParticipant" +"Cmdlets","NewMgCommunicationCallRecord.g.cs","v1.0","New-MgCommunicationCallRecord","POST","/communications/callRecords","no-oracle","" +"Cmdlets","NewMgCommunicationCallRecordParticipantV2.g.cs","v1.0","New-MgCommunicationCallRecordParticipantV2","POST","/communications/callRecords/{param}/participants_v2","matched","New-MgCommunicationCallRecordParticipantV2" +"Cmdlets","NewMgCommunicationCallRecordSession.g.cs","v1.0","New-MgCommunicationCallRecordSession","POST","/communications/callRecords/{param}/sessions","matched","New-MgCommunicationCallRecordSession" +"Cmdlets","NewMgCommunicationCallRecordSessionSegment.g.cs","v1.0","New-MgCommunicationCallRecordSessionSegment","POST","/communications/callRecords/{param}/sessions/{param}/segments","no-oracle","" +"Cmdlets","NewMgCommunicationOnlineMeeting.g.cs","v1.0","New-MgCommunicationOnlineMeeting","POST","/communications/onlineMeetings","matched","New-MgCommunicationOnlineMeeting" +"Cmdlets","NewMgCommunicationOnlineMeetingAttendanceReport.g.cs","v1.0","New-MgCommunicationOnlineMeetingAttendanceReport","POST","/communications/onlineMeetings/{param}/attendanceReports","matched","New-MgCommunicationOnlineMeetingAttendanceReport" +"Cmdlets","NewMgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","POST","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords","matched","New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"Cmdlets","NewMgCommunicationOnlineMeetingConversation.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversation","POST","/communications/onlineMeetingConversations","matched","New-MgCommunicationOnlineMeetingConversation" +"Cmdlets","NewMgCommunicationOnlineMeetingConversationMessage.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationMessage","POST","/communications/onlineMeetingConversations/{param}/messages","matched","New-MgCommunicationOnlineMeetingConversationMessage" +"Cmdlets","NewMgCommunicationOnlineMeetingConversationMessageReaction.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationMessageReaction","POST","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions","matched","New-MgCommunicationOnlineMeetingConversationMessageReaction" +"Cmdlets","NewMgCommunicationOnlineMeetingConversationMessageReply.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationMessageReply","POST","/communications/onlineMeetingConversations/{param}/messages/{param}/replies","matched","New-MgCommunicationOnlineMeetingConversationMessageReply" +"Cmdlets","NewMgCommunicationOnlineMeetingConversationMessageReplyReaction.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationMessageReplyReaction","POST","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions","matched","New-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"Cmdlets","NewMgCommunicationOnlineMeetingConversationStarterReaction.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationStarterReaction","POST","/communications/onlineMeetingConversations/{param}/starter/reactions","matched","New-MgCommunicationOnlineMeetingConversationStarterReaction" +"Cmdlets","NewMgCommunicationOnlineMeetingConversationStarterReply.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationStarterReply","POST","/communications/onlineMeetingConversations/{param}/starter/replies","matched","New-MgCommunicationOnlineMeetingConversationStarterReply" +"Cmdlets","NewMgCommunicationOnlineMeetingConversationStarterReplyReaction.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationStarterReplyReaction","POST","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions","matched","New-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"Cmdlets","NewMgCommunicationOnlineMeetingRecording.g.cs","v1.0","New-MgCommunicationOnlineMeetingRecording","POST","/communications/onlineMeetings/{param}/recordings","matched","New-MgCommunicationOnlineMeetingRecording" +"Cmdlets","NewMgCommunicationOnlineMeetingTranscript.g.cs","v1.0","New-MgCommunicationOnlineMeetingTranscript","POST","/communications/onlineMeetings/{param}/transcripts","matched","New-MgCommunicationOnlineMeetingTranscript" +"Cmdlets","NewMgCommunicationPresence.g.cs","v1.0","New-MgCommunicationPresence","POST","/communications/presences","matched","New-MgCommunicationPresence" +"Cmdlets","NewMgUserOnlineMeeting.g.cs","v1.0","New-MgUserOnlineMeeting","POST","/users/{param}/onlineMeetings","matched","New-MgUserOnlineMeeting" +"Cmdlets","NewMgUserOnlineMeetingAttendanceReport.g.cs","v1.0","New-MgUserOnlineMeetingAttendanceReport","POST","/users/{param}/onlineMeetings/{param}/attendanceReports","matched","New-MgUserOnlineMeetingAttendanceReport" +"Cmdlets","NewMgUserOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","New-MgUserOnlineMeetingAttendanceReportAttendanceRecord","POST","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords","matched","New-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"Cmdlets","NewMgUserOnlineMeetingRecording.g.cs","v1.0","New-MgUserOnlineMeetingRecording","POST","/users/{param}/onlineMeetings/{param}/recordings","matched","New-MgUserOnlineMeetingRecording" +"Cmdlets","NewMgUserOnlineMeetingTranscript.g.cs","v1.0","New-MgUserOnlineMeetingTranscript","POST","/users/{param}/onlineMeetings/{param}/transcripts","matched","New-MgUserOnlineMeetingTranscript" +"Cmdlets","RemoveMgCommunicationAdhocCall.g.cs","v1.0","Remove-MgCommunicationAdhocCall","DELETE","/communications/adhocCalls/{param}","matched","Remove-MgCommunicationAdhocCall" +"Cmdlets","RemoveMgCommunicationAdhocCallRecording.g.cs","v1.0","Remove-MgCommunicationAdhocCallRecording","DELETE","/communications/adhocCalls/{param}/recordings/{param}","matched","Remove-MgCommunicationAdhocCallRecording" +"Cmdlets","RemoveMgCommunicationAdhocCallRecordingContent.g.cs","v1.0","Remove-MgCommunicationAdhocCallRecordingContent","DELETE","/communications/adhocCalls/{param}/recordings/{param}/content","matched","Remove-MgCommunicationAdhocCallRecordingContent" +"Cmdlets","RemoveMgCommunicationAdhocCallTranscript.g.cs","v1.0","Remove-MgCommunicationAdhocCallTranscript","DELETE","/communications/adhocCalls/{param}/transcripts/{param}","matched","Remove-MgCommunicationAdhocCallTranscript" +"Cmdlets","RemoveMgCommunicationAdhocCallTranscriptContent.g.cs","v1.0","Remove-MgCommunicationAdhocCallTranscriptContent","DELETE","/communications/adhocCalls/{param}/transcripts/{param}/content","matched","Remove-MgCommunicationAdhocCallTranscriptContent" +"Cmdlets","RemoveMgCommunicationAdhocCallTranscriptMetadataContent.g.cs","v1.0","Remove-MgCommunicationAdhocCallTranscriptMetadataContent","DELETE","/communications/adhocCalls/{param}/transcripts/{param}/metadataContent","matched","Remove-MgCommunicationAdhocCallTranscriptMetadataContent" +"Cmdlets","RemoveMgCommunicationCall.g.cs","v1.0","Remove-MgCommunicationCall","DELETE","/communications/calls/{param}","matched","Remove-MgCommunicationCall" +"Cmdlets","RemoveMgCommunicationCallAudioRoutingGroup.g.cs","v1.0","Remove-MgCommunicationCallAudioRoutingGroup","DELETE","/communications/calls/{param}/audioRoutingGroups/{param}","matched","Remove-MgCommunicationCallAudioRoutingGroup" +"Cmdlets","RemoveMgCommunicationCallContentSharingSession.g.cs","v1.0","Remove-MgCommunicationCallContentSharingSession","DELETE","/communications/calls/{param}/contentSharingSessions/{param}","matched","Remove-MgCommunicationCallContentSharingSession" +"Cmdlets","RemoveMgCommunicationCallOperation.g.cs","v1.0","Remove-MgCommunicationCallOperation","DELETE","/communications/calls/{param}/operations/{param}","matched","Remove-MgCommunicationCallOperation" +"Cmdlets","RemoveMgCommunicationCallParticipant.g.cs","v1.0","Remove-MgCommunicationCallParticipant","DELETE","/communications/calls/{param}/participants/{param}","matched","Remove-MgCommunicationCallParticipant" +"Cmdlets","RemoveMgCommunicationCallRecord.g.cs","v1.0","Remove-MgCommunicationCallRecord","DELETE","/communications/callRecords/{param}","no-oracle","" +"Cmdlets","RemoveMgCommunicationCallRecordOrganizerV2.g.cs","v1.0","Remove-MgCommunicationCallRecordOrganizerV2","DELETE","/communications/callRecords/{param}/organizer_v2","matched","Remove-MgCommunicationCallRecordOrganizerV2" +"Cmdlets","RemoveMgCommunicationCallRecordParticipantV2.g.cs","v1.0","Remove-MgCommunicationCallRecordParticipantV2","DELETE","/communications/callRecords/{param}/participants_v2/{param}","matched","Remove-MgCommunicationCallRecordParticipantV2" +"Cmdlets","RemoveMgCommunicationCallRecordSession.g.cs","v1.0","Remove-MgCommunicationCallRecordSession","DELETE","/communications/callRecords/{param}/sessions/{param}","matched","Remove-MgCommunicationCallRecordSession" +"Cmdlets","RemoveMgCommunicationCallRecordSessionSegment.g.cs","v1.0","Remove-MgCommunicationCallRecordSessionSegment","DELETE","/communications/callRecords/{param}/sessions/{param}/segments/{param}","no-oracle","" +"Cmdlets","RemoveMgCommunicationOnlineMeeting.g.cs","v1.0","Remove-MgCommunicationOnlineMeeting","DELETE","/communications/onlineMeetings/{param}","matched","Remove-MgCommunicationOnlineMeeting" +"Cmdlets","RemoveMgCommunicationOnlineMeetingAttendanceReport.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingAttendanceReport","DELETE","/communications/onlineMeetings/{param}/attendanceReports/{param}","matched","Remove-MgCommunicationOnlineMeetingAttendanceReport" +"Cmdlets","RemoveMgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","DELETE","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"Cmdlets","RemoveMgCommunicationOnlineMeetingAttendeeReport.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingAttendeeReport","DELETE","/communications/onlineMeetings/{param}/attendeeReport","matched","Remove-MgCommunicationOnlineMeetingAttendeeReport" +"Cmdlets","RemoveMgCommunicationOnlineMeetingConversation.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversation","DELETE","/communications/onlineMeetingConversations/{param}","matched","Remove-MgCommunicationOnlineMeetingConversation" +"Cmdlets","RemoveMgCommunicationOnlineMeetingConversationMessage.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationMessage","DELETE","/communications/onlineMeetingConversations/{param}/messages/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationMessage" +"Cmdlets","RemoveMgCommunicationOnlineMeetingConversationMessageReaction.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationMessageReaction","DELETE","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationMessageReaction" +"Cmdlets","RemoveMgCommunicationOnlineMeetingConversationMessageReply.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationMessageReply","DELETE","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationMessageReply" +"Cmdlets","RemoveMgCommunicationOnlineMeetingConversationMessageReplyReaction.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction","DELETE","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"Cmdlets","RemoveMgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport","DELETE","/communications/onlineMeetingConversations/{param}/onlineMeeting/attendeeReport","matched","Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport" +"Cmdlets","RemoveMgCommunicationOnlineMeetingConversationStarter.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationStarter","DELETE","/communications/onlineMeetingConversations/{param}/starter","matched","Remove-MgCommunicationOnlineMeetingConversationStarter" +"Cmdlets","RemoveMgCommunicationOnlineMeetingConversationStarterReaction.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationStarterReaction","DELETE","/communications/onlineMeetingConversations/{param}/starter/reactions/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationStarterReaction" +"Cmdlets","RemoveMgCommunicationOnlineMeetingConversationStarterReply.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationStarterReply","DELETE","/communications/onlineMeetingConversations/{param}/starter/replies/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationStarterReply" +"Cmdlets","RemoveMgCommunicationOnlineMeetingConversationStarterReplyReaction.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction","DELETE","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"Cmdlets","RemoveMgCommunicationOnlineMeetingRecording.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingRecording","DELETE","/communications/onlineMeetings/{param}/recordings/{param}","matched","Remove-MgCommunicationOnlineMeetingRecording" +"Cmdlets","RemoveMgCommunicationOnlineMeetingRecordingContent.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingRecordingContent","DELETE","/communications/onlineMeetings/{param}/recordings/{param}/content","matched","Remove-MgCommunicationOnlineMeetingRecordingContent" +"Cmdlets","RemoveMgCommunicationOnlineMeetingTranscript.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingTranscript","DELETE","/communications/onlineMeetings/{param}/transcripts/{param}","matched","Remove-MgCommunicationOnlineMeetingTranscript" +"Cmdlets","RemoveMgCommunicationOnlineMeetingTranscriptContent.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingTranscriptContent","DELETE","/communications/onlineMeetings/{param}/transcripts/{param}/content","matched","Remove-MgCommunicationOnlineMeetingTranscriptContent" +"Cmdlets","RemoveMgCommunicationOnlineMeetingTranscriptMetadataContent.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent","DELETE","/communications/onlineMeetings/{param}/transcripts/{param}/metadataContent","matched","Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent" +"Cmdlets","RemoveMgCommunicationPresence.g.cs","v1.0","Remove-MgCommunicationPresence","DELETE","/communications/presences/{param}","matched","Remove-MgCommunicationPresence" +"Cmdlets","RemoveMgUserOnlineMeeting.g.cs","v1.0","Remove-MgUserOnlineMeeting","DELETE","/users/{param}/onlineMeetings/{param}","matched","Remove-MgUserOnlineMeeting" +"Cmdlets","RemoveMgUserOnlineMeetingAttendanceReport.g.cs","v1.0","Remove-MgUserOnlineMeetingAttendanceReport","DELETE","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}","matched","Remove-MgUserOnlineMeetingAttendanceReport" +"Cmdlets","RemoveMgUserOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord","DELETE","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"Cmdlets","RemoveMgUserOnlineMeetingAttendeeReport.g.cs","v1.0","Remove-MgUserOnlineMeetingAttendeeReport","DELETE","/users/{param}/onlineMeetings/{param}/attendeeReport","matched","Remove-MgUserOnlineMeetingAttendeeReport" +"Cmdlets","RemoveMgUserOnlineMeetingRecording.g.cs","v1.0","Remove-MgUserOnlineMeetingRecording","DELETE","/users/{param}/onlineMeetings/{param}/recordings/{param}","matched","Remove-MgUserOnlineMeetingRecording" +"Cmdlets","RemoveMgUserOnlineMeetingRecordingContent.g.cs","v1.0","Remove-MgUserOnlineMeetingRecordingContent","DELETE","/users/{param}/onlineMeetings/{param}/recordings/{param}/content","matched","Remove-MgUserOnlineMeetingRecordingContent" +"Cmdlets","RemoveMgUserOnlineMeetingTranscript.g.cs","v1.0","Remove-MgUserOnlineMeetingTranscript","DELETE","/users/{param}/onlineMeetings/{param}/transcripts/{param}","matched","Remove-MgUserOnlineMeetingTranscript" +"Cmdlets","RemoveMgUserOnlineMeetingTranscriptContent.g.cs","v1.0","Remove-MgUserOnlineMeetingTranscriptContent","DELETE","/users/{param}/onlineMeetings/{param}/transcripts/{param}/content","matched","Remove-MgUserOnlineMeetingTranscriptContent" +"Cmdlets","RemoveMgUserOnlineMeetingTranscriptMetadataContent.g.cs","v1.0","Remove-MgUserOnlineMeetingTranscriptMetadataContent","DELETE","/users/{param}/onlineMeetings/{param}/transcripts/{param}/metadataContent","matched","Remove-MgUserOnlineMeetingTranscriptMetadataContent" +"Cmdlets","RemoveMgUserPresence.g.cs","v1.0","Remove-MgUserPresence","DELETE","/users/{param}/presence","matched","Remove-MgUserPresence" +"Cmdlets","SetMgCommunicationAdhocCallRecordingContent.g.cs","v1.0","Set-MgCommunicationAdhocCallRecordingContent","PUT","/communications/adhocCalls/{param}/recordings/{param}/content","matched","Set-MgCommunicationAdhocCallRecordingContent" +"Cmdlets","SetMgCommunicationAdhocCallTranscriptContent.g.cs","v1.0","Set-MgCommunicationAdhocCallTranscriptContent","PUT","/communications/adhocCalls/{param}/transcripts/{param}/content","matched","Set-MgCommunicationAdhocCallTranscriptContent" +"Cmdlets","SetMgCommunicationOnlineMeetingRecordingContent.g.cs","v1.0","Set-MgCommunicationOnlineMeetingRecordingContent","PUT","/communications/onlineMeetings/{param}/recordings/{param}/content","matched","Set-MgCommunicationOnlineMeetingRecordingContent" +"Cmdlets","SetMgCommunicationOnlineMeetingTranscriptContent.g.cs","v1.0","Set-MgCommunicationOnlineMeetingTranscriptContent","PUT","/communications/onlineMeetings/{param}/transcripts/{param}/content","matched","Set-MgCommunicationOnlineMeetingTranscriptContent" +"Cmdlets","SetMgUserOnlineMeetingRecordingContent.g.cs","v1.0","Set-MgUserOnlineMeetingRecordingContent","PUT","/users/{param}/onlineMeetings/{param}/recordings/{param}/content","matched","Set-MgUserOnlineMeetingRecordingContent" +"Cmdlets","SetMgUserOnlineMeetingTranscriptContent.g.cs","v1.0","Set-MgUserOnlineMeetingTranscriptContent","PUT","/users/{param}/onlineMeetings/{param}/transcripts/{param}/content","matched","Set-MgUserOnlineMeetingTranscriptContent" +"Cmdlets","UpdateMgCommunication.g.cs","v1.0","Update-MgCommunication","PATCH","/communications","no-oracle","" +"Cmdlets","UpdateMgCommunicationAdhocCall.g.cs","v1.0","Update-MgCommunicationAdhocCall","PATCH","/communications/adhocCalls/{param}","matched","Update-MgCommunicationAdhocCall" +"Cmdlets","UpdateMgCommunicationAdhocCallRecording.g.cs","v1.0","Update-MgCommunicationAdhocCallRecording","PATCH","/communications/adhocCalls/{param}/recordings/{param}","matched","Update-MgCommunicationAdhocCallRecording" +"Cmdlets","UpdateMgCommunicationAdhocCallTranscript.g.cs","v1.0","Update-MgCommunicationAdhocCallTranscript","PATCH","/communications/adhocCalls/{param}/transcripts/{param}","matched","Update-MgCommunicationAdhocCallTranscript" +"Cmdlets","UpdateMgCommunicationCall.g.cs","v1.0","Update-MgCommunicationCall","PATCH","/communications/calls/{param}","no-oracle","" +"Cmdlets","UpdateMgCommunicationCallAudioRoutingGroup.g.cs","v1.0","Update-MgCommunicationCallAudioRoutingGroup","PATCH","/communications/calls/{param}/audioRoutingGroups/{param}","matched","Update-MgCommunicationCallAudioRoutingGroup" +"Cmdlets","UpdateMgCommunicationCallContentSharingSession.g.cs","v1.0","Update-MgCommunicationCallContentSharingSession","PATCH","/communications/calls/{param}/contentSharingSessions/{param}","matched","Update-MgCommunicationCallContentSharingSession" +"Cmdlets","UpdateMgCommunicationCallOperation.g.cs","v1.0","Update-MgCommunicationCallOperation","PATCH","/communications/calls/{param}/operations/{param}","matched","Update-MgCommunicationCallOperation" +"Cmdlets","UpdateMgCommunicationCallParticipant.g.cs","v1.0","Update-MgCommunicationCallParticipant","PATCH","/communications/calls/{param}/participants/{param}","matched","Update-MgCommunicationCallParticipant" +"Cmdlets","UpdateMgCommunicationCallRecord.g.cs","v1.0","Update-MgCommunicationCallRecord","PATCH","/communications/callRecords/{param}","no-oracle","" +"Cmdlets","UpdateMgCommunicationCallRecordOrganizerV2.g.cs","v1.0","Update-MgCommunicationCallRecordOrganizerV2","PATCH","/communications/callRecords/{param}/organizer_v2","matched","Update-MgCommunicationCallRecordOrganizerV2" +"Cmdlets","UpdateMgCommunicationCallRecordParticipantV2.g.cs","v1.0","Update-MgCommunicationCallRecordParticipantV2","PATCH","/communications/callRecords/{param}/participants_v2/{param}","matched","Update-MgCommunicationCallRecordParticipantV2" +"Cmdlets","UpdateMgCommunicationCallRecordSession.g.cs","v1.0","Update-MgCommunicationCallRecordSession","PATCH","/communications/callRecords/{param}/sessions/{param}","matched","Update-MgCommunicationCallRecordSession" +"Cmdlets","UpdateMgCommunicationCallRecordSessionSegment.g.cs","v1.0","Update-MgCommunicationCallRecordSessionSegment","PATCH","/communications/callRecords/{param}/sessions/{param}/segments/{param}","no-oracle","" +"Cmdlets","UpdateMgCommunicationOnlineMeeting.g.cs","v1.0","Update-MgCommunicationOnlineMeeting","PATCH","/communications/onlineMeetings/{param}","matched","Update-MgCommunicationOnlineMeeting" +"Cmdlets","UpdateMgCommunicationOnlineMeetingAttendanceReport.g.cs","v1.0","Update-MgCommunicationOnlineMeetingAttendanceReport","PATCH","/communications/onlineMeetings/{param}/attendanceReports/{param}","matched","Update-MgCommunicationOnlineMeetingAttendanceReport" +"Cmdlets","UpdateMgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","PATCH","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"Cmdlets","UpdateMgCommunicationOnlineMeetingConversation.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversation","PATCH","/communications/onlineMeetingConversations/{param}","matched","Update-MgCommunicationOnlineMeetingConversation" +"Cmdlets","UpdateMgCommunicationOnlineMeetingConversationMessage.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationMessage","PATCH","/communications/onlineMeetingConversations/{param}/messages/{param}","matched","Update-MgCommunicationOnlineMeetingConversationMessage" +"Cmdlets","UpdateMgCommunicationOnlineMeetingConversationMessageReaction.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationMessageReaction","PATCH","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions/{param}","matched","Update-MgCommunicationOnlineMeetingConversationMessageReaction" +"Cmdlets","UpdateMgCommunicationOnlineMeetingConversationMessageReply.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationMessageReply","PATCH","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}","matched","Update-MgCommunicationOnlineMeetingConversationMessageReply" +"Cmdlets","UpdateMgCommunicationOnlineMeetingConversationMessageReplyReaction.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction","PATCH","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions/{param}","matched","Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"Cmdlets","UpdateMgCommunicationOnlineMeetingConversationStarter.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationStarter","PATCH","/communications/onlineMeetingConversations/{param}/starter","matched","Update-MgCommunicationOnlineMeetingConversationStarter" +"Cmdlets","UpdateMgCommunicationOnlineMeetingConversationStarterReaction.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationStarterReaction","PATCH","/communications/onlineMeetingConversations/{param}/starter/reactions/{param}","matched","Update-MgCommunicationOnlineMeetingConversationStarterReaction" +"Cmdlets","UpdateMgCommunicationOnlineMeetingConversationStarterReply.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationStarterReply","PATCH","/communications/onlineMeetingConversations/{param}/starter/replies/{param}","matched","Update-MgCommunicationOnlineMeetingConversationStarterReply" +"Cmdlets","UpdateMgCommunicationOnlineMeetingConversationStarterReplyReaction.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction","PATCH","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions/{param}","matched","Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"Cmdlets","UpdateMgCommunicationOnlineMeetingRecording.g.cs","v1.0","Update-MgCommunicationOnlineMeetingRecording","PATCH","/communications/onlineMeetings/{param}/recordings/{param}","matched","Update-MgCommunicationOnlineMeetingRecording" +"Cmdlets","UpdateMgCommunicationOnlineMeetingTranscript.g.cs","v1.0","Update-MgCommunicationOnlineMeetingTranscript","PATCH","/communications/onlineMeetings/{param}/transcripts/{param}","matched","Update-MgCommunicationOnlineMeetingTranscript" +"Cmdlets","UpdateMgCommunicationPresence.g.cs","v1.0","Update-MgCommunicationPresence","PATCH","/communications/presences/{param}","matched","Update-MgCommunicationPresence" +"Cmdlets","UpdateMgUserOnlineMeeting.g.cs","v1.0","Update-MgUserOnlineMeeting","PATCH","/users/{param}/onlineMeetings/{param}","matched","Update-MgUserOnlineMeeting" +"Cmdlets","UpdateMgUserOnlineMeetingAttendanceReport.g.cs","v1.0","Update-MgUserOnlineMeetingAttendanceReport","PATCH","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}","matched","Update-MgUserOnlineMeetingAttendanceReport" +"Cmdlets","UpdateMgUserOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord","PATCH","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"Cmdlets","UpdateMgUserOnlineMeetingRecording.g.cs","v1.0","Update-MgUserOnlineMeetingRecording","PATCH","/users/{param}/onlineMeetings/{param}/recordings/{param}","matched","Update-MgUserOnlineMeetingRecording" +"Cmdlets","UpdateMgUserOnlineMeetingTranscript.g.cs","v1.0","Update-MgUserOnlineMeetingTranscript","PATCH","/users/{param}/onlineMeetings/{param}/transcripts/{param}","matched","Update-MgUserOnlineMeetingTranscript" +"Cmdlets","UpdateMgUserPresence.g.cs","v1.0","Update-MgUserPresence","PATCH","/users/{param}/presence","matched","Update-MgUserPresence" +"Cmdlets","GetMgCompliance.g.cs","v1.0","Get-MgCompliance","GET","/compliance","matched","Get-MgCompliance" +"Cmdlets","GetMgPrivacySubjectRightsRequest_Get.g.cs","v1.0","Get-MgPrivacySubjectRightsRequest","GET","/privacy/subjectRightsRequests/{param}","matched","Get-MgPrivacySubjectRightsRequest" +"Cmdlets","GetMgPrivacySubjectRightsRequest_List.g.cs","v1.0","Get-MgPrivacySubjectRightsRequest","GET","/privacy/subjectRightsRequests","matched","Get-MgPrivacySubjectRightsRequest" +"Cmdlets","GetMgPrivacySubjectRightsRequest.g.cs","v1.0","Get-MgPrivacySubjectRightsRequest","","","dispatcher","" +"Cmdlets","GetMgPrivacySubjectRightsRequestApprover_Get.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApprover","GET","/privacy/subjectRightsRequests/{param}/approvers/{param}","matched","Get-MgPrivacySubjectRightsRequestApprover" +"Cmdlets","GetMgPrivacySubjectRightsRequestApprover_List.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApprover","GET","/privacy/subjectRightsRequests/{param}/approvers","matched","Get-MgPrivacySubjectRightsRequestApprover" +"Cmdlets","GetMgPrivacySubjectRightsRequestApprover.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApprover","","","dispatcher","" +"Cmdlets","GetMgPrivacySubjectRightsRequestApproverCount.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApproverCount","GET","/privacy/subjectRightsRequests/{param}/approvers/$count","matched","Get-MgPrivacySubjectRightsRequestApproverCount" +"Cmdlets","GetMgPrivacySubjectRightsRequestApproverMailboxSetting.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApproverMailboxSetting","GET","/privacy/subjectRightsRequests/{param}/approvers/{param}/mailboxSettings","matched","Get-MgPrivacySubjectRightsRequestApproverMailboxSetting" +"Cmdlets","GetMgPrivacySubjectRightsRequestApproverServiceProvisioningError.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError","GET","/privacy/subjectRightsRequests/{param}/approvers/{param}/serviceProvisioningErrors","matched","Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError" +"Cmdlets","GetMgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount","GET","/privacy/subjectRightsRequests/{param}/approvers/{param}/serviceProvisioningErrors/$count","matched","Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount" +"Cmdlets","GetMgPrivacySubjectRightsRequestCollaborator_Get.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaborator","GET","/privacy/subjectRightsRequests/{param}/collaborators/{param}","matched","Get-MgPrivacySubjectRightsRequestCollaborator" +"Cmdlets","GetMgPrivacySubjectRightsRequestCollaborator_List.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaborator","GET","/privacy/subjectRightsRequests/{param}/collaborators","matched","Get-MgPrivacySubjectRightsRequestCollaborator" +"Cmdlets","GetMgPrivacySubjectRightsRequestCollaborator.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaborator","","","dispatcher","" +"Cmdlets","GetMgPrivacySubjectRightsRequestCollaboratorCount.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaboratorCount","GET","/privacy/subjectRightsRequests/{param}/collaborators/$count","matched","Get-MgPrivacySubjectRightsRequestCollaboratorCount" +"Cmdlets","GetMgPrivacySubjectRightsRequestCollaboratorMailboxSetting.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting","GET","/privacy/subjectRightsRequests/{param}/collaborators/{param}/mailboxSettings","matched","Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting" +"Cmdlets","GetMgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError","GET","/privacy/subjectRightsRequests/{param}/collaborators/{param}/serviceProvisioningErrors","matched","Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError" +"Cmdlets","GetMgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount","GET","/privacy/subjectRightsRequests/{param}/collaborators/{param}/serviceProvisioningErrors/$count","matched","Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount" +"Cmdlets","GetMgPrivacySubjectRightsRequestCount.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCount","GET","/privacy/subjectRightsRequests/$count","matched","Get-MgPrivacySubjectRightsRequestCount" +"Cmdlets","GetMgPrivacySubjectRightsRequestGetFinalAttachment.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestGetFinalAttachment","GET","/privacy/subjectRightsRequests/{param}/getFinalAttachment","mismatch","Get-MgPrivacySubjectRightsRequestFinalAttachment" +"Cmdlets","GetMgPrivacySubjectRightsRequestGetFinalReport.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestGetFinalReport","GET","/privacy/subjectRightsRequests/{param}/getFinalReport","mismatch","Get-MgPrivacySubjectRightsRequestFinalReport" +"Cmdlets","GetMgPrivacySubjectRightsRequestNote_Get.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestNote","GET","/privacy/subjectRightsRequests/{param}/notes/{param}","matched","Get-MgPrivacySubjectRightsRequestNote" +"Cmdlets","GetMgPrivacySubjectRightsRequestNote_List.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestNote","GET","/privacy/subjectRightsRequests/{param}/notes","matched","Get-MgPrivacySubjectRightsRequestNote" +"Cmdlets","GetMgPrivacySubjectRightsRequestNote.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestNote","","","dispatcher","" +"Cmdlets","GetMgPrivacySubjectRightsRequestNoteCount.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestNoteCount","GET","/privacy/subjectRightsRequests/{param}/notes/$count","matched","Get-MgPrivacySubjectRightsRequestNoteCount" +"Cmdlets","GetMgPrivacySubjectRightsRequestTeam.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestTeam","GET","/privacy/subjectRightsRequests/{param}/team","matched","Get-MgPrivacySubjectRightsRequestTeam" +"Cmdlets","NewMgPrivacySubjectRightsRequest.g.cs","v1.0","New-MgPrivacySubjectRightsRequest","POST","/privacy/subjectRightsRequests","matched","New-MgPrivacySubjectRightsRequest" +"Cmdlets","NewMgPrivacySubjectRightsRequestNote.g.cs","v1.0","New-MgPrivacySubjectRightsRequestNote","POST","/privacy/subjectRightsRequests/{param}/notes","matched","New-MgPrivacySubjectRightsRequestNote" +"Cmdlets","RemoveMgPrivacySubjectRightsRequest.g.cs","v1.0","Remove-MgPrivacySubjectRightsRequest","DELETE","/privacy/subjectRightsRequests/{param}","matched","Remove-MgPrivacySubjectRightsRequest" +"Cmdlets","RemoveMgPrivacySubjectRightsRequestNote.g.cs","v1.0","Remove-MgPrivacySubjectRightsRequestNote","DELETE","/privacy/subjectRightsRequests/{param}/notes/{param}","matched","Remove-MgPrivacySubjectRightsRequestNote" +"Cmdlets","UpdateMgCompliance.g.cs","v1.0","Update-MgCompliance","PATCH","/compliance","matched","Update-MgCompliance" +"Cmdlets","UpdateMgPrivacySubjectRightsRequest.g.cs","v1.0","Update-MgPrivacySubjectRightsRequest","PATCH","/privacy/subjectRightsRequests/{param}","matched","Update-MgPrivacySubjectRightsRequest" +"Cmdlets","UpdateMgPrivacySubjectRightsRequestApproverMailboxSetting.g.cs","v1.0","Update-MgPrivacySubjectRightsRequestApproverMailboxSetting","PATCH","/privacy/subjectRightsRequests/{param}/approvers/{param}/mailboxSettings","matched","Update-MgPrivacySubjectRightsRequestApproverMailboxSetting" +"Cmdlets","UpdateMgPrivacySubjectRightsRequestCollaboratorMailboxSetting.g.cs","v1.0","Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting","PATCH","/privacy/subjectRightsRequests/{param}/collaborators/{param}/mailboxSettings","matched","Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting" +"Cmdlets","UpdateMgPrivacySubjectRightsRequestNote.g.cs","v1.0","Update-MgPrivacySubjectRightsRequestNote","PATCH","/privacy/subjectRightsRequests/{param}/notes/{param}","matched","Update-MgPrivacySubjectRightsRequestNote" +"Cmdlets","GetMgAdminConfigurationManagement.g.cs","v1.0","Get-MgAdminConfigurationManagement","GET","/admin/configurationManagement","matched","Get-MgAdminConfigurationManagement" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationDrift_Get.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationDrift","GET","/admin/configurationManagement/configurationDrifts/{param}","matched","Get-MgAdminConfigurationManagementConfigurationDrift" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationDrift_List.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationDrift","GET","/admin/configurationManagement/configurationDrifts","matched","Get-MgAdminConfigurationManagementConfigurationDrift" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationDrift.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationDrift","","","dispatcher","" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationDriftCount.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationDriftCount","GET","/admin/configurationManagement/configurationDrifts/$count","matched","Get-MgAdminConfigurationManagementConfigurationDriftCount" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationMonitor_Get.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitor","GET","/admin/configurationManagement/configurationMonitors/{param}","matched","Get-MgAdminConfigurationManagementConfigurationMonitor" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationMonitor_List.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitor","GET","/admin/configurationManagement/configurationMonitors","matched","Get-MgAdminConfigurationManagementConfigurationMonitor" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationMonitor.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitor","","","dispatcher","" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationMonitorBaseline.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitorBaseline","GET","/admin/configurationManagement/configurationMonitors/{param}/baseline","matched","Get-MgAdminConfigurationManagementConfigurationMonitorBaseline" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationMonitorCount.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitorCount","GET","/admin/configurationManagement/configurationMonitors/$count","matched","Get-MgAdminConfigurationManagementConfigurationMonitorCount" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationMonitoringResult_Get.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitoringResult","GET","/admin/configurationManagement/configurationMonitoringResults/{param}","matched","Get-MgAdminConfigurationManagementConfigurationMonitoringResult" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationMonitoringResult_List.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitoringResult","GET","/admin/configurationManagement/configurationMonitoringResults","matched","Get-MgAdminConfigurationManagementConfigurationMonitoringResult" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationMonitoringResult.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitoringResult","","","dispatcher","" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationMonitoringResultCount.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitoringResultCount","GET","/admin/configurationManagement/configurationMonitoringResults/$count","matched","Get-MgAdminConfigurationManagementConfigurationMonitoringResultCount" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationSnapshot_Get.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshot","GET","/admin/configurationManagement/configurationSnapshots/{param}","matched","Get-MgAdminConfigurationManagementConfigurationSnapshot" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationSnapshot_List.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshot","GET","/admin/configurationManagement/configurationSnapshots","matched","Get-MgAdminConfigurationManagementConfigurationSnapshot" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationSnapshot.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshot","","","dispatcher","" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationSnapshotCount.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshotCount","GET","/admin/configurationManagement/configurationSnapshots/$count","matched","Get-MgAdminConfigurationManagementConfigurationSnapshotCount" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationSnapshotJob_Get.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshotJob","GET","/admin/configurationManagement/configurationSnapshotJobs/{param}","matched","Get-MgAdminConfigurationManagementConfigurationSnapshotJob" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationSnapshotJob_List.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshotJob","GET","/admin/configurationManagement/configurationSnapshotJobs","matched","Get-MgAdminConfigurationManagementConfigurationSnapshotJob" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationSnapshotJob.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshotJob","","","dispatcher","" +"Cmdlets","GetMgAdminConfigurationManagementConfigurationSnapshotJobCount.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshotJobCount","GET","/admin/configurationManagement/configurationSnapshotJobs/$count","matched","Get-MgAdminConfigurationManagementConfigurationSnapshotJobCount" +"Cmdlets","NewMgAdminConfigurationManagementConfigurationDrift.g.cs","v1.0","New-MgAdminConfigurationManagementConfigurationDrift","POST","/admin/configurationManagement/configurationDrifts","matched","New-MgAdminConfigurationManagementConfigurationDrift" +"Cmdlets","NewMgAdminConfigurationManagementConfigurationMonitor.g.cs","v1.0","New-MgAdminConfigurationManagementConfigurationMonitor","POST","/admin/configurationManagement/configurationMonitors","matched","New-MgAdminConfigurationManagementConfigurationMonitor" +"Cmdlets","NewMgAdminConfigurationManagementConfigurationMonitoringResult.g.cs","v1.0","New-MgAdminConfigurationManagementConfigurationMonitoringResult","POST","/admin/configurationManagement/configurationMonitoringResults","matched","New-MgAdminConfigurationManagementConfigurationMonitoringResult" +"Cmdlets","NewMgAdminConfigurationManagementConfigurationSnapshot.g.cs","v1.0","New-MgAdminConfigurationManagementConfigurationSnapshot","POST","/admin/configurationManagement/configurationSnapshots","matched","New-MgAdminConfigurationManagementConfigurationSnapshot" +"Cmdlets","NewMgAdminConfigurationManagementConfigurationSnapshotJob.g.cs","v1.0","New-MgAdminConfigurationManagementConfigurationSnapshotJob","POST","/admin/configurationManagement/configurationSnapshotJobs","matched","New-MgAdminConfigurationManagementConfigurationSnapshotJob" +"Cmdlets","RemoveMgAdminConfigurationManagement.g.cs","v1.0","Remove-MgAdminConfigurationManagement","DELETE","/admin/configurationManagement","matched","Remove-MgAdminConfigurationManagement" +"Cmdlets","RemoveMgAdminConfigurationManagementConfigurationDrift.g.cs","v1.0","Remove-MgAdminConfigurationManagementConfigurationDrift","DELETE","/admin/configurationManagement/configurationDrifts/{param}","matched","Remove-MgAdminConfigurationManagementConfigurationDrift" +"Cmdlets","RemoveMgAdminConfigurationManagementConfigurationMonitor.g.cs","v1.0","Remove-MgAdminConfigurationManagementConfigurationMonitor","DELETE","/admin/configurationManagement/configurationMonitors/{param}","matched","Remove-MgAdminConfigurationManagementConfigurationMonitor" +"Cmdlets","RemoveMgAdminConfigurationManagementConfigurationMonitorBaseline.g.cs","v1.0","Remove-MgAdminConfigurationManagementConfigurationMonitorBaseline","DELETE","/admin/configurationManagement/configurationMonitors/{param}/baseline","matched","Remove-MgAdminConfigurationManagementConfigurationMonitorBaseline" +"Cmdlets","RemoveMgAdminConfigurationManagementConfigurationMonitoringResult.g.cs","v1.0","Remove-MgAdminConfigurationManagementConfigurationMonitoringResult","DELETE","/admin/configurationManagement/configurationMonitoringResults/{param}","matched","Remove-MgAdminConfigurationManagementConfigurationMonitoringResult" +"Cmdlets","RemoveMgAdminConfigurationManagementConfigurationSnapshot.g.cs","v1.0","Remove-MgAdminConfigurationManagementConfigurationSnapshot","DELETE","/admin/configurationManagement/configurationSnapshots/{param}","matched","Remove-MgAdminConfigurationManagementConfigurationSnapshot" +"Cmdlets","RemoveMgAdminConfigurationManagementConfigurationSnapshotJob.g.cs","v1.0","Remove-MgAdminConfigurationManagementConfigurationSnapshotJob","DELETE","/admin/configurationManagement/configurationSnapshotJobs/{param}","matched","Remove-MgAdminConfigurationManagementConfigurationSnapshotJob" +"Cmdlets","UpdateMgAdminConfigurationManagement.g.cs","v1.0","Update-MgAdminConfigurationManagement","PATCH","/admin/configurationManagement","matched","Update-MgAdminConfigurationManagement" +"Cmdlets","UpdateMgAdminConfigurationManagementConfigurationDrift.g.cs","v1.0","Update-MgAdminConfigurationManagementConfigurationDrift","PATCH","/admin/configurationManagement/configurationDrifts/{param}","matched","Update-MgAdminConfigurationManagementConfigurationDrift" +"Cmdlets","UpdateMgAdminConfigurationManagementConfigurationMonitor.g.cs","v1.0","Update-MgAdminConfigurationManagementConfigurationMonitor","PATCH","/admin/configurationManagement/configurationMonitors/{param}","matched","Update-MgAdminConfigurationManagementConfigurationMonitor" +"Cmdlets","UpdateMgAdminConfigurationManagementConfigurationMonitorBaseline.g.cs","v1.0","Update-MgAdminConfigurationManagementConfigurationMonitorBaseline","PATCH","/admin/configurationManagement/configurationMonitors/{param}/baseline","matched","Update-MgAdminConfigurationManagementConfigurationMonitorBaseline" +"Cmdlets","UpdateMgAdminConfigurationManagementConfigurationMonitoringResult.g.cs","v1.0","Update-MgAdminConfigurationManagementConfigurationMonitoringResult","PATCH","/admin/configurationManagement/configurationMonitoringResults/{param}","matched","Update-MgAdminConfigurationManagementConfigurationMonitoringResult" +"Cmdlets","UpdateMgAdminConfigurationManagementConfigurationSnapshot.g.cs","v1.0","Update-MgAdminConfigurationManagementConfigurationSnapshot","PATCH","/admin/configurationManagement/configurationSnapshots/{param}","matched","Update-MgAdminConfigurationManagementConfigurationSnapshot" +"Cmdlets","UpdateMgAdminConfigurationManagementConfigurationSnapshotJob.g.cs","v1.0","Update-MgAdminConfigurationManagementConfigurationSnapshotJob","PATCH","/admin/configurationManagement/configurationSnapshotJobs/{param}","matched","Update-MgAdminConfigurationManagementConfigurationSnapshotJob" +"Cmdlets","GetMgUserActivity_Get.g.cs","v1.0","Get-MgUserActivity","GET","/users/{param}/activities/{param}","matched","Get-MgUserActivity" +"Cmdlets","GetMgUserActivity_List.g.cs","v1.0","Get-MgUserActivity","GET","/users/{param}/activities","matched","Get-MgUserActivity" +"Cmdlets","GetMgUserActivity.g.cs","v1.0","Get-MgUserActivity","","","dispatcher","" +"Cmdlets","GetMgUserActivityCount.g.cs","v1.0","Get-MgUserActivityCount","GET","/users/{param}/activities/$count","matched","Get-MgUserActivityCount" +"Cmdlets","GetMgUserActivityHistoryItem_Get.g.cs","v1.0","Get-MgUserActivityHistoryItem","GET","/users/{param}/activities/{param}/historyItems/{param}","matched","Get-MgUserActivityHistoryItem" +"Cmdlets","GetMgUserActivityHistoryItem_List.g.cs","v1.0","Get-MgUserActivityHistoryItem","GET","/users/{param}/activities/{param}/historyItems","matched","Get-MgUserActivityHistoryItem" +"Cmdlets","GetMgUserActivityHistoryItem.g.cs","v1.0","Get-MgUserActivityHistoryItem","","","dispatcher","" +"Cmdlets","GetMgUserActivityHistoryItemActivity.g.cs","v1.0","Get-MgUserActivityHistoryItemActivity","GET","/users/{param}/activities/{param}/historyItems/{param}/activity","matched","Get-MgUserActivityHistoryItemActivity" +"Cmdlets","GetMgUserActivityHistoryItemCount.g.cs","v1.0","Get-MgUserActivityHistoryItemCount","GET","/users/{param}/activities/{param}/historyItems/$count","matched","Get-MgUserActivityHistoryItemCount" +"Cmdlets","GetMgUserActivityRecent.g.cs","v1.0","Get-MgUserActivityRecent","GET","/users/{param}/activities/recent","mismatch","Invoke-MgRecentUserActivity" +"Cmdlets","NewMgUserActivity.g.cs","v1.0","New-MgUserActivity","POST","/users/{param}/activities","matched","New-MgUserActivity" +"Cmdlets","NewMgUserActivityHistoryItem.g.cs","v1.0","New-MgUserActivityHistoryItem","POST","/users/{param}/activities/{param}/historyItems","matched","New-MgUserActivityHistoryItem" +"Cmdlets","RemoveMgUserActivity.g.cs","v1.0","Remove-MgUserActivity","DELETE","/users/{param}/activities/{param}","matched","Remove-MgUserActivity" +"Cmdlets","RemoveMgUserActivityHistoryItem.g.cs","v1.0","Remove-MgUserActivityHistoryItem","DELETE","/users/{param}/activities/{param}/historyItems/{param}","matched","Remove-MgUserActivityHistoryItem" +"Cmdlets","UpdateMgUserActivity.g.cs","v1.0","Update-MgUserActivity","PATCH","/users/{param}/activities/{param}","matched","Update-MgUserActivity" +"Cmdlets","UpdateMgUserActivityHistoryItem.g.cs","v1.0","Update-MgUserActivityHistoryItem","PATCH","/users/{param}/activities/{param}/historyItems/{param}","matched","Update-MgUserActivityHistoryItem" +"Cmdlets","GetMgAdminEdge.g.cs","v1.0","Get-MgAdminEdge","GET","/admin/edge","matched","Get-MgAdminEdge" +"Cmdlets","GetMgAdminEdgeInternetExplorerMode.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerMode","GET","/admin/edge/internetExplorerMode","matched","Get-MgAdminEdgeInternetExplorerMode" +"Cmdlets","GetMgAdminEdgeInternetExplorerModeSiteList_Get.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteList","GET","/admin/edge/internetExplorerMode/siteLists/{param}","matched","Get-MgAdminEdgeInternetExplorerModeSiteList" +"Cmdlets","GetMgAdminEdgeInternetExplorerModeSiteList_List.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteList","GET","/admin/edge/internetExplorerMode/siteLists","matched","Get-MgAdminEdgeInternetExplorerModeSiteList" +"Cmdlets","GetMgAdminEdgeInternetExplorerModeSiteList.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteList","","","dispatcher","" +"Cmdlets","GetMgAdminEdgeInternetExplorerModeSiteListCount.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListCount","GET","/admin/edge/internetExplorerMode/siteLists/$count","matched","Get-MgAdminEdgeInternetExplorerModeSiteListCount" +"Cmdlets","GetMgAdminEdgeInternetExplorerModeSiteListSharedCookie_Get.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","GET","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies/{param}","matched","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"Cmdlets","GetMgAdminEdgeInternetExplorerModeSiteListSharedCookie_List.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","GET","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies","matched","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"Cmdlets","GetMgAdminEdgeInternetExplorerModeSiteListSharedCookie.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","","","dispatcher","" +"Cmdlets","GetMgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount","GET","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies/$count","matched","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount" +"Cmdlets","GetMgAdminEdgeInternetExplorerModeSiteListSite_Get.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSite","GET","/admin/edge/internetExplorerMode/siteLists/{param}/sites/{param}","matched","Get-MgAdminEdgeInternetExplorerModeSiteListSite" +"Cmdlets","GetMgAdminEdgeInternetExplorerModeSiteListSite_List.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSite","GET","/admin/edge/internetExplorerMode/siteLists/{param}/sites","matched","Get-MgAdminEdgeInternetExplorerModeSiteListSite" +"Cmdlets","GetMgAdminEdgeInternetExplorerModeSiteListSite.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSite","","","dispatcher","" +"Cmdlets","GetMgAdminEdgeInternetExplorerModeSiteListSiteCount.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount","GET","/admin/edge/internetExplorerMode/siteLists/{param}/sites/$count","matched","Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount" +"Cmdlets","GetMgDeviceManagement.g.cs","v1.0","Get-MgDeviceManagement","GET","/deviceManagement","matched","Get-MgDeviceManagement" +"Cmdlets","GetMgDeviceManagementDetectedApp_Get.g.cs","v1.0","Get-MgDeviceManagementDetectedApp","GET","/deviceManagement/detectedApps/{param}","matched","Get-MgDeviceManagementDetectedApp" +"Cmdlets","GetMgDeviceManagementDetectedApp_List.g.cs","v1.0","Get-MgDeviceManagementDetectedApp","GET","/deviceManagement/detectedApps","matched","Get-MgDeviceManagementDetectedApp" +"Cmdlets","GetMgDeviceManagementDetectedApp.g.cs","v1.0","Get-MgDeviceManagementDetectedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDetectedAppCount.g.cs","v1.0","Get-MgDeviceManagementDetectedAppCount","GET","/deviceManagement/detectedApps/$count","matched","Get-MgDeviceManagementDetectedAppCount" +"Cmdlets","GetMgDeviceManagementDetectedAppManagedDevice_Get.g.cs","v1.0","Get-MgDeviceManagementDetectedAppManagedDevice","GET","/deviceManagement/detectedApps/{param}/managedDevices/{param}","matched","Get-MgDeviceManagementDetectedAppManagedDevice" +"Cmdlets","GetMgDeviceManagementDetectedAppManagedDevice_List.g.cs","v1.0","Get-MgDeviceManagementDetectedAppManagedDevice","GET","/deviceManagement/detectedApps/{param}/managedDevices","matched","Get-MgDeviceManagementDetectedAppManagedDevice" +"Cmdlets","GetMgDeviceManagementDetectedAppManagedDevice.g.cs","v1.0","Get-MgDeviceManagementDetectedAppManagedDevice","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDetectedAppManagedDeviceCount.g.cs","v1.0","Get-MgDeviceManagementDetectedAppManagedDeviceCount","GET","/deviceManagement/detectedApps/{param}/managedDevices/$count","matched","Get-MgDeviceManagementDetectedAppManagedDeviceCount" +"Cmdlets","GetMgDeviceManagementDeviceCategory_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCategory","GET","/deviceManagement/deviceCategories/{param}","matched","Get-MgDeviceManagementDeviceCategory" +"Cmdlets","GetMgDeviceManagementDeviceCategory_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCategory","GET","/deviceManagement/deviceCategories","matched","Get-MgDeviceManagementDeviceCategory" +"Cmdlets","GetMgDeviceManagementDeviceCategory.g.cs","v1.0","Get-MgDeviceManagementDeviceCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceCategoryCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCategoryCount","GET","/deviceManagement/deviceCategories/$count","matched","Get-MgDeviceManagementDeviceCategoryCount" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicy_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicy","GET","/deviceManagement/deviceCompliancePolicies/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicy" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicy_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicy","GET","/deviceManagement/deviceCompliancePolicies","matched","Get-MgDeviceManagementDeviceCompliancePolicy" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicy.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicy","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyAssignment","GET","/deviceManagement/deviceCompliancePolicies/{param}/assignments/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicyAssignment" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyAssignment_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyAssignment","GET","/deviceManagement/deviceCompliancePolicies/{param}/assignments","matched","Get-MgDeviceManagementDeviceCompliancePolicyAssignment" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyAssignment.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount","GET","/deviceManagement/deviceCompliancePolicies/{param}/assignments/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyCount","GET","/deviceManagement/deviceCompliancePolicies/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyCount" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary","GET","/deviceManagement/deviceCompliancePolicyDeviceStateSummary","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyDeviceStatus_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyDeviceStatus_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyDeviceStatus.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatusOverview","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRule_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRule_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule","matched","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount","GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations","matched","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount","GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummary_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummary_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries","matched","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummary.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount","GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates","matched","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount","GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyUserStatus_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyUserStatus","GET","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyUserStatus_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyUserStatus","GET","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses","matched","Get-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyUserStatus.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyUserStatus","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyUserStatusCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount","GET","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount" +"Cmdlets","GetMgDeviceManagementDeviceCompliancePolicyUserStatusOverview.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview","GET","/deviceManagement/deviceCompliancePolicies/{param}/userStatusOverview","matched","Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview" +"Cmdlets","GetMgDeviceManagementDeviceConfiguration_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceConfiguration","GET","/deviceManagement/deviceConfigurations/{param}","matched","Get-MgDeviceManagementDeviceConfiguration" +"Cmdlets","GetMgDeviceManagementDeviceConfiguration_List.g.cs","v1.0","Get-MgDeviceManagementDeviceConfiguration","GET","/deviceManagement/deviceConfigurations","matched","Get-MgDeviceManagementDeviceConfiguration" +"Cmdlets","GetMgDeviceManagementDeviceConfiguration.g.cs","v1.0","Get-MgDeviceManagementDeviceConfiguration","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationAssignment","GET","/deviceManagement/deviceConfigurations/{param}/assignments/{param}","matched","Get-MgDeviceManagementDeviceConfigurationAssignment" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationAssignment_List.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationAssignment","GET","/deviceManagement/deviceConfigurations/{param}/assignments","matched","Get-MgDeviceManagementDeviceConfigurationAssignment" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationAssignment.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationAssignmentCount","GET","/deviceManagement/deviceConfigurations/{param}/assignments/$count","matched","Get-MgDeviceManagementDeviceConfigurationAssignmentCount" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationCount.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationCount","GET","/deviceManagement/deviceConfigurations/$count","matched","Get-MgDeviceManagementDeviceConfigurationCount" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationDeviceSettingStateSummary_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","GET","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries/{param}","matched","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationDeviceSettingStateSummary_List.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","GET","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries","matched","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount","GET","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries/$count","matched","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationDeviceStateSummary.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary","GET","/deviceManagement/deviceConfigurationDeviceStateSummaries","matched","Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationDeviceStatus_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceStatus","GET","/deviceManagement/deviceConfigurations/{param}/deviceStatuses/{param}","matched","Get-MgDeviceManagementDeviceConfigurationDeviceStatus" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationDeviceStatus_List.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceStatus","GET","/deviceManagement/deviceConfigurations/{param}/deviceStatuses","matched","Get-MgDeviceManagementDeviceConfigurationDeviceStatus" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationDeviceStatus.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceStatus","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationDeviceStatusCount.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount","GET","/deviceManagement/deviceConfigurations/{param}/deviceStatuses/$count","matched","Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationDeviceStatusOverview.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview","GET","/deviceManagement/deviceConfigurations/{param}/deviceStatusOverview","matched","Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationGetOmaSettingPlainTextValueWithSecretReferenceValueId.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationGetOmaSettingPlainTextValueWithSecretReferenceValueId","GET","/deviceManagement/deviceConfigurations/{param}/getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')","mismatch","Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationUserStatus_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationUserStatus","GET","/deviceManagement/deviceConfigurations/{param}/userStatuses/{param}","matched","Get-MgDeviceManagementDeviceConfigurationUserStatus" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationUserStatus_List.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationUserStatus","GET","/deviceManagement/deviceConfigurations/{param}/userStatuses","matched","Get-MgDeviceManagementDeviceConfigurationUserStatus" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationUserStatus.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationUserStatus","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationUserStatusCount.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationUserStatusCount","GET","/deviceManagement/deviceConfigurations/{param}/userStatuses/$count","matched","Get-MgDeviceManagementDeviceConfigurationUserStatusCount" +"Cmdlets","GetMgDeviceManagementDeviceConfigurationUserStatusOverview.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationUserStatusOverview","GET","/deviceManagement/deviceConfigurations/{param}/userStatusOverview","matched","Get-MgDeviceManagementDeviceConfigurationUserStatusOverview" +"Cmdlets","GetMgDeviceManagementManagedDevice_Get.g.cs","v1.0","Get-MgDeviceManagementManagedDevice","GET","/deviceManagement/managedDevices/{param}","matched","Get-MgDeviceManagementManagedDevice" +"Cmdlets","GetMgDeviceManagementManagedDevice_List.g.cs","v1.0","Get-MgDeviceManagementManagedDevice","GET","/deviceManagement/managedDevices","matched","Get-MgDeviceManagementManagedDevice" +"Cmdlets","GetMgDeviceManagementManagedDevice.g.cs","v1.0","Get-MgDeviceManagementManagedDevice","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementManagedDeviceCategory.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCategory","GET","/deviceManagement/managedDevices/{param}/deviceCategory","matched","Get-MgDeviceManagementManagedDeviceCategory" +"Cmdlets","GetMgDeviceManagementManagedDeviceCategoryByRef.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCategoryByRef","GET","/deviceManagement/managedDevices/{param}/deviceCategory/$ref","matched","Get-MgDeviceManagementManagedDeviceCategoryByRef" +"Cmdlets","GetMgDeviceManagementManagedDeviceCompliancePolicyState_Get.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCompliancePolicyState","GET","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates/{param}","matched","Get-MgDeviceManagementManagedDeviceCompliancePolicyState" +"Cmdlets","GetMgDeviceManagementManagedDeviceCompliancePolicyState_List.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCompliancePolicyState","GET","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates","matched","Get-MgDeviceManagementManagedDeviceCompliancePolicyState" +"Cmdlets","GetMgDeviceManagementManagedDeviceCompliancePolicyState.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCompliancePolicyState","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementManagedDeviceCompliancePolicyStateCount.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount","GET","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates/$count","matched","Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount" +"Cmdlets","GetMgDeviceManagementManagedDeviceConfigurationState_Get.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceConfigurationState","GET","/deviceManagement/managedDevices/{param}/deviceConfigurationStates/{param}","matched","Get-MgDeviceManagementManagedDeviceConfigurationState" +"Cmdlets","GetMgDeviceManagementManagedDeviceConfigurationState_List.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceConfigurationState","GET","/deviceManagement/managedDevices/{param}/deviceConfigurationStates","matched","Get-MgDeviceManagementManagedDeviceConfigurationState" +"Cmdlets","GetMgDeviceManagementManagedDeviceConfigurationState.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceConfigurationState","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementManagedDeviceConfigurationStateCount.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceConfigurationStateCount","GET","/deviceManagement/managedDevices/{param}/deviceConfigurationStates/$count","matched","Get-MgDeviceManagementManagedDeviceConfigurationStateCount" +"Cmdlets","GetMgDeviceManagementManagedDeviceCount.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCount","GET","/deviceManagement/managedDevices/$count","matched","Get-MgDeviceManagementManagedDeviceCount" +"Cmdlets","GetMgDeviceManagementManagedDeviceLogCollectionRequest_Get.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceLogCollectionRequest","GET","/deviceManagement/managedDevices/{param}/logCollectionRequests/{param}","matched","Get-MgDeviceManagementManagedDeviceLogCollectionRequest" +"Cmdlets","GetMgDeviceManagementManagedDeviceLogCollectionRequest_List.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceLogCollectionRequest","GET","/deviceManagement/managedDevices/{param}/logCollectionRequests","matched","Get-MgDeviceManagementManagedDeviceLogCollectionRequest" +"Cmdlets","GetMgDeviceManagementManagedDeviceLogCollectionRequest.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceLogCollectionRequest","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementManagedDeviceLogCollectionRequestCount.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount","GET","/deviceManagement/managedDevices/{param}/logCollectionRequests/$count","matched","Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount" +"Cmdlets","GetMgDeviceManagementManagedDeviceOverview.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceOverview","GET","/deviceManagement/managedDeviceOverview","matched","Get-MgDeviceManagementManagedDeviceOverview" +"Cmdlets","GetMgDeviceManagementManagedDeviceUser.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceUser","GET","/deviceManagement/managedDevices/{param}/users","matched","Get-MgDeviceManagementManagedDeviceUser" +"Cmdlets","GetMgDeviceManagementManagedDeviceWindowsProtectionState.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceWindowsProtectionState","GET","/deviceManagement/managedDevices/{param}/windowsProtectionState","matched","Get-MgDeviceManagementManagedDeviceWindowsProtectionState" +"Cmdlets","GetMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState_Get.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","GET","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","matched","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Cmdlets","GetMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState_List.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","GET","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState","matched","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Cmdlets","GetMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount","GET","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState/$count","matched","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount" +"Cmdlets","GetMgDeviceManagementMobileAppTroubleshootingEvent_Get.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEvent","GET","/deviceManagement/mobileAppTroubleshootingEvents/{param}","matched","Get-MgDeviceManagementMobileAppTroubleshootingEvent" +"Cmdlets","GetMgDeviceManagementMobileAppTroubleshootingEvent_List.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEvent","GET","/deviceManagement/mobileAppTroubleshootingEvents","matched","Get-MgDeviceManagementMobileAppTroubleshootingEvent" +"Cmdlets","GetMgDeviceManagementMobileAppTroubleshootingEvent.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEvent","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest_Get.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","GET","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/{param}","matched","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"Cmdlets","GetMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest_List.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","GET","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests","matched","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"Cmdlets","GetMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount","GET","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/$count","matched","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount" +"Cmdlets","GetMgDeviceManagementMobileAppTroubleshootingEventCount.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEventCount","GET","/deviceManagement/mobileAppTroubleshootingEvents/$count","matched","Get-MgDeviceManagementMobileAppTroubleshootingEventCount" +"Cmdlets","GetMgDeviceManagementNotificationMessageTemplate_Get.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplate","GET","/deviceManagement/notificationMessageTemplates/{param}","matched","Get-MgDeviceManagementNotificationMessageTemplate" +"Cmdlets","GetMgDeviceManagementNotificationMessageTemplate_List.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplate","GET","/deviceManagement/notificationMessageTemplates","matched","Get-MgDeviceManagementNotificationMessageTemplate" +"Cmdlets","GetMgDeviceManagementNotificationMessageTemplate.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplate","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementNotificationMessageTemplateCount.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplateCount","GET","/deviceManagement/notificationMessageTemplates/$count","matched","Get-MgDeviceManagementNotificationMessageTemplateCount" +"Cmdlets","GetMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage_Get.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","GET","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages/{param}","matched","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"Cmdlets","GetMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage_List.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","GET","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages","matched","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"Cmdlets","GetMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount","GET","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages/$count","matched","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount" +"Cmdlets","GetMgDeviceManagementSoftwareUpdateStatusSummary.g.cs","v1.0","Get-MgDeviceManagementSoftwareUpdateStatusSummary","GET","/deviceManagement/softwareUpdateStatusSummary","matched","Get-MgDeviceManagementSoftwareUpdateStatusSummary" +"Cmdlets","GetMgDeviceManagementTroubleshootingEvent_Get.g.cs","v1.0","Get-MgDeviceManagementTroubleshootingEvent","GET","/deviceManagement/troubleshootingEvents/{param}","matched","Get-MgDeviceManagementTroubleshootingEvent" +"Cmdlets","GetMgDeviceManagementTroubleshootingEvent_List.g.cs","v1.0","Get-MgDeviceManagementTroubleshootingEvent","GET","/deviceManagement/troubleshootingEvents","matched","Get-MgDeviceManagementTroubleshootingEvent" +"Cmdlets","GetMgDeviceManagementTroubleshootingEvent.g.cs","v1.0","Get-MgDeviceManagementTroubleshootingEvent","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementTroubleshootingEventCount.g.cs","v1.0","Get-MgDeviceManagementTroubleshootingEventCount","GET","/deviceManagement/troubleshootingEvents/$count","matched","Get-MgDeviceManagementTroubleshootingEventCount" +"Cmdlets","GetMgDeviceManagementWindowsInformationProtectionAppLearningSummary_Get.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","GET","/deviceManagement/windowsInformationProtectionAppLearningSummaries/{param}","matched","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"Cmdlets","GetMgDeviceManagementWindowsInformationProtectionAppLearningSummary_List.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","GET","/deviceManagement/windowsInformationProtectionAppLearningSummaries","matched","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"Cmdlets","GetMgDeviceManagementWindowsInformationProtectionAppLearningSummary.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount","GET","/deviceManagement/windowsInformationProtectionAppLearningSummaries/$count","matched","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount" +"Cmdlets","GetMgDeviceManagementWindowsInformationProtectionNetworkLearningSummary_Get.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","GET","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{param}","matched","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"Cmdlets","GetMgDeviceManagementWindowsInformationProtectionNetworkLearningSummary_List.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","GET","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries","matched","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"Cmdlets","GetMgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount","GET","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/$count","matched","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount" +"Cmdlets","GetMgDeviceManagementWindowsMalwareInformation_Get.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformation","GET","/deviceManagement/windowsMalwareInformation/{param}","matched","Get-MgDeviceManagementWindowsMalwareInformation" +"Cmdlets","GetMgDeviceManagementWindowsMalwareInformation_List.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformation","GET","/deviceManagement/windowsMalwareInformation","matched","Get-MgDeviceManagementWindowsMalwareInformation" +"Cmdlets","GetMgDeviceManagementWindowsMalwareInformation.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformation","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementWindowsMalwareInformationCount.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformationCount","GET","/deviceManagement/windowsMalwareInformation/$count","matched","Get-MgDeviceManagementWindowsMalwareInformationCount" +"Cmdlets","GetMgDeviceManagementWindowsMalwareInformationDeviceMalwareState_Get.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","GET","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates/{param}","matched","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"Cmdlets","GetMgDeviceManagementWindowsMalwareInformationDeviceMalwareState_List.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","GET","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates","matched","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"Cmdlets","GetMgDeviceManagementWindowsMalwareInformationDeviceMalwareState.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount","GET","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates/$count","matched","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount" +"Cmdlets","InvokeMgAdminEdgeInternetExplorerModeSiteListPublish.g.cs","v1.0","Invoke-MgAdminEdgeInternetExplorerModeSiteListPublish","POST","/admin/edge/internetExplorerMode/siteLists/{param}/publish","mismatch","Publish-MgAdminEdgeInternetExplorerModeSiteList" +"Cmdlets","InvokeMgDeviceManagementDeviceCompliancePolicyAssign.g.cs","v1.0","Invoke-MgDeviceManagementDeviceCompliancePolicyAssign","POST","/deviceManagement/deviceCompliancePolicies/{param}/assign","mismatch","Set-MgDeviceManagementDeviceCompliancePolicy" +"Cmdlets","InvokeMgDeviceManagementDeviceCompliancePolicyScheduleActionsForRules.g.cs","v1.0","Invoke-MgDeviceManagementDeviceCompliancePolicyScheduleActionsForRules","POST","/deviceManagement/deviceCompliancePolicies/{param}/scheduleActionsForRules","mismatch","Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule" +"Cmdlets","InvokeMgDeviceManagementDeviceConfigurationAssign.g.cs","v1.0","Invoke-MgDeviceManagementDeviceConfigurationAssign","POST","/deviceManagement/deviceConfigurations/{param}/assign","mismatch","Set-MgDeviceManagementDeviceConfiguration" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceBypassActivationLock.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceBypassActivationLock","POST","/deviceManagement/managedDevices/{param}/bypassActivationLock","mismatch","Skip-MgDeviceManagementManagedDeviceActivationLock" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceCleanWindowsDevice.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceCleanWindowsDevice","POST","/deviceManagement/managedDevices/{param}/cleanWindowsDevice","mismatch","Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceDeleteUserFromSharedAppleDevice.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceDeleteUserFromSharedAppleDevice","POST","/deviceManagement/managedDevices/{param}/deleteUserFromSharedAppleDevice","mismatch","Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceDisableLostMode.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceDisableLostMode","POST","/deviceManagement/managedDevices/{param}/disableLostMode","mismatch","Disable-MgDeviceManagementManagedDeviceLostMode" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceLocateDevice.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceLocateDevice","POST","/deviceManagement/managedDevices/{param}/locateDevice","mismatch","Find-MgDeviceManagementManagedDevice" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceLogCollectionRequestCreateDownloadUrl.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceLogCollectionRequestCreateDownloadUrl","POST","/deviceManagement/managedDevices/{param}/logCollectionRequests/{param}/createDownloadUrl","mismatch","New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceLogoutSharedAppleDeviceActiveUser.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceLogoutSharedAppleDeviceActiveUser","POST","/deviceManagement/managedDevices/{param}/logoutSharedAppleDeviceActiveUser","mismatch","Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceRebootNow.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceRebootNow","POST","/deviceManagement/managedDevices/{param}/rebootNow","mismatch","Restart-MgDeviceManagementManagedDeviceNow" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceRecoverPasscode.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceRecoverPasscode","POST","/deviceManagement/managedDevices/{param}/recoverPasscode","mismatch","Restore-MgDeviceManagementManagedDevicePasscode" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceRemoteLock.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceRemoteLock","POST","/deviceManagement/managedDevices/{param}/remoteLock","mismatch","Lock-MgDeviceManagementManagedDeviceRemote" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceRequestRemoteAssistance.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceRequestRemoteAssistance","POST","/deviceManagement/managedDevices/{param}/requestRemoteAssistance","mismatch","Request-MgDeviceManagementManagedDeviceRemoteAssistance" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceResetPasscode.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceResetPasscode","POST","/deviceManagement/managedDevices/{param}/resetPasscode","mismatch","Reset-MgDeviceManagementManagedDevicePasscode" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceRetire.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceRetire","POST","/deviceManagement/managedDevices/{param}/retire","mismatch","Invoke-MgRetireDeviceManagementManagedDevice" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceShutDown.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceShutDown","POST","/deviceManagement/managedDevices/{param}/shutDown","mismatch","Invoke-MgDownDeviceManagementManagedDeviceShut" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceSyncDevice.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceSyncDevice","POST","/deviceManagement/managedDevices/{param}/syncDevice","mismatch","Sync-MgDeviceManagementManagedDevice" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceUpdateWindowsDeviceAccount.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceUpdateWindowsDeviceAccount","POST","/deviceManagement/managedDevices/{param}/updateWindowsDeviceAccount","mismatch","Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceWindowsDefenderScan.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceWindowsDefenderScan","POST","/deviceManagement/managedDevices/{param}/windowsDefenderScan","mismatch","Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceWindowsDefenderUpdateSignatures.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceWindowsDefenderUpdateSignatures","POST","/deviceManagement/managedDevices/{param}/windowsDefenderUpdateSignatures","no-oracle","" +"Cmdlets","InvokeMgDeviceManagementManagedDeviceWipe.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceWipe","POST","/deviceManagement/managedDevices/{param}/wipe","mismatch","Clear-MgDeviceManagementManagedDevice" +"Cmdlets","InvokeMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCreateDownloadUrl.g.cs","v1.0","Invoke-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCreateDownloadUrl","POST","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/{param}/createDownloadUrl","mismatch","New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl" +"Cmdlets","InvokeMgDeviceManagementNotificationMessageTemplateSendTestMessage.g.cs","v1.0","Invoke-MgDeviceManagementNotificationMessageTemplateSendTestMessage","POST","/deviceManagement/notificationMessageTemplates/{param}/sendTestMessage","mismatch","Send-MgDeviceManagementNotificationMessageTemplateTestMessage" +"Cmdlets","NewMgAdminEdgeInternetExplorerModeSiteList.g.cs","v1.0","New-MgAdminEdgeInternetExplorerModeSiteList","POST","/admin/edge/internetExplorerMode/siteLists","matched","New-MgAdminEdgeInternetExplorerModeSiteList" +"Cmdlets","NewMgAdminEdgeInternetExplorerModeSiteListSharedCookie.g.cs","v1.0","New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","POST","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies","matched","New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"Cmdlets","NewMgAdminEdgeInternetExplorerModeSiteListSite.g.cs","v1.0","New-MgAdminEdgeInternetExplorerModeSiteListSite","POST","/admin/edge/internetExplorerMode/siteLists/{param}/sites","matched","New-MgAdminEdgeInternetExplorerModeSiteListSite" +"Cmdlets","NewMgDeviceManagementDetectedApp.g.cs","v1.0","New-MgDeviceManagementDetectedApp","POST","/deviceManagement/detectedApps","matched","New-MgDeviceManagementDetectedApp" +"Cmdlets","NewMgDeviceManagementDeviceCategory.g.cs","v1.0","New-MgDeviceManagementDeviceCategory","POST","/deviceManagement/deviceCategories","matched","New-MgDeviceManagementDeviceCategory" +"Cmdlets","NewMgDeviceManagementDeviceCompliancePolicy.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicy","POST","/deviceManagement/deviceCompliancePolicies","matched","New-MgDeviceManagementDeviceCompliancePolicy" +"Cmdlets","NewMgDeviceManagementDeviceCompliancePolicyAssignment.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicyAssignment","POST","/deviceManagement/deviceCompliancePolicies/{param}/assignments","matched","New-MgDeviceManagementDeviceCompliancePolicyAssignment" +"Cmdlets","NewMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","POST","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries","matched","New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"Cmdlets","NewMgDeviceManagementDeviceCompliancePolicyDeviceStatus.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","POST","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses","matched","New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"Cmdlets","NewMgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","POST","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule","matched","New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"Cmdlets","NewMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","POST","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations","matched","New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"Cmdlets","NewMgDeviceManagementDeviceCompliancePolicySettingStateSummary.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","POST","/deviceManagement/deviceCompliancePolicySettingStateSummaries","matched","New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"Cmdlets","NewMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","POST","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates","matched","New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"Cmdlets","NewMgDeviceManagementDeviceCompliancePolicyUserStatus.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicyUserStatus","POST","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses","matched","New-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"Cmdlets","NewMgDeviceManagementDeviceConfiguration.g.cs","v1.0","New-MgDeviceManagementDeviceConfiguration","POST","/deviceManagement/deviceConfigurations","matched","New-MgDeviceManagementDeviceConfiguration" +"Cmdlets","NewMgDeviceManagementDeviceConfigurationAssignment.g.cs","v1.0","New-MgDeviceManagementDeviceConfigurationAssignment","POST","/deviceManagement/deviceConfigurations/{param}/assignments","matched","New-MgDeviceManagementDeviceConfigurationAssignment" +"Cmdlets","NewMgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.g.cs","v1.0","New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","POST","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries","matched","New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"Cmdlets","NewMgDeviceManagementDeviceConfigurationDeviceStatus.g.cs","v1.0","New-MgDeviceManagementDeviceConfigurationDeviceStatus","POST","/deviceManagement/deviceConfigurations/{param}/deviceStatuses","matched","New-MgDeviceManagementDeviceConfigurationDeviceStatus" +"Cmdlets","NewMgDeviceManagementDeviceConfigurationUserStatus.g.cs","v1.0","New-MgDeviceManagementDeviceConfigurationUserStatus","POST","/deviceManagement/deviceConfigurations/{param}/userStatuses","matched","New-MgDeviceManagementDeviceConfigurationUserStatus" +"Cmdlets","NewMgDeviceManagementManagedDevice.g.cs","v1.0","New-MgDeviceManagementManagedDevice","POST","/deviceManagement/managedDevices","matched","New-MgDeviceManagementManagedDevice" +"Cmdlets","NewMgDeviceManagementManagedDeviceCompliancePolicyState.g.cs","v1.0","New-MgDeviceManagementManagedDeviceCompliancePolicyState","POST","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates","matched","New-MgDeviceManagementManagedDeviceCompliancePolicyState" +"Cmdlets","NewMgDeviceManagementManagedDeviceConfigurationState.g.cs","v1.0","New-MgDeviceManagementManagedDeviceConfigurationState","POST","/deviceManagement/managedDevices/{param}/deviceConfigurationStates","matched","New-MgDeviceManagementManagedDeviceConfigurationState" +"Cmdlets","NewMgDeviceManagementManagedDeviceLogCollectionRequest.g.cs","v1.0","New-MgDeviceManagementManagedDeviceLogCollectionRequest","POST","/deviceManagement/managedDevices/{param}/logCollectionRequests","no-oracle","" +"Cmdlets","NewMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","POST","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState","matched","New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Cmdlets","NewMgDeviceManagementMobileAppTroubleshootingEvent.g.cs","v1.0","New-MgDeviceManagementMobileAppTroubleshootingEvent","POST","/deviceManagement/mobileAppTroubleshootingEvents","matched","New-MgDeviceManagementMobileAppTroubleshootingEvent" +"Cmdlets","NewMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.g.cs","v1.0","New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","POST","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests","matched","New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"Cmdlets","NewMgDeviceManagementNotificationMessageTemplate.g.cs","v1.0","New-MgDeviceManagementNotificationMessageTemplate","POST","/deviceManagement/notificationMessageTemplates","matched","New-MgDeviceManagementNotificationMessageTemplate" +"Cmdlets","NewMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.g.cs","v1.0","New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","POST","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages","matched","New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"Cmdlets","NewMgDeviceManagementTroubleshootingEvent.g.cs","v1.0","New-MgDeviceManagementTroubleshootingEvent","POST","/deviceManagement/troubleshootingEvents","matched","New-MgDeviceManagementTroubleshootingEvent" +"Cmdlets","NewMgDeviceManagementWindowsInformationProtectionAppLearningSummary.g.cs","v1.0","New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","POST","/deviceManagement/windowsInformationProtectionAppLearningSummaries","matched","New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"Cmdlets","NewMgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.g.cs","v1.0","New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","POST","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries","matched","New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"Cmdlets","NewMgDeviceManagementWindowsMalwareInformation.g.cs","v1.0","New-MgDeviceManagementWindowsMalwareInformation","POST","/deviceManagement/windowsMalwareInformation","matched","New-MgDeviceManagementWindowsMalwareInformation" +"Cmdlets","NewMgDeviceManagementWindowsMalwareInformationDeviceMalwareState.g.cs","v1.0","New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","POST","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates","matched","New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"Cmdlets","RemoveMgAdminEdge.g.cs","v1.0","Remove-MgAdminEdge","DELETE","/admin/edge","matched","Remove-MgAdminEdge" +"Cmdlets","RemoveMgAdminEdgeInternetExplorerMode.g.cs","v1.0","Remove-MgAdminEdgeInternetExplorerMode","DELETE","/admin/edge/internetExplorerMode","matched","Remove-MgAdminEdgeInternetExplorerMode" +"Cmdlets","RemoveMgAdminEdgeInternetExplorerModeSiteList.g.cs","v1.0","Remove-MgAdminEdgeInternetExplorerModeSiteList","DELETE","/admin/edge/internetExplorerMode/siteLists/{param}","matched","Remove-MgAdminEdgeInternetExplorerModeSiteList" +"Cmdlets","RemoveMgAdminEdgeInternetExplorerModeSiteListSharedCookie.g.cs","v1.0","Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","DELETE","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies/{param}","matched","Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"Cmdlets","RemoveMgAdminEdgeInternetExplorerModeSiteListSite.g.cs","v1.0","Remove-MgAdminEdgeInternetExplorerModeSiteListSite","DELETE","/admin/edge/internetExplorerMode/siteLists/{param}/sites/{param}","matched","Remove-MgAdminEdgeInternetExplorerModeSiteListSite" +"Cmdlets","RemoveMgDeviceManagementDetectedApp.g.cs","v1.0","Remove-MgDeviceManagementDetectedApp","DELETE","/deviceManagement/detectedApps/{param}","matched","Remove-MgDeviceManagementDetectedApp" +"Cmdlets","RemoveMgDeviceManagementDeviceCategory.g.cs","v1.0","Remove-MgDeviceManagementDeviceCategory","DELETE","/deviceManagement/deviceCategories/{param}","matched","Remove-MgDeviceManagementDeviceCategory" +"Cmdlets","RemoveMgDeviceManagementDeviceCompliancePolicy.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicy","DELETE","/deviceManagement/deviceCompliancePolicies/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicy" +"Cmdlets","RemoveMgDeviceManagementDeviceCompliancePolicyAssignment.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyAssignment","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/assignments/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicyAssignment" +"Cmdlets","RemoveMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"Cmdlets","RemoveMgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary","DELETE","/deviceManagement/deviceCompliancePolicyDeviceStateSummary","matched","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary" +"Cmdlets","RemoveMgDeviceManagementDeviceCompliancePolicyDeviceStatus.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"Cmdlets","RemoveMgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatusOverview","matched","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview" +"Cmdlets","RemoveMgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"Cmdlets","RemoveMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"Cmdlets","RemoveMgDeviceManagementDeviceCompliancePolicySettingStateSummary.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","DELETE","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"Cmdlets","RemoveMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","DELETE","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"Cmdlets","RemoveMgDeviceManagementDeviceCompliancePolicyUserStatus.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"Cmdlets","RemoveMgDeviceManagementDeviceCompliancePolicyUserStatusOverview.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/userStatusOverview","matched","Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview" +"Cmdlets","RemoveMgDeviceManagementDeviceConfiguration.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfiguration","DELETE","/deviceManagement/deviceConfigurations/{param}","matched","Remove-MgDeviceManagementDeviceConfiguration" +"Cmdlets","RemoveMgDeviceManagementDeviceConfigurationAssignment.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationAssignment","DELETE","/deviceManagement/deviceConfigurations/{param}/assignments/{param}","matched","Remove-MgDeviceManagementDeviceConfigurationAssignment" +"Cmdlets","RemoveMgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","DELETE","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries/{param}","matched","Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"Cmdlets","RemoveMgDeviceManagementDeviceConfigurationDeviceStateSummary.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary","DELETE","/deviceManagement/deviceConfigurationDeviceStateSummaries","matched","Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary" +"Cmdlets","RemoveMgDeviceManagementDeviceConfigurationDeviceStatus.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationDeviceStatus","DELETE","/deviceManagement/deviceConfigurations/{param}/deviceStatuses/{param}","matched","Remove-MgDeviceManagementDeviceConfigurationDeviceStatus" +"Cmdlets","RemoveMgDeviceManagementDeviceConfigurationDeviceStatusOverview.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview","DELETE","/deviceManagement/deviceConfigurations/{param}/deviceStatusOverview","matched","Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview" +"Cmdlets","RemoveMgDeviceManagementDeviceConfigurationUserStatus.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationUserStatus","DELETE","/deviceManagement/deviceConfigurations/{param}/userStatuses/{param}","matched","Remove-MgDeviceManagementDeviceConfigurationUserStatus" +"Cmdlets","RemoveMgDeviceManagementDeviceConfigurationUserStatusOverview.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview","DELETE","/deviceManagement/deviceConfigurations/{param}/userStatusOverview","matched","Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview" +"Cmdlets","RemoveMgDeviceManagementManagedDevice.g.cs","v1.0","Remove-MgDeviceManagementManagedDevice","DELETE","/deviceManagement/managedDevices/{param}","matched","Remove-MgDeviceManagementManagedDevice" +"Cmdlets","RemoveMgDeviceManagementManagedDeviceCategory.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceCategory","DELETE","/deviceManagement/managedDevices/{param}/deviceCategory","matched","Remove-MgDeviceManagementManagedDeviceCategory" +"Cmdlets","RemoveMgDeviceManagementManagedDeviceCategoryByRef.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceCategoryByRef","DELETE","/deviceManagement/managedDevices/{param}/deviceCategory/$ref","matched","Remove-MgDeviceManagementManagedDeviceCategoryByRef" +"Cmdlets","RemoveMgDeviceManagementManagedDeviceCompliancePolicyState.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceCompliancePolicyState","DELETE","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates/{param}","matched","Remove-MgDeviceManagementManagedDeviceCompliancePolicyState" +"Cmdlets","RemoveMgDeviceManagementManagedDeviceConfigurationState.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceConfigurationState","DELETE","/deviceManagement/managedDevices/{param}/deviceConfigurationStates/{param}","matched","Remove-MgDeviceManagementManagedDeviceConfigurationState" +"Cmdlets","RemoveMgDeviceManagementManagedDeviceLogCollectionRequest.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceLogCollectionRequest","DELETE","/deviceManagement/managedDevices/{param}/logCollectionRequests/{param}","matched","Remove-MgDeviceManagementManagedDeviceLogCollectionRequest" +"Cmdlets","RemoveMgDeviceManagementManagedDeviceWindowsProtectionState.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceWindowsProtectionState","DELETE","/deviceManagement/managedDevices/{param}/windowsProtectionState","matched","Remove-MgDeviceManagementManagedDeviceWindowsProtectionState" +"Cmdlets","RemoveMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","DELETE","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","matched","Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Cmdlets","RemoveMgDeviceManagementMobileAppTroubleshootingEvent.g.cs","v1.0","Remove-MgDeviceManagementMobileAppTroubleshootingEvent","DELETE","/deviceManagement/mobileAppTroubleshootingEvents/{param}","matched","Remove-MgDeviceManagementMobileAppTroubleshootingEvent" +"Cmdlets","RemoveMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.g.cs","v1.0","Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","DELETE","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/{param}","matched","Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"Cmdlets","RemoveMgDeviceManagementNotificationMessageTemplate.g.cs","v1.0","Remove-MgDeviceManagementNotificationMessageTemplate","DELETE","/deviceManagement/notificationMessageTemplates/{param}","matched","Remove-MgDeviceManagementNotificationMessageTemplate" +"Cmdlets","RemoveMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.g.cs","v1.0","Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","DELETE","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages/{param}","matched","Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"Cmdlets","RemoveMgDeviceManagementTroubleshootingEvent.g.cs","v1.0","Remove-MgDeviceManagementTroubleshootingEvent","DELETE","/deviceManagement/troubleshootingEvents/{param}","matched","Remove-MgDeviceManagementTroubleshootingEvent" +"Cmdlets","RemoveMgDeviceManagementWindowsInformationProtectionAppLearningSummary.g.cs","v1.0","Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","DELETE","/deviceManagement/windowsInformationProtectionAppLearningSummaries/{param}","matched","Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"Cmdlets","RemoveMgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.g.cs","v1.0","Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","DELETE","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{param}","matched","Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"Cmdlets","RemoveMgDeviceManagementWindowsMalwareInformation.g.cs","v1.0","Remove-MgDeviceManagementWindowsMalwareInformation","DELETE","/deviceManagement/windowsMalwareInformation/{param}","matched","Remove-MgDeviceManagementWindowsMalwareInformation" +"Cmdlets","RemoveMgDeviceManagementWindowsMalwareInformationDeviceMalwareState.g.cs","v1.0","Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","DELETE","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates/{param}","matched","Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"Cmdlets","SetMgDeviceManagementManagedDeviceCategoryByRef.g.cs","v1.0","Set-MgDeviceManagementManagedDeviceCategoryByRef","PUT","/deviceManagement/managedDevices/{param}/deviceCategory/$ref","matched","Set-MgDeviceManagementManagedDeviceCategoryByRef" +"Cmdlets","UpdateMgAdminEdge.g.cs","v1.0","Update-MgAdminEdge","PATCH","/admin/edge","matched","Update-MgAdminEdge" +"Cmdlets","UpdateMgAdminEdgeInternetExplorerMode.g.cs","v1.0","Update-MgAdminEdgeInternetExplorerMode","PATCH","/admin/edge/internetExplorerMode","matched","Update-MgAdminEdgeInternetExplorerMode" +"Cmdlets","UpdateMgAdminEdgeInternetExplorerModeSiteList.g.cs","v1.0","Update-MgAdminEdgeInternetExplorerModeSiteList","PATCH","/admin/edge/internetExplorerMode/siteLists/{param}","matched","Update-MgAdminEdgeInternetExplorerModeSiteList" +"Cmdlets","UpdateMgAdminEdgeInternetExplorerModeSiteListSharedCookie.g.cs","v1.0","Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","PATCH","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies/{param}","matched","Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"Cmdlets","UpdateMgAdminEdgeInternetExplorerModeSiteListSite.g.cs","v1.0","Update-MgAdminEdgeInternetExplorerModeSiteListSite","PATCH","/admin/edge/internetExplorerMode/siteLists/{param}/sites/{param}","matched","Update-MgAdminEdgeInternetExplorerModeSiteListSite" +"Cmdlets","UpdateMgDeviceManagement.g.cs","v1.0","Update-MgDeviceManagement","PATCH","/deviceManagement","matched","Update-MgDeviceManagement" +"Cmdlets","UpdateMgDeviceManagementDetectedApp.g.cs","v1.0","Update-MgDeviceManagementDetectedApp","PATCH","/deviceManagement/detectedApps/{param}","matched","Update-MgDeviceManagementDetectedApp" +"Cmdlets","UpdateMgDeviceManagementDeviceCategory.g.cs","v1.0","Update-MgDeviceManagementDeviceCategory","PATCH","/deviceManagement/deviceCategories/{param}","matched","Update-MgDeviceManagementDeviceCategory" +"Cmdlets","UpdateMgDeviceManagementDeviceCompliancePolicy.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicy","PATCH","/deviceManagement/deviceCompliancePolicies/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicy" +"Cmdlets","UpdateMgDeviceManagementDeviceCompliancePolicyAssignment.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyAssignment","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/assignments/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicyAssignment" +"Cmdlets","UpdateMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"Cmdlets","UpdateMgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary","PATCH","/deviceManagement/deviceCompliancePolicyDeviceStateSummary","matched","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary" +"Cmdlets","UpdateMgDeviceManagementDeviceCompliancePolicyDeviceStatus.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"Cmdlets","UpdateMgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatusOverview","matched","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview" +"Cmdlets","UpdateMgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"Cmdlets","UpdateMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"Cmdlets","UpdateMgDeviceManagementDeviceCompliancePolicySettingStateSummary.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","PATCH","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"Cmdlets","UpdateMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","PATCH","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"Cmdlets","UpdateMgDeviceManagementDeviceCompliancePolicyUserStatus.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyUserStatus","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"Cmdlets","UpdateMgDeviceManagementDeviceCompliancePolicyUserStatusOverview.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/userStatusOverview","matched","Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview" +"Cmdlets","UpdateMgDeviceManagementDeviceConfiguration.g.cs","v1.0","Update-MgDeviceManagementDeviceConfiguration","PATCH","/deviceManagement/deviceConfigurations/{param}","matched","Update-MgDeviceManagementDeviceConfiguration" +"Cmdlets","UpdateMgDeviceManagementDeviceConfigurationAssignment.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationAssignment","PATCH","/deviceManagement/deviceConfigurations/{param}/assignments/{param}","matched","Update-MgDeviceManagementDeviceConfigurationAssignment" +"Cmdlets","UpdateMgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","PATCH","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries/{param}","matched","Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"Cmdlets","UpdateMgDeviceManagementDeviceConfigurationDeviceStateSummary.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary","PATCH","/deviceManagement/deviceConfigurationDeviceStateSummaries","matched","Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary" +"Cmdlets","UpdateMgDeviceManagementDeviceConfigurationDeviceStatus.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationDeviceStatus","PATCH","/deviceManagement/deviceConfigurations/{param}/deviceStatuses/{param}","matched","Update-MgDeviceManagementDeviceConfigurationDeviceStatus" +"Cmdlets","UpdateMgDeviceManagementDeviceConfigurationDeviceStatusOverview.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview","PATCH","/deviceManagement/deviceConfigurations/{param}/deviceStatusOverview","matched","Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview" +"Cmdlets","UpdateMgDeviceManagementDeviceConfigurationUserStatus.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationUserStatus","PATCH","/deviceManagement/deviceConfigurations/{param}/userStatuses/{param}","matched","Update-MgDeviceManagementDeviceConfigurationUserStatus" +"Cmdlets","UpdateMgDeviceManagementDeviceConfigurationUserStatusOverview.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationUserStatusOverview","PATCH","/deviceManagement/deviceConfigurations/{param}/userStatusOverview","matched","Update-MgDeviceManagementDeviceConfigurationUserStatusOverview" +"Cmdlets","UpdateMgDeviceManagementManagedDevice.g.cs","v1.0","Update-MgDeviceManagementManagedDevice","PATCH","/deviceManagement/managedDevices/{param}","matched","Update-MgDeviceManagementManagedDevice" +"Cmdlets","UpdateMgDeviceManagementManagedDeviceCategory.g.cs","v1.0","Update-MgDeviceManagementManagedDeviceCategory","PATCH","/deviceManagement/managedDevices/{param}/deviceCategory","matched","Update-MgDeviceManagementManagedDeviceCategory" +"Cmdlets","UpdateMgDeviceManagementManagedDeviceCompliancePolicyState.g.cs","v1.0","Update-MgDeviceManagementManagedDeviceCompliancePolicyState","PATCH","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates/{param}","matched","Update-MgDeviceManagementManagedDeviceCompliancePolicyState" +"Cmdlets","UpdateMgDeviceManagementManagedDeviceConfigurationState.g.cs","v1.0","Update-MgDeviceManagementManagedDeviceConfigurationState","PATCH","/deviceManagement/managedDevices/{param}/deviceConfigurationStates/{param}","matched","Update-MgDeviceManagementManagedDeviceConfigurationState" +"Cmdlets","UpdateMgDeviceManagementManagedDeviceLogCollectionRequest.g.cs","v1.0","Update-MgDeviceManagementManagedDeviceLogCollectionRequest","PATCH","/deviceManagement/managedDevices/{param}/logCollectionRequests/{param}","matched","Update-MgDeviceManagementManagedDeviceLogCollectionRequest" +"Cmdlets","UpdateMgDeviceManagementManagedDeviceWindowsProtectionState.g.cs","v1.0","Update-MgDeviceManagementManagedDeviceWindowsProtectionState","PATCH","/deviceManagement/managedDevices/{param}/windowsProtectionState","matched","Update-MgDeviceManagementManagedDeviceWindowsProtectionState" +"Cmdlets","UpdateMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","PATCH","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","matched","Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Cmdlets","UpdateMgDeviceManagementMobileAppTroubleshootingEvent.g.cs","v1.0","Update-MgDeviceManagementMobileAppTroubleshootingEvent","PATCH","/deviceManagement/mobileAppTroubleshootingEvents/{param}","matched","Update-MgDeviceManagementMobileAppTroubleshootingEvent" +"Cmdlets","UpdateMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.g.cs","v1.0","Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","PATCH","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/{param}","matched","Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"Cmdlets","UpdateMgDeviceManagementNotificationMessageTemplate.g.cs","v1.0","Update-MgDeviceManagementNotificationMessageTemplate","PATCH","/deviceManagement/notificationMessageTemplates/{param}","matched","Update-MgDeviceManagementNotificationMessageTemplate" +"Cmdlets","UpdateMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.g.cs","v1.0","Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","PATCH","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages/{param}","matched","Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"Cmdlets","UpdateMgDeviceManagementTroubleshootingEvent.g.cs","v1.0","Update-MgDeviceManagementTroubleshootingEvent","PATCH","/deviceManagement/troubleshootingEvents/{param}","matched","Update-MgDeviceManagementTroubleshootingEvent" +"Cmdlets","UpdateMgDeviceManagementWindowsInformationProtectionAppLearningSummary.g.cs","v1.0","Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","PATCH","/deviceManagement/windowsInformationProtectionAppLearningSummaries/{param}","matched","Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"Cmdlets","UpdateMgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.g.cs","v1.0","Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","PATCH","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{param}","matched","Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"Cmdlets","UpdateMgDeviceManagementWindowsMalwareInformation.g.cs","v1.0","Update-MgDeviceManagementWindowsMalwareInformation","PATCH","/deviceManagement/windowsMalwareInformation/{param}","matched","Update-MgDeviceManagementWindowsMalwareInformation" +"Cmdlets","UpdateMgDeviceManagementWindowsMalwareInformationDeviceMalwareState.g.cs","v1.0","Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","PATCH","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates/{param}","matched","Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"Cmdlets","GetMgDeviceManagementApplePushNotificationCertificate.g.cs","v1.0","Get-MgDeviceManagementApplePushNotificationCertificate","GET","/deviceManagement/applePushNotificationCertificate","matched","Get-MgDeviceManagementApplePushNotificationCertificate" +"Cmdlets","GetMgDeviceManagementApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequest.g.cs","v1.0","Get-MgDeviceManagementApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequest","GET","/deviceManagement/applePushNotificationCertificate/downloadApplePushNotificationCertificateSigningRequest","mismatch","Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest" +"Cmdlets","GetMgDeviceManagementAuditEvent_Get.g.cs","v1.0","Get-MgDeviceManagementAuditEvent","GET","/deviceManagement/auditEvents/{param}","matched","Get-MgDeviceManagementAuditEvent" +"Cmdlets","GetMgDeviceManagementAuditEvent_List.g.cs","v1.0","Get-MgDeviceManagementAuditEvent","GET","/deviceManagement/auditEvents","matched","Get-MgDeviceManagementAuditEvent" +"Cmdlets","GetMgDeviceManagementAuditEvent.g.cs","v1.0","Get-MgDeviceManagementAuditEvent","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementAuditEventCount.g.cs","v1.0","Get-MgDeviceManagementAuditEventCount","GET","/deviceManagement/auditEvents/$count","matched","Get-MgDeviceManagementAuditEventCount" +"Cmdlets","GetMgDeviceManagementAuditEventGetAuditActivityTypesWithCategory.g.cs","v1.0","Get-MgDeviceManagementAuditEventGetAuditActivityTypesWithCategory","GET","/deviceManagement/auditEvents/getAuditActivityTypes(category='{category}')","mismatch","Get-MgDeviceManagementAuditEventAuditActivityType" +"Cmdlets","GetMgDeviceManagementAuditEventGetAuditCategories.g.cs","v1.0","Get-MgDeviceManagementAuditEventGetAuditCategories","GET","/deviceManagement/auditEvents/getAuditCategories","mismatch","Get-MgDeviceManagementAuditEventAuditCategory" +"Cmdlets","GetMgDeviceManagementComplianceManagementPartner_Get.g.cs","v1.0","Get-MgDeviceManagementComplianceManagementPartner","GET","/deviceManagement/complianceManagementPartners/{param}","matched","Get-MgDeviceManagementComplianceManagementPartner" +"Cmdlets","GetMgDeviceManagementComplianceManagementPartner_List.g.cs","v1.0","Get-MgDeviceManagementComplianceManagementPartner","GET","/deviceManagement/complianceManagementPartners","matched","Get-MgDeviceManagementComplianceManagementPartner" +"Cmdlets","GetMgDeviceManagementComplianceManagementPartner.g.cs","v1.0","Get-MgDeviceManagementComplianceManagementPartner","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementComplianceManagementPartnerCount.g.cs","v1.0","Get-MgDeviceManagementComplianceManagementPartnerCount","GET","/deviceManagement/complianceManagementPartners/$count","matched","Get-MgDeviceManagementComplianceManagementPartnerCount" +"Cmdlets","GetMgDeviceManagementDeviceManagementPartnerCount.g.cs","v1.0","Get-MgDeviceManagementDeviceManagementPartnerCount","GET","/deviceManagement/deviceManagementPartners/$count","mismatch","Get-MgDeviceManagementPartnerCount" +"Cmdlets","GetMgDeviceManagementExchangeConnector_Get.g.cs","v1.0","Get-MgDeviceManagementExchangeConnector","GET","/deviceManagement/exchangeConnectors/{param}","matched","Get-MgDeviceManagementExchangeConnector" +"Cmdlets","GetMgDeviceManagementExchangeConnector_List.g.cs","v1.0","Get-MgDeviceManagementExchangeConnector","GET","/deviceManagement/exchangeConnectors","matched","Get-MgDeviceManagementExchangeConnector" +"Cmdlets","GetMgDeviceManagementExchangeConnector.g.cs","v1.0","Get-MgDeviceManagementExchangeConnector","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementExchangeConnectorCount.g.cs","v1.0","Get-MgDeviceManagementExchangeConnectorCount","GET","/deviceManagement/exchangeConnectors/$count","matched","Get-MgDeviceManagementExchangeConnectorCount" +"Cmdlets","GetMgDeviceManagementIosUpdateStatus_Get.g.cs","v1.0","Get-MgDeviceManagementIosUpdateStatus","GET","/deviceManagement/iosUpdateStatuses/{param}","mismatch","Get-MgDeviceManagementIoUpdateStatus" +"Cmdlets","GetMgDeviceManagementIosUpdateStatus_List.g.cs","v1.0","Get-MgDeviceManagementIosUpdateStatus","GET","/deviceManagement/iosUpdateStatuses","mismatch","Get-MgDeviceManagementIoUpdateStatus" +"Cmdlets","GetMgDeviceManagementIosUpdateStatus.g.cs","v1.0","Get-MgDeviceManagementIosUpdateStatus","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementIosUpdateStatusCount.g.cs","v1.0","Get-MgDeviceManagementIosUpdateStatusCount","GET","/deviceManagement/iosUpdateStatuses/$count","mismatch","Get-MgDeviceManagementIoUpdateStatusCount" +"Cmdlets","GetMgDeviceManagementMobileThreatDefenseConnector_Get.g.cs","v1.0","Get-MgDeviceManagementMobileThreatDefenseConnector","GET","/deviceManagement/mobileThreatDefenseConnectors/{param}","matched","Get-MgDeviceManagementMobileThreatDefenseConnector" +"Cmdlets","GetMgDeviceManagementMobileThreatDefenseConnector_List.g.cs","v1.0","Get-MgDeviceManagementMobileThreatDefenseConnector","GET","/deviceManagement/mobileThreatDefenseConnectors","matched","Get-MgDeviceManagementMobileThreatDefenseConnector" +"Cmdlets","GetMgDeviceManagementMobileThreatDefenseConnector.g.cs","v1.0","Get-MgDeviceManagementMobileThreatDefenseConnector","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementMobileThreatDefenseConnectorCount.g.cs","v1.0","Get-MgDeviceManagementMobileThreatDefenseConnectorCount","GET","/deviceManagement/mobileThreatDefenseConnectors/$count","matched","Get-MgDeviceManagementMobileThreatDefenseConnectorCount" +"Cmdlets","GetMgDeviceManagementPartner_Get.g.cs","v1.0","Get-MgDeviceManagementPartner","GET","/deviceManagement/deviceManagementPartners/{param}","matched","Get-MgDeviceManagementPartner" +"Cmdlets","GetMgDeviceManagementPartner_List.g.cs","v1.0","Get-MgDeviceManagementPartner","GET","/deviceManagement/deviceManagementPartners","matched","Get-MgDeviceManagementPartner" +"Cmdlets","GetMgDeviceManagementPartner.g.cs","v1.0","Get-MgDeviceManagementPartner","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementRemoteAssistancePartner_Get.g.cs","v1.0","Get-MgDeviceManagementRemoteAssistancePartner","GET","/deviceManagement/remoteAssistancePartners/{param}","matched","Get-MgDeviceManagementRemoteAssistancePartner" +"Cmdlets","GetMgDeviceManagementRemoteAssistancePartner_List.g.cs","v1.0","Get-MgDeviceManagementRemoteAssistancePartner","GET","/deviceManagement/remoteAssistancePartners","matched","Get-MgDeviceManagementRemoteAssistancePartner" +"Cmdlets","GetMgDeviceManagementRemoteAssistancePartner.g.cs","v1.0","Get-MgDeviceManagementRemoteAssistancePartner","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementRemoteAssistancePartnerCount.g.cs","v1.0","Get-MgDeviceManagementRemoteAssistancePartnerCount","GET","/deviceManagement/remoteAssistancePartners/$count","matched","Get-MgDeviceManagementRemoteAssistancePartnerCount" +"Cmdlets","GetMgDeviceManagementResourceOperation_Get.g.cs","v1.0","Get-MgDeviceManagementResourceOperation","GET","/deviceManagement/resourceOperations/{param}","matched","Get-MgDeviceManagementResourceOperation" +"Cmdlets","GetMgDeviceManagementResourceOperation_List.g.cs","v1.0","Get-MgDeviceManagementResourceOperation","GET","/deviceManagement/resourceOperations","matched","Get-MgDeviceManagementResourceOperation" +"Cmdlets","GetMgDeviceManagementResourceOperation.g.cs","v1.0","Get-MgDeviceManagementResourceOperation","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementResourceOperationCount.g.cs","v1.0","Get-MgDeviceManagementResourceOperationCount","GET","/deviceManagement/resourceOperations/$count","matched","Get-MgDeviceManagementResourceOperationCount" +"Cmdlets","GetMgDeviceManagementRoleAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementRoleAssignment","GET","/deviceManagement/roleAssignments/{param}","matched","Get-MgDeviceManagementRoleAssignment" +"Cmdlets","GetMgDeviceManagementRoleAssignment_List.g.cs","v1.0","Get-MgDeviceManagementRoleAssignment","GET","/deviceManagement/roleAssignments","matched","Get-MgDeviceManagementRoleAssignment" +"Cmdlets","GetMgDeviceManagementRoleAssignment.g.cs","v1.0","Get-MgDeviceManagementRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementRoleAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementRoleAssignmentCount","GET","/deviceManagement/roleAssignments/$count","matched","Get-MgDeviceManagementRoleAssignmentCount" +"Cmdlets","GetMgDeviceManagementRoleAssignmentRoleDefinition.g.cs","v1.0","Get-MgDeviceManagementRoleAssignmentRoleDefinition","GET","/deviceManagement/roleAssignments/{param}/roleDefinition","matched","Get-MgDeviceManagementRoleAssignmentRoleDefinition" +"Cmdlets","GetMgDeviceManagementRoleDefinition_Get.g.cs","v1.0","Get-MgDeviceManagementRoleDefinition","GET","/deviceManagement/roleDefinitions/{param}","matched","Get-MgDeviceManagementRoleDefinition" +"Cmdlets","GetMgDeviceManagementRoleDefinition_List.g.cs","v1.0","Get-MgDeviceManagementRoleDefinition","GET","/deviceManagement/roleDefinitions","matched","Get-MgDeviceManagementRoleDefinition" +"Cmdlets","GetMgDeviceManagementRoleDefinition.g.cs","v1.0","Get-MgDeviceManagementRoleDefinition","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementRoleDefinitionCount.g.cs","v1.0","Get-MgDeviceManagementRoleDefinitionCount","GET","/deviceManagement/roleDefinitions/$count","matched","Get-MgDeviceManagementRoleDefinitionCount" +"Cmdlets","GetMgDeviceManagementRoleDefinitionRoleAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementRoleDefinitionRoleAssignment","GET","/deviceManagement/roleDefinitions/{param}/roleAssignments/{param}","matched","Get-MgDeviceManagementRoleDefinitionRoleAssignment" +"Cmdlets","GetMgDeviceManagementRoleDefinitionRoleAssignment_List.g.cs","v1.0","Get-MgDeviceManagementRoleDefinitionRoleAssignment","GET","/deviceManagement/roleDefinitions/{param}/roleAssignments","matched","Get-MgDeviceManagementRoleDefinitionRoleAssignment" +"Cmdlets","GetMgDeviceManagementRoleDefinitionRoleAssignment.g.cs","v1.0","Get-MgDeviceManagementRoleDefinitionRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementRoleDefinitionRoleAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount","GET","/deviceManagement/roleDefinitions/{param}/roleAssignments/$count","matched","Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount" +"Cmdlets","GetMgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.g.cs","v1.0","Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition","GET","/deviceManagement/roleDefinitions/{param}/roleAssignments/{param}/roleDefinition","matched","Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition" +"Cmdlets","GetMgDeviceManagementTermAndCondition_Get.g.cs","v1.0","Get-MgDeviceManagementTermAndCondition","GET","/deviceManagement/termsAndConditions/{param}","matched","Get-MgDeviceManagementTermAndCondition" +"Cmdlets","GetMgDeviceManagementTermAndCondition_List.g.cs","v1.0","Get-MgDeviceManagementTermAndCondition","GET","/deviceManagement/termsAndConditions","matched","Get-MgDeviceManagementTermAndCondition" +"Cmdlets","GetMgDeviceManagementTermAndCondition.g.cs","v1.0","Get-MgDeviceManagementTermAndCondition","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementTermAndConditionAcceptanceStatus_Get.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAcceptanceStatus","GET","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/{param}","matched","Get-MgDeviceManagementTermAndConditionAcceptanceStatus" +"Cmdlets","GetMgDeviceManagementTermAndConditionAcceptanceStatus_List.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAcceptanceStatus","GET","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses","matched","Get-MgDeviceManagementTermAndConditionAcceptanceStatus" +"Cmdlets","GetMgDeviceManagementTermAndConditionAcceptanceStatus.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAcceptanceStatus","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementTermAndConditionAcceptanceStatusCount.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount","GET","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/$count","matched","Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount" +"Cmdlets","GetMgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition","GET","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/{param}/termsAndConditions","matched","Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition" +"Cmdlets","GetMgDeviceManagementTermAndConditionAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAssignment","GET","/deviceManagement/termsAndConditions/{param}/assignments/{param}","matched","Get-MgDeviceManagementTermAndConditionAssignment" +"Cmdlets","GetMgDeviceManagementTermAndConditionAssignment_List.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAssignment","GET","/deviceManagement/termsAndConditions/{param}/assignments","matched","Get-MgDeviceManagementTermAndConditionAssignment" +"Cmdlets","GetMgDeviceManagementTermAndConditionAssignment.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementTermAndConditionAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAssignmentCount","GET","/deviceManagement/termsAndConditions/{param}/assignments/$count","matched","Get-MgDeviceManagementTermAndConditionAssignmentCount" +"Cmdlets","GetMgDeviceManagementTermAndConditionCount.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionCount","GET","/deviceManagement/termsAndConditions/$count","matched","Get-MgDeviceManagementTermAndConditionCount" +"Cmdlets","GetMgDeviceManagementVirtualEndpoint.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpoint","GET","/deviceManagement/virtualEndpoint","matched","Get-MgDeviceManagementVirtualEndpoint" +"Cmdlets","GetMgDeviceManagementVirtualEndpointAuditEvent_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointAuditEvent","GET","/deviceManagement/virtualEndpoint/auditEvents/{param}","matched","Get-MgDeviceManagementVirtualEndpointAuditEvent" +"Cmdlets","GetMgDeviceManagementVirtualEndpointAuditEvent_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointAuditEvent","GET","/deviceManagement/virtualEndpoint/auditEvents","matched","Get-MgDeviceManagementVirtualEndpointAuditEvent" +"Cmdlets","GetMgDeviceManagementVirtualEndpointAuditEvent.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointAuditEvent","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementVirtualEndpointAuditEventCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointAuditEventCount","GET","/deviceManagement/virtualEndpoint/auditEvents/$count","matched","Get-MgDeviceManagementVirtualEndpointAuditEventCount" +"Cmdlets","GetMgDeviceManagementVirtualEndpointAuditEventGetAuditActivityTypes.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointAuditEventGetAuditActivityTypes","GET","/deviceManagement/virtualEndpoint/auditEvents/getAuditActivityTypes","mismatch","Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType" +"Cmdlets","GetMgDeviceManagementVirtualEndpointCloudPCs_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointCloudPCs","GET","/deviceManagement/virtualEndpoint/cloudPCs/{param}","mismatch","Get-MgDeviceManagementVirtualEndpointCloudPc" +"Cmdlets","GetMgDeviceManagementVirtualEndpointCloudPCs_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointCloudPCs","GET","/deviceManagement/virtualEndpoint/cloudPCs","mismatch","Get-MgDeviceManagementVirtualEndpointCloudPc" +"Cmdlets","GetMgDeviceManagementVirtualEndpointCloudPCs.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointCloudPCs","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementVirtualEndpointCloudPCsCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointCloudPCsCount","GET","/deviceManagement/virtualEndpoint/cloudPCs/$count","mismatch","Get-MgDeviceManagementVirtualEndpointCloudPcCount" +"Cmdlets","GetMgDeviceManagementVirtualEndpointCloudPCsRetrieveCloudPcLaunchDetail.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointCloudPCsRetrieveCloudPcLaunchDetail","GET","/deviceManagement/virtualEndpoint/cloudPCs/{param}/retrieveCloudPcLaunchDetail","mismatch","Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail" +"Cmdlets","GetMgDeviceManagementVirtualEndpointDeviceImage_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointDeviceImage","GET","/deviceManagement/virtualEndpoint/deviceImages/{param}","matched","Get-MgDeviceManagementVirtualEndpointDeviceImage" +"Cmdlets","GetMgDeviceManagementVirtualEndpointDeviceImage_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointDeviceImage","GET","/deviceManagement/virtualEndpoint/deviceImages","matched","Get-MgDeviceManagementVirtualEndpointDeviceImage" +"Cmdlets","GetMgDeviceManagementVirtualEndpointDeviceImage.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointDeviceImage","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementVirtualEndpointDeviceImageCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointDeviceImageCount","GET","/deviceManagement/virtualEndpoint/deviceImages/$count","matched","Get-MgDeviceManagementVirtualEndpointDeviceImageCount" +"Cmdlets","GetMgDeviceManagementVirtualEndpointDeviceImageGetSourceImages.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointDeviceImageGetSourceImages","GET","/deviceManagement/virtualEndpoint/deviceImages/getSourceImages","mismatch","Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage" +"Cmdlets","GetMgDeviceManagementVirtualEndpointGalleryImage_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointGalleryImage","GET","/deviceManagement/virtualEndpoint/galleryImages/{param}","matched","Get-MgDeviceManagementVirtualEndpointGalleryImage" +"Cmdlets","GetMgDeviceManagementVirtualEndpointGalleryImage_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointGalleryImage","GET","/deviceManagement/virtualEndpoint/galleryImages","matched","Get-MgDeviceManagementVirtualEndpointGalleryImage" +"Cmdlets","GetMgDeviceManagementVirtualEndpointGalleryImage.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointGalleryImage","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementVirtualEndpointGalleryImageCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointGalleryImageCount","GET","/deviceManagement/virtualEndpoint/galleryImages/$count","matched","Get-MgDeviceManagementVirtualEndpointGalleryImageCount" +"Cmdlets","GetMgDeviceManagementVirtualEndpointOnPremiseConnection_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointOnPremiseConnection","GET","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}","matched","Get-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"Cmdlets","GetMgDeviceManagementVirtualEndpointOnPremiseConnection_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointOnPremiseConnection","GET","/deviceManagement/virtualEndpoint/onPremisesConnections","matched","Get-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"Cmdlets","GetMgDeviceManagementVirtualEndpointOnPremiseConnection.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointOnPremiseConnection","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementVirtualEndpointOnPremiseConnectionCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount","GET","/deviceManagement/virtualEndpoint/onPremisesConnections/$count","matched","Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicy_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicy","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicy_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicy","GET","/deviceManagement/virtualEndpoint/provisioningPolicies","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicy.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicy","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignment_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/$count","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}/mailboxSettings","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}/serviceProvisioningErrors","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}/serviceProvisioningErrors/$count","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/$count","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount" +"Cmdlets","GetMgDeviceManagementVirtualEndpointProvisioningPolicyCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/$count","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount" +"Cmdlets","GetMgDeviceManagementVirtualEndpointReport.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointReport","GET","/deviceManagement/virtualEndpoint/report","matched","Get-MgDeviceManagementVirtualEndpointReport" +"Cmdlets","GetMgDeviceManagementVirtualEndpointServicePlan_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointServicePlan","GET","/deviceManagement/virtualEndpoint/servicePlans/{param}","matched","Get-MgDeviceManagementVirtualEndpointServicePlan" +"Cmdlets","GetMgDeviceManagementVirtualEndpointServicePlan_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointServicePlan","GET","/deviceManagement/virtualEndpoint/servicePlans","matched","Get-MgDeviceManagementVirtualEndpointServicePlan" +"Cmdlets","GetMgDeviceManagementVirtualEndpointServicePlan.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointServicePlan","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementVirtualEndpointServicePlanCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointServicePlanCount","GET","/deviceManagement/virtualEndpoint/servicePlans/$count","matched","Get-MgDeviceManagementVirtualEndpointServicePlanCount" +"Cmdlets","GetMgDeviceManagementVirtualEndpointUserSetting_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSetting","GET","/deviceManagement/virtualEndpoint/userSettings/{param}","matched","Get-MgDeviceManagementVirtualEndpointUserSetting" +"Cmdlets","GetMgDeviceManagementVirtualEndpointUserSetting_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSetting","GET","/deviceManagement/virtualEndpoint/userSettings","matched","Get-MgDeviceManagementVirtualEndpointUserSetting" +"Cmdlets","GetMgDeviceManagementVirtualEndpointUserSetting.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSetting","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementVirtualEndpointUserSettingAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSettingAssignment","GET","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments/{param}","matched","Get-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"Cmdlets","GetMgDeviceManagementVirtualEndpointUserSettingAssignment_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSettingAssignment","GET","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments","matched","Get-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"Cmdlets","GetMgDeviceManagementVirtualEndpointUserSettingAssignment.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSettingAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementVirtualEndpointUserSettingAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount","GET","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments/$count","matched","Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount" +"Cmdlets","GetMgDeviceManagementVirtualEndpointUserSettingCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSettingCount","GET","/deviceManagement/virtualEndpoint/userSettings/$count","matched","Get-MgDeviceManagementVirtualEndpointUserSettingCount" +"Cmdlets","InvokeMgDeviceManagementDeviceManagementPartnerTerminate.g.cs","v1.0","Invoke-MgDeviceManagementDeviceManagementPartnerTerminate","POST","/deviceManagement/deviceManagementPartners/{param}/terminate","mismatch","Invoke-MgTerminateDeviceManagementPartner" +"Cmdlets","InvokeMgDeviceManagementExchangeConnectorSync.g.cs","v1.0","Invoke-MgDeviceManagementExchangeConnectorSync","POST","/deviceManagement/exchangeConnectors/{param}/sync","mismatch","Sync-MgDeviceManagementExchangeConnector" +"Cmdlets","InvokeMgDeviceManagementRemoteAssistancePartnerBeginOnboarding.g.cs","v1.0","Invoke-MgDeviceManagementRemoteAssistancePartnerBeginOnboarding","POST","/deviceManagement/remoteAssistancePartners/{param}/beginOnboarding","mismatch","Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding" +"Cmdlets","InvokeMgDeviceManagementRemoteAssistancePartnerDisconnect.g.cs","v1.0","Invoke-MgDeviceManagementRemoteAssistancePartnerDisconnect","POST","/deviceManagement/remoteAssistancePartners/{param}/disconnect","mismatch","Disconnect-MgDeviceManagementRemoteAssistancePartner" +"Cmdlets","InvokeMgDeviceManagementVirtualEndpointCloudPCsEndGracePeriod.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsEndGracePeriod","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/endGracePeriod","mismatch","Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod" +"Cmdlets","InvokeMgDeviceManagementVirtualEndpointCloudPCsReboot.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsReboot","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/reboot","mismatch","Restart-MgDeviceManagementVirtualEndpointCloudPc" +"Cmdlets","InvokeMgDeviceManagementVirtualEndpointCloudPCsRename.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsRename","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/rename","mismatch","Rename-MgDeviceManagementVirtualEndpointCloudPc" +"Cmdlets","InvokeMgDeviceManagementVirtualEndpointCloudPCsReprovision.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsReprovision","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/reprovision","mismatch","Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc" +"Cmdlets","InvokeMgDeviceManagementVirtualEndpointCloudPCsResize.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsResize","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/resize","mismatch","Resize-MgDeviceManagementVirtualEndpointCloudPc" +"Cmdlets","InvokeMgDeviceManagementVirtualEndpointCloudPCsRestore.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsRestore","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/restore","mismatch","Restore-MgDeviceManagementVirtualEndpointCloudPc" +"Cmdlets","InvokeMgDeviceManagementVirtualEndpointCloudPCsTroubleshoot.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsTroubleshoot","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/troubleshoot","mismatch","Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc" +"Cmdlets","InvokeMgDeviceManagementVirtualEndpointOnPremiseConnectionRunHealthChecks.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointOnPremiseConnectionRunHealthChecks","POST","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}/runHealthChecks","mismatch","Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck" +"Cmdlets","InvokeMgDeviceManagementVirtualEndpointOnPremiseConnectionUpdateAdDomainPassword.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointOnPremiseConnectionUpdateAdDomainPassword","POST","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}/updateAdDomainPassword","mismatch","Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword" +"Cmdlets","InvokeMgDeviceManagementVirtualEndpointProvisioningPolicyAssign.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointProvisioningPolicyAssign","POST","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assign","mismatch","Set-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"Cmdlets","InvokeMgDeviceManagementVirtualEndpointReportRetrieveCloudPcRecommendationReports.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointReportRetrieveCloudPcRecommendationReports","POST","/deviceManagement/virtualEndpoint/report/retrieveCloudPcRecommendationReports","mismatch","Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport" +"Cmdlets","InvokeMgDeviceManagementVirtualEndpointUserSettingAssign.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointUserSettingAssign","POST","/deviceManagement/virtualEndpoint/userSettings/{param}/assign","mismatch","Set-MgDeviceManagementVirtualEndpointUserSetting" +"Cmdlets","NewMgDeviceManagementAuditEvent.g.cs","v1.0","New-MgDeviceManagementAuditEvent","POST","/deviceManagement/auditEvents","matched","New-MgDeviceManagementAuditEvent" +"Cmdlets","NewMgDeviceManagementComplianceManagementPartner.g.cs","v1.0","New-MgDeviceManagementComplianceManagementPartner","POST","/deviceManagement/complianceManagementPartners","matched","New-MgDeviceManagementComplianceManagementPartner" +"Cmdlets","NewMgDeviceManagementExchangeConnector.g.cs","v1.0","New-MgDeviceManagementExchangeConnector","POST","/deviceManagement/exchangeConnectors","matched","New-MgDeviceManagementExchangeConnector" +"Cmdlets","NewMgDeviceManagementIosUpdateStatus.g.cs","v1.0","New-MgDeviceManagementIosUpdateStatus","POST","/deviceManagement/iosUpdateStatuses","mismatch","New-MgDeviceManagementIoUpdateStatus" +"Cmdlets","NewMgDeviceManagementMobileThreatDefenseConnector.g.cs","v1.0","New-MgDeviceManagementMobileThreatDefenseConnector","POST","/deviceManagement/mobileThreatDefenseConnectors","matched","New-MgDeviceManagementMobileThreatDefenseConnector" +"Cmdlets","NewMgDeviceManagementPartner.g.cs","v1.0","New-MgDeviceManagementPartner","POST","/deviceManagement/deviceManagementPartners","matched","New-MgDeviceManagementPartner" +"Cmdlets","NewMgDeviceManagementRemoteAssistancePartner.g.cs","v1.0","New-MgDeviceManagementRemoteAssistancePartner","POST","/deviceManagement/remoteAssistancePartners","matched","New-MgDeviceManagementRemoteAssistancePartner" +"Cmdlets","NewMgDeviceManagementResourceOperation.g.cs","v1.0","New-MgDeviceManagementResourceOperation","POST","/deviceManagement/resourceOperations","matched","New-MgDeviceManagementResourceOperation" +"Cmdlets","NewMgDeviceManagementRoleAssignment.g.cs","v1.0","New-MgDeviceManagementRoleAssignment","POST","/deviceManagement/roleAssignments","matched","New-MgDeviceManagementRoleAssignment" +"Cmdlets","NewMgDeviceManagementRoleDefinition.g.cs","v1.0","New-MgDeviceManagementRoleDefinition","POST","/deviceManagement/roleDefinitions","matched","New-MgDeviceManagementRoleDefinition" +"Cmdlets","NewMgDeviceManagementRoleDefinitionRoleAssignment.g.cs","v1.0","New-MgDeviceManagementRoleDefinitionRoleAssignment","POST","/deviceManagement/roleDefinitions/{param}/roleAssignments","matched","New-MgDeviceManagementRoleDefinitionRoleAssignment" +"Cmdlets","NewMgDeviceManagementTermAndCondition.g.cs","v1.0","New-MgDeviceManagementTermAndCondition","POST","/deviceManagement/termsAndConditions","matched","New-MgDeviceManagementTermAndCondition" +"Cmdlets","NewMgDeviceManagementTermAndConditionAcceptanceStatus.g.cs","v1.0","New-MgDeviceManagementTermAndConditionAcceptanceStatus","POST","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses","matched","New-MgDeviceManagementTermAndConditionAcceptanceStatus" +"Cmdlets","NewMgDeviceManagementTermAndConditionAssignment.g.cs","v1.0","New-MgDeviceManagementTermAndConditionAssignment","POST","/deviceManagement/termsAndConditions/{param}/assignments","matched","New-MgDeviceManagementTermAndConditionAssignment" +"Cmdlets","NewMgDeviceManagementVirtualEndpointAuditEvent.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointAuditEvent","POST","/deviceManagement/virtualEndpoint/auditEvents","no-oracle","" +"Cmdlets","NewMgDeviceManagementVirtualEndpointCloudPCs.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointCloudPCs","POST","/deviceManagement/virtualEndpoint/cloudPCs","no-oracle","" +"Cmdlets","NewMgDeviceManagementVirtualEndpointDeviceImage.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointDeviceImage","POST","/deviceManagement/virtualEndpoint/deviceImages","matched","New-MgDeviceManagementVirtualEndpointDeviceImage" +"Cmdlets","NewMgDeviceManagementVirtualEndpointGalleryImage.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointGalleryImage","POST","/deviceManagement/virtualEndpoint/galleryImages","matched","New-MgDeviceManagementVirtualEndpointGalleryImage" +"Cmdlets","NewMgDeviceManagementVirtualEndpointOnPremiseConnection.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointOnPremiseConnection","POST","/deviceManagement/virtualEndpoint/onPremisesConnections","matched","New-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"Cmdlets","NewMgDeviceManagementVirtualEndpointProvisioningPolicy.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointProvisioningPolicy","POST","/deviceManagement/virtualEndpoint/provisioningPolicies","matched","New-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"Cmdlets","NewMgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","POST","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments","matched","New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"Cmdlets","NewMgDeviceManagementVirtualEndpointUserSetting.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointUserSetting","POST","/deviceManagement/virtualEndpoint/userSettings","matched","New-MgDeviceManagementVirtualEndpointUserSetting" +"Cmdlets","NewMgDeviceManagementVirtualEndpointUserSettingAssignment.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointUserSettingAssignment","POST","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments","matched","New-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"Cmdlets","RemoveMgDeviceManagementApplePushNotificationCertificate.g.cs","v1.0","Remove-MgDeviceManagementApplePushNotificationCertificate","DELETE","/deviceManagement/applePushNotificationCertificate","matched","Remove-MgDeviceManagementApplePushNotificationCertificate" +"Cmdlets","RemoveMgDeviceManagementAuditEvent.g.cs","v1.0","Remove-MgDeviceManagementAuditEvent","DELETE","/deviceManagement/auditEvents/{param}","matched","Remove-MgDeviceManagementAuditEvent" +"Cmdlets","RemoveMgDeviceManagementComplianceManagementPartner.g.cs","v1.0","Remove-MgDeviceManagementComplianceManagementPartner","DELETE","/deviceManagement/complianceManagementPartners/{param}","matched","Remove-MgDeviceManagementComplianceManagementPartner" +"Cmdlets","RemoveMgDeviceManagementExchangeConnector.g.cs","v1.0","Remove-MgDeviceManagementExchangeConnector","DELETE","/deviceManagement/exchangeConnectors/{param}","matched","Remove-MgDeviceManagementExchangeConnector" +"Cmdlets","RemoveMgDeviceManagementIosUpdateStatus.g.cs","v1.0","Remove-MgDeviceManagementIosUpdateStatus","DELETE","/deviceManagement/iosUpdateStatuses/{param}","mismatch","Remove-MgDeviceManagementIoUpdateStatus" +"Cmdlets","RemoveMgDeviceManagementMobileThreatDefenseConnector.g.cs","v1.0","Remove-MgDeviceManagementMobileThreatDefenseConnector","DELETE","/deviceManagement/mobileThreatDefenseConnectors/{param}","matched","Remove-MgDeviceManagementMobileThreatDefenseConnector" +"Cmdlets","RemoveMgDeviceManagementPartner.g.cs","v1.0","Remove-MgDeviceManagementPartner","DELETE","/deviceManagement/deviceManagementPartners/{param}","matched","Remove-MgDeviceManagementPartner" +"Cmdlets","RemoveMgDeviceManagementRemoteAssistancePartner.g.cs","v1.0","Remove-MgDeviceManagementRemoteAssistancePartner","DELETE","/deviceManagement/remoteAssistancePartners/{param}","matched","Remove-MgDeviceManagementRemoteAssistancePartner" +"Cmdlets","RemoveMgDeviceManagementResourceOperation.g.cs","v1.0","Remove-MgDeviceManagementResourceOperation","DELETE","/deviceManagement/resourceOperations/{param}","matched","Remove-MgDeviceManagementResourceOperation" +"Cmdlets","RemoveMgDeviceManagementRoleAssignment.g.cs","v1.0","Remove-MgDeviceManagementRoleAssignment","DELETE","/deviceManagement/roleAssignments/{param}","matched","Remove-MgDeviceManagementRoleAssignment" +"Cmdlets","RemoveMgDeviceManagementRoleDefinition.g.cs","v1.0","Remove-MgDeviceManagementRoleDefinition","DELETE","/deviceManagement/roleDefinitions/{param}","matched","Remove-MgDeviceManagementRoleDefinition" +"Cmdlets","RemoveMgDeviceManagementRoleDefinitionRoleAssignment.g.cs","v1.0","Remove-MgDeviceManagementRoleDefinitionRoleAssignment","DELETE","/deviceManagement/roleDefinitions/{param}/roleAssignments/{param}","matched","Remove-MgDeviceManagementRoleDefinitionRoleAssignment" +"Cmdlets","RemoveMgDeviceManagementTermAndCondition.g.cs","v1.0","Remove-MgDeviceManagementTermAndCondition","DELETE","/deviceManagement/termsAndConditions/{param}","matched","Remove-MgDeviceManagementTermAndCondition" +"Cmdlets","RemoveMgDeviceManagementTermAndConditionAcceptanceStatus.g.cs","v1.0","Remove-MgDeviceManagementTermAndConditionAcceptanceStatus","DELETE","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/{param}","matched","Remove-MgDeviceManagementTermAndConditionAcceptanceStatus" +"Cmdlets","RemoveMgDeviceManagementTermAndConditionAssignment.g.cs","v1.0","Remove-MgDeviceManagementTermAndConditionAssignment","DELETE","/deviceManagement/termsAndConditions/{param}/assignments/{param}","matched","Remove-MgDeviceManagementTermAndConditionAssignment" +"Cmdlets","RemoveMgDeviceManagementVirtualEndpoint.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpoint","DELETE","/deviceManagement/virtualEndpoint","no-oracle","" +"Cmdlets","RemoveMgDeviceManagementVirtualEndpointAuditEvent.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointAuditEvent","DELETE","/deviceManagement/virtualEndpoint/auditEvents/{param}","no-oracle","" +"Cmdlets","RemoveMgDeviceManagementVirtualEndpointCloudPCs.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointCloudPCs","DELETE","/deviceManagement/virtualEndpoint/cloudPCs/{param}","no-oracle","" +"Cmdlets","RemoveMgDeviceManagementVirtualEndpointDeviceImage.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointDeviceImage","DELETE","/deviceManagement/virtualEndpoint/deviceImages/{param}","matched","Remove-MgDeviceManagementVirtualEndpointDeviceImage" +"Cmdlets","RemoveMgDeviceManagementVirtualEndpointGalleryImage.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointGalleryImage","DELETE","/deviceManagement/virtualEndpoint/galleryImages/{param}","matched","Remove-MgDeviceManagementVirtualEndpointGalleryImage" +"Cmdlets","RemoveMgDeviceManagementVirtualEndpointOnPremiseConnection.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection","DELETE","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}","matched","Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"Cmdlets","RemoveMgDeviceManagementVirtualEndpointProvisioningPolicy.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy","DELETE","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}","matched","Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"Cmdlets","RemoveMgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","DELETE","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}","matched","Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"Cmdlets","RemoveMgDeviceManagementVirtualEndpointReport.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointReport","DELETE","/deviceManagement/virtualEndpoint/report","matched","Remove-MgDeviceManagementVirtualEndpointReport" +"Cmdlets","RemoveMgDeviceManagementVirtualEndpointUserSetting.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointUserSetting","DELETE","/deviceManagement/virtualEndpoint/userSettings/{param}","matched","Remove-MgDeviceManagementVirtualEndpointUserSetting" +"Cmdlets","RemoveMgDeviceManagementVirtualEndpointUserSettingAssignment.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment","DELETE","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments/{param}","matched","Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"Cmdlets","UpdateMgDeviceManagementApplePushNotificationCertificate.g.cs","v1.0","Update-MgDeviceManagementApplePushNotificationCertificate","PATCH","/deviceManagement/applePushNotificationCertificate","matched","Update-MgDeviceManagementApplePushNotificationCertificate" +"Cmdlets","UpdateMgDeviceManagementAuditEvent.g.cs","v1.0","Update-MgDeviceManagementAuditEvent","PATCH","/deviceManagement/auditEvents/{param}","matched","Update-MgDeviceManagementAuditEvent" +"Cmdlets","UpdateMgDeviceManagementComplianceManagementPartner.g.cs","v1.0","Update-MgDeviceManagementComplianceManagementPartner","PATCH","/deviceManagement/complianceManagementPartners/{param}","matched","Update-MgDeviceManagementComplianceManagementPartner" +"Cmdlets","UpdateMgDeviceManagementExchangeConnector.g.cs","v1.0","Update-MgDeviceManagementExchangeConnector","PATCH","/deviceManagement/exchangeConnectors/{param}","matched","Update-MgDeviceManagementExchangeConnector" +"Cmdlets","UpdateMgDeviceManagementIosUpdateStatus.g.cs","v1.0","Update-MgDeviceManagementIosUpdateStatus","PATCH","/deviceManagement/iosUpdateStatuses/{param}","mismatch","Update-MgDeviceManagementIoUpdateStatus" +"Cmdlets","UpdateMgDeviceManagementMobileThreatDefenseConnector.g.cs","v1.0","Update-MgDeviceManagementMobileThreatDefenseConnector","PATCH","/deviceManagement/mobileThreatDefenseConnectors/{param}","matched","Update-MgDeviceManagementMobileThreatDefenseConnector" +"Cmdlets","UpdateMgDeviceManagementPartner.g.cs","v1.0","Update-MgDeviceManagementPartner","PATCH","/deviceManagement/deviceManagementPartners/{param}","matched","Update-MgDeviceManagementPartner" +"Cmdlets","UpdateMgDeviceManagementRemoteAssistancePartner.g.cs","v1.0","Update-MgDeviceManagementRemoteAssistancePartner","PATCH","/deviceManagement/remoteAssistancePartners/{param}","matched","Update-MgDeviceManagementRemoteAssistancePartner" +"Cmdlets","UpdateMgDeviceManagementResourceOperation.g.cs","v1.0","Update-MgDeviceManagementResourceOperation","PATCH","/deviceManagement/resourceOperations/{param}","matched","Update-MgDeviceManagementResourceOperation" +"Cmdlets","UpdateMgDeviceManagementRoleAssignment.g.cs","v1.0","Update-MgDeviceManagementRoleAssignment","PATCH","/deviceManagement/roleAssignments/{param}","matched","Update-MgDeviceManagementRoleAssignment" +"Cmdlets","UpdateMgDeviceManagementRoleDefinition.g.cs","v1.0","Update-MgDeviceManagementRoleDefinition","PATCH","/deviceManagement/roleDefinitions/{param}","matched","Update-MgDeviceManagementRoleDefinition" +"Cmdlets","UpdateMgDeviceManagementRoleDefinitionRoleAssignment.g.cs","v1.0","Update-MgDeviceManagementRoleDefinitionRoleAssignment","PATCH","/deviceManagement/roleDefinitions/{param}/roleAssignments/{param}","matched","Update-MgDeviceManagementRoleDefinitionRoleAssignment" +"Cmdlets","UpdateMgDeviceManagementTermAndCondition.g.cs","v1.0","Update-MgDeviceManagementTermAndCondition","PATCH","/deviceManagement/termsAndConditions/{param}","matched","Update-MgDeviceManagementTermAndCondition" +"Cmdlets","UpdateMgDeviceManagementTermAndConditionAcceptanceStatus.g.cs","v1.0","Update-MgDeviceManagementTermAndConditionAcceptanceStatus","PATCH","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/{param}","matched","Update-MgDeviceManagementTermAndConditionAcceptanceStatus" +"Cmdlets","UpdateMgDeviceManagementTermAndConditionAssignment.g.cs","v1.0","Update-MgDeviceManagementTermAndConditionAssignment","PATCH","/deviceManagement/termsAndConditions/{param}/assignments/{param}","matched","Update-MgDeviceManagementTermAndConditionAssignment" +"Cmdlets","UpdateMgDeviceManagementVirtualEndpoint.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpoint","PATCH","/deviceManagement/virtualEndpoint","no-oracle","" +"Cmdlets","UpdateMgDeviceManagementVirtualEndpointAuditEvent.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointAuditEvent","PATCH","/deviceManagement/virtualEndpoint/auditEvents/{param}","no-oracle","" +"Cmdlets","UpdateMgDeviceManagementVirtualEndpointCloudPCs.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointCloudPCs","PATCH","/deviceManagement/virtualEndpoint/cloudPCs/{param}","no-oracle","" +"Cmdlets","UpdateMgDeviceManagementVirtualEndpointDeviceImage.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointDeviceImage","PATCH","/deviceManagement/virtualEndpoint/deviceImages/{param}","matched","Update-MgDeviceManagementVirtualEndpointDeviceImage" +"Cmdlets","UpdateMgDeviceManagementVirtualEndpointGalleryImage.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointGalleryImage","PATCH","/deviceManagement/virtualEndpoint/galleryImages/{param}","matched","Update-MgDeviceManagementVirtualEndpointGalleryImage" +"Cmdlets","UpdateMgDeviceManagementVirtualEndpointOnPremiseConnection.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointOnPremiseConnection","PATCH","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}","matched","Update-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"Cmdlets","UpdateMgDeviceManagementVirtualEndpointProvisioningPolicy.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointProvisioningPolicy","PATCH","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}","matched","Update-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"Cmdlets","UpdateMgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","PATCH","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}","matched","Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"Cmdlets","UpdateMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting","PATCH","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}/mailboxSettings","matched","Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting" +"Cmdlets","UpdateMgDeviceManagementVirtualEndpointReport.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointReport","PATCH","/deviceManagement/virtualEndpoint/report","matched","Update-MgDeviceManagementVirtualEndpointReport" +"Cmdlets","UpdateMgDeviceManagementVirtualEndpointUserSetting.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointUserSetting","PATCH","/deviceManagement/virtualEndpoint/userSettings/{param}","matched","Update-MgDeviceManagementVirtualEndpointUserSetting" +"Cmdlets","UpdateMgDeviceManagementVirtualEndpointUserSettingAssignment.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointUserSettingAssignment","PATCH","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments/{param}","matched","Update-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"Cmdlets","GetMgDeviceManagementConditionalAccessSetting.g.cs","v1.0","Get-MgDeviceManagementConditionalAccessSetting","GET","/deviceManagement/conditionalAccessSettings","matched","Get-MgDeviceManagementConditionalAccessSetting" +"Cmdlets","GetMgDeviceManagementDeviceEnrollmentConfiguration_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfiguration","GET","/deviceManagement/deviceEnrollmentConfigurations/{param}","matched","Get-MgDeviceManagementDeviceEnrollmentConfiguration" +"Cmdlets","GetMgDeviceManagementDeviceEnrollmentConfiguration_List.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfiguration","GET","/deviceManagement/deviceEnrollmentConfigurations","matched","Get-MgDeviceManagementDeviceEnrollmentConfiguration" +"Cmdlets","GetMgDeviceManagementDeviceEnrollmentConfiguration.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfiguration","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceEnrollmentConfigurationAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","GET","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments/{param}","matched","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"Cmdlets","GetMgDeviceManagementDeviceEnrollmentConfigurationAssignment_List.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","GET","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments","matched","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"Cmdlets","GetMgDeviceManagementDeviceEnrollmentConfigurationAssignment.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount","GET","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments/$count","matched","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount" +"Cmdlets","GetMgDeviceManagementDeviceEnrollmentConfigurationCount.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfigurationCount","GET","/deviceManagement/deviceEnrollmentConfigurations/$count","matched","Get-MgDeviceManagementDeviceEnrollmentConfigurationCount" +"Cmdlets","GetMgDeviceManagementImportedWindowsAutopilotDeviceIdentity_Get.g.cs","v1.0","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","GET","/deviceManagement/importedWindowsAutopilotDeviceIdentities/{param}","matched","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"Cmdlets","GetMgDeviceManagementImportedWindowsAutopilotDeviceIdentity_List.g.cs","v1.0","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","GET","/deviceManagement/importedWindowsAutopilotDeviceIdentities","matched","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"Cmdlets","GetMgDeviceManagementImportedWindowsAutopilotDeviceIdentity.g.cs","v1.0","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.g.cs","v1.0","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount","GET","/deviceManagement/importedWindowsAutopilotDeviceIdentities/$count","matched","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount" +"Cmdlets","GetMgDeviceManagementWindowsAutopilotDeviceIdentity_Get.g.cs","v1.0","Get-MgDeviceManagementWindowsAutopilotDeviceIdentity","GET","/deviceManagement/windowsAutopilotDeviceIdentities/{param}","matched","Get-MgDeviceManagementWindowsAutopilotDeviceIdentity" +"Cmdlets","GetMgDeviceManagementWindowsAutopilotDeviceIdentity_List.g.cs","v1.0","Get-MgDeviceManagementWindowsAutopilotDeviceIdentity","GET","/deviceManagement/windowsAutopilotDeviceIdentities","matched","Get-MgDeviceManagementWindowsAutopilotDeviceIdentity" +"Cmdlets","GetMgDeviceManagementWindowsAutopilotDeviceIdentity.g.cs","v1.0","Get-MgDeviceManagementWindowsAutopilotDeviceIdentity","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementWindowsAutopilotDeviceIdentityCount.g.cs","v1.0","Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount","GET","/deviceManagement/windowsAutopilotDeviceIdentities/$count","matched","Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount" +"Cmdlets","GetMgRoleManagement.g.cs","v1.0","Get-MgRoleManagement","GET","/roleManagement","matched","Get-MgRoleManagement" +"Cmdlets","InvokeMgDeviceManagementDeviceEnrollmentConfigurationAssign.g.cs","v1.0","Invoke-MgDeviceManagementDeviceEnrollmentConfigurationAssign","POST","/deviceManagement/deviceEnrollmentConfigurations/{param}/assign","mismatch","Set-MgDeviceManagementDeviceEnrollmentConfiguration" +"Cmdlets","InvokeMgDeviceManagementDeviceEnrollmentConfigurationSetPriority.g.cs","v1.0","Invoke-MgDeviceManagementDeviceEnrollmentConfigurationSetPriority","POST","/deviceManagement/deviceEnrollmentConfigurations/{param}/setPriority","mismatch","Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority" +"Cmdlets","InvokeMgDeviceManagementImportedWindowsAutopilotDeviceIdentityImport.g.cs","v1.0","Invoke-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityImport","POST","/deviceManagement/importedWindowsAutopilotDeviceIdentities/import","mismatch","Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"Cmdlets","InvokeMgDeviceManagementWindowsAutopilotDeviceIdentityAssignUserToDevice.g.cs","v1.0","Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityAssignUserToDevice","POST","/deviceManagement/windowsAutopilotDeviceIdentities/{param}/assignUserToDevice","mismatch","Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice" +"Cmdlets","InvokeMgDeviceManagementWindowsAutopilotDeviceIdentityUnassignUserFromDevice.g.cs","v1.0","Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityUnassignUserFromDevice","POST","/deviceManagement/windowsAutopilotDeviceIdentities/{param}/unassignUserFromDevice","mismatch","Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice" +"Cmdlets","InvokeMgDeviceManagementWindowsAutopilotDeviceIdentityUpdateDeviceProperties.g.cs","v1.0","Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityUpdateDeviceProperties","POST","/deviceManagement/windowsAutopilotDeviceIdentities/{param}/updateDeviceProperties","mismatch","Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty" +"Cmdlets","NewMgDeviceManagementDeviceEnrollmentConfiguration.g.cs","v1.0","New-MgDeviceManagementDeviceEnrollmentConfiguration","POST","/deviceManagement/deviceEnrollmentConfigurations","matched","New-MgDeviceManagementDeviceEnrollmentConfiguration" +"Cmdlets","NewMgDeviceManagementDeviceEnrollmentConfigurationAssignment.g.cs","v1.0","New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","POST","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments","matched","New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"Cmdlets","NewMgDeviceManagementImportedWindowsAutopilotDeviceIdentity.g.cs","v1.0","New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","POST","/deviceManagement/importedWindowsAutopilotDeviceIdentities","matched","New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"Cmdlets","NewMgDeviceManagementWindowsAutopilotDeviceIdentity.g.cs","v1.0","New-MgDeviceManagementWindowsAutopilotDeviceIdentity","POST","/deviceManagement/windowsAutopilotDeviceIdentities","matched","New-MgDeviceManagementWindowsAutopilotDeviceIdentity" +"Cmdlets","RemoveMgDeviceManagementConditionalAccessSetting.g.cs","v1.0","Remove-MgDeviceManagementConditionalAccessSetting","DELETE","/deviceManagement/conditionalAccessSettings","matched","Remove-MgDeviceManagementConditionalAccessSetting" +"Cmdlets","RemoveMgDeviceManagementDeviceEnrollmentConfiguration.g.cs","v1.0","Remove-MgDeviceManagementDeviceEnrollmentConfiguration","DELETE","/deviceManagement/deviceEnrollmentConfigurations/{param}","matched","Remove-MgDeviceManagementDeviceEnrollmentConfiguration" +"Cmdlets","RemoveMgDeviceManagementDeviceEnrollmentConfigurationAssignment.g.cs","v1.0","Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","DELETE","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments/{param}","matched","Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"Cmdlets","RemoveMgDeviceManagementImportedWindowsAutopilotDeviceIdentity.g.cs","v1.0","Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","DELETE","/deviceManagement/importedWindowsAutopilotDeviceIdentities/{param}","matched","Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"Cmdlets","RemoveMgDeviceManagementWindowsAutopilotDeviceIdentity.g.cs","v1.0","Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity","DELETE","/deviceManagement/windowsAutopilotDeviceIdentities/{param}","matched","Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity" +"Cmdlets","UpdateMgDeviceManagementConditionalAccessSetting.g.cs","v1.0","Update-MgDeviceManagementConditionalAccessSetting","PATCH","/deviceManagement/conditionalAccessSettings","matched","Update-MgDeviceManagementConditionalAccessSetting" +"Cmdlets","UpdateMgDeviceManagementDeviceEnrollmentConfiguration.g.cs","v1.0","Update-MgDeviceManagementDeviceEnrollmentConfiguration","PATCH","/deviceManagement/deviceEnrollmentConfigurations/{param}","matched","Update-MgDeviceManagementDeviceEnrollmentConfiguration" +"Cmdlets","UpdateMgDeviceManagementDeviceEnrollmentConfigurationAssignment.g.cs","v1.0","Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","PATCH","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments/{param}","matched","Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"Cmdlets","UpdateMgDeviceManagementImportedWindowsAutopilotDeviceIdentity.g.cs","v1.0","Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","PATCH","/deviceManagement/importedWindowsAutopilotDeviceIdentities/{param}","matched","Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"Cmdlets","UpdateMgDeviceManagementWindowsAutopilotDeviceIdentity.g.cs","v1.0","Update-MgDeviceManagementWindowsAutopilotDeviceIdentity","PATCH","/deviceManagement/windowsAutopilotDeviceIdentities/{param}","no-oracle","" +"Cmdlets","UpdateMgRoleManagement.g.cs","v1.0","Update-MgRoleManagement","PATCH","/roleManagement","matched","Update-MgRoleManagement" +"Cmdlets","GetMgDeviceManagementGetEffectivePermissionsWithScope.g.cs","v1.0","Get-MgDeviceManagementGetEffectivePermissionsWithScope","GET","/deviceManagement/getEffectivePermissions(scope='{scope}')","mismatch","Get-MgDeviceManagementEffectivePermission" +"Cmdlets","GetMgDeviceManagementUserExperienceAnalyticsSummarizeWorkFromAnywhereDevices.g.cs","v1.0","Get-MgDeviceManagementUserExperienceAnalyticsSummarizeWorkFromAnywhereDevices","GET","/deviceManagement/userExperienceAnalyticsSummarizeWorkFromAnywhereDevices","mismatch","Invoke-MgExperienceDeviceManagement" +"Cmdlets","GetMgDeviceManagementVerifyWindowsEnrollmentAutoDiscoveryWithDomainName.g.cs","v1.0","Get-MgDeviceManagementVerifyWindowsEnrollmentAutoDiscoveryWithDomainName","GET","/deviceManagement/verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}')","mismatch","Confirm-MgDeviceManagementWindowsEnrollmentAutoDiscovery" +"Cmdlets","GetMgPrint.g.cs","v1.0","Get-MgPrint","GET","/print","matched","Get-MgPrint" +"Cmdlets","GetMgPrintConnector_Get.g.cs","v1.0","Get-MgPrintConnector","GET","/print/connectors/{param}","matched","Get-MgPrintConnector" +"Cmdlets","GetMgPrintConnector_List.g.cs","v1.0","Get-MgPrintConnector","GET","/print/connectors","matched","Get-MgPrintConnector" +"Cmdlets","GetMgPrintConnector.g.cs","v1.0","Get-MgPrintConnector","","","dispatcher","" +"Cmdlets","GetMgPrintConnectorCount.g.cs","v1.0","Get-MgPrintConnectorCount","GET","/print/connectors/$count","matched","Get-MgPrintConnectorCount" +"Cmdlets","GetMgPrinter_Get.g.cs","v1.0","Get-MgPrinter","GET","/print/printers/{param}","mismatch","Get-MgPrintPrinter" +"Cmdlets","GetMgPrinter_List.g.cs","v1.0","Get-MgPrinter","GET","/print/printers","mismatch","Get-MgPrintPrinter" +"Cmdlets","GetMgPrinter.g.cs","v1.0","Get-MgPrinter","","","dispatcher","" +"Cmdlets","GetMgPrinterConnector_Get.g.cs","v1.0","Get-MgPrinterConnector","GET","/print/printers/{param}/connectors/{param}","mismatch","Get-MgPrintPrinterConnector" +"Cmdlets","GetMgPrinterConnector_List.g.cs","v1.0","Get-MgPrinterConnector","GET","/print/printers/{param}/connectors","mismatch","Get-MgPrintPrinterConnector" +"Cmdlets","GetMgPrinterConnector.g.cs","v1.0","Get-MgPrinterConnector","","","dispatcher","" +"Cmdlets","GetMgPrinterConnectorCount.g.cs","v1.0","Get-MgPrinterConnectorCount","GET","/print/printers/{param}/connectors/$count","mismatch","Get-MgPrintPrinterConnectorCount" +"Cmdlets","GetMgPrinterCount.g.cs","v1.0","Get-MgPrinterCount","GET","/print/printers/$count","mismatch","Get-MgPrintPrinterCount" +"Cmdlets","GetMgPrinterJob_Get.g.cs","v1.0","Get-MgPrinterJob","GET","/print/printers/{param}/jobs/{param}","mismatch","Get-MgPrintPrinterJob" +"Cmdlets","GetMgPrinterJob_List.g.cs","v1.0","Get-MgPrinterJob","GET","/print/printers/{param}/jobs","mismatch","Get-MgPrintPrinterJob" +"Cmdlets","GetMgPrinterJob.g.cs","v1.0","Get-MgPrinterJob","","","dispatcher","" +"Cmdlets","GetMgPrinterJobCount.g.cs","v1.0","Get-MgPrinterJobCount","GET","/print/printers/{param}/jobs/$count","mismatch","Get-MgPrintPrinterJobCount" +"Cmdlets","GetMgPrinterJobDocument_Get.g.cs","v1.0","Get-MgPrinterJobDocument","GET","/print/printers/{param}/jobs/{param}/documents/{param}","mismatch","Get-MgPrintPrinterJobDocument" +"Cmdlets","GetMgPrinterJobDocument_List.g.cs","v1.0","Get-MgPrinterJobDocument","GET","/print/printers/{param}/jobs/{param}/documents","mismatch","Get-MgPrintPrinterJobDocument" +"Cmdlets","GetMgPrinterJobDocument.g.cs","v1.0","Get-MgPrinterJobDocument","","","dispatcher","" +"Cmdlets","GetMgPrinterJobDocumentContent.g.cs","v1.0","Get-MgPrinterJobDocumentContent","GET","/print/printers/{param}/jobs/{param}/documents/{param}/$value","mismatch","Get-MgPrintPrinterJobDocumentContent" +"Cmdlets","GetMgPrinterJobDocumentCount.g.cs","v1.0","Get-MgPrinterJobDocumentCount","GET","/print/printers/{param}/jobs/{param}/documents/$count","mismatch","Get-MgPrintPrinterJobDocumentCount" +"Cmdlets","GetMgPrinterJobTask_Get.g.cs","v1.0","Get-MgPrinterJobTask","GET","/print/printers/{param}/jobs/{param}/tasks/{param}","mismatch","Get-MgPrintPrinterJobTask" +"Cmdlets","GetMgPrinterJobTask_List.g.cs","v1.0","Get-MgPrinterJobTask","GET","/print/printers/{param}/jobs/{param}/tasks","mismatch","Get-MgPrintPrinterJobTask" +"Cmdlets","GetMgPrinterJobTask.g.cs","v1.0","Get-MgPrinterJobTask","","","dispatcher","" +"Cmdlets","GetMgPrinterJobTaskCount.g.cs","v1.0","Get-MgPrinterJobTaskCount","GET","/print/printers/{param}/jobs/{param}/tasks/$count","mismatch","Get-MgPrintPrinterJobTaskCount" +"Cmdlets","GetMgPrinterJobTaskDefinition.g.cs","v1.0","Get-MgPrinterJobTaskDefinition","GET","/print/printers/{param}/jobs/{param}/tasks/{param}/definition","mismatch","Get-MgPrintPrinterJobTaskDefinition" +"Cmdlets","GetMgPrinterJobTaskTrigger.g.cs","v1.0","Get-MgPrinterJobTaskTrigger","GET","/print/printers/{param}/jobs/{param}/tasks/{param}/trigger","mismatch","Get-MgPrintPrinterJobTaskTrigger" +"Cmdlets","GetMgPrinterShare_Get.g.cs","v1.0","Get-MgPrinterShare","GET","/print/printers/{param}/shares/{param}","mismatch","Get-MgPrintPrinterShare" +"Cmdlets","GetMgPrinterShare_List.g.cs","v1.0","Get-MgPrinterShare","GET","/print/printers/{param}/shares","mismatch","Get-MgPrintPrinterShare" +"Cmdlets","GetMgPrinterShare.g.cs","v1.0","Get-MgPrinterShare","","","dispatcher","" +"Cmdlets","GetMgPrinterShareCount.g.cs","v1.0","Get-MgPrinterShareCount","GET","/print/printers/{param}/shares/$count","mismatch","Get-MgPrintPrinterShareCount" +"Cmdlets","GetMgPrinterTaskTrigger_Get.g.cs","v1.0","Get-MgPrinterTaskTrigger","GET","/print/printers/{param}/taskTriggers/{param}","mismatch","Get-MgPrintPrinterTaskTrigger" +"Cmdlets","GetMgPrinterTaskTrigger_List.g.cs","v1.0","Get-MgPrinterTaskTrigger","GET","/print/printers/{param}/taskTriggers","mismatch","Get-MgPrintPrinterTaskTrigger" +"Cmdlets","GetMgPrinterTaskTrigger.g.cs","v1.0","Get-MgPrinterTaskTrigger","","","dispatcher","" +"Cmdlets","GetMgPrinterTaskTriggerCount.g.cs","v1.0","Get-MgPrinterTaskTriggerCount","GET","/print/printers/{param}/taskTriggers/$count","mismatch","Get-MgPrintPrinterTaskTriggerCount" +"Cmdlets","GetMgPrinterTaskTriggerDefinition.g.cs","v1.0","Get-MgPrinterTaskTriggerDefinition","GET","/print/printers/{param}/taskTriggers/{param}/definition","mismatch","Get-MgPrintPrinterTaskTriggerDefinition" +"Cmdlets","GetMgPrintOperation_Get.g.cs","v1.0","Get-MgPrintOperation","GET","/print/operations/{param}","matched","Get-MgPrintOperation" +"Cmdlets","GetMgPrintOperation_List.g.cs","v1.0","Get-MgPrintOperation","GET","/print/operations","matched","Get-MgPrintOperation" +"Cmdlets","GetMgPrintOperation.g.cs","v1.0","Get-MgPrintOperation","","","dispatcher","" +"Cmdlets","GetMgPrintOperationCount.g.cs","v1.0","Get-MgPrintOperationCount","GET","/print/operations/$count","matched","Get-MgPrintOperationCount" +"Cmdlets","GetMgPrintService_Get.g.cs","v1.0","Get-MgPrintService","GET","/print/services/{param}","matched","Get-MgPrintService" +"Cmdlets","GetMgPrintService_List.g.cs","v1.0","Get-MgPrintService","GET","/print/services","matched","Get-MgPrintService" +"Cmdlets","GetMgPrintService.g.cs","v1.0","Get-MgPrintService","","","dispatcher","" +"Cmdlets","GetMgPrintServiceCount.g.cs","v1.0","Get-MgPrintServiceCount","GET","/print/services/$count","matched","Get-MgPrintServiceCount" +"Cmdlets","GetMgPrintServiceEndpoint_Get.g.cs","v1.0","Get-MgPrintServiceEndpoint","GET","/print/services/{param}/endpoints/{param}","matched","Get-MgPrintServiceEndpoint" +"Cmdlets","GetMgPrintServiceEndpoint_List.g.cs","v1.0","Get-MgPrintServiceEndpoint","GET","/print/services/{param}/endpoints","matched","Get-MgPrintServiceEndpoint" +"Cmdlets","GetMgPrintServiceEndpoint.g.cs","v1.0","Get-MgPrintServiceEndpoint","","","dispatcher","" +"Cmdlets","GetMgPrintServiceEndpointCount.g.cs","v1.0","Get-MgPrintServiceEndpointCount","GET","/print/services/{param}/endpoints/$count","matched","Get-MgPrintServiceEndpointCount" +"Cmdlets","GetMgPrintShare_Get.g.cs","v1.0","Get-MgPrintShare","GET","/print/shares/{param}","matched","Get-MgPrintShare" +"Cmdlets","GetMgPrintShare_List.g.cs","v1.0","Get-MgPrintShare","GET","/print/shares","matched","Get-MgPrintShare" +"Cmdlets","GetMgPrintShare.g.cs","v1.0","Get-MgPrintShare","","","dispatcher","" +"Cmdlets","GetMgPrintShareAllowedGroup.g.cs","v1.0","Get-MgPrintShareAllowedGroup","GET","/print/shares/{param}/allowedGroups","matched","Get-MgPrintShareAllowedGroup" +"Cmdlets","GetMgPrintShareAllowedGroupByRef.g.cs","v1.0","Get-MgPrintShareAllowedGroupByRef","GET","/print/shares/{param}/allowedGroups/$ref","matched","Get-MgPrintShareAllowedGroupByRef" +"Cmdlets","GetMgPrintShareAllowedGroupCount.g.cs","v1.0","Get-MgPrintShareAllowedGroupCount","GET","/print/shares/{param}/allowedGroups/$count","matched","Get-MgPrintShareAllowedGroupCount" +"Cmdlets","GetMgPrintShareAllowedGroupServiceProvisioningError.g.cs","v1.0","Get-MgPrintShareAllowedGroupServiceProvisioningError","GET","/print/shares/{param}/allowedGroups/{param}/serviceProvisioningErrors","matched","Get-MgPrintShareAllowedGroupServiceProvisioningError" +"Cmdlets","GetMgPrintShareAllowedGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgPrintShareAllowedGroupServiceProvisioningErrorCount","GET","/print/shares/{param}/allowedGroups/{param}/serviceProvisioningErrors/$count","matched","Get-MgPrintShareAllowedGroupServiceProvisioningErrorCount" +"Cmdlets","GetMgPrintShareAllowedUser.g.cs","v1.0","Get-MgPrintShareAllowedUser","GET","/print/shares/{param}/allowedUsers","matched","Get-MgPrintShareAllowedUser" +"Cmdlets","GetMgPrintShareAllowedUserByRef.g.cs","v1.0","Get-MgPrintShareAllowedUserByRef","GET","/print/shares/{param}/allowedUsers/$ref","matched","Get-MgPrintShareAllowedUserByRef" +"Cmdlets","GetMgPrintShareAllowedUserCount.g.cs","v1.0","Get-MgPrintShareAllowedUserCount","GET","/print/shares/{param}/allowedUsers/$count","matched","Get-MgPrintShareAllowedUserCount" +"Cmdlets","GetMgPrintShareAllowedUserMailboxSetting.g.cs","v1.0","Get-MgPrintShareAllowedUserMailboxSetting","GET","/print/shares/{param}/allowedUsers/{param}/mailboxSettings","matched","Get-MgPrintShareAllowedUserMailboxSetting" +"Cmdlets","GetMgPrintShareAllowedUserServiceProvisioningError.g.cs","v1.0","Get-MgPrintShareAllowedUserServiceProvisioningError","GET","/print/shares/{param}/allowedUsers/{param}/serviceProvisioningErrors","matched","Get-MgPrintShareAllowedUserServiceProvisioningError" +"Cmdlets","GetMgPrintShareAllowedUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgPrintShareAllowedUserServiceProvisioningErrorCount","GET","/print/shares/{param}/allowedUsers/{param}/serviceProvisioningErrors/$count","matched","Get-MgPrintShareAllowedUserServiceProvisioningErrorCount" +"Cmdlets","GetMgPrintShareCount.g.cs","v1.0","Get-MgPrintShareCount","GET","/print/shares/$count","matched","Get-MgPrintShareCount" +"Cmdlets","GetMgPrintShareJob_Get.g.cs","v1.0","Get-MgPrintShareJob","GET","/print/shares/{param}/jobs/{param}","matched","Get-MgPrintShareJob" +"Cmdlets","GetMgPrintShareJob_List.g.cs","v1.0","Get-MgPrintShareJob","GET","/print/shares/{param}/jobs","matched","Get-MgPrintShareJob" +"Cmdlets","GetMgPrintShareJob.g.cs","v1.0","Get-MgPrintShareJob","","","dispatcher","" +"Cmdlets","GetMgPrintShareJobCount.g.cs","v1.0","Get-MgPrintShareJobCount","GET","/print/shares/{param}/jobs/$count","matched","Get-MgPrintShareJobCount" +"Cmdlets","GetMgPrintShareJobDocument_Get.g.cs","v1.0","Get-MgPrintShareJobDocument","GET","/print/shares/{param}/jobs/{param}/documents/{param}","matched","Get-MgPrintShareJobDocument" +"Cmdlets","GetMgPrintShareJobDocument_List.g.cs","v1.0","Get-MgPrintShareJobDocument","GET","/print/shares/{param}/jobs/{param}/documents","matched","Get-MgPrintShareJobDocument" +"Cmdlets","GetMgPrintShareJobDocument.g.cs","v1.0","Get-MgPrintShareJobDocument","","","dispatcher","" +"Cmdlets","GetMgPrintShareJobDocumentContent.g.cs","v1.0","Get-MgPrintShareJobDocumentContent","GET","/print/shares/{param}/jobs/{param}/documents/{param}/$value","matched","Get-MgPrintShareJobDocumentContent" +"Cmdlets","GetMgPrintShareJobDocumentCount.g.cs","v1.0","Get-MgPrintShareJobDocumentCount","GET","/print/shares/{param}/jobs/{param}/documents/$count","matched","Get-MgPrintShareJobDocumentCount" +"Cmdlets","GetMgPrintShareJobTask_Get.g.cs","v1.0","Get-MgPrintShareJobTask","GET","/print/shares/{param}/jobs/{param}/tasks/{param}","matched","Get-MgPrintShareJobTask" +"Cmdlets","GetMgPrintShareJobTask_List.g.cs","v1.0","Get-MgPrintShareJobTask","GET","/print/shares/{param}/jobs/{param}/tasks","matched","Get-MgPrintShareJobTask" +"Cmdlets","GetMgPrintShareJobTask.g.cs","v1.0","Get-MgPrintShareJobTask","","","dispatcher","" +"Cmdlets","GetMgPrintShareJobTaskCount.g.cs","v1.0","Get-MgPrintShareJobTaskCount","GET","/print/shares/{param}/jobs/{param}/tasks/$count","matched","Get-MgPrintShareJobTaskCount" +"Cmdlets","GetMgPrintShareJobTaskDefinition.g.cs","v1.0","Get-MgPrintShareJobTaskDefinition","GET","/print/shares/{param}/jobs/{param}/tasks/{param}/definition","matched","Get-MgPrintShareJobTaskDefinition" +"Cmdlets","GetMgPrintShareJobTaskTrigger.g.cs","v1.0","Get-MgPrintShareJobTaskTrigger","GET","/print/shares/{param}/jobs/{param}/tasks/{param}/trigger","matched","Get-MgPrintShareJobTaskTrigger" +"Cmdlets","GetMgPrintSharePrinter.g.cs","v1.0","Get-MgPrintSharePrinter","GET","/print/shares/{param}/printer","matched","Get-MgPrintSharePrinter" +"Cmdlets","GetMgPrintTaskDefinition_Get.g.cs","v1.0","Get-MgPrintTaskDefinition","GET","/print/taskDefinitions/{param}","matched","Get-MgPrintTaskDefinition" +"Cmdlets","GetMgPrintTaskDefinition_List.g.cs","v1.0","Get-MgPrintTaskDefinition","GET","/print/taskDefinitions","matched","Get-MgPrintTaskDefinition" +"Cmdlets","GetMgPrintTaskDefinition.g.cs","v1.0","Get-MgPrintTaskDefinition","","","dispatcher","" +"Cmdlets","GetMgPrintTaskDefinitionCount.g.cs","v1.0","Get-MgPrintTaskDefinitionCount","GET","/print/taskDefinitions/$count","matched","Get-MgPrintTaskDefinitionCount" +"Cmdlets","GetMgPrintTaskDefinitionTask_Get.g.cs","v1.0","Get-MgPrintTaskDefinitionTask","GET","/print/taskDefinitions/{param}/tasks/{param}","matched","Get-MgPrintTaskDefinitionTask" +"Cmdlets","GetMgPrintTaskDefinitionTask_List.g.cs","v1.0","Get-MgPrintTaskDefinitionTask","GET","/print/taskDefinitions/{param}/tasks","matched","Get-MgPrintTaskDefinitionTask" +"Cmdlets","GetMgPrintTaskDefinitionTask.g.cs","v1.0","Get-MgPrintTaskDefinitionTask","","","dispatcher","" +"Cmdlets","GetMgPrintTaskDefinitionTaskCount.g.cs","v1.0","Get-MgPrintTaskDefinitionTaskCount","GET","/print/taskDefinitions/{param}/tasks/$count","matched","Get-MgPrintTaskDefinitionTaskCount" +"Cmdlets","GetMgPrintTaskDefinitionTaskDefinition.g.cs","v1.0","Get-MgPrintTaskDefinitionTaskDefinition","GET","/print/taskDefinitions/{param}/tasks/{param}/definition","no-oracle","" +"Cmdlets","GetMgPrintTaskDefinitionTaskTrigger.g.cs","v1.0","Get-MgPrintTaskDefinitionTaskTrigger","GET","/print/taskDefinitions/{param}/tasks/{param}/trigger","matched","Get-MgPrintTaskDefinitionTaskTrigger" +"Cmdlets","InvokeMgPrinterCreate.g.cs","v1.0","Invoke-MgPrinterCreate","POST","/print/printers/create","mismatch","New-MgPrintPrinter" +"Cmdlets","InvokeMgPrinterJobAbort.g.cs","v1.0","Invoke-MgPrinterJobAbort","POST","/print/printers/{param}/jobs/{param}/abort","mismatch","Invoke-MgAbortPrintPrinterJob" +"Cmdlets","InvokeMgPrinterJobCancel.g.cs","v1.0","Invoke-MgPrinterJobCancel","POST","/print/printers/{param}/jobs/{param}/cancel","mismatch","Stop-MgPrintPrinterJob" +"Cmdlets","InvokeMgPrinterJobDocumentCreateUploadSession.g.cs","v1.0","Invoke-MgPrinterJobDocumentCreateUploadSession","POST","/print/printers/{param}/jobs/{param}/documents/{param}/createUploadSession","mismatch","New-MgPrintPrinterJobDocumentUploadSession" +"Cmdlets","InvokeMgPrinterJobRedirect.g.cs","v1.0","Invoke-MgPrinterJobRedirect","POST","/print/printers/{param}/jobs/{param}/redirect","mismatch","Invoke-MgRedirectPrintPrinterJob" +"Cmdlets","InvokeMgPrinterJobStart.g.cs","v1.0","Invoke-MgPrinterJobStart","POST","/print/printers/{param}/jobs/{param}/start","mismatch","Start-MgPrintPrinterJob" +"Cmdlets","InvokeMgPrinterRestoreFactoryDefaults.g.cs","v1.0","Invoke-MgPrinterRestoreFactoryDefaults","POST","/print/printers/{param}/restoreFactoryDefaults","mismatch","Restore-MgPrintPrinterFactoryDefault" +"Cmdlets","InvokeMgPrintShareJobAbort.g.cs","v1.0","Invoke-MgPrintShareJobAbort","POST","/print/shares/{param}/jobs/{param}/abort","mismatch","Invoke-MgAbortPrintShareJob" +"Cmdlets","InvokeMgPrintShareJobCancel.g.cs","v1.0","Invoke-MgPrintShareJobCancel","POST","/print/shares/{param}/jobs/{param}/cancel","mismatch","Stop-MgPrintShareJob" +"Cmdlets","InvokeMgPrintShareJobDocumentCreateUploadSession.g.cs","v1.0","Invoke-MgPrintShareJobDocumentCreateUploadSession","POST","/print/shares/{param}/jobs/{param}/documents/{param}/createUploadSession","mismatch","New-MgPrintShareJobDocumentUploadSession" +"Cmdlets","InvokeMgPrintShareJobRedirect.g.cs","v1.0","Invoke-MgPrintShareJobRedirect","POST","/print/shares/{param}/jobs/{param}/redirect","mismatch","Invoke-MgRedirectPrintShareJob" +"Cmdlets","InvokeMgPrintShareJobStart.g.cs","v1.0","Invoke-MgPrintShareJobStart","POST","/print/shares/{param}/jobs/{param}/start","mismatch","Start-MgPrintShareJob" +"Cmdlets","NewMgPrintConnector.g.cs","v1.0","New-MgPrintConnector","POST","/print/connectors","matched","New-MgPrintConnector" +"Cmdlets","NewMgPrinter.g.cs","v1.0","New-MgPrinter","POST","/print/printers","no-oracle","" +"Cmdlets","NewMgPrinterJob.g.cs","v1.0","New-MgPrinterJob","POST","/print/printers/{param}/jobs","mismatch","New-MgPrintPrinterJob" +"Cmdlets","NewMgPrinterJobDocument.g.cs","v1.0","New-MgPrinterJobDocument","POST","/print/printers/{param}/jobs/{param}/documents","mismatch","New-MgPrintPrinterJobDocument" +"Cmdlets","NewMgPrinterJobTask.g.cs","v1.0","New-MgPrinterJobTask","POST","/print/printers/{param}/jobs/{param}/tasks","mismatch","New-MgPrintPrinterJobTask" +"Cmdlets","NewMgPrinterTaskTrigger.g.cs","v1.0","New-MgPrinterTaskTrigger","POST","/print/printers/{param}/taskTriggers","mismatch","New-MgPrintPrinterTaskTrigger" +"Cmdlets","NewMgPrintOperation.g.cs","v1.0","New-MgPrintOperation","POST","/print/operations","matched","New-MgPrintOperation" +"Cmdlets","NewMgPrintService.g.cs","v1.0","New-MgPrintService","POST","/print/services","matched","New-MgPrintService" +"Cmdlets","NewMgPrintServiceEndpoint.g.cs","v1.0","New-MgPrintServiceEndpoint","POST","/print/services/{param}/endpoints","matched","New-MgPrintServiceEndpoint" +"Cmdlets","NewMgPrintShare.g.cs","v1.0","New-MgPrintShare","POST","/print/shares","matched","New-MgPrintShare" +"Cmdlets","NewMgPrintShareAllowedGroupByRef.g.cs","v1.0","New-MgPrintShareAllowedGroupByRef","POST","/print/shares/{param}/allowedGroups/$ref","matched","New-MgPrintShareAllowedGroupByRef" +"Cmdlets","NewMgPrintShareAllowedUserByRef.g.cs","v1.0","New-MgPrintShareAllowedUserByRef","POST","/print/shares/{param}/allowedUsers/$ref","matched","New-MgPrintShareAllowedUserByRef" +"Cmdlets","NewMgPrintShareJob.g.cs","v1.0","New-MgPrintShareJob","POST","/print/shares/{param}/jobs","matched","New-MgPrintShareJob" +"Cmdlets","NewMgPrintShareJobDocument.g.cs","v1.0","New-MgPrintShareJobDocument","POST","/print/shares/{param}/jobs/{param}/documents","matched","New-MgPrintShareJobDocument" +"Cmdlets","NewMgPrintShareJobTask.g.cs","v1.0","New-MgPrintShareJobTask","POST","/print/shares/{param}/jobs/{param}/tasks","matched","New-MgPrintShareJobTask" +"Cmdlets","NewMgPrintTaskDefinition.g.cs","v1.0","New-MgPrintTaskDefinition","POST","/print/taskDefinitions","matched","New-MgPrintTaskDefinition" +"Cmdlets","NewMgPrintTaskDefinitionTask.g.cs","v1.0","New-MgPrintTaskDefinitionTask","POST","/print/taskDefinitions/{param}/tasks","matched","New-MgPrintTaskDefinitionTask" +"Cmdlets","RemoveMgPrintConnector.g.cs","v1.0","Remove-MgPrintConnector","DELETE","/print/connectors/{param}","matched","Remove-MgPrintConnector" +"Cmdlets","RemoveMgPrinter.g.cs","v1.0","Remove-MgPrinter","DELETE","/print/printers/{param}","mismatch","Remove-MgPrintPrinter" +"Cmdlets","RemoveMgPrinterJob.g.cs","v1.0","Remove-MgPrinterJob","DELETE","/print/printers/{param}/jobs/{param}","mismatch","Remove-MgPrintPrinterJob" +"Cmdlets","RemoveMgPrinterJobDocument.g.cs","v1.0","Remove-MgPrinterJobDocument","DELETE","/print/printers/{param}/jobs/{param}/documents/{param}","mismatch","Remove-MgPrintPrinterJobDocument" +"Cmdlets","RemoveMgPrinterJobDocumentContent.g.cs","v1.0","Remove-MgPrinterJobDocumentContent","DELETE","/print/printers/{param}/jobs/{param}/documents/{param}/$value","mismatch","Remove-MgPrintPrinterJobDocumentContent" +"Cmdlets","RemoveMgPrinterJobTask.g.cs","v1.0","Remove-MgPrinterJobTask","DELETE","/print/printers/{param}/jobs/{param}/tasks/{param}","mismatch","Remove-MgPrintPrinterJobTask" +"Cmdlets","RemoveMgPrinterTaskTrigger.g.cs","v1.0","Remove-MgPrinterTaskTrigger","DELETE","/print/printers/{param}/taskTriggers/{param}","mismatch","Remove-MgPrintPrinterTaskTrigger" +"Cmdlets","RemoveMgPrintOperation.g.cs","v1.0","Remove-MgPrintOperation","DELETE","/print/operations/{param}","matched","Remove-MgPrintOperation" +"Cmdlets","RemoveMgPrintService.g.cs","v1.0","Remove-MgPrintService","DELETE","/print/services/{param}","matched","Remove-MgPrintService" +"Cmdlets","RemoveMgPrintServiceEndpoint.g.cs","v1.0","Remove-MgPrintServiceEndpoint","DELETE","/print/services/{param}/endpoints/{param}","matched","Remove-MgPrintServiceEndpoint" +"Cmdlets","RemoveMgPrintShare.g.cs","v1.0","Remove-MgPrintShare","DELETE","/print/shares/{param}","matched","Remove-MgPrintShare" +"Cmdlets","RemoveMgPrintShareAllowedGroupByRef.g.cs","v1.0","Remove-MgPrintShareAllowedGroupByRef","DELETE","/print/shares/{param}/allowedGroups/{param}/$ref","no-oracle","" +"Cmdlets","RemoveMgPrintShareAllowedUserByRef.g.cs","v1.0","Remove-MgPrintShareAllowedUserByRef","DELETE","/print/shares/{param}/allowedUsers/{param}/$ref","no-oracle","" +"Cmdlets","RemoveMgPrintShareJob.g.cs","v1.0","Remove-MgPrintShareJob","DELETE","/print/shares/{param}/jobs/{param}","matched","Remove-MgPrintShareJob" +"Cmdlets","RemoveMgPrintShareJobDocument.g.cs","v1.0","Remove-MgPrintShareJobDocument","DELETE","/print/shares/{param}/jobs/{param}/documents/{param}","matched","Remove-MgPrintShareJobDocument" +"Cmdlets","RemoveMgPrintShareJobDocumentContent.g.cs","v1.0","Remove-MgPrintShareJobDocumentContent","DELETE","/print/shares/{param}/jobs/{param}/documents/{param}/$value","matched","Remove-MgPrintShareJobDocumentContent" +"Cmdlets","RemoveMgPrintShareJobTask.g.cs","v1.0","Remove-MgPrintShareJobTask","DELETE","/print/shares/{param}/jobs/{param}/tasks/{param}","matched","Remove-MgPrintShareJobTask" +"Cmdlets","RemoveMgPrintTaskDefinition.g.cs","v1.0","Remove-MgPrintTaskDefinition","DELETE","/print/taskDefinitions/{param}","matched","Remove-MgPrintTaskDefinition" +"Cmdlets","RemoveMgPrintTaskDefinitionTask.g.cs","v1.0","Remove-MgPrintTaskDefinitionTask","DELETE","/print/taskDefinitions/{param}/tasks/{param}","matched","Remove-MgPrintTaskDefinitionTask" +"Cmdlets","UpdateMgPrint.g.cs","v1.0","Update-MgPrint","PATCH","/print","matched","Update-MgPrint" +"Cmdlets","UpdateMgPrintConnector.g.cs","v1.0","Update-MgPrintConnector","PATCH","/print/connectors/{param}","matched","Update-MgPrintConnector" +"Cmdlets","UpdateMgPrinter.g.cs","v1.0","Update-MgPrinter","PATCH","/print/printers/{param}","mismatch","Update-MgPrintPrinter" +"Cmdlets","UpdateMgPrinterJob.g.cs","v1.0","Update-MgPrinterJob","PATCH","/print/printers/{param}/jobs/{param}","mismatch","Update-MgPrintPrinterJob" +"Cmdlets","UpdateMgPrinterJobDocument.g.cs","v1.0","Update-MgPrinterJobDocument","PATCH","/print/printers/{param}/jobs/{param}/documents/{param}","mismatch","Update-MgPrintPrinterJobDocument" +"Cmdlets","UpdateMgPrinterJobTask.g.cs","v1.0","Update-MgPrinterJobTask","PATCH","/print/printers/{param}/jobs/{param}/tasks/{param}","mismatch","Update-MgPrintPrinterJobTask" +"Cmdlets","UpdateMgPrinterTaskTrigger.g.cs","v1.0","Update-MgPrinterTaskTrigger","PATCH","/print/printers/{param}/taskTriggers/{param}","mismatch","Update-MgPrintPrinterTaskTrigger" +"Cmdlets","UpdateMgPrintOperation.g.cs","v1.0","Update-MgPrintOperation","PATCH","/print/operations/{param}","matched","Update-MgPrintOperation" +"Cmdlets","UpdateMgPrintService.g.cs","v1.0","Update-MgPrintService","PATCH","/print/services/{param}","matched","Update-MgPrintService" +"Cmdlets","UpdateMgPrintServiceEndpoint.g.cs","v1.0","Update-MgPrintServiceEndpoint","PATCH","/print/services/{param}/endpoints/{param}","matched","Update-MgPrintServiceEndpoint" +"Cmdlets","UpdateMgPrintShare.g.cs","v1.0","Update-MgPrintShare","PATCH","/print/shares/{param}","matched","Update-MgPrintShare" +"Cmdlets","UpdateMgPrintShareAllowedUserMailboxSetting.g.cs","v1.0","Update-MgPrintShareAllowedUserMailboxSetting","PATCH","/print/shares/{param}/allowedUsers/{param}/mailboxSettings","matched","Update-MgPrintShareAllowedUserMailboxSetting" +"Cmdlets","UpdateMgPrintShareJob.g.cs","v1.0","Update-MgPrintShareJob","PATCH","/print/shares/{param}/jobs/{param}","matched","Update-MgPrintShareJob" +"Cmdlets","UpdateMgPrintShareJobDocument.g.cs","v1.0","Update-MgPrintShareJobDocument","PATCH","/print/shares/{param}/jobs/{param}/documents/{param}","matched","Update-MgPrintShareJobDocument" +"Cmdlets","UpdateMgPrintShareJobTask.g.cs","v1.0","Update-MgPrintShareJobTask","PATCH","/print/shares/{param}/jobs/{param}/tasks/{param}","matched","Update-MgPrintShareJobTask" +"Cmdlets","UpdateMgPrintTaskDefinition.g.cs","v1.0","Update-MgPrintTaskDefinition","PATCH","/print/taskDefinitions/{param}","matched","Update-MgPrintTaskDefinition" +"Cmdlets","UpdateMgPrintTaskDefinitionTask.g.cs","v1.0","Update-MgPrintTaskDefinitionTask","PATCH","/print/taskDefinitions/{param}/tasks/{param}","matched","Update-MgPrintTaskDefinitionTask" +"Cmdlets","GetMgDeviceAppManagement.g.cs","v1.0","Get-MgDeviceAppManagement","GET","/deviceAppManagement","matched","Get-MgDeviceAppManagement" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtection_Get.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtection","GET","/deviceAppManagement/androidManagedAppProtections/{param}","matched","Get-MgDeviceAppManagementAndroidManagedAppProtection" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtection_List.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtection","GET","/deviceAppManagement/androidManagedAppProtections","matched","Get-MgDeviceAppManagementAndroidManagedAppProtection" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtection.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtection","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtectionApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionApp","GET","/deviceAppManagement/androidManagedAppProtections/{param}/apps/{param}","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtectionApp_List.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionApp","GET","/deviceAppManagement/androidManagedAppProtections/{param}/apps","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtectionApp.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtectionAppCount.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionAppCount","GET","/deviceAppManagement/androidManagedAppProtections/{param}/apps/$count","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionAppCount" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtectionAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","GET","/deviceAppManagement/androidManagedAppProtections/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtectionAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","GET","/deviceAppManagement/androidManagedAppProtections/{param}/assignments","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtectionAssignment.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtectionAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignmentCount","GET","/deviceAppManagement/androidManagedAppProtections/{param}/assignments/$count","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtectionCount.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionCount","GET","/deviceAppManagement/androidManagedAppProtections/$count","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionCount" +"Cmdlets","GetMgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary","GET","/deviceAppManagement/androidManagedAppProtections/{param}/deploymentSummary","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary" +"Cmdlets","GetMgDeviceAppManagementDefaultManagedAppProtection_Get.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtection","GET","/deviceAppManagement/defaultManagedAppProtections/{param}","matched","Get-MgDeviceAppManagementDefaultManagedAppProtection" +"Cmdlets","GetMgDeviceAppManagementDefaultManagedAppProtection_List.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtection","GET","/deviceAppManagement/defaultManagedAppProtections","matched","Get-MgDeviceAppManagementDefaultManagedAppProtection" +"Cmdlets","GetMgDeviceAppManagementDefaultManagedAppProtection.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtection","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementDefaultManagedAppProtectionApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtectionApp","GET","/deviceAppManagement/defaultManagedAppProtections/{param}/apps/{param}","matched","Get-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"Cmdlets","GetMgDeviceAppManagementDefaultManagedAppProtectionApp_List.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtectionApp","GET","/deviceAppManagement/defaultManagedAppProtections/{param}/apps","matched","Get-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"Cmdlets","GetMgDeviceAppManagementDefaultManagedAppProtectionApp.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtectionApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementDefaultManagedAppProtectionAppCount.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtectionAppCount","GET","/deviceAppManagement/defaultManagedAppProtections/{param}/apps/$count","matched","Get-MgDeviceAppManagementDefaultManagedAppProtectionAppCount" +"Cmdlets","GetMgDeviceAppManagementDefaultManagedAppProtectionCount.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtectionCount","GET","/deviceAppManagement/defaultManagedAppProtections/$count","matched","Get-MgDeviceAppManagementDefaultManagedAppProtectionCount" +"Cmdlets","GetMgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary","GET","/deviceAppManagement/defaultManagedAppProtections/{param}/deploymentSummary","matched","Get-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtection_Get.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtection","GET","/deviceAppManagement/iosManagedAppProtections/{param}","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtection" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtection_List.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtection","GET","/deviceAppManagement/iosManagedAppProtections","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtection" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtection.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtection","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtectionApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionApp","GET","/deviceAppManagement/iosManagedAppProtections/{param}/apps/{param}","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionApp" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtectionApp_List.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionApp","GET","/deviceAppManagement/iosManagedAppProtections/{param}/apps","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionApp" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtectionApp.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtectionAppCount.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionAppCount","GET","/deviceAppManagement/iosManagedAppProtections/{param}/apps/$count","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionAppCount" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtectionAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionAssignment","GET","/deviceAppManagement/iosManagedAppProtections/{param}/assignments/{param}","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtectionAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionAssignment","GET","/deviceAppManagement/iosManagedAppProtections/{param}/assignments","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtectionAssignment.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtectionAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionAssignmentCount","GET","/deviceAppManagement/iosManagedAppProtections/{param}/assignments/$count","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtectionCount.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionCount","GET","/deviceAppManagement/iosManagedAppProtections/$count","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionCount" +"Cmdlets","GetMgDeviceAppManagementIosManagedAppProtectionDeploymentSummary.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary","GET","/deviceAppManagement/iosManagedAppProtections/{param}/deploymentSummary","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" +"Cmdlets","GetMgDeviceAppManagementManagedAppPolicy_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppPolicy","GET","/deviceAppManagement/managedAppPolicies/{param}","matched","Get-MgDeviceAppManagementManagedAppPolicy" +"Cmdlets","GetMgDeviceAppManagementManagedAppPolicy_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppPolicy","GET","/deviceAppManagement/managedAppPolicies","matched","Get-MgDeviceAppManagementManagedAppPolicy" +"Cmdlets","GetMgDeviceAppManagementManagedAppPolicy.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppPolicy","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementManagedAppPolicyCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppPolicyCount","GET","/deviceAppManagement/managedAppPolicies/$count","matched","Get-MgDeviceAppManagementManagedAppPolicyCount" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistration_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistration","GET","/deviceAppManagement/managedAppRegistrations/{param}","matched","Get-MgDeviceAppManagementManagedAppRegistration" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistration_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistration","GET","/deviceAppManagement/managedAppRegistrations","matched","Get-MgDeviceAppManagementManagedAppRegistration" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistration.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistration","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationAppliedPolicy_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","GET","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/{param}","matched","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationAppliedPolicy_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","GET","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies","matched","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationAppliedPolicy.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationAppliedPolicyCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyCount","GET","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/$count","matched","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyCount" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationCount","GET","/deviceAppManagement/managedAppRegistrations/$count","matched","Get-MgDeviceAppManagementManagedAppRegistrationCount" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationGetUserIdsWithFlaggedAppRegistration.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationGetUserIdsWithFlaggedAppRegistration","GET","/deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration","mismatch","Get-MgDeviceAppManagementManagedAppRegistrationUserIdWithFlaggedAppRegistration" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationIntendedPolicy_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","GET","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/{param}","matched","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationIntendedPolicy_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","GET","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies","matched","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationIntendedPolicy.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationIntendedPolicyCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyCount","GET","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/$count","matched","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyCount" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationOperation_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationOperation","GET","/deviceAppManagement/managedAppRegistrations/{param}/operations/{param}","matched","Get-MgDeviceAppManagementManagedAppRegistrationOperation" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationOperation_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationOperation","GET","/deviceAppManagement/managedAppRegistrations/{param}/operations","matched","Get-MgDeviceAppManagementManagedAppRegistrationOperation" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationOperation.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationOperation","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementManagedAppRegistrationOperationCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationOperationCount","GET","/deviceAppManagement/managedAppRegistrations/{param}/operations/$count","matched","Get-MgDeviceAppManagementManagedAppRegistrationOperationCount" +"Cmdlets","GetMgDeviceAppManagementManagedAppStatus_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppStatus","GET","/deviceAppManagement/managedAppStatuses/{param}","matched","Get-MgDeviceAppManagementManagedAppStatus" +"Cmdlets","GetMgDeviceAppManagementManagedAppStatus_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppStatus","GET","/deviceAppManagement/managedAppStatuses","matched","Get-MgDeviceAppManagementManagedAppStatus" +"Cmdlets","GetMgDeviceAppManagementManagedAppStatus.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppStatus","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementManagedAppStatusCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppStatusCount","GET","/deviceAppManagement/managedAppStatuses/$count","matched","Get-MgDeviceAppManagementManagedAppStatusCount" +"Cmdlets","GetMgDeviceAppManagementManagedEBook_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBook","GET","/deviceAppManagement/managedEBooks/{param}","matched","Get-MgDeviceAppManagementManagedEBook" +"Cmdlets","GetMgDeviceAppManagementManagedEBook_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBook","GET","/deviceAppManagement/managedEBooks","matched","Get-MgDeviceAppManagementManagedEBook" +"Cmdlets","GetMgDeviceAppManagementManagedEBook.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBook","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementManagedEBookAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookAssignment","GET","/deviceAppManagement/managedEBooks/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementManagedEBookAssignment" +"Cmdlets","GetMgDeviceAppManagementManagedEBookAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookAssignment","GET","/deviceAppManagement/managedEBooks/{param}/assignments","matched","Get-MgDeviceAppManagementManagedEBookAssignment" +"Cmdlets","GetMgDeviceAppManagementManagedEBookAssignment.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementManagedEBookAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookAssignmentCount","GET","/deviceAppManagement/managedEBooks/{param}/assignments/$count","matched","Get-MgDeviceAppManagementManagedEBookAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementManagedEBookCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookCount","GET","/deviceAppManagement/managedEBooks/$count","matched","Get-MgDeviceAppManagementManagedEBookCount" +"Cmdlets","GetMgDeviceAppManagementManagedEBookDeviceState_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookDeviceState","GET","/deviceAppManagement/managedEBooks/{param}/deviceStates/{param}","matched","Get-MgDeviceAppManagementManagedEBookDeviceState" +"Cmdlets","GetMgDeviceAppManagementManagedEBookDeviceState_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookDeviceState","GET","/deviceAppManagement/managedEBooks/{param}/deviceStates","matched","Get-MgDeviceAppManagementManagedEBookDeviceState" +"Cmdlets","GetMgDeviceAppManagementManagedEBookDeviceState.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookDeviceState","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementManagedEBookDeviceStateCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookDeviceStateCount","GET","/deviceAppManagement/managedEBooks/{param}/deviceStates/$count","matched","Get-MgDeviceAppManagementManagedEBookDeviceStateCount" +"Cmdlets","GetMgDeviceAppManagementManagedEBookInstallSummary.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookInstallSummary","GET","/deviceAppManagement/managedEBooks/{param}/installSummary","matched","Get-MgDeviceAppManagementManagedEBookInstallSummary" +"Cmdlets","GetMgDeviceAppManagementManagedEBookUserStateSummary_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummary","GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}","matched","Get-MgDeviceAppManagementManagedEBookUserStateSummary" +"Cmdlets","GetMgDeviceAppManagementManagedEBookUserStateSummary_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummary","GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary","matched","Get-MgDeviceAppManagementManagedEBookUserStateSummary" +"Cmdlets","GetMgDeviceAppManagementManagedEBookUserStateSummary.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummary","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementManagedEBookUserStateSummaryCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummaryCount","GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/$count","matched","Get-MgDeviceAppManagementManagedEBookUserStateSummaryCount" +"Cmdlets","GetMgDeviceAppManagementManagedEBookUserStateSummaryDeviceState_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates/{param}","matched","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"Cmdlets","GetMgDeviceAppManagementManagedEBookUserStateSummaryDeviceState_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates","matched","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"Cmdlets","GetMgDeviceAppManagementManagedEBookUserStateSummaryDeviceState.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementManagedEBookUserStateSummaryDeviceStateCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceStateCount","GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates/$count","matched","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceStateCount" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicy_Get.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicy_List.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicy.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments/$count","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyCount.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyCount","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/$count","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyCount" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/$count","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/$count","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount" +"Cmdlets","GetMgDeviceAppManagementMobileApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileApp","GET","/deviceAppManagement/mobileApps/{param}","matched","Get-MgDeviceAppManagementMobileApp" +"Cmdlets","GetMgDeviceAppManagementMobileApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileApp","GET","/deviceAppManagement/mobileApps","matched","Get-MgDeviceAppManagementMobileApp" +"Cmdlets","GetMgDeviceAppManagementMobileApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobApp","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobApp","GET","/deviceAppManagement/mobileApps/androidLobApp","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/assignments","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/categories/{param}","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/categories","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/categories/$count","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/containedApps/{param}","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/containedApps","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedAppCount","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/containedApps/$count","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionCount","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/$count","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files/{param}","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCount","GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files/$count","matched","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidStoreApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp","GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp","matched","Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidStoreApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp","GET","/deviceAppManagement/mobileApps/androidStoreApp","matched","Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidStoreApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp/assignments","matched","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory","GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp/categories/{param}","matched","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory","GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp/categories","matched","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp/categories/$count","matched","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobApp","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobApp","GET","/deviceAppManagement/mobileApps/iosLobApp","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/assignments/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/assignments","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/assignments/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/categories/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/categories","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/categories/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/containedApps/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/containedApps","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedAppCount","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/containedApps/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionCount","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileCount","GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFileCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosStoreApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreApp","GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp","mismatch","Get-MgDeviceAppManagementMobileAppAsIoStoreApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosStoreApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreApp","GET","/deviceAppManagement/mobileApps/iosStoreApp","mismatch","Get-MgDeviceAppManagementMobileAppAsIoStoreApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosStoreApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosStoreAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp/assignments/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosStoreAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp/assignments","mismatch","Get-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosStoreAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosStoreAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp/assignments/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsIoStoreAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosStoreAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategory","GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp/categories/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsIoStoreAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosStoreAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategory","GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp/categories","mismatch","Get-MgDeviceAppManagementMobileAppAsIoStoreAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosStoreAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosStoreAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp/categories/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsIoStoreAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosVppApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppApp","GET","/deviceAppManagement/mobileApps/{param}/iosVppApp","mismatch","Get-MgDeviceAppManagementMobileAppAsIoVppApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosVppApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppApp","GET","/deviceAppManagement/mobileApps/iosVppApp","mismatch","Get-MgDeviceAppManagementMobileAppAsIoVppApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosVppApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosVppAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/iosVppApp/assignments/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosVppAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/iosVppApp/assignments","mismatch","Get-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosVppAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosVppAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/iosVppApp/assignments/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsIoVppAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosVppAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppCategory","GET","/deviceAppManagement/mobileApps/{param}/iosVppApp/categories/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsIoVppAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosVppAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppCategory","GET","/deviceAppManagement/mobileApps/{param}/iosVppApp/categories","mismatch","Get-MgDeviceAppManagementMobileAppAsIoVppAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosVppAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsIosVppAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/iosVppApp/categories/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsIoVppAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp","GET","/deviceAppManagement/mobileApps/macOSDmgApp","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/assignments","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/categories/{param}","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/categories","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/categories/$count","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/containedApps/{param}","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/containedApps","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedAppCount","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/containedApps/$count","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionCount","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/$count","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files/{param}","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCount","GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files/$count","matched","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobApp","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobApp","GET","/deviceAppManagement/mobileApps/macOSLobApp","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/assignments","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/categories/{param}","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/categories","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/categories/$count","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/containedApps/{param}","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/containedApps","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedAppCount","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/containedApps/$count","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionCount","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/$count","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files/{param}","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCount","GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files/$count","matched","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp","GET","/deviceAppManagement/mobileApps/managedAndroidLobApp","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/assignments","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/categories/{param}","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/categories","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/categories/$count","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/containedApps/{param}","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/containedApps","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/containedApps/$count","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionCount","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/$count","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files/{param}","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCount","GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files/$count","matched","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobApp","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobApp","GET","/deviceAppManagement/mobileApps/managedIOSLobApp","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/assignments/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/assignments","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/assignments/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/categories/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/categories","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/categories/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/containedApps/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/containedApps","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedAppCount","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/containedApps/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionCount","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileCount","GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFileCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp","GET","/deviceAppManagement/mobileApps/managedMobileLobApp","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/assignments","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/categories/{param}","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/categories","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/categories/$count","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/containedApps/{param}","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/containedApps","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedAppCount","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/containedApps/$count","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionCount","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/$count","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files/{param}","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCount","GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files/$count","matched","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp","GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp","matched","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp","GET","/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp","matched","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/assignments","matched","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory","GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/categories/{param}","matched","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory","GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/categories","matched","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/categories/$count","matched","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/assignments","matched","Get-MgDeviceAppManagementMobileAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobApp","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobApp","GET","/deviceAppManagement/mobileApps/win32LobApp","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/assignments","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/categories/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/categories","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/categories/$count","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/containedApps/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/containedApps","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedAppCount","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/containedApps/$count","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionCount","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/$count","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCount","GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files/$count","matched","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppX_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppX","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppX" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppX_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppX","GET","/deviceAppManagement/mobileApps/windowsAppX","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppX" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppX.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppX","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/assignments","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/categories/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/categories","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/categories/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/containedApps/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/containedApps","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedAppCount","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/containedApps/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionCount","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCount","GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSI_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSI","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsi" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSI_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSI","GET","/deviceAppManagement/mobileApps/windowsMobileMSI","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsi" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSI.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSI","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/assignments/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/assignments","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/assignments/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSICategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategory","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/categories/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSICategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategory","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/categories","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSICategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSICategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategoryCount","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/categories/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/containedApps/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/containedApps","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedAppCount","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/containedApps/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionCount","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files/{param}","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileCount","GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files/$count","mismatch","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFileCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppX_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppX_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX","GET","/deviceAppManagement/mobileApps/windowsUniversalAppX","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppX.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/assignments","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/categories/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/categories","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/categories/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/committedContainedApps/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/committedContainedApps","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedAppCount","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/committedContainedApps/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/containedApps/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/containedApps","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedAppCount","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/containedApps/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionCount","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCount","GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsWebApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebApp","GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp","matched","Get-MgDeviceAppManagementMobileAppAsWindowsWebApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsWebApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebApp","GET","/deviceAppManagement/mobileApps/windowsWebApp","matched","Get-MgDeviceAppManagementMobileAppAsWindowsWebApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsWebApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsWebAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsWebAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp/assignments","matched","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsWebAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsWebAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsWebAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory","GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp/categories/{param}","matched","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsWebAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory","GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp/categories","matched","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsWebAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppAsWindowsWebAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategoryCount","GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp/categories/$count","matched","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCategory","GET","/deviceAppManagement/mobileAppCategories/{param}","matched","Get-MgDeviceAppManagementMobileAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCategory","GET","/deviceAppManagement/mobileAppCategories","matched","Get-MgDeviceAppManagementMobileAppCategory" +"Cmdlets","GetMgDeviceAppManagementMobileAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCategory","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCategoryCount","GET","/deviceAppManagement/mobileAppCategories/$count","matched","Get-MgDeviceAppManagementMobileAppCategoryCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfiguration_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfiguration","GET","/deviceAppManagement/mobileAppConfigurations/{param}","matched","Get-MgDeviceAppManagementMobileAppConfiguration" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfiguration_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfiguration","GET","/deviceAppManagement/mobileAppConfigurations","matched","Get-MgDeviceAppManagementMobileAppConfiguration" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfiguration.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfiguration","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationAssignment","GET","/deviceAppManagement/mobileAppConfigurations/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppConfigurationAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationAssignment","GET","/deviceAppManagement/mobileAppConfigurations/{param}/assignments","matched","Get-MgDeviceAppManagementMobileAppConfigurationAssignment" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationAssignmentCount","GET","/deviceAppManagement/mobileAppConfigurations/{param}/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppConfigurationAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationCount","GET","/deviceAppManagement/mobileAppConfigurations/$count","matched","Get-MgDeviceAppManagementMobileAppConfigurationCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationDeviceStatus_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","GET","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses/{param}","matched","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationDeviceStatus_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","GET","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses","matched","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationDeviceStatus.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationDeviceStatusCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusCount","GET","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses/$count","matched","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary","GET","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatusSummary","matched","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationUserStatus_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationUserStatus","GET","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses/{param}","matched","Get-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationUserStatus_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationUserStatus","GET","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses","matched","Get-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationUserStatus.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationUserStatus","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationUserStatusCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationUserStatusCount","GET","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses/$count","matched","Get-MgDeviceAppManagementMobileAppConfigurationUserStatusCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppConfigurationUserStatusSummary.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary","GET","/deviceAppManagement/mobileAppConfigurations/{param}/userStatusSummary","matched","Get-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary" +"Cmdlets","GetMgDeviceAppManagementMobileAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCount","GET","/deviceAppManagement/mobileApps/$count","matched","Get-MgDeviceAppManagementMobileAppCount" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsAndroidLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsAndroidLobApp","GET","/deviceAppManagement/mobileApps/androidLobApp/$count","matched","Get-MgDeviceAppManagementMobileAppCountAsAndroidLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsAndroidStoreApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsAndroidStoreApp","GET","/deviceAppManagement/mobileApps/androidStoreApp/$count","matched","Get-MgDeviceAppManagementMobileAppCountAsAndroidStoreApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsIosLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsIosLobApp","GET","/deviceAppManagement/mobileApps/iosLobApp/$count","mismatch","Get-MgDeviceAppManagementMobileAppCountAsiOSLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsIosStoreApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsIosStoreApp","GET","/deviceAppManagement/mobileApps/iosStoreApp/$count","mismatch","Get-MgDeviceAppManagementMobileAppCountAsIoStoreApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsIosVppApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsIosVppApp","GET","/deviceAppManagement/mobileApps/iosVppApp/$count","mismatch","Get-MgDeviceAppManagementMobileAppCountAsIoVppApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsMacOSDmgApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsMacOSDmgApp","GET","/deviceAppManagement/mobileApps/macOSDmgApp/$count","matched","Get-MgDeviceAppManagementMobileAppCountAsMacOSDmgApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsMacOSLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsMacOSLobApp","GET","/deviceAppManagement/mobileApps/macOSLobApp/$count","matched","Get-MgDeviceAppManagementMobileAppCountAsMacOSLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsManagedAndroidLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsManagedAndroidLobApp","GET","/deviceAppManagement/mobileApps/managedAndroidLobApp/$count","matched","Get-MgDeviceAppManagementMobileAppCountAsManagedAndroidLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsManagedIOSLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsManagedIOSLobApp","GET","/deviceAppManagement/mobileApps/managedIOSLobApp/$count","mismatch","Get-MgDeviceAppManagementMobileAppCountAsManagediOSLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsManagedMobileLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsManagedMobileLobApp","GET","/deviceAppManagement/mobileApps/managedMobileLobApp/$count","matched","Get-MgDeviceAppManagementMobileAppCountAsManagedMobileLobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsMicrosoftStoreForBusinessApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsMicrosoftStoreForBusinessApp","GET","/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp/$count","matched","Get-MgDeviceAppManagementMobileAppCountAsMicrosoftStoreForBusinessApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsWin32LobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsWin32LobApp","GET","/deviceAppManagement/mobileApps/win32LobApp/$count","matched","Get-MgDeviceAppManagementMobileAppCountAsWin32LobApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsWindowsAppX.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsWindowsAppX","GET","/deviceAppManagement/mobileApps/windowsAppX/$count","matched","Get-MgDeviceAppManagementMobileAppCountAsWindowsAppX" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsWindowsMobileMSI.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsWindowsMobileMSI","GET","/deviceAppManagement/mobileApps/windowsMobileMSI/$count","mismatch","Get-MgDeviceAppManagementMobileAppCountAsWindowsMobileMsi" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsWindowsUniversalAppX.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsWindowsUniversalAppX","GET","/deviceAppManagement/mobileApps/windowsUniversalAppX/$count","matched","Get-MgDeviceAppManagementMobileAppCountAsWindowsUniversalAppX" +"Cmdlets","GetMgDeviceAppManagementMobileAppCountAsWindowsWebApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCountAsWindowsWebApp","GET","/deviceAppManagement/mobileApps/windowsWebApp/$count","matched","Get-MgDeviceAppManagementMobileAppCountAsWindowsWebApp" +"Cmdlets","GetMgDeviceAppManagementMobileAppRelationship_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppRelationship","GET","/deviceAppManagement/mobileAppRelationships/{param}","matched","Get-MgDeviceAppManagementMobileAppRelationship" +"Cmdlets","GetMgDeviceAppManagementMobileAppRelationship_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppRelationship","GET","/deviceAppManagement/mobileAppRelationships","matched","Get-MgDeviceAppManagementMobileAppRelationship" +"Cmdlets","GetMgDeviceAppManagementMobileAppRelationship.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppRelationship","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementMobileAppRelationshipCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppRelationshipCount","GET","/deviceAppManagement/mobileAppRelationships/$count","matched","Get-MgDeviceAppManagementMobileAppRelationshipCount" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfiguration_Get.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfiguration","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}","matched","Get-MgDeviceAppManagementTargetedManagedAppConfiguration" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfiguration_List.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfiguration","GET","/deviceAppManagement/targetedManagedAppConfigurations","matched","Get-MgDeviceAppManagementTargetedManagedAppConfiguration" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfiguration.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfiguration","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfigurationApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps/{param}","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfigurationApp_List.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfigurationApp.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfigurationAppCount.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAppCount","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps/$count","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAppCount" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfigurationAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfigurationAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfigurationAssignment.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments/$count","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfigurationCount.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationCount","GET","/deviceAppManagement/targetedManagedAppConfigurations/$count","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationCount" +"Cmdlets","GetMgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/deploymentSummary","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary" +"Cmdlets","GetMgDeviceAppManagementVppToken_Get.g.cs","v1.0","Get-MgDeviceAppManagementVppToken","GET","/deviceAppManagement/vppTokens/{param}","matched","Get-MgDeviceAppManagementVppToken" +"Cmdlets","GetMgDeviceAppManagementVppToken_List.g.cs","v1.0","Get-MgDeviceAppManagementVppToken","GET","/deviceAppManagement/vppTokens","matched","Get-MgDeviceAppManagementVppToken" +"Cmdlets","GetMgDeviceAppManagementVppToken.g.cs","v1.0","Get-MgDeviceAppManagementVppToken","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementVppTokenCount.g.cs","v1.0","Get-MgDeviceAppManagementVppTokenCount","GET","/deviceAppManagement/vppTokens/$count","matched","Get-MgDeviceAppManagementVppTokenCount" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicy_Get.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicy","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicy_List.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicy","GET","/deviceAppManagement/windowsInformationProtectionPolicies","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicy.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicy","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments/$count","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyCount.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyCount","GET","/deviceAppManagement/windowsInformationProtectionPolicies/$count","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyCount" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile_List.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFileCount.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFileCount","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/$count","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFileCount" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile_List.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","","","dispatcher","" +"Cmdlets","GetMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFileCount.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFileCount","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/$count","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFileCount" +"Cmdlets","GetMgUserDeviceManagementTroubleshootingEvent_Get.g.cs","v1.0","Get-MgUserDeviceManagementTroubleshootingEvent","GET","/users/{param}/deviceManagementTroubleshootingEvents/{param}","matched","Get-MgUserDeviceManagementTroubleshootingEvent" +"Cmdlets","GetMgUserDeviceManagementTroubleshootingEvent_List.g.cs","v1.0","Get-MgUserDeviceManagementTroubleshootingEvent","GET","/users/{param}/deviceManagementTroubleshootingEvents","matched","Get-MgUserDeviceManagementTroubleshootingEvent" +"Cmdlets","GetMgUserDeviceManagementTroubleshootingEvent.g.cs","v1.0","Get-MgUserDeviceManagementTroubleshootingEvent","","","dispatcher","" +"Cmdlets","GetMgUserDeviceManagementTroubleshootingEventCount.g.cs","v1.0","Get-MgUserDeviceManagementTroubleshootingEventCount","GET","/users/{param}/deviceManagementTroubleshootingEvents/$count","matched","Get-MgUserDeviceManagementTroubleshootingEventCount" +"Cmdlets","GetMgUserManagedAppRegistration_Get.g.cs","v1.0","Get-MgUserManagedAppRegistration","GET","/users/{param}/managedAppRegistrations/{param}","matched","Get-MgUserManagedAppRegistration" +"Cmdlets","GetMgUserManagedAppRegistration_List.g.cs","v1.0","Get-MgUserManagedAppRegistration","GET","/users/{param}/managedAppRegistrations","matched","Get-MgUserManagedAppRegistration" +"Cmdlets","GetMgUserManagedAppRegistration.g.cs","v1.0","Get-MgUserManagedAppRegistration","","","dispatcher","" +"Cmdlets","GetMgUserManagedAppRegistrationCount.g.cs","v1.0","Get-MgUserManagedAppRegistrationCount","GET","/users/{param}/managedAppRegistrations/$count","matched","Get-MgUserManagedAppRegistrationCount" +"Cmdlets","GetMgUserManagedDevice_Get.g.cs","v1.0","Get-MgUserManagedDevice","GET","/users/{param}/managedDevices/{param}","matched","Get-MgUserManagedDevice" +"Cmdlets","GetMgUserManagedDevice_List.g.cs","v1.0","Get-MgUserManagedDevice","GET","/users/{param}/managedDevices","matched","Get-MgUserManagedDevice" +"Cmdlets","GetMgUserManagedDevice.g.cs","v1.0","Get-MgUserManagedDevice","","","dispatcher","" +"Cmdlets","GetMgUserManagedDeviceCategory.g.cs","v1.0","Get-MgUserManagedDeviceCategory","GET","/users/{param}/managedDevices/{param}/deviceCategory","matched","Get-MgUserManagedDeviceCategory" +"Cmdlets","GetMgUserManagedDeviceCategoryByRef.g.cs","v1.0","Get-MgUserManagedDeviceCategoryByRef","GET","/users/{param}/managedDevices/{param}/deviceCategory/$ref","matched","Get-MgUserManagedDeviceCategoryByRef" +"Cmdlets","GetMgUserManagedDeviceCompliancePolicyState_Get.g.cs","v1.0","Get-MgUserManagedDeviceCompliancePolicyState","GET","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates/{param}","matched","Get-MgUserManagedDeviceCompliancePolicyState" +"Cmdlets","GetMgUserManagedDeviceCompliancePolicyState_List.g.cs","v1.0","Get-MgUserManagedDeviceCompliancePolicyState","GET","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates","matched","Get-MgUserManagedDeviceCompliancePolicyState" +"Cmdlets","GetMgUserManagedDeviceCompliancePolicyState.g.cs","v1.0","Get-MgUserManagedDeviceCompliancePolicyState","","","dispatcher","" +"Cmdlets","GetMgUserManagedDeviceCompliancePolicyStateCount.g.cs","v1.0","Get-MgUserManagedDeviceCompliancePolicyStateCount","GET","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates/$count","matched","Get-MgUserManagedDeviceCompliancePolicyStateCount" +"Cmdlets","GetMgUserManagedDeviceConfigurationState_Get.g.cs","v1.0","Get-MgUserManagedDeviceConfigurationState","GET","/users/{param}/managedDevices/{param}/deviceConfigurationStates/{param}","matched","Get-MgUserManagedDeviceConfigurationState" +"Cmdlets","GetMgUserManagedDeviceConfigurationState_List.g.cs","v1.0","Get-MgUserManagedDeviceConfigurationState","GET","/users/{param}/managedDevices/{param}/deviceConfigurationStates","matched","Get-MgUserManagedDeviceConfigurationState" +"Cmdlets","GetMgUserManagedDeviceConfigurationState.g.cs","v1.0","Get-MgUserManagedDeviceConfigurationState","","","dispatcher","" +"Cmdlets","GetMgUserManagedDeviceConfigurationStateCount.g.cs","v1.0","Get-MgUserManagedDeviceConfigurationStateCount","GET","/users/{param}/managedDevices/{param}/deviceConfigurationStates/$count","matched","Get-MgUserManagedDeviceConfigurationStateCount" +"Cmdlets","GetMgUserManagedDeviceCount.g.cs","v1.0","Get-MgUserManagedDeviceCount","GET","/users/{param}/managedDevices/$count","matched","Get-MgUserManagedDeviceCount" +"Cmdlets","GetMgUserManagedDeviceLogCollectionRequest_Get.g.cs","v1.0","Get-MgUserManagedDeviceLogCollectionRequest","GET","/users/{param}/managedDevices/{param}/logCollectionRequests/{param}","mismatch","Get-MgUserManagedDeviceLogCollectionResponse" +"Cmdlets","GetMgUserManagedDeviceLogCollectionRequest_List.g.cs","v1.0","Get-MgUserManagedDeviceLogCollectionRequest","GET","/users/{param}/managedDevices/{param}/logCollectionRequests","mismatch","Get-MgUserManagedDeviceLogCollectionResponse" +"Cmdlets","GetMgUserManagedDeviceLogCollectionRequest.g.cs","v1.0","Get-MgUserManagedDeviceLogCollectionRequest","","","dispatcher","" +"Cmdlets","GetMgUserManagedDeviceLogCollectionRequestCount.g.cs","v1.0","Get-MgUserManagedDeviceLogCollectionRequestCount","GET","/users/{param}/managedDevices/{param}/logCollectionRequests/$count","matched","Get-MgUserManagedDeviceLogCollectionRequestCount" +"Cmdlets","GetMgUserManagedDeviceUser.g.cs","v1.0","Get-MgUserManagedDeviceUser","GET","/users/{param}/managedDevices/{param}/users","matched","Get-MgUserManagedDeviceUser" +"Cmdlets","GetMgUserManagedDeviceWindowsProtectionState.g.cs","v1.0","Get-MgUserManagedDeviceWindowsProtectionState","GET","/users/{param}/managedDevices/{param}/windowsProtectionState","matched","Get-MgUserManagedDeviceWindowsProtectionState" +"Cmdlets","GetMgUserManagedDeviceWindowsProtectionStateDetectedMalwareState_Get.g.cs","v1.0","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","GET","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","matched","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Cmdlets","GetMgUserManagedDeviceWindowsProtectionStateDetectedMalwareState_List.g.cs","v1.0","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","GET","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState","matched","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Cmdlets","GetMgUserManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","","","dispatcher","" +"Cmdlets","GetMgUserManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.g.cs","v1.0","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareStateCount","GET","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState/$count","matched","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareStateCount" +"Cmdlets","InvokeMgDeviceAppManagementManagedAppPolicyTargetApps.g.cs","v1.0","Invoke-MgDeviceAppManagementManagedAppPolicyTargetApps","POST","/deviceAppManagement/managedAppPolicies/{param}/targetApps","mismatch","Invoke-MgTargetDeviceAppManagementManagedAppPolicyApp" +"Cmdlets","InvokeMgDeviceAppManagementManagedAppRegistrationAppliedPolicyTargetApps.g.cs","v1.0","Invoke-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyTargetApps","POST","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/{param}/targetApps","mismatch","Invoke-MgTargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp" +"Cmdlets","InvokeMgDeviceAppManagementManagedAppRegistrationIntendedPolicyTargetApps.g.cs","v1.0","Invoke-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyTargetApps","POST","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/{param}/targetApps","mismatch","Invoke-MgTargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp" +"Cmdlets","InvokeMgDeviceAppManagementManagedEBookAssign.g.cs","v1.0","Invoke-MgDeviceAppManagementManagedEBookAssign","POST","/deviceAppManagement/managedEBooks/{param}/assign","mismatch","Set-MgDeviceAppManagementManagedEBook" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCommit","POST","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files/{param}/commit","mismatch","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFile" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileRenewUpload","POST","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files/{param}/renewUpload","mismatch","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFileUpload" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileCommit","POST","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files/{param}/commit","mismatch","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFile" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileRenewUpload","POST","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files/{param}/renewUpload","mismatch","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFileUpload" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCommit","POST","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files/{param}/commit","mismatch","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFile" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileRenewUpload","POST","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files/{param}/renewUpload","mismatch","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFileUpload" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCommit","POST","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files/{param}/commit","mismatch","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFile" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileRenewUpload","POST","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files/{param}/renewUpload","mismatch","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFileUpload" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCommit","POST","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files/{param}/commit","mismatch","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFile" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileRenewUpload","POST","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files/{param}/renewUpload","mismatch","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFileUpload" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileCommit","POST","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files/{param}/commit","mismatch","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFile" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileRenewUpload","POST","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files/{param}/renewUpload","mismatch","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFileUpload" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCommit","POST","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files/{param}/commit","mismatch","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFile" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileRenewUpload","POST","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files/{param}/renewUpload","mismatch","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFileUpload" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAssign.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAssign","POST","/deviceAppManagement/mobileApps/{param}/assign","mismatch","Set-MgDeviceAppManagementMobileApp" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCommit","POST","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files/{param}/commit","mismatch","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFile" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileRenewUpload","POST","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files/{param}/renewUpload","mismatch","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFileUpload" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCommit","POST","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files/{param}/commit","mismatch","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFile" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileRenewUpload","POST","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files/{param}/renewUpload","mismatch","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFileUpload" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileCommit","POST","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files/{param}/commit","mismatch","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFile" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileRenewUpload","POST","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files/{param}/renewUpload","mismatch","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFileUpload" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCommit","POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files/{param}/commit","mismatch","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFile" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileRenewUpload","POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files/{param}/renewUpload","mismatch","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFileUpload" +"Cmdlets","InvokeMgDeviceAppManagementMobileAppConfigurationAssign.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppConfigurationAssign","POST","/deviceAppManagement/mobileAppConfigurations/{param}/assign","mismatch","Set-MgDeviceAppManagementMobileAppConfiguration" +"Cmdlets","InvokeMgDeviceAppManagementSyncMicrosoftStoreForBusinessApps.g.cs","v1.0","Invoke-MgDeviceAppManagementSyncMicrosoftStoreForBusinessApps","POST","/deviceAppManagement/syncMicrosoftStoreForBusinessApps","mismatch","Sync-MgDeviceAppManagementMicrosoftStoreForBusinessApp" +"Cmdlets","InvokeMgDeviceAppManagementTargetedManagedAppConfigurationAssign.g.cs","v1.0","Invoke-MgDeviceAppManagementTargetedManagedAppConfigurationAssign","POST","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assign","mismatch","Set-MgDeviceAppManagementTargetedManagedAppConfiguration" +"Cmdlets","InvokeMgDeviceAppManagementTargetedManagedAppConfigurationTargetApps.g.cs","v1.0","Invoke-MgDeviceAppManagementTargetedManagedAppConfigurationTargetApps","POST","/deviceAppManagement/targetedManagedAppConfigurations/{param}/targetApps","mismatch","Invoke-MgTargetDeviceAppManagementTargetedManagedAppConfigurationApp" +"Cmdlets","InvokeMgDeviceAppManagementVppTokenSyncLicenses.g.cs","v1.0","Invoke-MgDeviceAppManagementVppTokenSyncLicenses","POST","/deviceAppManagement/vppTokens/{param}/syncLicenses","mismatch","Sync-MgDeviceAppManagementVppTokenLicense" +"Cmdlets","InvokeMgUserManagedDeviceBypassActivationLock.g.cs","v1.0","Invoke-MgUserManagedDeviceBypassActivationLock","POST","/users/{param}/managedDevices/{param}/bypassActivationLock","mismatch","Skip-MgUserManagedDeviceActivationLock" +"Cmdlets","InvokeMgUserManagedDeviceCleanWindowsDevice.g.cs","v1.0","Invoke-MgUserManagedDeviceCleanWindowsDevice","POST","/users/{param}/managedDevices/{param}/cleanWindowsDevice","mismatch","Invoke-MgCleanUserManagedDeviceWindowsDevice" +"Cmdlets","InvokeMgUserManagedDeviceDeleteUserFromSharedAppleDevice.g.cs","v1.0","Invoke-MgUserManagedDeviceDeleteUserFromSharedAppleDevice","POST","/users/{param}/managedDevices/{param}/deleteUserFromSharedAppleDevice","mismatch","Remove-MgUserManagedDeviceUserFromSharedAppleDevice" +"Cmdlets","InvokeMgUserManagedDeviceDisableLostMode.g.cs","v1.0","Invoke-MgUserManagedDeviceDisableLostMode","POST","/users/{param}/managedDevices/{param}/disableLostMode","mismatch","Disable-MgUserManagedDeviceLostMode" +"Cmdlets","InvokeMgUserManagedDeviceLocateDevice.g.cs","v1.0","Invoke-MgUserManagedDeviceLocateDevice","POST","/users/{param}/managedDevices/{param}/locateDevice","mismatch","Find-MgUserManagedDevice" +"Cmdlets","InvokeMgUserManagedDeviceLogCollectionRequestCreateDownloadUrl.g.cs","v1.0","Invoke-MgUserManagedDeviceLogCollectionRequestCreateDownloadUrl","POST","/users/{param}/managedDevices/{param}/logCollectionRequests/{param}/createDownloadUrl","mismatch","New-MgUserManagedDeviceLogCollectionRequestDownloadUrl" +"Cmdlets","InvokeMgUserManagedDeviceLogoutSharedAppleDeviceActiveUser.g.cs","v1.0","Invoke-MgUserManagedDeviceLogoutSharedAppleDeviceActiveUser","POST","/users/{param}/managedDevices/{param}/logoutSharedAppleDeviceActiveUser","mismatch","Invoke-MgLogoutUserManagedDeviceSharedAppleDeviceActiveUser" +"Cmdlets","InvokeMgUserManagedDeviceRebootNow.g.cs","v1.0","Invoke-MgUserManagedDeviceRebootNow","POST","/users/{param}/managedDevices/{param}/rebootNow","mismatch","Restart-MgUserManagedDeviceNow" +"Cmdlets","InvokeMgUserManagedDeviceRecoverPasscode.g.cs","v1.0","Invoke-MgUserManagedDeviceRecoverPasscode","POST","/users/{param}/managedDevices/{param}/recoverPasscode","mismatch","Restore-MgUserManagedDevicePasscode" +"Cmdlets","InvokeMgUserManagedDeviceRemoteLock.g.cs","v1.0","Invoke-MgUserManagedDeviceRemoteLock","POST","/users/{param}/managedDevices/{param}/remoteLock","mismatch","Lock-MgUserManagedDeviceRemote" +"Cmdlets","InvokeMgUserManagedDeviceRequestRemoteAssistance.g.cs","v1.0","Invoke-MgUserManagedDeviceRequestRemoteAssistance","POST","/users/{param}/managedDevices/{param}/requestRemoteAssistance","mismatch","Request-MgUserManagedDeviceRemoteAssistance" +"Cmdlets","InvokeMgUserManagedDeviceResetPasscode.g.cs","v1.0","Invoke-MgUserManagedDeviceResetPasscode","POST","/users/{param}/managedDevices/{param}/resetPasscode","mismatch","Reset-MgUserManagedDevicePasscode" +"Cmdlets","InvokeMgUserManagedDeviceRetire.g.cs","v1.0","Invoke-MgUserManagedDeviceRetire","POST","/users/{param}/managedDevices/{param}/retire","mismatch","Invoke-MgRetireUserManagedDevice" +"Cmdlets","InvokeMgUserManagedDeviceShutDown.g.cs","v1.0","Invoke-MgUserManagedDeviceShutDown","POST","/users/{param}/managedDevices/{param}/shutDown","mismatch","Invoke-MgDownUserManagedDeviceShut" +"Cmdlets","InvokeMgUserManagedDeviceSyncDevice.g.cs","v1.0","Invoke-MgUserManagedDeviceSyncDevice","POST","/users/{param}/managedDevices/{param}/syncDevice","mismatch","Sync-MgUserManagedDevice" +"Cmdlets","InvokeMgUserManagedDeviceUpdateWindowsDeviceAccount.g.cs","v1.0","Invoke-MgUserManagedDeviceUpdateWindowsDeviceAccount","POST","/users/{param}/managedDevices/{param}/updateWindowsDeviceAccount","mismatch","Update-MgUserManagedDeviceWindowsDeviceAccount" +"Cmdlets","InvokeMgUserManagedDeviceWindowsDefenderScan.g.cs","v1.0","Invoke-MgUserManagedDeviceWindowsDefenderScan","POST","/users/{param}/managedDevices/{param}/windowsDefenderScan","mismatch","Invoke-MgScanUserManagedDeviceWindowsDefender" +"Cmdlets","InvokeMgUserManagedDeviceWindowsDefenderUpdateSignatures.g.cs","v1.0","Invoke-MgUserManagedDeviceWindowsDefenderUpdateSignatures","POST","/users/{param}/managedDevices/{param}/windowsDefenderUpdateSignatures","no-oracle","" +"Cmdlets","InvokeMgUserManagedDeviceWipe.g.cs","v1.0","Invoke-MgUserManagedDeviceWipe","POST","/users/{param}/managedDevices/{param}/wipe","mismatch","Clear-MgUserManagedDevice" +"Cmdlets","NewMgDeviceAppManagementAndroidManagedAppProtection.g.cs","v1.0","New-MgDeviceAppManagementAndroidManagedAppProtection","POST","/deviceAppManagement/androidManagedAppProtections","matched","New-MgDeviceAppManagementAndroidManagedAppProtection" +"Cmdlets","NewMgDeviceAppManagementAndroidManagedAppProtectionApp.g.cs","v1.0","New-MgDeviceAppManagementAndroidManagedAppProtectionApp","POST","/deviceAppManagement/androidManagedAppProtections/{param}/apps","matched","New-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"Cmdlets","NewMgDeviceAppManagementAndroidManagedAppProtectionAssignment.g.cs","v1.0","New-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","POST","/deviceAppManagement/androidManagedAppProtections/{param}/assignments","matched","New-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"Cmdlets","NewMgDeviceAppManagementDefaultManagedAppProtection.g.cs","v1.0","New-MgDeviceAppManagementDefaultManagedAppProtection","POST","/deviceAppManagement/defaultManagedAppProtections","matched","New-MgDeviceAppManagementDefaultManagedAppProtection" +"Cmdlets","NewMgDeviceAppManagementDefaultManagedAppProtectionApp.g.cs","v1.0","New-MgDeviceAppManagementDefaultManagedAppProtectionApp","POST","/deviceAppManagement/defaultManagedAppProtections/{param}/apps","matched","New-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"Cmdlets","NewMgDeviceAppManagementIosManagedAppProtection.g.cs","v1.0","New-MgDeviceAppManagementIosManagedAppProtection","POST","/deviceAppManagement/iosManagedAppProtections","mismatch","New-MgDeviceAppManagementiOSManagedAppProtection" +"Cmdlets","NewMgDeviceAppManagementIosManagedAppProtectionApp.g.cs","v1.0","New-MgDeviceAppManagementIosManagedAppProtectionApp","POST","/deviceAppManagement/iosManagedAppProtections/{param}/apps","mismatch","New-MgDeviceAppManagementiOSManagedAppProtectionApp" +"Cmdlets","NewMgDeviceAppManagementIosManagedAppProtectionAssignment.g.cs","v1.0","New-MgDeviceAppManagementIosManagedAppProtectionAssignment","POST","/deviceAppManagement/iosManagedAppProtections/{param}/assignments","mismatch","New-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"Cmdlets","NewMgDeviceAppManagementManagedAppPolicy.g.cs","v1.0","New-MgDeviceAppManagementManagedAppPolicy","POST","/deviceAppManagement/managedAppPolicies","matched","New-MgDeviceAppManagementManagedAppPolicy" +"Cmdlets","NewMgDeviceAppManagementManagedAppRegistration.g.cs","v1.0","New-MgDeviceAppManagementManagedAppRegistration","POST","/deviceAppManagement/managedAppRegistrations","matched","New-MgDeviceAppManagementManagedAppRegistration" +"Cmdlets","NewMgDeviceAppManagementManagedAppRegistrationAppliedPolicy.g.cs","v1.0","New-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","POST","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies","matched","New-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"Cmdlets","NewMgDeviceAppManagementManagedAppRegistrationIntendedPolicy.g.cs","v1.0","New-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","POST","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies","matched","New-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"Cmdlets","NewMgDeviceAppManagementManagedAppRegistrationOperation.g.cs","v1.0","New-MgDeviceAppManagementManagedAppRegistrationOperation","POST","/deviceAppManagement/managedAppRegistrations/{param}/operations","matched","New-MgDeviceAppManagementManagedAppRegistrationOperation" +"Cmdlets","NewMgDeviceAppManagementManagedAppStatus.g.cs","v1.0","New-MgDeviceAppManagementManagedAppStatus","POST","/deviceAppManagement/managedAppStatuses","matched","New-MgDeviceAppManagementManagedAppStatus" +"Cmdlets","NewMgDeviceAppManagementManagedEBook.g.cs","v1.0","New-MgDeviceAppManagementManagedEBook","POST","/deviceAppManagement/managedEBooks","matched","New-MgDeviceAppManagementManagedEBook" +"Cmdlets","NewMgDeviceAppManagementManagedEBookAssignment.g.cs","v1.0","New-MgDeviceAppManagementManagedEBookAssignment","POST","/deviceAppManagement/managedEBooks/{param}/assignments","matched","New-MgDeviceAppManagementManagedEBookAssignment" +"Cmdlets","NewMgDeviceAppManagementManagedEBookDeviceState.g.cs","v1.0","New-MgDeviceAppManagementManagedEBookDeviceState","POST","/deviceAppManagement/managedEBooks/{param}/deviceStates","matched","New-MgDeviceAppManagementManagedEBookDeviceState" +"Cmdlets","NewMgDeviceAppManagementManagedEBookUserStateSummary.g.cs","v1.0","New-MgDeviceAppManagementManagedEBookUserStateSummary","POST","/deviceAppManagement/managedEBooks/{param}/userStateSummary","matched","New-MgDeviceAppManagementManagedEBookUserStateSummary" +"Cmdlets","NewMgDeviceAppManagementManagedEBookUserStateSummaryDeviceState.g.cs","v1.0","New-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","POST","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates","matched","New-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"Cmdlets","NewMgDeviceAppManagementMdmWindowsInformationProtectionPolicy.g.cs","v1.0","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","POST","/deviceAppManagement/mdmWindowsInformationProtectionPolicies","matched","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"Cmdlets","NewMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","POST","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments","matched","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"Cmdlets","NewMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","POST","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles","matched","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"Cmdlets","NewMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","POST","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles","matched","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Cmdlets","NewMgDeviceAppManagementMobileApp.g.cs","v1.0","New-MgDeviceAppManagementMobileApp","POST","/deviceAppManagement/mobileApps","matched","New-MgDeviceAppManagementMobileApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsAndroidLobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/androidLobApp/assignments","matched","New-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","POST","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions","matched","New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","POST","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/containedApps","matched","New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","POST","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files","matched","New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/androidStoreApp/assignments","matched","New-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsIosLobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/iosLobApp/assignments","mismatch","New-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsIosLobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","POST","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions","mismatch","New-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","POST","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/containedApps","mismatch","New-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","POST","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files","mismatch","New-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsIosStoreAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/iosStoreApp/assignments","mismatch","New-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsIosVppAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/iosVppApp/assignments","mismatch","New-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/assignments","matched","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","POST","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions","matched","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","POST","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/containedApps","matched","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","POST","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files","matched","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsMacOSLobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/macOSLobApp/assignments","matched","New-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","POST","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions","matched","New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","POST","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/containedApps","matched","New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","POST","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files","matched","New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/assignments","matched","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","POST","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions","matched","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","POST","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/containedApps","matched","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","POST","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files","matched","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/assignments","mismatch","New-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","POST","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions","mismatch","New-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","POST","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/containedApps","mismatch","New-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","POST","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files","mismatch","New-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/assignments","matched","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","POST","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions","matched","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","POST","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/containedApps","matched","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","POST","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files","matched","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/assignments","matched","New-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/assignments","matched","New-MgDeviceAppManagementMobileAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWin32LobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/win32LobApp/assignments","matched","New-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWin32LobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","POST","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions","matched","New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","POST","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/containedApps","matched","New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","POST","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files","matched","New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsAppXAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","POST","/deviceAppManagement/mobileApps/{param}/windowsAppX/assignments","matched","New-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsAppXContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","POST","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions","matched","New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","POST","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/containedApps","matched","New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","POST","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files","matched","New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","POST","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/assignments","mismatch","New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","POST","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions","mismatch","New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","POST","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/containedApps","mismatch","New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","POST","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files","mismatch","New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/assignments","matched","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/committedContainedApps","matched","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions","matched","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/containedApps","matched","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files","matched","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile" +"Cmdlets","NewMgDeviceAppManagementMobileAppAsWindowsWebAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/windowsWebApp/assignments","matched","New-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppCategory.g.cs","v1.0","New-MgDeviceAppManagementMobileAppCategory","POST","/deviceAppManagement/mobileAppCategories","matched","New-MgDeviceAppManagementMobileAppCategory" +"Cmdlets","NewMgDeviceAppManagementMobileAppConfiguration.g.cs","v1.0","New-MgDeviceAppManagementMobileAppConfiguration","POST","/deviceAppManagement/mobileAppConfigurations","matched","New-MgDeviceAppManagementMobileAppConfiguration" +"Cmdlets","NewMgDeviceAppManagementMobileAppConfigurationAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppConfigurationAssignment","POST","/deviceAppManagement/mobileAppConfigurations/{param}/assignments","matched","New-MgDeviceAppManagementMobileAppConfigurationAssignment" +"Cmdlets","NewMgDeviceAppManagementMobileAppConfigurationDeviceStatus.g.cs","v1.0","New-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","POST","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses","matched","New-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"Cmdlets","NewMgDeviceAppManagementMobileAppConfigurationUserStatus.g.cs","v1.0","New-MgDeviceAppManagementMobileAppConfigurationUserStatus","POST","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses","matched","New-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"Cmdlets","NewMgDeviceAppManagementMobileAppRelationship.g.cs","v1.0","New-MgDeviceAppManagementMobileAppRelationship","POST","/deviceAppManagement/mobileAppRelationships","matched","New-MgDeviceAppManagementMobileAppRelationship" +"Cmdlets","NewMgDeviceAppManagementTargetedManagedAppConfiguration.g.cs","v1.0","New-MgDeviceAppManagementTargetedManagedAppConfiguration","POST","/deviceAppManagement/targetedManagedAppConfigurations","matched","New-MgDeviceAppManagementTargetedManagedAppConfiguration" +"Cmdlets","NewMgDeviceAppManagementTargetedManagedAppConfigurationApp.g.cs","v1.0","New-MgDeviceAppManagementTargetedManagedAppConfigurationApp","POST","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps","matched","New-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"Cmdlets","NewMgDeviceAppManagementTargetedManagedAppConfigurationAssignment.g.cs","v1.0","New-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","POST","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments","matched","New-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"Cmdlets","NewMgDeviceAppManagementVppToken.g.cs","v1.0","New-MgDeviceAppManagementVppToken","POST","/deviceAppManagement/vppTokens","matched","New-MgDeviceAppManagementVppToken" +"Cmdlets","NewMgDeviceAppManagementWindowsInformationProtectionPolicy.g.cs","v1.0","New-MgDeviceAppManagementWindowsInformationProtectionPolicy","POST","/deviceAppManagement/windowsInformationProtectionPolicies","matched","New-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"Cmdlets","NewMgDeviceAppManagementWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","New-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","POST","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments","matched","New-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"Cmdlets","NewMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","New-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","POST","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles","matched","New-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"Cmdlets","NewMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","New-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","POST","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles","matched","New-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Cmdlets","NewMgUserDeviceManagementTroubleshootingEvent.g.cs","v1.0","New-MgUserDeviceManagementTroubleshootingEvent","POST","/users/{param}/deviceManagementTroubleshootingEvents","matched","New-MgUserDeviceManagementTroubleshootingEvent" +"Cmdlets","NewMgUserManagedDevice.g.cs","v1.0","New-MgUserManagedDevice","POST","/users/{param}/managedDevices","matched","New-MgUserManagedDevice" +"Cmdlets","NewMgUserManagedDeviceCompliancePolicyState.g.cs","v1.0","New-MgUserManagedDeviceCompliancePolicyState","POST","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates","matched","New-MgUserManagedDeviceCompliancePolicyState" +"Cmdlets","NewMgUserManagedDeviceConfigurationState.g.cs","v1.0","New-MgUserManagedDeviceConfigurationState","POST","/users/{param}/managedDevices/{param}/deviceConfigurationStates","matched","New-MgUserManagedDeviceConfigurationState" +"Cmdlets","NewMgUserManagedDeviceLogCollectionRequest.g.cs","v1.0","New-MgUserManagedDeviceLogCollectionRequest","POST","/users/{param}/managedDevices/{param}/logCollectionRequests","mismatch","New-MgUserManagedDeviceLogCollectionResponse" +"Cmdlets","NewMgUserManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","New-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","POST","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState","matched","New-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Cmdlets","RemoveMgDeviceAppManagementAndroidManagedAppProtection.g.cs","v1.0","Remove-MgDeviceAppManagementAndroidManagedAppProtection","DELETE","/deviceAppManagement/androidManagedAppProtections/{param}","matched","Remove-MgDeviceAppManagementAndroidManagedAppProtection" +"Cmdlets","RemoveMgDeviceAppManagementAndroidManagedAppProtectionApp.g.cs","v1.0","Remove-MgDeviceAppManagementAndroidManagedAppProtectionApp","DELETE","/deviceAppManagement/androidManagedAppProtections/{param}/apps/{param}","matched","Remove-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"Cmdlets","RemoveMgDeviceAppManagementAndroidManagedAppProtectionAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","DELETE","/deviceAppManagement/androidManagedAppProtections/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"Cmdlets","RemoveMgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary.g.cs","v1.0","Remove-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary","DELETE","/deviceAppManagement/androidManagedAppProtections/{param}/deploymentSummary","matched","Remove-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary" +"Cmdlets","RemoveMgDeviceAppManagementDefaultManagedAppProtection.g.cs","v1.0","Remove-MgDeviceAppManagementDefaultManagedAppProtection","DELETE","/deviceAppManagement/defaultManagedAppProtections/{param}","matched","Remove-MgDeviceAppManagementDefaultManagedAppProtection" +"Cmdlets","RemoveMgDeviceAppManagementDefaultManagedAppProtectionApp.g.cs","v1.0","Remove-MgDeviceAppManagementDefaultManagedAppProtectionApp","DELETE","/deviceAppManagement/defaultManagedAppProtections/{param}/apps/{param}","matched","Remove-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"Cmdlets","RemoveMgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary.g.cs","v1.0","Remove-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary","DELETE","/deviceAppManagement/defaultManagedAppProtections/{param}/deploymentSummary","matched","Remove-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary" +"Cmdlets","RemoveMgDeviceAppManagementIosManagedAppProtection.g.cs","v1.0","Remove-MgDeviceAppManagementIosManagedAppProtection","DELETE","/deviceAppManagement/iosManagedAppProtections/{param}","mismatch","Remove-MgDeviceAppManagementiOSManagedAppProtection" +"Cmdlets","RemoveMgDeviceAppManagementIosManagedAppProtectionApp.g.cs","v1.0","Remove-MgDeviceAppManagementIosManagedAppProtectionApp","DELETE","/deviceAppManagement/iosManagedAppProtections/{param}/apps/{param}","mismatch","Remove-MgDeviceAppManagementiOSManagedAppProtectionApp" +"Cmdlets","RemoveMgDeviceAppManagementIosManagedAppProtectionAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementIosManagedAppProtectionAssignment","DELETE","/deviceAppManagement/iosManagedAppProtections/{param}/assignments/{param}","mismatch","Remove-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"Cmdlets","RemoveMgDeviceAppManagementIosManagedAppProtectionDeploymentSummary.g.cs","v1.0","Remove-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary","DELETE","/deviceAppManagement/iosManagedAppProtections/{param}/deploymentSummary","mismatch","Remove-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" +"Cmdlets","RemoveMgDeviceAppManagementManagedAppPolicy.g.cs","v1.0","Remove-MgDeviceAppManagementManagedAppPolicy","DELETE","/deviceAppManagement/managedAppPolicies/{param}","matched","Remove-MgDeviceAppManagementManagedAppPolicy" +"Cmdlets","RemoveMgDeviceAppManagementManagedAppRegistration.g.cs","v1.0","Remove-MgDeviceAppManagementManagedAppRegistration","DELETE","/deviceAppManagement/managedAppRegistrations/{param}","matched","Remove-MgDeviceAppManagementManagedAppRegistration" +"Cmdlets","RemoveMgDeviceAppManagementManagedAppRegistrationAppliedPolicy.g.cs","v1.0","Remove-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","DELETE","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/{param}","matched","Remove-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"Cmdlets","RemoveMgDeviceAppManagementManagedAppRegistrationIntendedPolicy.g.cs","v1.0","Remove-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","DELETE","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/{param}","matched","Remove-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"Cmdlets","RemoveMgDeviceAppManagementManagedAppRegistrationOperation.g.cs","v1.0","Remove-MgDeviceAppManagementManagedAppRegistrationOperation","DELETE","/deviceAppManagement/managedAppRegistrations/{param}/operations/{param}","matched","Remove-MgDeviceAppManagementManagedAppRegistrationOperation" +"Cmdlets","RemoveMgDeviceAppManagementManagedAppStatus.g.cs","v1.0","Remove-MgDeviceAppManagementManagedAppStatus","DELETE","/deviceAppManagement/managedAppStatuses/{param}","matched","Remove-MgDeviceAppManagementManagedAppStatus" +"Cmdlets","RemoveMgDeviceAppManagementManagedEBook.g.cs","v1.0","Remove-MgDeviceAppManagementManagedEBook","DELETE","/deviceAppManagement/managedEBooks/{param}","matched","Remove-MgDeviceAppManagementManagedEBook" +"Cmdlets","RemoveMgDeviceAppManagementManagedEBookAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementManagedEBookAssignment","DELETE","/deviceAppManagement/managedEBooks/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementManagedEBookAssignment" +"Cmdlets","RemoveMgDeviceAppManagementManagedEBookDeviceState.g.cs","v1.0","Remove-MgDeviceAppManagementManagedEBookDeviceState","DELETE","/deviceAppManagement/managedEBooks/{param}/deviceStates/{param}","matched","Remove-MgDeviceAppManagementManagedEBookDeviceState" +"Cmdlets","RemoveMgDeviceAppManagementManagedEBookInstallSummary.g.cs","v1.0","Remove-MgDeviceAppManagementManagedEBookInstallSummary","DELETE","/deviceAppManagement/managedEBooks/{param}/installSummary","matched","Remove-MgDeviceAppManagementManagedEBookInstallSummary" +"Cmdlets","RemoveMgDeviceAppManagementManagedEBookUserStateSummary.g.cs","v1.0","Remove-MgDeviceAppManagementManagedEBookUserStateSummary","DELETE","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}","matched","Remove-MgDeviceAppManagementManagedEBookUserStateSummary" +"Cmdlets","RemoveMgDeviceAppManagementManagedEBookUserStateSummaryDeviceState.g.cs","v1.0","Remove-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","DELETE","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates/{param}","matched","Remove-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"Cmdlets","RemoveMgDeviceAppManagementMdmWindowsInformationProtectionPolicy.g.cs","v1.0","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","DELETE","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}","matched","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"Cmdlets","RemoveMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","DELETE","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","DELETE","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","matched","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"Cmdlets","RemoveMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","DELETE","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","matched","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Cmdlets","RemoveMgDeviceAppManagementMobileApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileApp","DELETE","/deviceAppManagement/mobileApps/{param}","matched","Remove-MgDeviceAppManagementMobileApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsAndroidLobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/androidLobApp/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","DELETE","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","DELETE","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/containedApps/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","DELETE","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/androidStoreApp/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsIosLobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/iosLobApp/assignments/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsIosLobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","DELETE","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","DELETE","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/containedApps/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","DELETE","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsIosStoreAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/iosStoreApp/assignments/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsIosVppAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/iosVppApp/assignments/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","DELETE","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","DELETE","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/containedApps/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","DELETE","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsMacOSLobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/macOSLobApp/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","DELETE","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","DELETE","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/containedApps/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","DELETE","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","DELETE","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","DELETE","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/containedApps/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","DELETE","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/assignments/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","DELETE","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","DELETE","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/containedApps/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","DELETE","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","DELETE","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","DELETE","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/containedApps/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","DELETE","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWin32LobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/win32LobApp/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWin32LobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","DELETE","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","DELETE","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/containedApps/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","DELETE","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsAppXAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/windowsAppX/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsAppXContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","DELETE","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","DELETE","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/containedApps/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","DELETE","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/assignments/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","DELETE","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","DELETE","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/containedApps/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","DELETE","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files/{param}","mismatch","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","DELETE","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/committedContainedApps/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","DELETE","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","DELETE","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/containedApps/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","DELETE","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppAsWindowsWebAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/windowsWebApp/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppCategory.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppCategory","DELETE","/deviceAppManagement/mobileAppCategories/{param}","matched","Remove-MgDeviceAppManagementMobileAppCategory" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppConfiguration.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppConfiguration","DELETE","/deviceAppManagement/mobileAppConfigurations/{param}","matched","Remove-MgDeviceAppManagementMobileAppConfiguration" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppConfigurationAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppConfigurationAssignment","DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppConfigurationAssignment" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppConfigurationDeviceStatus.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses/{param}","matched","Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary","DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatusSummary","matched","Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppConfigurationUserStatus.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppConfigurationUserStatus","DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses/{param}","matched","Remove-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppConfigurationUserStatusSummary.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary","DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/userStatusSummary","matched","Remove-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary" +"Cmdlets","RemoveMgDeviceAppManagementMobileAppRelationship.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppRelationship","DELETE","/deviceAppManagement/mobileAppRelationships/{param}","matched","Remove-MgDeviceAppManagementMobileAppRelationship" +"Cmdlets","RemoveMgDeviceAppManagementTargetedManagedAppConfiguration.g.cs","v1.0","Remove-MgDeviceAppManagementTargetedManagedAppConfiguration","DELETE","/deviceAppManagement/targetedManagedAppConfigurations/{param}","matched","Remove-MgDeviceAppManagementTargetedManagedAppConfiguration" +"Cmdlets","RemoveMgDeviceAppManagementTargetedManagedAppConfigurationApp.g.cs","v1.0","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationApp","DELETE","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps/{param}","matched","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"Cmdlets","RemoveMgDeviceAppManagementTargetedManagedAppConfigurationAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","DELETE","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"Cmdlets","RemoveMgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary.g.cs","v1.0","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary","DELETE","/deviceAppManagement/targetedManagedAppConfigurations/{param}/deploymentSummary","matched","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary" +"Cmdlets","RemoveMgDeviceAppManagementVppToken.g.cs","v1.0","Remove-MgDeviceAppManagementVppToken","DELETE","/deviceAppManagement/vppTokens/{param}","matched","Remove-MgDeviceAppManagementVppToken" +"Cmdlets","RemoveMgDeviceAppManagementWindowsInformationProtectionPolicy.g.cs","v1.0","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicy","DELETE","/deviceAppManagement/windowsInformationProtectionPolicies/{param}","matched","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"Cmdlets","RemoveMgDeviceAppManagementWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","DELETE","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"Cmdlets","RemoveMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","DELETE","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","matched","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"Cmdlets","RemoveMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","DELETE","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","matched","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Cmdlets","RemoveMgUserDeviceManagementTroubleshootingEvent.g.cs","v1.0","Remove-MgUserDeviceManagementTroubleshootingEvent","DELETE","/users/{param}/deviceManagementTroubleshootingEvents/{param}","matched","Remove-MgUserDeviceManagementTroubleshootingEvent" +"Cmdlets","RemoveMgUserManagedDevice.g.cs","v1.0","Remove-MgUserManagedDevice","DELETE","/users/{param}/managedDevices/{param}","matched","Remove-MgUserManagedDevice" +"Cmdlets","RemoveMgUserManagedDeviceCategory.g.cs","v1.0","Remove-MgUserManagedDeviceCategory","DELETE","/users/{param}/managedDevices/{param}/deviceCategory","matched","Remove-MgUserManagedDeviceCategory" +"Cmdlets","RemoveMgUserManagedDeviceCategoryByRef.g.cs","v1.0","Remove-MgUserManagedDeviceCategoryByRef","DELETE","/users/{param}/managedDevices/{param}/deviceCategory/$ref","matched","Remove-MgUserManagedDeviceCategoryByRef" +"Cmdlets","RemoveMgUserManagedDeviceCompliancePolicyState.g.cs","v1.0","Remove-MgUserManagedDeviceCompliancePolicyState","DELETE","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates/{param}","matched","Remove-MgUserManagedDeviceCompliancePolicyState" +"Cmdlets","RemoveMgUserManagedDeviceConfigurationState.g.cs","v1.0","Remove-MgUserManagedDeviceConfigurationState","DELETE","/users/{param}/managedDevices/{param}/deviceConfigurationStates/{param}","matched","Remove-MgUserManagedDeviceConfigurationState" +"Cmdlets","RemoveMgUserManagedDeviceLogCollectionRequest.g.cs","v1.0","Remove-MgUserManagedDeviceLogCollectionRequest","DELETE","/users/{param}/managedDevices/{param}/logCollectionRequests/{param}","mismatch","Remove-MgUserManagedDeviceLogCollectionResponse" +"Cmdlets","RemoveMgUserManagedDeviceWindowsProtectionState.g.cs","v1.0","Remove-MgUserManagedDeviceWindowsProtectionState","DELETE","/users/{param}/managedDevices/{param}/windowsProtectionState","matched","Remove-MgUserManagedDeviceWindowsProtectionState" +"Cmdlets","RemoveMgUserManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","Remove-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","DELETE","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","matched","Remove-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Cmdlets","SetMgUserManagedDeviceCategoryByRef.g.cs","v1.0","Set-MgUserManagedDeviceCategoryByRef","PUT","/users/{param}/managedDevices/{param}/deviceCategory/$ref","matched","Set-MgUserManagedDeviceCategoryByRef" +"Cmdlets","UpdateMgDeviceAppManagement.g.cs","v1.0","Update-MgDeviceAppManagement","PATCH","/deviceAppManagement","matched","Update-MgDeviceAppManagement" +"Cmdlets","UpdateMgDeviceAppManagementAndroidManagedAppProtection.g.cs","v1.0","Update-MgDeviceAppManagementAndroidManagedAppProtection","PATCH","/deviceAppManagement/androidManagedAppProtections/{param}","matched","Update-MgDeviceAppManagementAndroidManagedAppProtection" +"Cmdlets","UpdateMgDeviceAppManagementAndroidManagedAppProtectionApp.g.cs","v1.0","Update-MgDeviceAppManagementAndroidManagedAppProtectionApp","PATCH","/deviceAppManagement/androidManagedAppProtections/{param}/apps/{param}","matched","Update-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"Cmdlets","UpdateMgDeviceAppManagementAndroidManagedAppProtectionAssignment.g.cs","v1.0","Update-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","PATCH","/deviceAppManagement/androidManagedAppProtections/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"Cmdlets","UpdateMgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary.g.cs","v1.0","Update-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary","PATCH","/deviceAppManagement/androidManagedAppProtections/{param}/deploymentSummary","matched","Update-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary" +"Cmdlets","UpdateMgDeviceAppManagementDefaultManagedAppProtection.g.cs","v1.0","Update-MgDeviceAppManagementDefaultManagedAppProtection","PATCH","/deviceAppManagement/defaultManagedAppProtections/{param}","matched","Update-MgDeviceAppManagementDefaultManagedAppProtection" +"Cmdlets","UpdateMgDeviceAppManagementDefaultManagedAppProtectionApp.g.cs","v1.0","Update-MgDeviceAppManagementDefaultManagedAppProtectionApp","PATCH","/deviceAppManagement/defaultManagedAppProtections/{param}/apps/{param}","matched","Update-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"Cmdlets","UpdateMgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary.g.cs","v1.0","Update-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary","PATCH","/deviceAppManagement/defaultManagedAppProtections/{param}/deploymentSummary","matched","Update-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary" +"Cmdlets","UpdateMgDeviceAppManagementIosManagedAppProtection.g.cs","v1.0","Update-MgDeviceAppManagementIosManagedAppProtection","PATCH","/deviceAppManagement/iosManagedAppProtections/{param}","mismatch","Update-MgDeviceAppManagementiOSManagedAppProtection" +"Cmdlets","UpdateMgDeviceAppManagementIosManagedAppProtectionApp.g.cs","v1.0","Update-MgDeviceAppManagementIosManagedAppProtectionApp","PATCH","/deviceAppManagement/iosManagedAppProtections/{param}/apps/{param}","mismatch","Update-MgDeviceAppManagementiOSManagedAppProtectionApp" +"Cmdlets","UpdateMgDeviceAppManagementIosManagedAppProtectionAssignment.g.cs","v1.0","Update-MgDeviceAppManagementIosManagedAppProtectionAssignment","PATCH","/deviceAppManagement/iosManagedAppProtections/{param}/assignments/{param}","mismatch","Update-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"Cmdlets","UpdateMgDeviceAppManagementIosManagedAppProtectionDeploymentSummary.g.cs","v1.0","Update-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary","PATCH","/deviceAppManagement/iosManagedAppProtections/{param}/deploymentSummary","mismatch","Update-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" +"Cmdlets","UpdateMgDeviceAppManagementManagedAppPolicy.g.cs","v1.0","Update-MgDeviceAppManagementManagedAppPolicy","PATCH","/deviceAppManagement/managedAppPolicies/{param}","matched","Update-MgDeviceAppManagementManagedAppPolicy" +"Cmdlets","UpdateMgDeviceAppManagementManagedAppRegistration.g.cs","v1.0","Update-MgDeviceAppManagementManagedAppRegistration","PATCH","/deviceAppManagement/managedAppRegistrations/{param}","matched","Update-MgDeviceAppManagementManagedAppRegistration" +"Cmdlets","UpdateMgDeviceAppManagementManagedAppRegistrationAppliedPolicy.g.cs","v1.0","Update-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","PATCH","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/{param}","matched","Update-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"Cmdlets","UpdateMgDeviceAppManagementManagedAppRegistrationIntendedPolicy.g.cs","v1.0","Update-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","PATCH","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/{param}","matched","Update-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"Cmdlets","UpdateMgDeviceAppManagementManagedAppRegistrationOperation.g.cs","v1.0","Update-MgDeviceAppManagementManagedAppRegistrationOperation","PATCH","/deviceAppManagement/managedAppRegistrations/{param}/operations/{param}","matched","Update-MgDeviceAppManagementManagedAppRegistrationOperation" +"Cmdlets","UpdateMgDeviceAppManagementManagedAppStatus.g.cs","v1.0","Update-MgDeviceAppManagementManagedAppStatus","PATCH","/deviceAppManagement/managedAppStatuses/{param}","matched","Update-MgDeviceAppManagementManagedAppStatus" +"Cmdlets","UpdateMgDeviceAppManagementManagedEBook.g.cs","v1.0","Update-MgDeviceAppManagementManagedEBook","PATCH","/deviceAppManagement/managedEBooks/{param}","matched","Update-MgDeviceAppManagementManagedEBook" +"Cmdlets","UpdateMgDeviceAppManagementManagedEBookAssignment.g.cs","v1.0","Update-MgDeviceAppManagementManagedEBookAssignment","PATCH","/deviceAppManagement/managedEBooks/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementManagedEBookAssignment" +"Cmdlets","UpdateMgDeviceAppManagementManagedEBookDeviceState.g.cs","v1.0","Update-MgDeviceAppManagementManagedEBookDeviceState","PATCH","/deviceAppManagement/managedEBooks/{param}/deviceStates/{param}","matched","Update-MgDeviceAppManagementManagedEBookDeviceState" +"Cmdlets","UpdateMgDeviceAppManagementManagedEBookInstallSummary.g.cs","v1.0","Update-MgDeviceAppManagementManagedEBookInstallSummary","PATCH","/deviceAppManagement/managedEBooks/{param}/installSummary","matched","Update-MgDeviceAppManagementManagedEBookInstallSummary" +"Cmdlets","UpdateMgDeviceAppManagementManagedEBookUserStateSummary.g.cs","v1.0","Update-MgDeviceAppManagementManagedEBookUserStateSummary","PATCH","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}","matched","Update-MgDeviceAppManagementManagedEBookUserStateSummary" +"Cmdlets","UpdateMgDeviceAppManagementManagedEBookUserStateSummaryDeviceState.g.cs","v1.0","Update-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","PATCH","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates/{param}","matched","Update-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"Cmdlets","UpdateMgDeviceAppManagementMdmWindowsInformationProtectionPolicy.g.cs","v1.0","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","PATCH","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}","matched","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"Cmdlets","UpdateMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","PATCH","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","PATCH","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","matched","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"Cmdlets","UpdateMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","PATCH","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","matched","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Cmdlets","UpdateMgDeviceAppManagementMobileApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileApp","PATCH","/deviceAppManagement/mobileApps/{param}","matched","Update-MgDeviceAppManagementMobileApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsAndroidLobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/androidLobApp/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","PATCH","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}","matched","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","PATCH","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/containedApps/{param}","matched","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","PATCH","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files/{param}","matched","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/androidStoreApp/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsIosLobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/iosLobApp/assignments/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsIosLobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","PATCH","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","PATCH","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/containedApps/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","PATCH","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsIosStoreAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/iosStoreApp/assignments/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsIosVppAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/iosVppApp/assignments/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","PATCH","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}","matched","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","PATCH","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/containedApps/{param}","matched","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","PATCH","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files/{param}","matched","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsMacOSLobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/macOSLobApp/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","PATCH","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}","matched","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","PATCH","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/containedApps/{param}","matched","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","PATCH","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files/{param}","matched","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","PATCH","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}","matched","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","PATCH","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/containedApps/{param}","matched","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","PATCH","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files/{param}","matched","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/assignments/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","PATCH","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","PATCH","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/containedApps/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","PATCH","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","PATCH","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}","matched","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","PATCH","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/containedApps/{param}","matched","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","PATCH","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files/{param}","matched","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWin32LobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/win32LobApp/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWin32LobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","PATCH","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","PATCH","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/containedApps/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","PATCH","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsAppXAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/windowsAppX/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsAppXContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","PATCH","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","PATCH","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/containedApps/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","PATCH","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/assignments/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","PATCH","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","PATCH","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/containedApps/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","PATCH","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files/{param}","mismatch","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","PATCH","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/committedContainedApps/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","PATCH","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","PATCH","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/containedApps/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","PATCH","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppAsWindowsWebAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/windowsWebApp/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppCategory.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppCategory","PATCH","/deviceAppManagement/mobileAppCategories/{param}","matched","Update-MgDeviceAppManagementMobileAppCategory" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppConfiguration.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppConfiguration","PATCH","/deviceAppManagement/mobileAppConfigurations/{param}","matched","Update-MgDeviceAppManagementMobileAppConfiguration" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppConfigurationAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppConfigurationAssignment","PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppConfigurationAssignment" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppConfigurationDeviceStatus.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses/{param}","matched","Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary","PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatusSummary","matched","Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppConfigurationUserStatus.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppConfigurationUserStatus","PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses/{param}","matched","Update-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppConfigurationUserStatusSummary.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary","PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/userStatusSummary","matched","Update-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary" +"Cmdlets","UpdateMgDeviceAppManagementMobileAppRelationship.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppRelationship","PATCH","/deviceAppManagement/mobileAppRelationships/{param}","mismatch","Update-MgDeviceAppManagementMultipleMobileAppRelationship" +"Cmdlets","UpdateMgDeviceAppManagementTargetedManagedAppConfiguration.g.cs","v1.0","Update-MgDeviceAppManagementTargetedManagedAppConfiguration","PATCH","/deviceAppManagement/targetedManagedAppConfigurations/{param}","matched","Update-MgDeviceAppManagementTargetedManagedAppConfiguration" +"Cmdlets","UpdateMgDeviceAppManagementTargetedManagedAppConfigurationApp.g.cs","v1.0","Update-MgDeviceAppManagementTargetedManagedAppConfigurationApp","PATCH","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps/{param}","matched","Update-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"Cmdlets","UpdateMgDeviceAppManagementTargetedManagedAppConfigurationAssignment.g.cs","v1.0","Update-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","PATCH","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"Cmdlets","UpdateMgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary.g.cs","v1.0","Update-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary","PATCH","/deviceAppManagement/targetedManagedAppConfigurations/{param}/deploymentSummary","matched","Update-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary" +"Cmdlets","UpdateMgDeviceAppManagementVppToken.g.cs","v1.0","Update-MgDeviceAppManagementVppToken","PATCH","/deviceAppManagement/vppTokens/{param}","matched","Update-MgDeviceAppManagementVppToken" +"Cmdlets","UpdateMgDeviceAppManagementWindowsInformationProtectionPolicy.g.cs","v1.0","Update-MgDeviceAppManagementWindowsInformationProtectionPolicy","PATCH","/deviceAppManagement/windowsInformationProtectionPolicies/{param}","matched","Update-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"Cmdlets","UpdateMgDeviceAppManagementWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","PATCH","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"Cmdlets","UpdateMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","PATCH","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","matched","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"Cmdlets","UpdateMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","PATCH","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","matched","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Cmdlets","UpdateMgUserDeviceManagementTroubleshootingEvent.g.cs","v1.0","Update-MgUserDeviceManagementTroubleshootingEvent","PATCH","/users/{param}/deviceManagementTroubleshootingEvents/{param}","matched","Update-MgUserDeviceManagementTroubleshootingEvent" +"Cmdlets","UpdateMgUserManagedDevice.g.cs","v1.0","Update-MgUserManagedDevice","PATCH","/users/{param}/managedDevices/{param}","matched","Update-MgUserManagedDevice" +"Cmdlets","UpdateMgUserManagedDeviceCategory.g.cs","v1.0","Update-MgUserManagedDeviceCategory","PATCH","/users/{param}/managedDevices/{param}/deviceCategory","matched","Update-MgUserManagedDeviceCategory" +"Cmdlets","UpdateMgUserManagedDeviceCompliancePolicyState.g.cs","v1.0","Update-MgUserManagedDeviceCompliancePolicyState","PATCH","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates/{param}","matched","Update-MgUserManagedDeviceCompliancePolicyState" +"Cmdlets","UpdateMgUserManagedDeviceConfigurationState.g.cs","v1.0","Update-MgUserManagedDeviceConfigurationState","PATCH","/users/{param}/managedDevices/{param}/deviceConfigurationStates/{param}","matched","Update-MgUserManagedDeviceConfigurationState" +"Cmdlets","UpdateMgUserManagedDeviceLogCollectionRequest.g.cs","v1.0","Update-MgUserManagedDeviceLogCollectionRequest","PATCH","/users/{param}/managedDevices/{param}/logCollectionRequests/{param}","mismatch","Update-MgUserManagedDeviceLogCollectionResponse" +"Cmdlets","UpdateMgUserManagedDeviceWindowsProtectionState.g.cs","v1.0","Update-MgUserManagedDeviceWindowsProtectionState","PATCH","/users/{param}/managedDevices/{param}/windowsProtectionState","matched","Update-MgUserManagedDeviceWindowsProtectionState" +"Cmdlets","UpdateMgUserManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","Update-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","PATCH","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","matched","Update-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Cmdlets","GetMgAdminServiceAnnouncement.g.cs","v1.0","Get-MgAdminServiceAnnouncement","GET","/admin/serviceAnnouncement","no-oracle","" +"Cmdlets","GetMgAdminServiceAnnouncementHealthOverview_Get.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverview","GET","/admin/serviceAnnouncement/healthOverviews/{param}","mismatch","Get-MgServiceAnnouncementHealthOverview" +"Cmdlets","GetMgAdminServiceAnnouncementHealthOverview_List.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverview","GET","/admin/serviceAnnouncement/healthOverviews","mismatch","Get-MgServiceAnnouncementHealthOverview" +"Cmdlets","GetMgAdminServiceAnnouncementHealthOverview.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverview","","","dispatcher","" +"Cmdlets","GetMgAdminServiceAnnouncementHealthOverviewCount.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverviewCount","GET","/admin/serviceAnnouncement/healthOverviews/$count","mismatch","Get-MgServiceAnnouncementHealthOverviewCount" +"Cmdlets","GetMgAdminServiceAnnouncementHealthOverviewIssue_Get.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverviewIssue","GET","/admin/serviceAnnouncement/healthOverviews/{param}/issues/{param}","mismatch","Get-MgServiceAnnouncementHealthOverviewIssue" +"Cmdlets","GetMgAdminServiceAnnouncementHealthOverviewIssue_List.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverviewIssue","GET","/admin/serviceAnnouncement/healthOverviews/{param}/issues","mismatch","Get-MgServiceAnnouncementHealthOverviewIssue" +"Cmdlets","GetMgAdminServiceAnnouncementHealthOverviewIssue.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverviewIssue","","","dispatcher","" +"Cmdlets","GetMgAdminServiceAnnouncementHealthOverviewIssueCount.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverviewIssueCount","GET","/admin/serviceAnnouncement/healthOverviews/{param}/issues/$count","mismatch","Get-MgServiceAnnouncementHealthOverviewIssueCount" +"Cmdlets","GetMgAdminServiceAnnouncementHealthOverviewIssueIncidentReport.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverviewIssueIncidentReport","GET","/admin/serviceAnnouncement/healthOverviews/{param}/issues/{param}/incidentReport","mismatch","Invoke-MgReportServiceAnnouncementHealthOverviewIssueIncident" +"Cmdlets","GetMgAdminServiceAnnouncementIssue_Get.g.cs","v1.0","Get-MgAdminServiceAnnouncementIssue","GET","/admin/serviceAnnouncement/issues/{param}","mismatch","Get-MgServiceAnnouncementIssue" +"Cmdlets","GetMgAdminServiceAnnouncementIssue_List.g.cs","v1.0","Get-MgAdminServiceAnnouncementIssue","GET","/admin/serviceAnnouncement/issues","mismatch","Get-MgServiceAnnouncementIssue" +"Cmdlets","GetMgAdminServiceAnnouncementIssue.g.cs","v1.0","Get-MgAdminServiceAnnouncementIssue","","","dispatcher","" +"Cmdlets","GetMgAdminServiceAnnouncementIssueCount.g.cs","v1.0","Get-MgAdminServiceAnnouncementIssueCount","GET","/admin/serviceAnnouncement/issues/$count","mismatch","Get-MgServiceAnnouncementIssueCount" +"Cmdlets","GetMgAdminServiceAnnouncementIssueIncidentReport.g.cs","v1.0","Get-MgAdminServiceAnnouncementIssueIncidentReport","GET","/admin/serviceAnnouncement/issues/{param}/incidentReport","mismatch","Invoke-MgReportServiceAnnouncementIssueIncident" +"Cmdlets","GetMgAdminServiceAnnouncementMessage_Get.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessage","GET","/admin/serviceAnnouncement/messages/{param}","mismatch","Get-MgServiceAnnouncementMessage" +"Cmdlets","GetMgAdminServiceAnnouncementMessage_List.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessage","GET","/admin/serviceAnnouncement/messages","mismatch","Get-MgServiceAnnouncementMessage" +"Cmdlets","GetMgAdminServiceAnnouncementMessage.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessage","","","dispatcher","" +"Cmdlets","GetMgAdminServiceAnnouncementMessageAttachment_Get.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessageAttachment","GET","/admin/serviceAnnouncement/messages/{param}/attachments/{param}","mismatch","Get-MgServiceAnnouncementMessageAttachment" +"Cmdlets","GetMgAdminServiceAnnouncementMessageAttachment_List.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessageAttachment","GET","/admin/serviceAnnouncement/messages/{param}/attachments","mismatch","Get-MgServiceAnnouncementMessageAttachment" +"Cmdlets","GetMgAdminServiceAnnouncementMessageAttachment.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessageAttachment","","","dispatcher","" +"Cmdlets","GetMgAdminServiceAnnouncementMessageAttachmentArchive.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessageAttachmentArchive","GET","/admin/serviceAnnouncement/messages/{param}/attachmentsArchive","mismatch","Get-MgServiceAnnouncementMessageAttachmentArchive" +"Cmdlets","GetMgAdminServiceAnnouncementMessageAttachmentContent.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessageAttachmentContent","GET","/admin/serviceAnnouncement/messages/{param}/attachments/{param}/content","mismatch","Get-MgServiceAnnouncementMessageAttachmentContent" +"Cmdlets","GetMgAdminServiceAnnouncementMessageAttachmentCount.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessageAttachmentCount","GET","/admin/serviceAnnouncement/messages/{param}/attachments/$count","mismatch","Get-MgServiceAnnouncementMessageAttachmentCount" +"Cmdlets","GetMgAdminServiceAnnouncementMessageCount.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessageCount","GET","/admin/serviceAnnouncement/messages/$count","mismatch","Get-MgServiceAnnouncementMessageCount" +"Cmdlets","InvokeMgAdminServiceAnnouncementMessageArchive.g.cs","v1.0","Invoke-MgAdminServiceAnnouncementMessageArchive","POST","/admin/serviceAnnouncement/messages/archive","mismatch","Invoke-MgArchiveServiceAnnouncementMessage" +"Cmdlets","InvokeMgAdminServiceAnnouncementMessageFavorite.g.cs","v1.0","Invoke-MgAdminServiceAnnouncementMessageFavorite","POST","/admin/serviceAnnouncement/messages/favorite","mismatch","Invoke-MgFavoriteServiceAnnouncementMessage" +"Cmdlets","InvokeMgAdminServiceAnnouncementMessageMarkRead.g.cs","v1.0","Invoke-MgAdminServiceAnnouncementMessageMarkRead","POST","/admin/serviceAnnouncement/messages/markRead","mismatch","Invoke-MgMarkServiceAnnouncementMessageRead" +"Cmdlets","InvokeMgAdminServiceAnnouncementMessageMarkUnread.g.cs","v1.0","Invoke-MgAdminServiceAnnouncementMessageMarkUnread","POST","/admin/serviceAnnouncement/messages/markUnread","mismatch","Invoke-MgMarkServiceAnnouncementMessageUnread" +"Cmdlets","InvokeMgAdminServiceAnnouncementMessageUnarchive.g.cs","v1.0","Invoke-MgAdminServiceAnnouncementMessageUnarchive","POST","/admin/serviceAnnouncement/messages/unarchive","mismatch","Invoke-MgUnarchiveServiceAnnouncementMessage" +"Cmdlets","InvokeMgAdminServiceAnnouncementMessageUnfavorite.g.cs","v1.0","Invoke-MgAdminServiceAnnouncementMessageUnfavorite","POST","/admin/serviceAnnouncement/messages/unfavorite","mismatch","Invoke-MgUnfavoriteServiceAnnouncementMessage" +"Cmdlets","NewMgAdminServiceAnnouncementHealthOverview.g.cs","v1.0","New-MgAdminServiceAnnouncementHealthOverview","POST","/admin/serviceAnnouncement/healthOverviews","no-oracle","" +"Cmdlets","NewMgAdminServiceAnnouncementHealthOverviewIssue.g.cs","v1.0","New-MgAdminServiceAnnouncementHealthOverviewIssue","POST","/admin/serviceAnnouncement/healthOverviews/{param}/issues","no-oracle","" +"Cmdlets","NewMgAdminServiceAnnouncementIssue.g.cs","v1.0","New-MgAdminServiceAnnouncementIssue","POST","/admin/serviceAnnouncement/issues","no-oracle","" +"Cmdlets","NewMgAdminServiceAnnouncementMessage.g.cs","v1.0","New-MgAdminServiceAnnouncementMessage","POST","/admin/serviceAnnouncement/messages","no-oracle","" +"Cmdlets","NewMgAdminServiceAnnouncementMessageAttachment.g.cs","v1.0","New-MgAdminServiceAnnouncementMessageAttachment","POST","/admin/serviceAnnouncement/messages/{param}/attachments","no-oracle","" +"Cmdlets","RemoveMgAdminServiceAnnouncement.g.cs","v1.0","Remove-MgAdminServiceAnnouncement","DELETE","/admin/serviceAnnouncement","no-oracle","" +"Cmdlets","RemoveMgAdminServiceAnnouncementHealthOverview.g.cs","v1.0","Remove-MgAdminServiceAnnouncementHealthOverview","DELETE","/admin/serviceAnnouncement/healthOverviews/{param}","no-oracle","" +"Cmdlets","RemoveMgAdminServiceAnnouncementHealthOverviewIssue.g.cs","v1.0","Remove-MgAdminServiceAnnouncementHealthOverviewIssue","DELETE","/admin/serviceAnnouncement/healthOverviews/{param}/issues/{param}","no-oracle","" +"Cmdlets","RemoveMgAdminServiceAnnouncementIssue.g.cs","v1.0","Remove-MgAdminServiceAnnouncementIssue","DELETE","/admin/serviceAnnouncement/issues/{param}","no-oracle","" +"Cmdlets","RemoveMgAdminServiceAnnouncementMessage.g.cs","v1.0","Remove-MgAdminServiceAnnouncementMessage","DELETE","/admin/serviceAnnouncement/messages/{param}","no-oracle","" +"Cmdlets","RemoveMgAdminServiceAnnouncementMessageAttachment.g.cs","v1.0","Remove-MgAdminServiceAnnouncementMessageAttachment","DELETE","/admin/serviceAnnouncement/messages/{param}/attachments/{param}","no-oracle","" +"Cmdlets","RemoveMgAdminServiceAnnouncementMessageAttachmentArchive.g.cs","v1.0","Remove-MgAdminServiceAnnouncementMessageAttachmentArchive","DELETE","/admin/serviceAnnouncement/messages/{param}/attachmentsArchive","no-oracle","" +"Cmdlets","RemoveMgAdminServiceAnnouncementMessageAttachmentContent.g.cs","v1.0","Remove-MgAdminServiceAnnouncementMessageAttachmentContent","DELETE","/admin/serviceAnnouncement/messages/{param}/attachments/{param}/content","no-oracle","" +"Cmdlets","SetMgAdminServiceAnnouncementMessageAttachmentContent.g.cs","v1.0","Set-MgAdminServiceAnnouncementMessageAttachmentContent","PUT","/admin/serviceAnnouncement/messages/{param}/attachments/{param}/content","no-oracle","" +"Cmdlets","UpdateMgAdminServiceAnnouncement.g.cs","v1.0","Update-MgAdminServiceAnnouncement","PATCH","/admin/serviceAnnouncement","no-oracle","" +"Cmdlets","UpdateMgAdminServiceAnnouncementHealthOverview.g.cs","v1.0","Update-MgAdminServiceAnnouncementHealthOverview","PATCH","/admin/serviceAnnouncement/healthOverviews/{param}","no-oracle","" +"Cmdlets","UpdateMgAdminServiceAnnouncementHealthOverviewIssue.g.cs","v1.0","Update-MgAdminServiceAnnouncementHealthOverviewIssue","PATCH","/admin/serviceAnnouncement/healthOverviews/{param}/issues/{param}","no-oracle","" +"Cmdlets","UpdateMgAdminServiceAnnouncementIssue.g.cs","v1.0","Update-MgAdminServiceAnnouncementIssue","PATCH","/admin/serviceAnnouncement/issues/{param}","no-oracle","" +"Cmdlets","UpdateMgAdminServiceAnnouncementMessage.g.cs","v1.0","Update-MgAdminServiceAnnouncementMessage","PATCH","/admin/serviceAnnouncement/messages/{param}","no-oracle","" +"Cmdlets","UpdateMgAdminServiceAnnouncementMessageAttachment.g.cs","v1.0","Update-MgAdminServiceAnnouncementMessageAttachment","PATCH","/admin/serviceAnnouncement/messages/{param}/attachments/{param}","no-oracle","" +"Cmdlets","GetMgDirectoryObject_Get.g.cs","v1.0","Get-MgDirectoryObject","GET","/directoryObjects/{param}","matched","Get-MgDirectoryObject" +"Cmdlets","GetMgDirectoryObject_List.g.cs","v1.0","Get-MgDirectoryObject","GET","/directoryObjects","matched","Get-MgDirectoryObject" +"Cmdlets","GetMgDirectoryObject.g.cs","v1.0","Get-MgDirectoryObject","","","dispatcher","" +"Cmdlets","GetMgDirectoryObjectCount.g.cs","v1.0","Get-MgDirectoryObjectCount","GET","/directoryObjects/$count","matched","Get-MgDirectoryObjectCount" +"Cmdlets","GetMgDirectoryObjectDelta.g.cs","v1.0","Get-MgDirectoryObjectDelta","GET","/directoryObjects/delta","matched","Get-MgDirectoryObjectDelta" +"Cmdlets","InvokeMgDirectoryObjectCheckMemberGroups.g.cs","v1.0","Invoke-MgDirectoryObjectCheckMemberGroups","POST","/directoryObjects/{param}/checkMemberGroups","mismatch","Confirm-MgDirectoryObjectMemberGroup" +"Cmdlets","InvokeMgDirectoryObjectCheckMemberObjects.g.cs","v1.0","Invoke-MgDirectoryObjectCheckMemberObjects","POST","/directoryObjects/{param}/checkMemberObjects","mismatch","Confirm-MgDirectoryObjectMemberObject" +"Cmdlets","InvokeMgDirectoryObjectGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgDirectoryObjectGetAvailableExtensionProperties","POST","/directoryObjects/getAvailableExtensionProperties","mismatch","Get-MgDirectoryObjectAvailableExtensionProperty" +"Cmdlets","InvokeMgDirectoryObjectGetByIds.g.cs","v1.0","Invoke-MgDirectoryObjectGetByIds","POST","/directoryObjects/getByIds","mismatch","Get-MgDirectoryObjectById" +"Cmdlets","InvokeMgDirectoryObjectGetMemberGroups.g.cs","v1.0","Invoke-MgDirectoryObjectGetMemberGroups","POST","/directoryObjects/{param}/getMemberGroups","mismatch","Get-MgDirectoryObjectMemberGroup" +"Cmdlets","InvokeMgDirectoryObjectGetMemberObjects.g.cs","v1.0","Invoke-MgDirectoryObjectGetMemberObjects","POST","/directoryObjects/{param}/getMemberObjects","mismatch","Get-MgDirectoryObjectMemberObject" +"Cmdlets","InvokeMgDirectoryObjectRestore.g.cs","v1.0","Invoke-MgDirectoryObjectRestore","POST","/directoryObjects/{param}/restore","no-oracle","" +"Cmdlets","InvokeMgDirectoryObjectValidateProperties.g.cs","v1.0","Invoke-MgDirectoryObjectValidateProperties","POST","/directoryObjects/validateProperties","mismatch","Test-MgDirectoryObjectProperty" +"Cmdlets","NewMgDirectoryObject.g.cs","v1.0","New-MgDirectoryObject","POST","/directoryObjects","matched","New-MgDirectoryObject" +"Cmdlets","RemoveMgDirectoryObject.g.cs","v1.0","Remove-MgDirectoryObject","DELETE","/directoryObjects/{param}","matched","Remove-MgDirectoryObject" +"Cmdlets","UpdateMgDirectoryObject.g.cs","v1.0","Update-MgDirectoryObject","PATCH","/directoryObjects/{param}","matched","Update-MgDirectoryObject" +"Cmdlets","GetMgEducation.g.cs","v1.0","Get-MgEducation","GET","/education","matched","Get-MgEducationRoot" +"Cmdlets","GetMgEducationClass_Get.g.cs","v1.0","Get-MgEducationClass","GET","/education/classes/{param}","matched","Get-MgEducationClass" +"Cmdlets","GetMgEducationClass_List.g.cs","v1.0","Get-MgEducationClass","GET","/education/classes","matched","Get-MgEducationClass" +"Cmdlets","GetMgEducationClass.g.cs","v1.0","Get-MgEducationClass","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignment_Get.g.cs","v1.0","Get-MgEducationClassAssignment","GET","/education/classes/{param}/assignments/{param}","matched","Get-MgEducationClassAssignment" +"Cmdlets","GetMgEducationClassAssignment_List.g.cs","v1.0","Get-MgEducationClassAssignment","GET","/education/classes/{param}/assignments","matched","Get-MgEducationClassAssignment" +"Cmdlets","GetMgEducationClassAssignment.g.cs","v1.0","Get-MgEducationClassAssignment","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignmentCategory_Get.g.cs","v1.0","Get-MgEducationClassAssignmentCategory","GET","/education/classes/{param}/assignmentCategories/{param}","matched","Get-MgEducationClassAssignmentCategory" +"Cmdlets","GetMgEducationClassAssignmentCategory_List.g.cs","v1.0","Get-MgEducationClassAssignmentCategory","GET","/education/classes/{param}/assignmentCategories","matched","Get-MgEducationClassAssignmentCategory" +"Cmdlets","GetMgEducationClassAssignmentCategory.g.cs","v1.0","Get-MgEducationClassAssignmentCategory","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignmentCategoryByRef.g.cs","v1.0","Get-MgEducationClassAssignmentCategoryByRef","GET","/education/classes/{param}/assignments/{param}/categories/$ref","matched","Get-MgEducationClassAssignmentCategoryByRef" +"Cmdlets","GetMgEducationClassAssignmentCategoryCount.g.cs","v1.0","Get-MgEducationClassAssignmentCategoryCount","GET","/education/classes/{param}/assignmentCategories/$count","matched","Get-MgEducationClassAssignmentCategoryCount" +"Cmdlets","GetMgEducationClassAssignmentCategoryDelta.g.cs","v1.0","Get-MgEducationClassAssignmentCategoryDelta","GET","/education/classes/{param}/assignmentCategories/delta","matched","Get-MgEducationClassAssignmentCategoryDelta" +"Cmdlets","GetMgEducationClassAssignmentCount.g.cs","v1.0","Get-MgEducationClassAssignmentCount","GET","/education/classes/{param}/assignments/$count","matched","Get-MgEducationClassAssignmentCount" +"Cmdlets","GetMgEducationClassAssignmentDefault.g.cs","v1.0","Get-MgEducationClassAssignmentDefault","GET","/education/classes/{param}/assignmentDefaults","matched","Get-MgEducationClassAssignmentDefault" +"Cmdlets","GetMgEducationClassAssignmentDelta.g.cs","v1.0","Get-MgEducationClassAssignmentDelta","GET","/education/classes/{param}/assignments/delta","matched","Get-MgEducationClassAssignmentDelta" +"Cmdlets","GetMgEducationClassAssignmentGradingCategory.g.cs","v1.0","Get-MgEducationClassAssignmentGradingCategory","GET","/education/classes/{param}/assignments/{param}/gradingCategory","matched","Get-MgEducationClassAssignmentGradingCategory" +"Cmdlets","GetMgEducationClassAssignmentGradingScheme.g.cs","v1.0","Get-MgEducationClassAssignmentGradingScheme","GET","/education/classes/{param}/assignments/{param}/gradingScheme","matched","Get-MgEducationClassAssignmentGradingScheme" +"Cmdlets","GetMgEducationClassAssignmentResource_Get.g.cs","v1.0","Get-MgEducationClassAssignmentResource","GET","/education/classes/{param}/assignments/{param}/resources/{param}","matched","Get-MgEducationClassAssignmentResource" +"Cmdlets","GetMgEducationClassAssignmentResource_List.g.cs","v1.0","Get-MgEducationClassAssignmentResource","GET","/education/classes/{param}/assignments/{param}/resources","matched","Get-MgEducationClassAssignmentResource" +"Cmdlets","GetMgEducationClassAssignmentResource.g.cs","v1.0","Get-MgEducationClassAssignmentResource","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignmentResourceCount.g.cs","v1.0","Get-MgEducationClassAssignmentResourceCount","GET","/education/classes/{param}/assignments/{param}/resources/$count","matched","Get-MgEducationClassAssignmentResourceCount" +"Cmdlets","GetMgEducationClassAssignmentResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationClassAssignmentResourceDependentResource","GET","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Get-MgEducationClassAssignmentResourceDependentResource" +"Cmdlets","GetMgEducationClassAssignmentResourceDependentResource_List.g.cs","v1.0","Get-MgEducationClassAssignmentResourceDependentResource","GET","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources","matched","Get-MgEducationClassAssignmentResourceDependentResource" +"Cmdlets","GetMgEducationClassAssignmentResourceDependentResource.g.cs","v1.0","Get-MgEducationClassAssignmentResourceDependentResource","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignmentResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationClassAssignmentResourceDependentResourceCount","GET","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources/$count","matched","Get-MgEducationClassAssignmentResourceDependentResourceCount" +"Cmdlets","GetMgEducationClassAssignmentRubric.g.cs","v1.0","Get-MgEducationClassAssignmentRubric","GET","/education/classes/{param}/assignments/{param}/rubric","matched","Get-MgEducationClassAssignmentRubric" +"Cmdlets","GetMgEducationClassAssignmentRubricByRef.g.cs","v1.0","Get-MgEducationClassAssignmentRubricByRef","GET","/education/classes/{param}/assignments/{param}/rubric/$ref","matched","Get-MgEducationClassAssignmentRubricByRef" +"Cmdlets","GetMgEducationClassAssignmentSetting.g.cs","v1.0","Get-MgEducationClassAssignmentSetting","GET","/education/classes/{param}/assignmentSettings","matched","Get-MgEducationClassAssignmentSetting" +"Cmdlets","GetMgEducationClassAssignmentSettingDefaultGradingScheme.g.cs","v1.0","Get-MgEducationClassAssignmentSettingDefaultGradingScheme","GET","/education/classes/{param}/assignmentSettings/defaultGradingScheme","matched","Get-MgEducationClassAssignmentSettingDefaultGradingScheme" +"Cmdlets","GetMgEducationClassAssignmentSettingGradingCategory_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingCategory","GET","/education/classes/{param}/assignmentSettings/gradingCategories/{param}","matched","Get-MgEducationClassAssignmentSettingGradingCategory" +"Cmdlets","GetMgEducationClassAssignmentSettingGradingCategory_List.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingCategory","GET","/education/classes/{param}/assignmentSettings/gradingCategories","matched","Get-MgEducationClassAssignmentSettingGradingCategory" +"Cmdlets","GetMgEducationClassAssignmentSettingGradingCategory.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingCategory","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignmentSettingGradingCategoryCount.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingCategoryCount","GET","/education/classes/{param}/assignmentSettings/gradingCategories/$count","matched","Get-MgEducationClassAssignmentSettingGradingCategoryCount" +"Cmdlets","GetMgEducationClassAssignmentSettingGradingScheme_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingScheme","GET","/education/classes/{param}/assignmentSettings/gradingSchemes/{param}","matched","Get-MgEducationClassAssignmentSettingGradingScheme" +"Cmdlets","GetMgEducationClassAssignmentSettingGradingScheme_List.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingScheme","GET","/education/classes/{param}/assignmentSettings/gradingSchemes","matched","Get-MgEducationClassAssignmentSettingGradingScheme" +"Cmdlets","GetMgEducationClassAssignmentSettingGradingScheme.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingScheme","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignmentSettingGradingSchemeCount.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingSchemeCount","GET","/education/classes/{param}/assignmentSettings/gradingSchemes/$count","matched","Get-MgEducationClassAssignmentSettingGradingSchemeCount" +"Cmdlets","GetMgEducationClassAssignmentSubmission_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSubmission","GET","/education/classes/{param}/assignments/{param}/submissions/{param}","matched","Get-MgEducationClassAssignmentSubmission" +"Cmdlets","GetMgEducationClassAssignmentSubmission_List.g.cs","v1.0","Get-MgEducationClassAssignmentSubmission","GET","/education/classes/{param}/assignments/{param}/submissions","matched","Get-MgEducationClassAssignmentSubmission" +"Cmdlets","GetMgEducationClassAssignmentSubmission.g.cs","v1.0","Get-MgEducationClassAssignmentSubmission","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignmentSubmissionCount.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionCount","GET","/education/classes/{param}/assignments/{param}/submissions/$count","matched","Get-MgEducationClassAssignmentSubmissionCount" +"Cmdlets","GetMgEducationClassAssignmentSubmissionOutcome_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionOutcome","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Get-MgEducationClassAssignmentSubmissionOutcome" +"Cmdlets","GetMgEducationClassAssignmentSubmissionOutcome_List.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionOutcome","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes","matched","Get-MgEducationClassAssignmentSubmissionOutcome" +"Cmdlets","GetMgEducationClassAssignmentSubmissionOutcome.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionOutcome","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignmentSubmissionOutcomeCount.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionOutcomeCount","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes/$count","matched","Get-MgEducationClassAssignmentSubmissionOutcomeCount" +"Cmdlets","GetMgEducationClassAssignmentSubmissionResource_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}","matched","Get-MgEducationClassAssignmentSubmissionResource" +"Cmdlets","GetMgEducationClassAssignmentSubmissionResource_List.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources","matched","Get-MgEducationClassAssignmentSubmissionResource" +"Cmdlets","GetMgEducationClassAssignmentSubmissionResource.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResource","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignmentSubmissionResourceCount.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResourceCount","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/$count","matched","Get-MgEducationClassAssignmentSubmissionResourceCount" +"Cmdlets","GetMgEducationClassAssignmentSubmissionResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResourceDependentResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Get-MgEducationClassAssignmentSubmissionResourceDependentResource" +"Cmdlets","GetMgEducationClassAssignmentSubmissionResourceDependentResource_List.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResourceDependentResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","matched","Get-MgEducationClassAssignmentSubmissionResourceDependentResource" +"Cmdlets","GetMgEducationClassAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResourceDependentResource","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignmentSubmissionResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResourceDependentResourceCount","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/$count","matched","Get-MgEducationClassAssignmentSubmissionResourceDependentResourceCount" +"Cmdlets","GetMgEducationClassAssignmentSubmissionSubmittedResource_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Get-MgEducationClassAssignmentSubmissionSubmittedResource" +"Cmdlets","GetMgEducationClassAssignmentSubmissionSubmittedResource_List.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources","matched","Get-MgEducationClassAssignmentSubmissionSubmittedResource" +"Cmdlets","GetMgEducationClassAssignmentSubmissionSubmittedResource.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResource","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignmentSubmissionSubmittedResourceCount.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResourceCount","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/$count","matched","Get-MgEducationClassAssignmentSubmissionSubmittedResourceCount" +"Cmdlets","GetMgEducationClassAssignmentSubmissionSubmittedResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","GetMgEducationClassAssignmentSubmissionSubmittedResourceDependentResource_List.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","matched","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","GetMgEducationClassAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","","","dispatcher","" +"Cmdlets","GetMgEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/$count","matched","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount" +"Cmdlets","GetMgEducationClassCount.g.cs","v1.0","Get-MgEducationClassCount","GET","/education/classes/$count","matched","Get-MgEducationClassCount" +"Cmdlets","GetMgEducationClassDelta.g.cs","v1.0","Get-MgEducationClassDelta","GET","/education/classes/delta","matched","Get-MgEducationClassDelta" +"Cmdlets","GetMgEducationClassGetRecentlyModifiedSubmissions.g.cs","v1.0","Get-MgEducationClassGetRecentlyModifiedSubmissions","GET","/education/classes/{param}/getRecentlyModifiedSubmissions","mismatch","Get-MgEducationClassRecentlyModifiedSubmission" +"Cmdlets","GetMgEducationClassGroup.g.cs","v1.0","Get-MgEducationClassGroup","GET","/education/classes/{param}/group","matched","Get-MgEducationClassGroup" +"Cmdlets","GetMgEducationClassGroupServiceProvisioningError.g.cs","v1.0","Get-MgEducationClassGroupServiceProvisioningError","GET","/education/classes/{param}/group/serviceProvisioningErrors","matched","Get-MgEducationClassGroupServiceProvisioningError" +"Cmdlets","GetMgEducationClassGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgEducationClassGroupServiceProvisioningErrorCount","GET","/education/classes/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgEducationClassGroupServiceProvisioningErrorCount" +"Cmdlets","GetMgEducationClassMember.g.cs","v1.0","Get-MgEducationClassMember","GET","/education/classes/{param}/members","matched","Get-MgEducationClassMember" +"Cmdlets","GetMgEducationClassMemberByRef.g.cs","v1.0","Get-MgEducationClassMemberByRef","GET","/education/classes/{param}/members/$ref","matched","Get-MgEducationClassMemberByRef" +"Cmdlets","GetMgEducationClassMemberCount.g.cs","v1.0","Get-MgEducationClassMemberCount","GET","/education/classes/{param}/members/$count","matched","Get-MgEducationClassMemberCount" +"Cmdlets","GetMgEducationClassModule_Get.g.cs","v1.0","Get-MgEducationClassModule","GET","/education/classes/{param}/modules/{param}","matched","Get-MgEducationClassModule" +"Cmdlets","GetMgEducationClassModule_List.g.cs","v1.0","Get-MgEducationClassModule","GET","/education/classes/{param}/modules","matched","Get-MgEducationClassModule" +"Cmdlets","GetMgEducationClassModule.g.cs","v1.0","Get-MgEducationClassModule","","","dispatcher","" +"Cmdlets","GetMgEducationClassModuleCount.g.cs","v1.0","Get-MgEducationClassModuleCount","GET","/education/classes/{param}/modules/$count","matched","Get-MgEducationClassModuleCount" +"Cmdlets","GetMgEducationClassModuleResource_Get.g.cs","v1.0","Get-MgEducationClassModuleResource","GET","/education/classes/{param}/modules/{param}/resources/{param}","matched","Get-MgEducationClassModuleResource" +"Cmdlets","GetMgEducationClassModuleResource_List.g.cs","v1.0","Get-MgEducationClassModuleResource","GET","/education/classes/{param}/modules/{param}/resources","matched","Get-MgEducationClassModuleResource" +"Cmdlets","GetMgEducationClassModuleResource.g.cs","v1.0","Get-MgEducationClassModuleResource","","","dispatcher","" +"Cmdlets","GetMgEducationClassModuleResourceCount.g.cs","v1.0","Get-MgEducationClassModuleResourceCount","GET","/education/classes/{param}/modules/{param}/resources/$count","matched","Get-MgEducationClassModuleResourceCount" +"Cmdlets","GetMgEducationClassSchool_Get.g.cs","v1.0","Get-MgEducationClassSchool","GET","/education/classes/{param}/schools/{param}","matched","Get-MgEducationClassSchool" +"Cmdlets","GetMgEducationClassSchool_List.g.cs","v1.0","Get-MgEducationClassSchool","GET","/education/classes/{param}/schools","matched","Get-MgEducationClassSchool" +"Cmdlets","GetMgEducationClassSchool.g.cs","v1.0","Get-MgEducationClassSchool","","","dispatcher","" +"Cmdlets","GetMgEducationClassSchoolCount.g.cs","v1.0","Get-MgEducationClassSchoolCount","GET","/education/classes/{param}/schools/$count","matched","Get-MgEducationClassSchoolCount" +"Cmdlets","GetMgEducationClassTeacher.g.cs","v1.0","Get-MgEducationClassTeacher","GET","/education/classes/{param}/teachers","matched","Get-MgEducationClassTeacher" +"Cmdlets","GetMgEducationClassTeacherByRef.g.cs","v1.0","Get-MgEducationClassTeacherByRef","GET","/education/classes/{param}/teachers/$ref","matched","Get-MgEducationClassTeacherByRef" +"Cmdlets","GetMgEducationClassTeacherCount.g.cs","v1.0","Get-MgEducationClassTeacherCount","GET","/education/classes/{param}/teachers/$count","matched","Get-MgEducationClassTeacherCount" +"Cmdlets","GetMgEducationMe.g.cs","v1.0","Get-MgEducationMe","GET","/education/me","matched","Get-MgEducationMe" +"Cmdlets","GetMgEducationMeAssignment_Get.g.cs","v1.0","Get-MgEducationMeAssignment","GET","/education/me/assignments/{param}","matched","Get-MgEducationMeAssignment" +"Cmdlets","GetMgEducationMeAssignment_List.g.cs","v1.0","Get-MgEducationMeAssignment","GET","/education/me/assignments","matched","Get-MgEducationMeAssignment" +"Cmdlets","GetMgEducationMeAssignment.g.cs","v1.0","Get-MgEducationMeAssignment","","","dispatcher","" +"Cmdlets","GetMgEducationMeAssignmentCategory.g.cs","v1.0","Get-MgEducationMeAssignmentCategory","GET","/education/me/assignments/{param}/categories","matched","Get-MgEducationMeAssignmentCategory" +"Cmdlets","GetMgEducationMeAssignmentCategoryByRef.g.cs","v1.0","Get-MgEducationMeAssignmentCategoryByRef","GET","/education/me/assignments/{param}/categories/$ref","matched","Get-MgEducationMeAssignmentCategoryByRef" +"Cmdlets","GetMgEducationMeAssignmentCategoryCount.g.cs","v1.0","Get-MgEducationMeAssignmentCategoryCount","GET","/education/me/assignments/{param}/categories/$count","matched","Get-MgEducationMeAssignmentCategoryCount" +"Cmdlets","GetMgEducationMeAssignmentCategoryDelta.g.cs","v1.0","Get-MgEducationMeAssignmentCategoryDelta","GET","/education/me/assignments/{param}/categories/delta","matched","Get-MgEducationMeAssignmentCategoryDelta" +"Cmdlets","GetMgEducationMeAssignmentCount.g.cs","v1.0","Get-MgEducationMeAssignmentCount","GET","/education/me/assignments/$count","matched","Get-MgEducationMeAssignmentCount" +"Cmdlets","GetMgEducationMeAssignmentDelta.g.cs","v1.0","Get-MgEducationMeAssignmentDelta","GET","/education/me/assignments/delta","matched","Get-MgEducationMeAssignmentDelta" +"Cmdlets","GetMgEducationMeAssignmentGradingCategory.g.cs","v1.0","Get-MgEducationMeAssignmentGradingCategory","GET","/education/me/assignments/{param}/gradingCategory","matched","Get-MgEducationMeAssignmentGradingCategory" +"Cmdlets","GetMgEducationMeAssignmentGradingScheme.g.cs","v1.0","Get-MgEducationMeAssignmentGradingScheme","GET","/education/me/assignments/{param}/gradingScheme","matched","Get-MgEducationMeAssignmentGradingScheme" +"Cmdlets","GetMgEducationMeAssignmentResource_Get.g.cs","v1.0","Get-MgEducationMeAssignmentResource","GET","/education/me/assignments/{param}/resources/{param}","matched","Get-MgEducationMeAssignmentResource" +"Cmdlets","GetMgEducationMeAssignmentResource_List.g.cs","v1.0","Get-MgEducationMeAssignmentResource","GET","/education/me/assignments/{param}/resources","matched","Get-MgEducationMeAssignmentResource" +"Cmdlets","GetMgEducationMeAssignmentResource.g.cs","v1.0","Get-MgEducationMeAssignmentResource","","","dispatcher","" +"Cmdlets","GetMgEducationMeAssignmentResourceCount.g.cs","v1.0","Get-MgEducationMeAssignmentResourceCount","GET","/education/me/assignments/{param}/resources/$count","matched","Get-MgEducationMeAssignmentResourceCount" +"Cmdlets","GetMgEducationMeAssignmentResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationMeAssignmentResourceDependentResource","GET","/education/me/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Get-MgEducationMeAssignmentResourceDependentResource" +"Cmdlets","GetMgEducationMeAssignmentResourceDependentResource_List.g.cs","v1.0","Get-MgEducationMeAssignmentResourceDependentResource","GET","/education/me/assignments/{param}/resources/{param}/dependentResources","matched","Get-MgEducationMeAssignmentResourceDependentResource" +"Cmdlets","GetMgEducationMeAssignmentResourceDependentResource.g.cs","v1.0","Get-MgEducationMeAssignmentResourceDependentResource","","","dispatcher","" +"Cmdlets","GetMgEducationMeAssignmentResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationMeAssignmentResourceDependentResourceCount","GET","/education/me/assignments/{param}/resources/{param}/dependentResources/$count","matched","Get-MgEducationMeAssignmentResourceDependentResourceCount" +"Cmdlets","GetMgEducationMeAssignmentRubric.g.cs","v1.0","Get-MgEducationMeAssignmentRubric","GET","/education/me/assignments/{param}/rubric","matched","Get-MgEducationMeAssignmentRubric" +"Cmdlets","GetMgEducationMeAssignmentRubricByRef.g.cs","v1.0","Get-MgEducationMeAssignmentRubricByRef","GET","/education/me/assignments/{param}/rubric/$ref","matched","Get-MgEducationMeAssignmentRubricByRef" +"Cmdlets","GetMgEducationMeAssignmentSubmission_Get.g.cs","v1.0","Get-MgEducationMeAssignmentSubmission","GET","/education/me/assignments/{param}/submissions/{param}","matched","Get-MgEducationMeAssignmentSubmission" +"Cmdlets","GetMgEducationMeAssignmentSubmission_List.g.cs","v1.0","Get-MgEducationMeAssignmentSubmission","GET","/education/me/assignments/{param}/submissions","matched","Get-MgEducationMeAssignmentSubmission" +"Cmdlets","GetMgEducationMeAssignmentSubmission.g.cs","v1.0","Get-MgEducationMeAssignmentSubmission","","","dispatcher","" +"Cmdlets","GetMgEducationMeAssignmentSubmissionCount.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionCount","GET","/education/me/assignments/{param}/submissions/$count","matched","Get-MgEducationMeAssignmentSubmissionCount" +"Cmdlets","GetMgEducationMeAssignmentSubmissionOutcome_Get.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionOutcome","GET","/education/me/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Get-MgEducationMeAssignmentSubmissionOutcome" +"Cmdlets","GetMgEducationMeAssignmentSubmissionOutcome_List.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionOutcome","GET","/education/me/assignments/{param}/submissions/{param}/outcomes","matched","Get-MgEducationMeAssignmentSubmissionOutcome" +"Cmdlets","GetMgEducationMeAssignmentSubmissionOutcome.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionOutcome","","","dispatcher","" +"Cmdlets","GetMgEducationMeAssignmentSubmissionOutcomeCount.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionOutcomeCount","GET","/education/me/assignments/{param}/submissions/{param}/outcomes/$count","matched","Get-MgEducationMeAssignmentSubmissionOutcomeCount" +"Cmdlets","GetMgEducationMeAssignmentSubmissionResource_Get.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResource","GET","/education/me/assignments/{param}/submissions/{param}/resources/{param}","matched","Get-MgEducationMeAssignmentSubmissionResource" +"Cmdlets","GetMgEducationMeAssignmentSubmissionResource_List.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResource","GET","/education/me/assignments/{param}/submissions/{param}/resources","matched","Get-MgEducationMeAssignmentSubmissionResource" +"Cmdlets","GetMgEducationMeAssignmentSubmissionResource.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResource","","","dispatcher","" +"Cmdlets","GetMgEducationMeAssignmentSubmissionResourceCount.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResourceCount","GET","/education/me/assignments/{param}/submissions/{param}/resources/$count","matched","Get-MgEducationMeAssignmentSubmissionResourceCount" +"Cmdlets","GetMgEducationMeAssignmentSubmissionResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResourceDependentResource","GET","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Get-MgEducationMeAssignmentSubmissionResourceDependentResource" +"Cmdlets","GetMgEducationMeAssignmentSubmissionResourceDependentResource_List.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResourceDependentResource","GET","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","matched","Get-MgEducationMeAssignmentSubmissionResourceDependentResource" +"Cmdlets","GetMgEducationMeAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResourceDependentResource","","","dispatcher","" +"Cmdlets","GetMgEducationMeAssignmentSubmissionResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResourceDependentResourceCount","GET","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/$count","matched","Get-MgEducationMeAssignmentSubmissionResourceDependentResourceCount" +"Cmdlets","GetMgEducationMeAssignmentSubmissionSubmittedResource_Get.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResource","GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Get-MgEducationMeAssignmentSubmissionSubmittedResource" +"Cmdlets","GetMgEducationMeAssignmentSubmissionSubmittedResource_List.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResource","GET","/education/me/assignments/{param}/submissions/{param}/submittedResources","matched","Get-MgEducationMeAssignmentSubmissionSubmittedResource" +"Cmdlets","GetMgEducationMeAssignmentSubmissionSubmittedResource.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResource","","","dispatcher","" +"Cmdlets","GetMgEducationMeAssignmentSubmissionSubmittedResourceCount.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResourceCount","GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/$count","matched","Get-MgEducationMeAssignmentSubmissionSubmittedResourceCount" +"Cmdlets","GetMgEducationMeAssignmentSubmissionSubmittedResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","GetMgEducationMeAssignmentSubmissionSubmittedResourceDependentResource_List.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","matched","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","GetMgEducationMeAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","","","dispatcher","" +"Cmdlets","GetMgEducationMeAssignmentSubmissionSubmittedResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResourceCount","GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/$count","matched","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResourceCount" +"Cmdlets","GetMgEducationMeClass_Get.g.cs","v1.0","Get-MgEducationMeClass","GET","/education/me/classes/{param}","matched","Get-MgEducationMeClass" +"Cmdlets","GetMgEducationMeClass_List.g.cs","v1.0","Get-MgEducationMeClass","GET","/education/me/classes","matched","Get-MgEducationMeClass" +"Cmdlets","GetMgEducationMeClass.g.cs","v1.0","Get-MgEducationMeClass","","","dispatcher","" +"Cmdlets","GetMgEducationMeClassCount.g.cs","v1.0","Get-MgEducationMeClassCount","GET","/education/me/classes/$count","matched","Get-MgEducationMeClassCount" +"Cmdlets","GetMgEducationMeRubric_Get.g.cs","v1.0","Get-MgEducationMeRubric","GET","/education/me/rubrics/{param}","matched","Get-MgEducationMeRubric" +"Cmdlets","GetMgEducationMeRubric_List.g.cs","v1.0","Get-MgEducationMeRubric","GET","/education/me/rubrics","matched","Get-MgEducationMeRubric" +"Cmdlets","GetMgEducationMeRubric.g.cs","v1.0","Get-MgEducationMeRubric","","","dispatcher","" +"Cmdlets","GetMgEducationMeRubricCount.g.cs","v1.0","Get-MgEducationMeRubricCount","GET","/education/me/rubrics/$count","matched","Get-MgEducationMeRubricCount" +"Cmdlets","GetMgEducationMeSchool_Get.g.cs","v1.0","Get-MgEducationMeSchool","GET","/education/me/schools/{param}","matched","Get-MgEducationMeSchool" +"Cmdlets","GetMgEducationMeSchool_List.g.cs","v1.0","Get-MgEducationMeSchool","GET","/education/me/schools","matched","Get-MgEducationMeSchool" +"Cmdlets","GetMgEducationMeSchool.g.cs","v1.0","Get-MgEducationMeSchool","","","dispatcher","" +"Cmdlets","GetMgEducationMeSchoolCount.g.cs","v1.0","Get-MgEducationMeSchoolCount","GET","/education/me/schools/$count","matched","Get-MgEducationMeSchoolCount" +"Cmdlets","GetMgEducationMeTaughtClass_Get.g.cs","v1.0","Get-MgEducationMeTaughtClass","GET","/education/me/taughtClasses/{param}","matched","Get-MgEducationMeTaughtClass" +"Cmdlets","GetMgEducationMeTaughtClass_List.g.cs","v1.0","Get-MgEducationMeTaughtClass","GET","/education/me/taughtClasses","matched","Get-MgEducationMeTaughtClass" +"Cmdlets","GetMgEducationMeTaughtClass.g.cs","v1.0","Get-MgEducationMeTaughtClass","","","dispatcher","" +"Cmdlets","GetMgEducationMeTaughtClassCount.g.cs","v1.0","Get-MgEducationMeTaughtClassCount","GET","/education/me/taughtClasses/$count","matched","Get-MgEducationMeTaughtClassCount" +"Cmdlets","GetMgEducationMeUser.g.cs","v1.0","Get-MgEducationMeUser","GET","/education/me/user","matched","Get-MgEducationMeUser" +"Cmdlets","GetMgEducationMeUserMailboxSetting.g.cs","v1.0","Get-MgEducationMeUserMailboxSetting","GET","/education/me/user/mailboxSettings","matched","Get-MgEducationMeUserMailboxSetting" +"Cmdlets","GetMgEducationMeUserServiceProvisioningError.g.cs","v1.0","Get-MgEducationMeUserServiceProvisioningError","GET","/education/me/user/serviceProvisioningErrors","matched","Get-MgEducationMeUserServiceProvisioningError" +"Cmdlets","GetMgEducationMeUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgEducationMeUserServiceProvisioningErrorCount","GET","/education/me/user/serviceProvisioningErrors/$count","matched","Get-MgEducationMeUserServiceProvisioningErrorCount" +"Cmdlets","GetMgEducationReport.g.cs","v1.0","Get-MgEducationReport","GET","/education/reports","matched","Get-MgEducationReport" +"Cmdlets","GetMgEducationReportReadingAssignmentSubmission_Get.g.cs","v1.0","Get-MgEducationReportReadingAssignmentSubmission","GET","/education/reports/readingAssignmentSubmissions/{param}","matched","Get-MgEducationReportReadingAssignmentSubmission" +"Cmdlets","GetMgEducationReportReadingAssignmentSubmission_List.g.cs","v1.0","Get-MgEducationReportReadingAssignmentSubmission","GET","/education/reports/readingAssignmentSubmissions","matched","Get-MgEducationReportReadingAssignmentSubmission" +"Cmdlets","GetMgEducationReportReadingAssignmentSubmission.g.cs","v1.0","Get-MgEducationReportReadingAssignmentSubmission","","","dispatcher","" +"Cmdlets","GetMgEducationReportReadingAssignmentSubmissionCount.g.cs","v1.0","Get-MgEducationReportReadingAssignmentSubmissionCount","GET","/education/reports/readingAssignmentSubmissions/$count","matched","Get-MgEducationReportReadingAssignmentSubmissionCount" +"Cmdlets","GetMgEducationReportReadingCoachPassage_Get.g.cs","v1.0","Get-MgEducationReportReadingCoachPassage","GET","/education/reports/readingCoachPassages/{param}","matched","Get-MgEducationReportReadingCoachPassage" +"Cmdlets","GetMgEducationReportReadingCoachPassage_List.g.cs","v1.0","Get-MgEducationReportReadingCoachPassage","GET","/education/reports/readingCoachPassages","matched","Get-MgEducationReportReadingCoachPassage" +"Cmdlets","GetMgEducationReportReadingCoachPassage.g.cs","v1.0","Get-MgEducationReportReadingCoachPassage","","","dispatcher","" +"Cmdlets","GetMgEducationReportReadingCoachPassageCount.g.cs","v1.0","Get-MgEducationReportReadingCoachPassageCount","GET","/education/reports/readingCoachPassages/$count","matched","Get-MgEducationReportReadingCoachPassageCount" +"Cmdlets","GetMgEducationReportReflectCheckInResponse_Get.g.cs","v1.0","Get-MgEducationReportReflectCheckInResponse","GET","/education/reports/reflectCheckInResponses/{param}","mismatch","Get-MgEducationReportReflectCheck" +"Cmdlets","GetMgEducationReportReflectCheckInResponse_List.g.cs","v1.0","Get-MgEducationReportReflectCheckInResponse","GET","/education/reports/reflectCheckInResponses","mismatch","Get-MgEducationReportReflectCheck" +"Cmdlets","GetMgEducationReportReflectCheckInResponse.g.cs","v1.0","Get-MgEducationReportReflectCheckInResponse","","","dispatcher","" +"Cmdlets","GetMgEducationReportReflectCheckInResponseCount.g.cs","v1.0","Get-MgEducationReportReflectCheckInResponseCount","GET","/education/reports/reflectCheckInResponses/$count","matched","Get-MgEducationReportReflectCheckInResponseCount" +"Cmdlets","GetMgEducationReportSpeakerAssignmentSubmission_Get.g.cs","v1.0","Get-MgEducationReportSpeakerAssignmentSubmission","GET","/education/reports/speakerAssignmentSubmissions/{param}","matched","Get-MgEducationReportSpeakerAssignmentSubmission" +"Cmdlets","GetMgEducationReportSpeakerAssignmentSubmission_List.g.cs","v1.0","Get-MgEducationReportSpeakerAssignmentSubmission","GET","/education/reports/speakerAssignmentSubmissions","matched","Get-MgEducationReportSpeakerAssignmentSubmission" +"Cmdlets","GetMgEducationReportSpeakerAssignmentSubmission.g.cs","v1.0","Get-MgEducationReportSpeakerAssignmentSubmission","","","dispatcher","" +"Cmdlets","GetMgEducationReportSpeakerAssignmentSubmissionCount.g.cs","v1.0","Get-MgEducationReportSpeakerAssignmentSubmissionCount","GET","/education/reports/speakerAssignmentSubmissions/$count","matched","Get-MgEducationReportSpeakerAssignmentSubmissionCount" +"Cmdlets","GetMgEducationSchool_Get.g.cs","v1.0","Get-MgEducationSchool","GET","/education/schools/{param}","matched","Get-MgEducationSchool" +"Cmdlets","GetMgEducationSchool_List.g.cs","v1.0","Get-MgEducationSchool","GET","/education/schools","matched","Get-MgEducationSchool" +"Cmdlets","GetMgEducationSchool.g.cs","v1.0","Get-MgEducationSchool","","","dispatcher","" +"Cmdlets","GetMgEducationSchoolAdministrativeUnit.g.cs","v1.0","Get-MgEducationSchoolAdministrativeUnit","GET","/education/schools/{param}/administrativeUnit","matched","Get-MgEducationSchoolAdministrativeUnit" +"Cmdlets","GetMgEducationSchoolClass.g.cs","v1.0","Get-MgEducationSchoolClass","GET","/education/schools/{param}/classes","matched","Get-MgEducationSchoolClass" +"Cmdlets","GetMgEducationSchoolClassByRef.g.cs","v1.0","Get-MgEducationSchoolClassByRef","GET","/education/schools/{param}/classes/$ref","matched","Get-MgEducationSchoolClassByRef" +"Cmdlets","GetMgEducationSchoolClassCount.g.cs","v1.0","Get-MgEducationSchoolClassCount","GET","/education/schools/{param}/classes/$count","matched","Get-MgEducationSchoolClassCount" +"Cmdlets","GetMgEducationSchoolCount.g.cs","v1.0","Get-MgEducationSchoolCount","GET","/education/schools/$count","matched","Get-MgEducationSchoolCount" +"Cmdlets","GetMgEducationSchoolDelta.g.cs","v1.0","Get-MgEducationSchoolDelta","GET","/education/schools/delta","matched","Get-MgEducationSchoolDelta" +"Cmdlets","GetMgEducationSchoolUser.g.cs","v1.0","Get-MgEducationSchoolUser","GET","/education/schools/{param}/users","matched","Get-MgEducationSchoolUser" +"Cmdlets","GetMgEducationSchoolUserByRef.g.cs","v1.0","Get-MgEducationSchoolUserByRef","GET","/education/schools/{param}/users/$ref","matched","Get-MgEducationSchoolUserByRef" +"Cmdlets","GetMgEducationSchoolUserCount.g.cs","v1.0","Get-MgEducationSchoolUserCount","GET","/education/schools/{param}/users/$count","matched","Get-MgEducationSchoolUserCount" +"Cmdlets","GetMgEducationUser_Get.g.cs","v1.0","Get-MgEducationUser","GET","/education/users/{param}","matched","Get-MgEducationUser" +"Cmdlets","GetMgEducationUser_List.g.cs","v1.0","Get-MgEducationUser","GET","/education/users","matched","Get-MgEducationUser" +"Cmdlets","GetMgEducationUser.g.cs","v1.0","Get-MgEducationUser","","","dispatcher","" +"Cmdlets","GetMgEducationUserAssignment_Get.g.cs","v1.0","Get-MgEducationUserAssignment","GET","/education/users/{param}/assignments/{param}","matched","Get-MgEducationUserAssignment" +"Cmdlets","GetMgEducationUserAssignment_List.g.cs","v1.0","Get-MgEducationUserAssignment","GET","/education/users/{param}/assignments","matched","Get-MgEducationUserAssignment" +"Cmdlets","GetMgEducationUserAssignment.g.cs","v1.0","Get-MgEducationUserAssignment","","","dispatcher","" +"Cmdlets","GetMgEducationUserAssignmentCategory.g.cs","v1.0","Get-MgEducationUserAssignmentCategory","GET","/education/users/{param}/assignments/{param}/categories","matched","Get-MgEducationUserAssignmentCategory" +"Cmdlets","GetMgEducationUserAssignmentCategoryByRef.g.cs","v1.0","Get-MgEducationUserAssignmentCategoryByRef","GET","/education/users/{param}/assignments/{param}/categories/$ref","matched","Get-MgEducationUserAssignmentCategoryByRef" +"Cmdlets","GetMgEducationUserAssignmentCategoryCount.g.cs","v1.0","Get-MgEducationUserAssignmentCategoryCount","GET","/education/users/{param}/assignments/{param}/categories/$count","matched","Get-MgEducationUserAssignmentCategoryCount" +"Cmdlets","GetMgEducationUserAssignmentCategoryDelta.g.cs","v1.0","Get-MgEducationUserAssignmentCategoryDelta","GET","/education/users/{param}/assignments/{param}/categories/delta","matched","Get-MgEducationUserAssignmentCategoryDelta" +"Cmdlets","GetMgEducationUserAssignmentCount.g.cs","v1.0","Get-MgEducationUserAssignmentCount","GET","/education/users/{param}/assignments/$count","matched","Get-MgEducationUserAssignmentCount" +"Cmdlets","GetMgEducationUserAssignmentDelta.g.cs","v1.0","Get-MgEducationUserAssignmentDelta","GET","/education/users/{param}/assignments/delta","matched","Get-MgEducationUserAssignmentDelta" +"Cmdlets","GetMgEducationUserAssignmentGradingCategory.g.cs","v1.0","Get-MgEducationUserAssignmentGradingCategory","GET","/education/users/{param}/assignments/{param}/gradingCategory","matched","Get-MgEducationUserAssignmentGradingCategory" +"Cmdlets","GetMgEducationUserAssignmentGradingScheme.g.cs","v1.0","Get-MgEducationUserAssignmentGradingScheme","GET","/education/users/{param}/assignments/{param}/gradingScheme","matched","Get-MgEducationUserAssignmentGradingScheme" +"Cmdlets","GetMgEducationUserAssignmentResource_Get.g.cs","v1.0","Get-MgEducationUserAssignmentResource","GET","/education/users/{param}/assignments/{param}/resources/{param}","matched","Get-MgEducationUserAssignmentResource" +"Cmdlets","GetMgEducationUserAssignmentResource_List.g.cs","v1.0","Get-MgEducationUserAssignmentResource","GET","/education/users/{param}/assignments/{param}/resources","matched","Get-MgEducationUserAssignmentResource" +"Cmdlets","GetMgEducationUserAssignmentResource.g.cs","v1.0","Get-MgEducationUserAssignmentResource","","","dispatcher","" +"Cmdlets","GetMgEducationUserAssignmentResourceCount.g.cs","v1.0","Get-MgEducationUserAssignmentResourceCount","GET","/education/users/{param}/assignments/{param}/resources/$count","matched","Get-MgEducationUserAssignmentResourceCount" +"Cmdlets","GetMgEducationUserAssignmentResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationUserAssignmentResourceDependentResource","GET","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Get-MgEducationUserAssignmentResourceDependentResource" +"Cmdlets","GetMgEducationUserAssignmentResourceDependentResource_List.g.cs","v1.0","Get-MgEducationUserAssignmentResourceDependentResource","GET","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources","matched","Get-MgEducationUserAssignmentResourceDependentResource" +"Cmdlets","GetMgEducationUserAssignmentResourceDependentResource.g.cs","v1.0","Get-MgEducationUserAssignmentResourceDependentResource","","","dispatcher","" +"Cmdlets","GetMgEducationUserAssignmentResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationUserAssignmentResourceDependentResourceCount","GET","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources/$count","matched","Get-MgEducationUserAssignmentResourceDependentResourceCount" +"Cmdlets","GetMgEducationUserAssignmentRubric.g.cs","v1.0","Get-MgEducationUserAssignmentRubric","GET","/education/users/{param}/assignments/{param}/rubric","matched","Get-MgEducationUserAssignmentRubric" +"Cmdlets","GetMgEducationUserAssignmentRubricByRef.g.cs","v1.0","Get-MgEducationUserAssignmentRubricByRef","GET","/education/users/{param}/assignments/{param}/rubric/$ref","matched","Get-MgEducationUserAssignmentRubricByRef" +"Cmdlets","GetMgEducationUserAssignmentSubmission_Get.g.cs","v1.0","Get-MgEducationUserAssignmentSubmission","GET","/education/users/{param}/assignments/{param}/submissions/{param}","matched","Get-MgEducationUserAssignmentSubmission" +"Cmdlets","GetMgEducationUserAssignmentSubmission_List.g.cs","v1.0","Get-MgEducationUserAssignmentSubmission","GET","/education/users/{param}/assignments/{param}/submissions","matched","Get-MgEducationUserAssignmentSubmission" +"Cmdlets","GetMgEducationUserAssignmentSubmission.g.cs","v1.0","Get-MgEducationUserAssignmentSubmission","","","dispatcher","" +"Cmdlets","GetMgEducationUserAssignmentSubmissionCount.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionCount","GET","/education/users/{param}/assignments/{param}/submissions/$count","matched","Get-MgEducationUserAssignmentSubmissionCount" +"Cmdlets","GetMgEducationUserAssignmentSubmissionOutcome_Get.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionOutcome","GET","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Get-MgEducationUserAssignmentSubmissionOutcome" +"Cmdlets","GetMgEducationUserAssignmentSubmissionOutcome_List.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionOutcome","GET","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes","matched","Get-MgEducationUserAssignmentSubmissionOutcome" +"Cmdlets","GetMgEducationUserAssignmentSubmissionOutcome.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionOutcome","","","dispatcher","" +"Cmdlets","GetMgEducationUserAssignmentSubmissionOutcomeCount.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionOutcomeCount","GET","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes/$count","matched","Get-MgEducationUserAssignmentSubmissionOutcomeCount" +"Cmdlets","GetMgEducationUserAssignmentSubmissionResource_Get.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}","matched","Get-MgEducationUserAssignmentSubmissionResource" +"Cmdlets","GetMgEducationUserAssignmentSubmissionResource_List.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources","matched","Get-MgEducationUserAssignmentSubmissionResource" +"Cmdlets","GetMgEducationUserAssignmentSubmissionResource.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResource","","","dispatcher","" +"Cmdlets","GetMgEducationUserAssignmentSubmissionResourceCount.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResourceCount","GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/$count","matched","Get-MgEducationUserAssignmentSubmissionResourceCount" +"Cmdlets","GetMgEducationUserAssignmentSubmissionResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResourceDependentResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Get-MgEducationUserAssignmentSubmissionResourceDependentResource" +"Cmdlets","GetMgEducationUserAssignmentSubmissionResourceDependentResource_List.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResourceDependentResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","matched","Get-MgEducationUserAssignmentSubmissionResourceDependentResource" +"Cmdlets","GetMgEducationUserAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResourceDependentResource","","","dispatcher","" +"Cmdlets","GetMgEducationUserAssignmentSubmissionResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResourceDependentResourceCount","GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/$count","matched","Get-MgEducationUserAssignmentSubmissionResourceDependentResourceCount" +"Cmdlets","GetMgEducationUserAssignmentSubmissionSubmittedResource_Get.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Get-MgEducationUserAssignmentSubmissionSubmittedResource" +"Cmdlets","GetMgEducationUserAssignmentSubmissionSubmittedResource_List.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources","matched","Get-MgEducationUserAssignmentSubmissionSubmittedResource" +"Cmdlets","GetMgEducationUserAssignmentSubmissionSubmittedResource.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResource","","","dispatcher","" +"Cmdlets","GetMgEducationUserAssignmentSubmissionSubmittedResourceCount.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResourceCount","GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/$count","matched","Get-MgEducationUserAssignmentSubmissionSubmittedResourceCount" +"Cmdlets","GetMgEducationUserAssignmentSubmissionSubmittedResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","GetMgEducationUserAssignmentSubmissionSubmittedResourceDependentResource_List.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","matched","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","GetMgEducationUserAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","","","dispatcher","" +"Cmdlets","GetMgEducationUserAssignmentSubmissionSubmittedResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResourceCount","GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/$count","matched","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResourceCount" +"Cmdlets","GetMgEducationUserClass_Get.g.cs","v1.0","Get-MgEducationUserClass","GET","/education/users/{param}/classes/{param}","matched","Get-MgEducationUserClass" +"Cmdlets","GetMgEducationUserClass_List.g.cs","v1.0","Get-MgEducationUserClass","GET","/education/users/{param}/classes","matched","Get-MgEducationUserClass" +"Cmdlets","GetMgEducationUserClass.g.cs","v1.0","Get-MgEducationUserClass","","","dispatcher","" +"Cmdlets","GetMgEducationUserClassCount.g.cs","v1.0","Get-MgEducationUserClassCount","GET","/education/users/{param}/classes/$count","matched","Get-MgEducationUserClassCount" +"Cmdlets","GetMgEducationUserCount.g.cs","v1.0","Get-MgEducationUserCount","GET","/education/users/$count","matched","Get-MgEducationUserCount" +"Cmdlets","GetMgEducationUserDelta.g.cs","v1.0","Get-MgEducationUserDelta","GET","/education/users/delta","matched","Get-MgEducationUserDelta" +"Cmdlets","GetMgEducationUserMailboxSetting.g.cs","v1.0","Get-MgEducationUserMailboxSetting","GET","/education/users/{param}/user/mailboxSettings","matched","Get-MgEducationUserMailboxSetting" +"Cmdlets","GetMgEducationUserRubric_Get.g.cs","v1.0","Get-MgEducationUserRubric","GET","/education/users/{param}/rubrics/{param}","matched","Get-MgEducationUserRubric" +"Cmdlets","GetMgEducationUserRubric_List.g.cs","v1.0","Get-MgEducationUserRubric","GET","/education/users/{param}/rubrics","matched","Get-MgEducationUserRubric" +"Cmdlets","GetMgEducationUserRubric.g.cs","v1.0","Get-MgEducationUserRubric","","","dispatcher","" +"Cmdlets","GetMgEducationUserRubricCount.g.cs","v1.0","Get-MgEducationUserRubricCount","GET","/education/users/{param}/rubrics/$count","matched","Get-MgEducationUserRubricCount" +"Cmdlets","GetMgEducationUserSchool_Get.g.cs","v1.0","Get-MgEducationUserSchool","GET","/education/users/{param}/schools/{param}","matched","Get-MgEducationUserSchool" +"Cmdlets","GetMgEducationUserSchool_List.g.cs","v1.0","Get-MgEducationUserSchool","GET","/education/users/{param}/schools","matched","Get-MgEducationUserSchool" +"Cmdlets","GetMgEducationUserSchool.g.cs","v1.0","Get-MgEducationUserSchool","","","dispatcher","" +"Cmdlets","GetMgEducationUserSchoolCount.g.cs","v1.0","Get-MgEducationUserSchoolCount","GET","/education/users/{param}/schools/$count","matched","Get-MgEducationUserSchoolCount" +"Cmdlets","GetMgEducationUserServiceProvisioningError.g.cs","v1.0","Get-MgEducationUserServiceProvisioningError","GET","/education/users/{param}/user/serviceProvisioningErrors","matched","Get-MgEducationUserServiceProvisioningError" +"Cmdlets","GetMgEducationUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgEducationUserServiceProvisioningErrorCount","GET","/education/users/{param}/user/serviceProvisioningErrors/$count","matched","Get-MgEducationUserServiceProvisioningErrorCount" +"Cmdlets","GetMgEducationUserTaughtClass_Get.g.cs","v1.0","Get-MgEducationUserTaughtClass","GET","/education/users/{param}/taughtClasses/{param}","matched","Get-MgEducationUserTaughtClass" +"Cmdlets","GetMgEducationUserTaughtClass_List.g.cs","v1.0","Get-MgEducationUserTaughtClass","GET","/education/users/{param}/taughtClasses","matched","Get-MgEducationUserTaughtClass" +"Cmdlets","GetMgEducationUserTaughtClass.g.cs","v1.0","Get-MgEducationUserTaughtClass","","","dispatcher","" +"Cmdlets","GetMgEducationUserTaughtClassCount.g.cs","v1.0","Get-MgEducationUserTaughtClassCount","GET","/education/users/{param}/taughtClasses/$count","matched","Get-MgEducationUserTaughtClassCount" +"Cmdlets","InvokeMgEducationClassAssignmentActivate.g.cs","v1.0","Invoke-MgEducationClassAssignmentActivate","POST","/education/classes/{param}/assignments/{param}/activate","mismatch","Initialize-MgEducationClassAssignment" +"Cmdlets","InvokeMgEducationClassAssignmentDeactivate.g.cs","v1.0","Invoke-MgEducationClassAssignmentDeactivate","POST","/education/classes/{param}/assignments/{param}/deactivate","mismatch","Invoke-MgDeactivateEducationClassAssignment" +"Cmdlets","InvokeMgEducationClassAssignmentPublish.g.cs","v1.0","Invoke-MgEducationClassAssignmentPublish","POST","/education/classes/{param}/assignments/{param}/publish","mismatch","Publish-MgEducationClassAssignment" +"Cmdlets","InvokeMgEducationClassAssignmentSetUpFeedbackResourcesFolder.g.cs","v1.0","Invoke-MgEducationClassAssignmentSetUpFeedbackResourcesFolder","POST","/education/classes/{param}/assignments/{param}/setUpFeedbackResourcesFolder","mismatch","Set-MgEducationClassAssignmentUpFeedbackResourceFolder" +"Cmdlets","InvokeMgEducationClassAssignmentSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationClassAssignmentSetUpResourcesFolder","POST","/education/classes/{param}/assignments/{param}/setUpResourcesFolder","mismatch","Set-MgEducationClassAssignmentUpResourceFolder" +"Cmdlets","InvokeMgEducationClassAssignmentSubmissionExcuse.g.cs","v1.0","Invoke-MgEducationClassAssignmentSubmissionExcuse","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/excuse","mismatch","Invoke-MgExcuseEducationClassAssignmentSubmission" +"Cmdlets","InvokeMgEducationClassAssignmentSubmissionReassign.g.cs","v1.0","Invoke-MgEducationClassAssignmentSubmissionReassign","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/reassign","mismatch","Invoke-MgReassignEducationClassAssignmentSubmission" +"Cmdlets","InvokeMgEducationClassAssignmentSubmissionReturn.g.cs","v1.0","Invoke-MgEducationClassAssignmentSubmissionReturn","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/return","mismatch","Invoke-MgReturnEducationClassAssignmentSubmission" +"Cmdlets","InvokeMgEducationClassAssignmentSubmissionSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationClassAssignmentSubmissionSetUpResourcesFolder","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/setUpResourcesFolder","mismatch","Set-MgEducationClassAssignmentSubmissionUpResourceFolder" +"Cmdlets","InvokeMgEducationClassAssignmentSubmissionSubmit.g.cs","v1.0","Invoke-MgEducationClassAssignmentSubmissionSubmit","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/submit","mismatch","Submit-MgEducationClassAssignmentSubmission" +"Cmdlets","InvokeMgEducationClassAssignmentSubmissionUnsubmit.g.cs","v1.0","Invoke-MgEducationClassAssignmentSubmissionUnsubmit","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/unsubmit","mismatch","Invoke-MgUnsubmitEducationClassAssignmentSubmission" +"Cmdlets","InvokeMgEducationClassModulePin.g.cs","v1.0","Invoke-MgEducationClassModulePin","POST","/education/classes/{param}/modules/{param}/pin","mismatch","Invoke-MgPinEducationClassModule" +"Cmdlets","InvokeMgEducationClassModulePublish.g.cs","v1.0","Invoke-MgEducationClassModulePublish","POST","/education/classes/{param}/modules/{param}/publish","mismatch","Publish-MgEducationClassModule" +"Cmdlets","InvokeMgEducationClassModuleSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationClassModuleSetUpResourcesFolder","POST","/education/classes/{param}/modules/{param}/setUpResourcesFolder","mismatch","Set-MgEducationClassModuleUpResourceFolder" +"Cmdlets","InvokeMgEducationClassModuleUnpin.g.cs","v1.0","Invoke-MgEducationClassModuleUnpin","POST","/education/classes/{param}/modules/{param}/unpin","mismatch","Invoke-MgUnpinEducationClassModule" +"Cmdlets","InvokeMgEducationMeAssignmentActivate.g.cs","v1.0","Invoke-MgEducationMeAssignmentActivate","POST","/education/me/assignments/{param}/activate","mismatch","Initialize-MgEducationMeAssignment" +"Cmdlets","InvokeMgEducationMeAssignmentDeactivate.g.cs","v1.0","Invoke-MgEducationMeAssignmentDeactivate","POST","/education/me/assignments/{param}/deactivate","mismatch","Invoke-MgDeactivateEducationMeAssignment" +"Cmdlets","InvokeMgEducationMeAssignmentPublish.g.cs","v1.0","Invoke-MgEducationMeAssignmentPublish","POST","/education/me/assignments/{param}/publish","mismatch","Publish-MgEducationMeAssignment" +"Cmdlets","InvokeMgEducationMeAssignmentSetUpFeedbackResourcesFolder.g.cs","v1.0","Invoke-MgEducationMeAssignmentSetUpFeedbackResourcesFolder","POST","/education/me/assignments/{param}/setUpFeedbackResourcesFolder","mismatch","Set-MgEducationMeAssignmentUpFeedbackResourceFolder" +"Cmdlets","InvokeMgEducationMeAssignmentSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationMeAssignmentSetUpResourcesFolder","POST","/education/me/assignments/{param}/setUpResourcesFolder","mismatch","Set-MgEducationMeAssignmentUpResourceFolder" +"Cmdlets","InvokeMgEducationMeAssignmentSubmissionExcuse.g.cs","v1.0","Invoke-MgEducationMeAssignmentSubmissionExcuse","POST","/education/me/assignments/{param}/submissions/{param}/excuse","mismatch","Invoke-MgExcuseEducationMeAssignmentSubmission" +"Cmdlets","InvokeMgEducationMeAssignmentSubmissionReassign.g.cs","v1.0","Invoke-MgEducationMeAssignmentSubmissionReassign","POST","/education/me/assignments/{param}/submissions/{param}/reassign","mismatch","Invoke-MgReassignEducationMeAssignmentSubmission" +"Cmdlets","InvokeMgEducationMeAssignmentSubmissionReturn.g.cs","v1.0","Invoke-MgEducationMeAssignmentSubmissionReturn","POST","/education/me/assignments/{param}/submissions/{param}/return","mismatch","Invoke-MgReturnEducationMeAssignmentSubmission" +"Cmdlets","InvokeMgEducationMeAssignmentSubmissionSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationMeAssignmentSubmissionSetUpResourcesFolder","POST","/education/me/assignments/{param}/submissions/{param}/setUpResourcesFolder","mismatch","Set-MgEducationMeAssignmentSubmissionUpResourceFolder" +"Cmdlets","InvokeMgEducationMeAssignmentSubmissionSubmit.g.cs","v1.0","Invoke-MgEducationMeAssignmentSubmissionSubmit","POST","/education/me/assignments/{param}/submissions/{param}/submit","mismatch","Submit-MgEducationMeAssignmentSubmission" +"Cmdlets","InvokeMgEducationMeAssignmentSubmissionUnsubmit.g.cs","v1.0","Invoke-MgEducationMeAssignmentSubmissionUnsubmit","POST","/education/me/assignments/{param}/submissions/{param}/unsubmit","mismatch","Invoke-MgUnsubmitEducationMeAssignmentSubmission" +"Cmdlets","InvokeMgEducationUserAssignmentActivate.g.cs","v1.0","Invoke-MgEducationUserAssignmentActivate","POST","/education/users/{param}/assignments/{param}/activate","mismatch","Initialize-MgEducationUserAssignment" +"Cmdlets","InvokeMgEducationUserAssignmentDeactivate.g.cs","v1.0","Invoke-MgEducationUserAssignmentDeactivate","POST","/education/users/{param}/assignments/{param}/deactivate","mismatch","Invoke-MgDeactivateEducationUserAssignment" +"Cmdlets","InvokeMgEducationUserAssignmentPublish.g.cs","v1.0","Invoke-MgEducationUserAssignmentPublish","POST","/education/users/{param}/assignments/{param}/publish","mismatch","Publish-MgEducationUserAssignment" +"Cmdlets","InvokeMgEducationUserAssignmentSetUpFeedbackResourcesFolder.g.cs","v1.0","Invoke-MgEducationUserAssignmentSetUpFeedbackResourcesFolder","POST","/education/users/{param}/assignments/{param}/setUpFeedbackResourcesFolder","mismatch","Set-MgEducationUserAssignmentUpFeedbackResourceFolder" +"Cmdlets","InvokeMgEducationUserAssignmentSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationUserAssignmentSetUpResourcesFolder","POST","/education/users/{param}/assignments/{param}/setUpResourcesFolder","mismatch","Set-MgEducationUserAssignmentUpResourceFolder" +"Cmdlets","InvokeMgEducationUserAssignmentSubmissionExcuse.g.cs","v1.0","Invoke-MgEducationUserAssignmentSubmissionExcuse","POST","/education/users/{param}/assignments/{param}/submissions/{param}/excuse","mismatch","Invoke-MgExcuseEducationUserAssignmentSubmission" +"Cmdlets","InvokeMgEducationUserAssignmentSubmissionReassign.g.cs","v1.0","Invoke-MgEducationUserAssignmentSubmissionReassign","POST","/education/users/{param}/assignments/{param}/submissions/{param}/reassign","mismatch","Invoke-MgReassignEducationUserAssignmentSubmission" +"Cmdlets","InvokeMgEducationUserAssignmentSubmissionReturn.g.cs","v1.0","Invoke-MgEducationUserAssignmentSubmissionReturn","POST","/education/users/{param}/assignments/{param}/submissions/{param}/return","mismatch","Invoke-MgReturnEducationUserAssignmentSubmission" +"Cmdlets","InvokeMgEducationUserAssignmentSubmissionSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationUserAssignmentSubmissionSetUpResourcesFolder","POST","/education/users/{param}/assignments/{param}/submissions/{param}/setUpResourcesFolder","mismatch","Set-MgEducationUserAssignmentSubmissionUpResourceFolder" +"Cmdlets","InvokeMgEducationUserAssignmentSubmissionSubmit.g.cs","v1.0","Invoke-MgEducationUserAssignmentSubmissionSubmit","POST","/education/users/{param}/assignments/{param}/submissions/{param}/submit","mismatch","Submit-MgEducationUserAssignmentSubmission" +"Cmdlets","InvokeMgEducationUserAssignmentSubmissionUnsubmit.g.cs","v1.0","Invoke-MgEducationUserAssignmentSubmissionUnsubmit","POST","/education/users/{param}/assignments/{param}/submissions/{param}/unsubmit","mismatch","Invoke-MgUnsubmitEducationUserAssignmentSubmission" +"Cmdlets","NewMgEducationClass.g.cs","v1.0","New-MgEducationClass","POST","/education/classes","matched","New-MgEducationClass" +"Cmdlets","NewMgEducationClassAssignment.g.cs","v1.0","New-MgEducationClassAssignment","POST","/education/classes/{param}/assignments","matched","New-MgEducationClassAssignment" +"Cmdlets","NewMgEducationClassAssignmentCategory.g.cs","v1.0","New-MgEducationClassAssignmentCategory","POST","/education/classes/{param}/assignmentCategories","matched","New-MgEducationClassAssignmentCategory" +"Cmdlets","NewMgEducationClassAssignmentCategoryByRef.g.cs","v1.0","New-MgEducationClassAssignmentCategoryByRef","POST","/education/classes/{param}/assignments/{param}/categories/$ref","matched","New-MgEducationClassAssignmentCategoryByRef" +"Cmdlets","NewMgEducationClassAssignmentResource.g.cs","v1.0","New-MgEducationClassAssignmentResource","POST","/education/classes/{param}/assignments/{param}/resources","matched","New-MgEducationClassAssignmentResource" +"Cmdlets","NewMgEducationClassAssignmentResourceDependentResource.g.cs","v1.0","New-MgEducationClassAssignmentResourceDependentResource","POST","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources","matched","New-MgEducationClassAssignmentResourceDependentResource" +"Cmdlets","NewMgEducationClassAssignmentSettingGradingCategory.g.cs","v1.0","New-MgEducationClassAssignmentSettingGradingCategory","POST","/education/classes/{param}/assignmentSettings/gradingCategories","matched","New-MgEducationClassAssignmentSettingGradingCategory" +"Cmdlets","NewMgEducationClassAssignmentSettingGradingScheme.g.cs","v1.0","New-MgEducationClassAssignmentSettingGradingScheme","POST","/education/classes/{param}/assignmentSettings/gradingSchemes","matched","New-MgEducationClassAssignmentSettingGradingScheme" +"Cmdlets","NewMgEducationClassAssignmentSubmission.g.cs","v1.0","New-MgEducationClassAssignmentSubmission","POST","/education/classes/{param}/assignments/{param}/submissions","matched","New-MgEducationClassAssignmentSubmission" +"Cmdlets","NewMgEducationClassAssignmentSubmissionOutcome.g.cs","v1.0","New-MgEducationClassAssignmentSubmissionOutcome","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes","matched","New-MgEducationClassAssignmentSubmissionOutcome" +"Cmdlets","NewMgEducationClassAssignmentSubmissionResource.g.cs","v1.0","New-MgEducationClassAssignmentSubmissionResource","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/resources","matched","New-MgEducationClassAssignmentSubmissionResource" +"Cmdlets","NewMgEducationClassAssignmentSubmissionResourceDependentResource.g.cs","v1.0","New-MgEducationClassAssignmentSubmissionResourceDependentResource","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","matched","New-MgEducationClassAssignmentSubmissionResourceDependentResource" +"Cmdlets","NewMgEducationClassAssignmentSubmissionSubmittedResource.g.cs","v1.0","New-MgEducationClassAssignmentSubmissionSubmittedResource","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources","matched","New-MgEducationClassAssignmentSubmissionSubmittedResource" +"Cmdlets","NewMgEducationClassAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","New-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","matched","New-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","NewMgEducationClassMemberByRef.g.cs","v1.0","New-MgEducationClassMemberByRef","POST","/education/classes/{param}/members/$ref","matched","New-MgEducationClassMemberByRef" +"Cmdlets","NewMgEducationClassModule.g.cs","v1.0","New-MgEducationClassModule","POST","/education/classes/{param}/modules","matched","New-MgEducationClassModule" +"Cmdlets","NewMgEducationClassModuleResource.g.cs","v1.0","New-MgEducationClassModuleResource","POST","/education/classes/{param}/modules/{param}/resources","matched","New-MgEducationClassModuleResource" +"Cmdlets","NewMgEducationClassTeacherByRef.g.cs","v1.0","New-MgEducationClassTeacherByRef","POST","/education/classes/{param}/teachers/$ref","matched","New-MgEducationClassTeacherByRef" +"Cmdlets","NewMgEducationMeAssignment.g.cs","v1.0","New-MgEducationMeAssignment","POST","/education/me/assignments","matched","New-MgEducationMeAssignment" +"Cmdlets","NewMgEducationMeAssignmentCategory.g.cs","v1.0","New-MgEducationMeAssignmentCategory","POST","/education/me/assignments/{param}/categories","matched","New-MgEducationMeAssignmentCategory" +"Cmdlets","NewMgEducationMeAssignmentCategoryByRef.g.cs","v1.0","New-MgEducationMeAssignmentCategoryByRef","POST","/education/me/assignments/{param}/categories/$ref","matched","New-MgEducationMeAssignmentCategoryByRef" +"Cmdlets","NewMgEducationMeAssignmentResource.g.cs","v1.0","New-MgEducationMeAssignmentResource","POST","/education/me/assignments/{param}/resources","matched","New-MgEducationMeAssignmentResource" +"Cmdlets","NewMgEducationMeAssignmentResourceDependentResource.g.cs","v1.0","New-MgEducationMeAssignmentResourceDependentResource","POST","/education/me/assignments/{param}/resources/{param}/dependentResources","matched","New-MgEducationMeAssignmentResourceDependentResource" +"Cmdlets","NewMgEducationMeAssignmentSubmission.g.cs","v1.0","New-MgEducationMeAssignmentSubmission","POST","/education/me/assignments/{param}/submissions","matched","New-MgEducationMeAssignmentSubmission" +"Cmdlets","NewMgEducationMeAssignmentSubmissionOutcome.g.cs","v1.0","New-MgEducationMeAssignmentSubmissionOutcome","POST","/education/me/assignments/{param}/submissions/{param}/outcomes","matched","New-MgEducationMeAssignmentSubmissionOutcome" +"Cmdlets","NewMgEducationMeAssignmentSubmissionResource.g.cs","v1.0","New-MgEducationMeAssignmentSubmissionResource","POST","/education/me/assignments/{param}/submissions/{param}/resources","matched","New-MgEducationMeAssignmentSubmissionResource" +"Cmdlets","NewMgEducationMeAssignmentSubmissionResourceDependentResource.g.cs","v1.0","New-MgEducationMeAssignmentSubmissionResourceDependentResource","POST","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","matched","New-MgEducationMeAssignmentSubmissionResourceDependentResource" +"Cmdlets","NewMgEducationMeAssignmentSubmissionSubmittedResource.g.cs","v1.0","New-MgEducationMeAssignmentSubmissionSubmittedResource","POST","/education/me/assignments/{param}/submissions/{param}/submittedResources","matched","New-MgEducationMeAssignmentSubmissionSubmittedResource" +"Cmdlets","NewMgEducationMeAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","New-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","POST","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","matched","New-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","NewMgEducationMeRubric.g.cs","v1.0","New-MgEducationMeRubric","POST","/education/me/rubrics","matched","New-MgEducationMeRubric" +"Cmdlets","NewMgEducationReportReadingAssignmentSubmission.g.cs","v1.0","New-MgEducationReportReadingAssignmentSubmission","POST","/education/reports/readingAssignmentSubmissions","matched","New-MgEducationReportReadingAssignmentSubmission" +"Cmdlets","NewMgEducationReportReadingCoachPassage.g.cs","v1.0","New-MgEducationReportReadingCoachPassage","POST","/education/reports/readingCoachPassages","matched","New-MgEducationReportReadingCoachPassage" +"Cmdlets","NewMgEducationReportReflectCheckInResponse.g.cs","v1.0","New-MgEducationReportReflectCheckInResponse","POST","/education/reports/reflectCheckInResponses","mismatch","New-MgEducationReportReflectCheck" +"Cmdlets","NewMgEducationReportSpeakerAssignmentSubmission.g.cs","v1.0","New-MgEducationReportSpeakerAssignmentSubmission","POST","/education/reports/speakerAssignmentSubmissions","matched","New-MgEducationReportSpeakerAssignmentSubmission" +"Cmdlets","NewMgEducationSchool.g.cs","v1.0","New-MgEducationSchool","POST","/education/schools","matched","New-MgEducationSchool" +"Cmdlets","NewMgEducationSchoolClassByRef.g.cs","v1.0","New-MgEducationSchoolClassByRef","POST","/education/schools/{param}/classes/$ref","matched","New-MgEducationSchoolClassByRef" +"Cmdlets","NewMgEducationSchoolUserByRef.g.cs","v1.0","New-MgEducationSchoolUserByRef","POST","/education/schools/{param}/users/$ref","matched","New-MgEducationSchoolUserByRef" +"Cmdlets","NewMgEducationUser.g.cs","v1.0","New-MgEducationUser","POST","/education/users","matched","New-MgEducationUser" +"Cmdlets","NewMgEducationUserAssignment.g.cs","v1.0","New-MgEducationUserAssignment","POST","/education/users/{param}/assignments","matched","New-MgEducationUserAssignment" +"Cmdlets","NewMgEducationUserAssignmentCategory.g.cs","v1.0","New-MgEducationUserAssignmentCategory","POST","/education/users/{param}/assignments/{param}/categories","matched","New-MgEducationUserAssignmentCategory" +"Cmdlets","NewMgEducationUserAssignmentCategoryByRef.g.cs","v1.0","New-MgEducationUserAssignmentCategoryByRef","POST","/education/users/{param}/assignments/{param}/categories/$ref","matched","New-MgEducationUserAssignmentCategoryByRef" +"Cmdlets","NewMgEducationUserAssignmentResource.g.cs","v1.0","New-MgEducationUserAssignmentResource","POST","/education/users/{param}/assignments/{param}/resources","matched","New-MgEducationUserAssignmentResource" +"Cmdlets","NewMgEducationUserAssignmentResourceDependentResource.g.cs","v1.0","New-MgEducationUserAssignmentResourceDependentResource","POST","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources","matched","New-MgEducationUserAssignmentResourceDependentResource" +"Cmdlets","NewMgEducationUserAssignmentSubmission.g.cs","v1.0","New-MgEducationUserAssignmentSubmission","POST","/education/users/{param}/assignments/{param}/submissions","matched","New-MgEducationUserAssignmentSubmission" +"Cmdlets","NewMgEducationUserAssignmentSubmissionOutcome.g.cs","v1.0","New-MgEducationUserAssignmentSubmissionOutcome","POST","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes","matched","New-MgEducationUserAssignmentSubmissionOutcome" +"Cmdlets","NewMgEducationUserAssignmentSubmissionResource.g.cs","v1.0","New-MgEducationUserAssignmentSubmissionResource","POST","/education/users/{param}/assignments/{param}/submissions/{param}/resources","matched","New-MgEducationUserAssignmentSubmissionResource" +"Cmdlets","NewMgEducationUserAssignmentSubmissionResourceDependentResource.g.cs","v1.0","New-MgEducationUserAssignmentSubmissionResourceDependentResource","POST","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","matched","New-MgEducationUserAssignmentSubmissionResourceDependentResource" +"Cmdlets","NewMgEducationUserAssignmentSubmissionSubmittedResource.g.cs","v1.0","New-MgEducationUserAssignmentSubmissionSubmittedResource","POST","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources","matched","New-MgEducationUserAssignmentSubmissionSubmittedResource" +"Cmdlets","NewMgEducationUserAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","New-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","POST","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","matched","New-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","NewMgEducationUserRubric.g.cs","v1.0","New-MgEducationUserRubric","POST","/education/users/{param}/rubrics","matched","New-MgEducationUserRubric" +"Cmdlets","RemoveMgEducationClass.g.cs","v1.0","Remove-MgEducationClass","DELETE","/education/classes/{param}","matched","Remove-MgEducationClass" +"Cmdlets","RemoveMgEducationClassAssignment.g.cs","v1.0","Remove-MgEducationClassAssignment","DELETE","/education/classes/{param}/assignments/{param}","matched","Remove-MgEducationClassAssignment" +"Cmdlets","RemoveMgEducationClassAssignmentCategory.g.cs","v1.0","Remove-MgEducationClassAssignmentCategory","DELETE","/education/classes/{param}/assignmentCategories/{param}","matched","Remove-MgEducationClassAssignmentCategory" +"Cmdlets","RemoveMgEducationClassAssignmentCategoryByRef.g.cs","v1.0","Remove-MgEducationClassAssignmentCategoryByRef","DELETE","/education/classes/{param}/assignments/{param}/categories/{param}/$ref","mismatch","Remove-MgEducationClassAssignmentCategoryEducationCategoryByRef" +"Cmdlets","RemoveMgEducationClassAssignmentDefault.g.cs","v1.0","Remove-MgEducationClassAssignmentDefault","DELETE","/education/classes/{param}/assignmentDefaults","matched","Remove-MgEducationClassAssignmentDefault" +"Cmdlets","RemoveMgEducationClassAssignmentResource.g.cs","v1.0","Remove-MgEducationClassAssignmentResource","DELETE","/education/classes/{param}/assignments/{param}/resources/{param}","matched","Remove-MgEducationClassAssignmentResource" +"Cmdlets","RemoveMgEducationClassAssignmentResourceDependentResource.g.cs","v1.0","Remove-MgEducationClassAssignmentResourceDependentResource","DELETE","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Remove-MgEducationClassAssignmentResourceDependentResource" +"Cmdlets","RemoveMgEducationClassAssignmentRubric.g.cs","v1.0","Remove-MgEducationClassAssignmentRubric","DELETE","/education/classes/{param}/assignments/{param}/rubric","matched","Remove-MgEducationClassAssignmentRubric" +"Cmdlets","RemoveMgEducationClassAssignmentRubricByRef.g.cs","v1.0","Remove-MgEducationClassAssignmentRubricByRef","DELETE","/education/classes/{param}/assignments/{param}/rubric/$ref","matched","Remove-MgEducationClassAssignmentRubricByRef" +"Cmdlets","RemoveMgEducationClassAssignmentSetting.g.cs","v1.0","Remove-MgEducationClassAssignmentSetting","DELETE","/education/classes/{param}/assignmentSettings","matched","Remove-MgEducationClassAssignmentSetting" +"Cmdlets","RemoveMgEducationClassAssignmentSettingGradingCategory.g.cs","v1.0","Remove-MgEducationClassAssignmentSettingGradingCategory","DELETE","/education/classes/{param}/assignmentSettings/gradingCategories/{param}","matched","Remove-MgEducationClassAssignmentSettingGradingCategory" +"Cmdlets","RemoveMgEducationClassAssignmentSettingGradingScheme.g.cs","v1.0","Remove-MgEducationClassAssignmentSettingGradingScheme","DELETE","/education/classes/{param}/assignmentSettings/gradingSchemes/{param}","matched","Remove-MgEducationClassAssignmentSettingGradingScheme" +"Cmdlets","RemoveMgEducationClassAssignmentSubmission.g.cs","v1.0","Remove-MgEducationClassAssignmentSubmission","DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}","matched","Remove-MgEducationClassAssignmentSubmission" +"Cmdlets","RemoveMgEducationClassAssignmentSubmissionOutcome.g.cs","v1.0","Remove-MgEducationClassAssignmentSubmissionOutcome","DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Remove-MgEducationClassAssignmentSubmissionOutcome" +"Cmdlets","RemoveMgEducationClassAssignmentSubmissionResource.g.cs","v1.0","Remove-MgEducationClassAssignmentSubmissionResource","DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}","matched","Remove-MgEducationClassAssignmentSubmissionResource" +"Cmdlets","RemoveMgEducationClassAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Remove-MgEducationClassAssignmentSubmissionResourceDependentResource","DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Remove-MgEducationClassAssignmentSubmissionResourceDependentResource" +"Cmdlets","RemoveMgEducationClassAssignmentSubmissionSubmittedResource.g.cs","v1.0","Remove-MgEducationClassAssignmentSubmissionSubmittedResource","DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Remove-MgEducationClassAssignmentSubmissionSubmittedResource" +"Cmdlets","RemoveMgEducationClassAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Remove-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Remove-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","RemoveMgEducationClassMemberByRef.g.cs","v1.0","Remove-MgEducationClassMemberByRef","DELETE","/education/classes/{param}/members/{param}/$ref","mismatch","Remove-MgEducationClassMemberEducationUserByRef" +"Cmdlets","RemoveMgEducationClassModule.g.cs","v1.0","Remove-MgEducationClassModule","DELETE","/education/classes/{param}/modules/{param}","matched","Remove-MgEducationClassModule" +"Cmdlets","RemoveMgEducationClassModuleResource.g.cs","v1.0","Remove-MgEducationClassModuleResource","DELETE","/education/classes/{param}/modules/{param}/resources/{param}","matched","Remove-MgEducationClassModuleResource" +"Cmdlets","RemoveMgEducationClassTeacherByRef.g.cs","v1.0","Remove-MgEducationClassTeacherByRef","DELETE","/education/classes/{param}/teachers/{param}/$ref","mismatch","Remove-MgEducationClassTeacherEducationUserByRef" +"Cmdlets","RemoveMgEducationMe.g.cs","v1.0","Remove-MgEducationMe","DELETE","/education/me","matched","Remove-MgEducationMe" +"Cmdlets","RemoveMgEducationMeAssignment.g.cs","v1.0","Remove-MgEducationMeAssignment","DELETE","/education/me/assignments/{param}","matched","Remove-MgEducationMeAssignment" +"Cmdlets","RemoveMgEducationMeAssignmentCategoryByRef.g.cs","v1.0","Remove-MgEducationMeAssignmentCategoryByRef","DELETE","/education/me/assignments/{param}/categories/{param}/$ref","mismatch","Remove-MgEducationMeAssignmentCategoryEducationCategoryByRef" +"Cmdlets","RemoveMgEducationMeAssignmentResource.g.cs","v1.0","Remove-MgEducationMeAssignmentResource","DELETE","/education/me/assignments/{param}/resources/{param}","matched","Remove-MgEducationMeAssignmentResource" +"Cmdlets","RemoveMgEducationMeAssignmentResourceDependentResource.g.cs","v1.0","Remove-MgEducationMeAssignmentResourceDependentResource","DELETE","/education/me/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Remove-MgEducationMeAssignmentResourceDependentResource" +"Cmdlets","RemoveMgEducationMeAssignmentRubric.g.cs","v1.0","Remove-MgEducationMeAssignmentRubric","DELETE","/education/me/assignments/{param}/rubric","matched","Remove-MgEducationMeAssignmentRubric" +"Cmdlets","RemoveMgEducationMeAssignmentRubricByRef.g.cs","v1.0","Remove-MgEducationMeAssignmentRubricByRef","DELETE","/education/me/assignments/{param}/rubric/$ref","matched","Remove-MgEducationMeAssignmentRubricByRef" +"Cmdlets","RemoveMgEducationMeAssignmentSubmission.g.cs","v1.0","Remove-MgEducationMeAssignmentSubmission","DELETE","/education/me/assignments/{param}/submissions/{param}","matched","Remove-MgEducationMeAssignmentSubmission" +"Cmdlets","RemoveMgEducationMeAssignmentSubmissionOutcome.g.cs","v1.0","Remove-MgEducationMeAssignmentSubmissionOutcome","DELETE","/education/me/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Remove-MgEducationMeAssignmentSubmissionOutcome" +"Cmdlets","RemoveMgEducationMeAssignmentSubmissionResource.g.cs","v1.0","Remove-MgEducationMeAssignmentSubmissionResource","DELETE","/education/me/assignments/{param}/submissions/{param}/resources/{param}","matched","Remove-MgEducationMeAssignmentSubmissionResource" +"Cmdlets","RemoveMgEducationMeAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Remove-MgEducationMeAssignmentSubmissionResourceDependentResource","DELETE","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Remove-MgEducationMeAssignmentSubmissionResourceDependentResource" +"Cmdlets","RemoveMgEducationMeAssignmentSubmissionSubmittedResource.g.cs","v1.0","Remove-MgEducationMeAssignmentSubmissionSubmittedResource","DELETE","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Remove-MgEducationMeAssignmentSubmissionSubmittedResource" +"Cmdlets","RemoveMgEducationMeAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Remove-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","DELETE","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Remove-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","RemoveMgEducationMeRubric.g.cs","v1.0","Remove-MgEducationMeRubric","DELETE","/education/me/rubrics/{param}","matched","Remove-MgEducationMeRubric" +"Cmdlets","RemoveMgEducationReport.g.cs","v1.0","Remove-MgEducationReport","DELETE","/education/reports","matched","Remove-MgEducationReport" +"Cmdlets","RemoveMgEducationReportReadingAssignmentSubmission.g.cs","v1.0","Remove-MgEducationReportReadingAssignmentSubmission","DELETE","/education/reports/readingAssignmentSubmissions/{param}","matched","Remove-MgEducationReportReadingAssignmentSubmission" +"Cmdlets","RemoveMgEducationReportReadingCoachPassage.g.cs","v1.0","Remove-MgEducationReportReadingCoachPassage","DELETE","/education/reports/readingCoachPassages/{param}","matched","Remove-MgEducationReportReadingCoachPassage" +"Cmdlets","RemoveMgEducationReportReflectCheckInResponse.g.cs","v1.0","Remove-MgEducationReportReflectCheckInResponse","DELETE","/education/reports/reflectCheckInResponses/{param}","mismatch","Remove-MgEducationReportReflectCheck" +"Cmdlets","RemoveMgEducationReportSpeakerAssignmentSubmission.g.cs","v1.0","Remove-MgEducationReportSpeakerAssignmentSubmission","DELETE","/education/reports/speakerAssignmentSubmissions/{param}","matched","Remove-MgEducationReportSpeakerAssignmentSubmission" +"Cmdlets","RemoveMgEducationSchool.g.cs","v1.0","Remove-MgEducationSchool","DELETE","/education/schools/{param}","matched","Remove-MgEducationSchool" +"Cmdlets","RemoveMgEducationSchoolClassByRef.g.cs","v1.0","Remove-MgEducationSchoolClassByRef","DELETE","/education/schools/{param}/classes/{param}/$ref","mismatch","Remove-MgEducationSchoolClassEducationClassByRef" +"Cmdlets","RemoveMgEducationSchoolUserByRef.g.cs","v1.0","Remove-MgEducationSchoolUserByRef","DELETE","/education/schools/{param}/users/{param}/$ref","mismatch","Remove-MgEducationSchoolUserEducationUserByRef" +"Cmdlets","RemoveMgEducationUser.g.cs","v1.0","Remove-MgEducationUser","DELETE","/education/users/{param}","matched","Remove-MgEducationUser" +"Cmdlets","RemoveMgEducationUserAssignment.g.cs","v1.0","Remove-MgEducationUserAssignment","DELETE","/education/users/{param}/assignments/{param}","matched","Remove-MgEducationUserAssignment" +"Cmdlets","RemoveMgEducationUserAssignmentCategoryByRef.g.cs","v1.0","Remove-MgEducationUserAssignmentCategoryByRef","DELETE","/education/users/{param}/assignments/{param}/categories/{param}/$ref","mismatch","Remove-MgEducationUserAssignmentCategoryEducationCategoryByRef" +"Cmdlets","RemoveMgEducationUserAssignmentResource.g.cs","v1.0","Remove-MgEducationUserAssignmentResource","DELETE","/education/users/{param}/assignments/{param}/resources/{param}","matched","Remove-MgEducationUserAssignmentResource" +"Cmdlets","RemoveMgEducationUserAssignmentResourceDependentResource.g.cs","v1.0","Remove-MgEducationUserAssignmentResourceDependentResource","DELETE","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Remove-MgEducationUserAssignmentResourceDependentResource" +"Cmdlets","RemoveMgEducationUserAssignmentRubric.g.cs","v1.0","Remove-MgEducationUserAssignmentRubric","DELETE","/education/users/{param}/assignments/{param}/rubric","matched","Remove-MgEducationUserAssignmentRubric" +"Cmdlets","RemoveMgEducationUserAssignmentRubricByRef.g.cs","v1.0","Remove-MgEducationUserAssignmentRubricByRef","DELETE","/education/users/{param}/assignments/{param}/rubric/$ref","matched","Remove-MgEducationUserAssignmentRubricByRef" +"Cmdlets","RemoveMgEducationUserAssignmentSubmission.g.cs","v1.0","Remove-MgEducationUserAssignmentSubmission","DELETE","/education/users/{param}/assignments/{param}/submissions/{param}","matched","Remove-MgEducationUserAssignmentSubmission" +"Cmdlets","RemoveMgEducationUserAssignmentSubmissionOutcome.g.cs","v1.0","Remove-MgEducationUserAssignmentSubmissionOutcome","DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Remove-MgEducationUserAssignmentSubmissionOutcome" +"Cmdlets","RemoveMgEducationUserAssignmentSubmissionResource.g.cs","v1.0","Remove-MgEducationUserAssignmentSubmissionResource","DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}","matched","Remove-MgEducationUserAssignmentSubmissionResource" +"Cmdlets","RemoveMgEducationUserAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Remove-MgEducationUserAssignmentSubmissionResourceDependentResource","DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Remove-MgEducationUserAssignmentSubmissionResourceDependentResource" +"Cmdlets","RemoveMgEducationUserAssignmentSubmissionSubmittedResource.g.cs","v1.0","Remove-MgEducationUserAssignmentSubmissionSubmittedResource","DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Remove-MgEducationUserAssignmentSubmissionSubmittedResource" +"Cmdlets","RemoveMgEducationUserAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Remove-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Remove-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","RemoveMgEducationUserRubric.g.cs","v1.0","Remove-MgEducationUserRubric","DELETE","/education/users/{param}/rubrics/{param}","matched","Remove-MgEducationUserRubric" +"Cmdlets","SetMgEducationClassAssignmentRubricByRef.g.cs","v1.0","Set-MgEducationClassAssignmentRubricByRef","PUT","/education/classes/{param}/assignments/{param}/rubric/$ref","matched","Set-MgEducationClassAssignmentRubricByRef" +"Cmdlets","SetMgEducationMeAssignmentRubricByRef.g.cs","v1.0","Set-MgEducationMeAssignmentRubricByRef","PUT","/education/me/assignments/{param}/rubric/$ref","matched","Set-MgEducationMeAssignmentRubricByRef" +"Cmdlets","SetMgEducationUserAssignmentRubricByRef.g.cs","v1.0","Set-MgEducationUserAssignmentRubricByRef","PUT","/education/users/{param}/assignments/{param}/rubric/$ref","matched","Set-MgEducationUserAssignmentRubricByRef" +"Cmdlets","UpdateMgEducation.g.cs","v1.0","Update-MgEducation","PATCH","/education","matched","Update-MgEducationRoot" +"Cmdlets","UpdateMgEducationClass.g.cs","v1.0","Update-MgEducationClass","PATCH","/education/classes/{param}","matched","Update-MgEducationClass" +"Cmdlets","UpdateMgEducationClassAssignment.g.cs","v1.0","Update-MgEducationClassAssignment","PATCH","/education/classes/{param}/assignments/{param}","matched","Update-MgEducationClassAssignment" +"Cmdlets","UpdateMgEducationClassAssignmentCategory.g.cs","v1.0","Update-MgEducationClassAssignmentCategory","PATCH","/education/classes/{param}/assignmentCategories/{param}","matched","Update-MgEducationClassAssignmentCategory" +"Cmdlets","UpdateMgEducationClassAssignmentDefault.g.cs","v1.0","Update-MgEducationClassAssignmentDefault","PATCH","/education/classes/{param}/assignmentDefaults","matched","Update-MgEducationClassAssignmentDefault" +"Cmdlets","UpdateMgEducationClassAssignmentResource.g.cs","v1.0","Update-MgEducationClassAssignmentResource","PATCH","/education/classes/{param}/assignments/{param}/resources/{param}","matched","Update-MgEducationClassAssignmentResource" +"Cmdlets","UpdateMgEducationClassAssignmentResourceDependentResource.g.cs","v1.0","Update-MgEducationClassAssignmentResourceDependentResource","PATCH","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Update-MgEducationClassAssignmentResourceDependentResource" +"Cmdlets","UpdateMgEducationClassAssignmentRubric.g.cs","v1.0","Update-MgEducationClassAssignmentRubric","PATCH","/education/classes/{param}/assignments/{param}/rubric","matched","Update-MgEducationClassAssignmentRubric" +"Cmdlets","UpdateMgEducationClassAssignmentSetting.g.cs","v1.0","Update-MgEducationClassAssignmentSetting","PATCH","/education/classes/{param}/assignmentSettings","matched","Update-MgEducationClassAssignmentSetting" +"Cmdlets","UpdateMgEducationClassAssignmentSettingGradingCategory.g.cs","v1.0","Update-MgEducationClassAssignmentSettingGradingCategory","PATCH","/education/classes/{param}/assignmentSettings/gradingCategories/{param}","matched","Update-MgEducationClassAssignmentSettingGradingCategory" +"Cmdlets","UpdateMgEducationClassAssignmentSettingGradingScheme.g.cs","v1.0","Update-MgEducationClassAssignmentSettingGradingScheme","PATCH","/education/classes/{param}/assignmentSettings/gradingSchemes/{param}","matched","Update-MgEducationClassAssignmentSettingGradingScheme" +"Cmdlets","UpdateMgEducationClassAssignmentSubmission.g.cs","v1.0","Update-MgEducationClassAssignmentSubmission","PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}","matched","Update-MgEducationClassAssignmentSubmission" +"Cmdlets","UpdateMgEducationClassAssignmentSubmissionOutcome.g.cs","v1.0","Update-MgEducationClassAssignmentSubmissionOutcome","PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Update-MgEducationClassAssignmentSubmissionOutcome" +"Cmdlets","UpdateMgEducationClassAssignmentSubmissionResource.g.cs","v1.0","Update-MgEducationClassAssignmentSubmissionResource","PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}","matched","Update-MgEducationClassAssignmentSubmissionResource" +"Cmdlets","UpdateMgEducationClassAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Update-MgEducationClassAssignmentSubmissionResourceDependentResource","PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Update-MgEducationClassAssignmentSubmissionResourceDependentResource" +"Cmdlets","UpdateMgEducationClassAssignmentSubmissionSubmittedResource.g.cs","v1.0","Update-MgEducationClassAssignmentSubmissionSubmittedResource","PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Update-MgEducationClassAssignmentSubmissionSubmittedResource" +"Cmdlets","UpdateMgEducationClassAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Update-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Update-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","UpdateMgEducationClassModule.g.cs","v1.0","Update-MgEducationClassModule","PATCH","/education/classes/{param}/modules/{param}","matched","Update-MgEducationClassModule" +"Cmdlets","UpdateMgEducationClassModuleResource.g.cs","v1.0","Update-MgEducationClassModuleResource","PATCH","/education/classes/{param}/modules/{param}/resources/{param}","matched","Update-MgEducationClassModuleResource" +"Cmdlets","UpdateMgEducationMe.g.cs","v1.0","Update-MgEducationMe","PATCH","/education/me","matched","Update-MgEducationMe" +"Cmdlets","UpdateMgEducationMeAssignment.g.cs","v1.0","Update-MgEducationMeAssignment","PATCH","/education/me/assignments/{param}","matched","Update-MgEducationMeAssignment" +"Cmdlets","UpdateMgEducationMeAssignmentResource.g.cs","v1.0","Update-MgEducationMeAssignmentResource","PATCH","/education/me/assignments/{param}/resources/{param}","matched","Update-MgEducationMeAssignmentResource" +"Cmdlets","UpdateMgEducationMeAssignmentResourceDependentResource.g.cs","v1.0","Update-MgEducationMeAssignmentResourceDependentResource","PATCH","/education/me/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Update-MgEducationMeAssignmentResourceDependentResource" +"Cmdlets","UpdateMgEducationMeAssignmentRubric.g.cs","v1.0","Update-MgEducationMeAssignmentRubric","PATCH","/education/me/assignments/{param}/rubric","matched","Update-MgEducationMeAssignmentRubric" +"Cmdlets","UpdateMgEducationMeAssignmentSubmission.g.cs","v1.0","Update-MgEducationMeAssignmentSubmission","PATCH","/education/me/assignments/{param}/submissions/{param}","matched","Update-MgEducationMeAssignmentSubmission" +"Cmdlets","UpdateMgEducationMeAssignmentSubmissionOutcome.g.cs","v1.0","Update-MgEducationMeAssignmentSubmissionOutcome","PATCH","/education/me/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Update-MgEducationMeAssignmentSubmissionOutcome" +"Cmdlets","UpdateMgEducationMeAssignmentSubmissionResource.g.cs","v1.0","Update-MgEducationMeAssignmentSubmissionResource","PATCH","/education/me/assignments/{param}/submissions/{param}/resources/{param}","matched","Update-MgEducationMeAssignmentSubmissionResource" +"Cmdlets","UpdateMgEducationMeAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Update-MgEducationMeAssignmentSubmissionResourceDependentResource","PATCH","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Update-MgEducationMeAssignmentSubmissionResourceDependentResource" +"Cmdlets","UpdateMgEducationMeAssignmentSubmissionSubmittedResource.g.cs","v1.0","Update-MgEducationMeAssignmentSubmissionSubmittedResource","PATCH","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Update-MgEducationMeAssignmentSubmissionSubmittedResource" +"Cmdlets","UpdateMgEducationMeAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Update-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","PATCH","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Update-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","UpdateMgEducationMeRubric.g.cs","v1.0","Update-MgEducationMeRubric","PATCH","/education/me/rubrics/{param}","matched","Update-MgEducationMeRubric" +"Cmdlets","UpdateMgEducationMeUserMailboxSetting.g.cs","v1.0","Update-MgEducationMeUserMailboxSetting","PATCH","/education/me/user/mailboxSettings","matched","Update-MgEducationMeUserMailboxSetting" +"Cmdlets","UpdateMgEducationReport.g.cs","v1.0","Update-MgEducationReport","PATCH","/education/reports","matched","Update-MgEducationReport" +"Cmdlets","UpdateMgEducationReportReadingAssignmentSubmission.g.cs","v1.0","Update-MgEducationReportReadingAssignmentSubmission","PATCH","/education/reports/readingAssignmentSubmissions/{param}","matched","Update-MgEducationReportReadingAssignmentSubmission" +"Cmdlets","UpdateMgEducationReportReadingCoachPassage.g.cs","v1.0","Update-MgEducationReportReadingCoachPassage","PATCH","/education/reports/readingCoachPassages/{param}","matched","Update-MgEducationReportReadingCoachPassage" +"Cmdlets","UpdateMgEducationReportReflectCheckInResponse.g.cs","v1.0","Update-MgEducationReportReflectCheckInResponse","PATCH","/education/reports/reflectCheckInResponses/{param}","mismatch","Update-MgEducationReportReflectCheck" +"Cmdlets","UpdateMgEducationReportSpeakerAssignmentSubmission.g.cs","v1.0","Update-MgEducationReportSpeakerAssignmentSubmission","PATCH","/education/reports/speakerAssignmentSubmissions/{param}","matched","Update-MgEducationReportSpeakerAssignmentSubmission" +"Cmdlets","UpdateMgEducationSchool.g.cs","v1.0","Update-MgEducationSchool","PATCH","/education/schools/{param}","matched","Update-MgEducationSchool" +"Cmdlets","UpdateMgEducationSchoolAdministrativeUnit.g.cs","v1.0","Update-MgEducationSchoolAdministrativeUnit","PATCH","/education/schools/{param}/administrativeUnit","matched","Update-MgEducationSchoolAdministrativeUnit" +"Cmdlets","UpdateMgEducationUser.g.cs","v1.0","Update-MgEducationUser","PATCH","/education/users/{param}","matched","Update-MgEducationUser" +"Cmdlets","UpdateMgEducationUserAssignment.g.cs","v1.0","Update-MgEducationUserAssignment","PATCH","/education/users/{param}/assignments/{param}","matched","Update-MgEducationUserAssignment" +"Cmdlets","UpdateMgEducationUserAssignmentResource.g.cs","v1.0","Update-MgEducationUserAssignmentResource","PATCH","/education/users/{param}/assignments/{param}/resources/{param}","matched","Update-MgEducationUserAssignmentResource" +"Cmdlets","UpdateMgEducationUserAssignmentResourceDependentResource.g.cs","v1.0","Update-MgEducationUserAssignmentResourceDependentResource","PATCH","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Update-MgEducationUserAssignmentResourceDependentResource" +"Cmdlets","UpdateMgEducationUserAssignmentRubric.g.cs","v1.0","Update-MgEducationUserAssignmentRubric","PATCH","/education/users/{param}/assignments/{param}/rubric","matched","Update-MgEducationUserAssignmentRubric" +"Cmdlets","UpdateMgEducationUserAssignmentSubmission.g.cs","v1.0","Update-MgEducationUserAssignmentSubmission","PATCH","/education/users/{param}/assignments/{param}/submissions/{param}","matched","Update-MgEducationUserAssignmentSubmission" +"Cmdlets","UpdateMgEducationUserAssignmentSubmissionOutcome.g.cs","v1.0","Update-MgEducationUserAssignmentSubmissionOutcome","PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Update-MgEducationUserAssignmentSubmissionOutcome" +"Cmdlets","UpdateMgEducationUserAssignmentSubmissionResource.g.cs","v1.0","Update-MgEducationUserAssignmentSubmissionResource","PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}","matched","Update-MgEducationUserAssignmentSubmissionResource" +"Cmdlets","UpdateMgEducationUserAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Update-MgEducationUserAssignmentSubmissionResourceDependentResource","PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Update-MgEducationUserAssignmentSubmissionResourceDependentResource" +"Cmdlets","UpdateMgEducationUserAssignmentSubmissionSubmittedResource.g.cs","v1.0","Update-MgEducationUserAssignmentSubmissionSubmittedResource","PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Update-MgEducationUserAssignmentSubmissionSubmittedResource" +"Cmdlets","UpdateMgEducationUserAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Update-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Update-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"Cmdlets","UpdateMgEducationUserMailboxSetting.g.cs","v1.0","Update-MgEducationUserMailboxSetting","PATCH","/education/users/{param}/user/mailboxSettings","matched","Update-MgEducationUserMailboxSetting" +"Cmdlets","UpdateMgEducationUserRubric.g.cs","v1.0","Update-MgEducationUserRubric","PATCH","/education/users/{param}/rubrics/{param}","matched","Update-MgEducationUserRubric" +"Cmdlets","GetMgDrive_Get.g.cs","v1.0","Get-MgDrive","GET","/drives/{param}","matched","Get-MgDrive" +"Cmdlets","GetMgDrive_List.g.cs","v1.0","Get-MgDrive","GET","/drives","matched","Get-MgDrive" +"Cmdlets","GetMgDrive.g.cs","v1.0","Get-MgDrive","","","dispatcher","" +"Cmdlets","GetMgDriveBundle_Get.g.cs","v1.0","Get-MgDriveBundle","GET","/drives/{param}/bundles/{param}","matched","Get-MgDriveBundle" +"Cmdlets","GetMgDriveBundle_List.g.cs","v1.0","Get-MgDriveBundle","GET","/drives/{param}/bundles","matched","Get-MgDriveBundle" +"Cmdlets","GetMgDriveBundle.g.cs","v1.0","Get-MgDriveBundle","","","dispatcher","" +"Cmdlets","GetMgDriveBundleContent.g.cs","v1.0","Get-MgDriveBundleContent","GET","/drives/{param}/bundles/{param}/content","matched","Get-MgDriveBundleContent" +"Cmdlets","GetMgDriveBundleCount.g.cs","v1.0","Get-MgDriveBundleCount","GET","/drives/{param}/bundles/$count","matched","Get-MgDriveBundleCount" +"Cmdlets","GetMgDriveCreatedByUser.g.cs","v1.0","Get-MgDriveCreatedByUser","GET","/drives/{param}/createdByUser","matched","Get-MgDriveCreatedByUser" +"Cmdlets","GetMgDriveCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveCreatedByUserMailboxSetting","GET","/drives/{param}/createdByUser/mailboxSettings","matched","Get-MgDriveCreatedByUserMailboxSetting" +"Cmdlets","GetMgDriveCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveCreatedByUserServiceProvisioningError","GET","/drives/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgDriveCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgDriveCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveCreatedByUserServiceProvisioningErrorCount","GET","/drives/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgDriveCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgDriveFollowing_Get.g.cs","v1.0","Get-MgDriveFollowing","GET","/drives/{param}/following/{param}","matched","Get-MgDriveFollowing" +"Cmdlets","GetMgDriveFollowing_List.g.cs","v1.0","Get-MgDriveFollowing","GET","/drives/{param}/following","matched","Get-MgDriveFollowing" +"Cmdlets","GetMgDriveFollowing.g.cs","v1.0","Get-MgDriveFollowing","","","dispatcher","" +"Cmdlets","GetMgDriveFollowingContent.g.cs","v1.0","Get-MgDriveFollowingContent","GET","/drives/{param}/following/{param}/content","matched","Get-MgDriveFollowingContent" +"Cmdlets","GetMgDriveFollowingCount.g.cs","v1.0","Get-MgDriveFollowingCount","GET","/drives/{param}/following/$count","matched","Get-MgDriveFollowingCount" +"Cmdlets","GetMgDriveItem_Get.g.cs","v1.0","Get-MgDriveItem","GET","/drives/{param}/items/{param}","matched","Get-MgDriveItem" +"Cmdlets","GetMgDriveItem_List.g.cs","v1.0","Get-MgDriveItem","GET","/drives/{param}/items","matched","Get-MgDriveItem" +"Cmdlets","GetMgDriveItem.g.cs","v1.0","Get-MgDriveItem","","","dispatcher","" +"Cmdlets","GetMgDriveItemAnalytic.g.cs","v1.0","Get-MgDriveItemAnalytic","GET","/drives/{param}/items/{param}/analytics","matched","Get-MgDriveItemAnalytic" +"Cmdlets","GetMgDriveItemAnalyticAllTime.g.cs","v1.0","Get-MgDriveItemAnalyticAllTime","GET","/drives/{param}/items/{param}/analytics/allTime","mismatch","Get-MgDriveItemAnalyticTime" +"Cmdlets","GetMgDriveItemAnalyticItemActivityStat_Get.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStat","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}","matched","Get-MgDriveItemAnalyticItemActivityStat" +"Cmdlets","GetMgDriveItemAnalyticItemActivityStat_List.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStat","GET","/drives/{param}/items/{param}/analytics/itemActivityStats","matched","Get-MgDriveItemAnalyticItemActivityStat" +"Cmdlets","GetMgDriveItemAnalyticItemActivityStat.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStat","","","dispatcher","" +"Cmdlets","GetMgDriveItemAnalyticItemActivityStatActivity_Get.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatActivity","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemAnalyticItemActivityStatActivity_List.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatActivity","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities","matched","Get-MgDriveItemAnalyticItemActivityStatActivity" +"Cmdlets","GetMgDriveItemAnalyticItemActivityStatActivity.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatActivity","","","dispatcher","" +"Cmdlets","GetMgDriveItemAnalyticItemActivityStatActivityCount.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatActivityCount","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/$count","no-oracle","" +"Cmdlets","GetMgDriveItemAnalyticItemActivityStatActivityDriveItem.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatActivityDriveItem","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem","no-oracle","" +"Cmdlets","GetMgDriveItemAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","no-oracle","" +"Cmdlets","GetMgDriveItemAnalyticItemActivityStatCount.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatCount","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/$count","matched","Get-MgDriveItemAnalyticItemActivityStatCount" +"Cmdlets","GetMgDriveItemAnalyticLastSevenDay.g.cs","v1.0","Get-MgDriveItemAnalyticLastSevenDay","GET","/drives/{param}/items/{param}/analytics/lastSevenDays","matched","Get-MgDriveItemAnalyticLastSevenDay" +"Cmdlets","GetMgDriveItemChild_Get.g.cs","v1.0","Get-MgDriveItemChild","GET","/drives/{param}/items/{param}/children/{param}","matched","Get-MgDriveItemChild" +"Cmdlets","GetMgDriveItemChild_List.g.cs","v1.0","Get-MgDriveItemChild","GET","/drives/{param}/items/{param}/children","matched","Get-MgDriveItemChild" +"Cmdlets","GetMgDriveItemChild.g.cs","v1.0","Get-MgDriveItemChild","","","dispatcher","" +"Cmdlets","GetMgDriveItemChildContent.g.cs","v1.0","Get-MgDriveItemChildContent","GET","/drives/{param}/items/{param}/children/{param}/content","matched","Get-MgDriveItemChildContent" +"Cmdlets","GetMgDriveItemChildCount.g.cs","v1.0","Get-MgDriveItemChildCount","GET","/drives/{param}/items/{param}/children/$count","matched","Get-MgDriveItemChildCount" +"Cmdlets","GetMgDriveItemContent.g.cs","v1.0","Get-MgDriveItemContent","GET","/drives/{param}/items/{param}/content","matched","Get-MgDriveItemContent" +"Cmdlets","GetMgDriveItemCount.g.cs","v1.0","Get-MgDriveItemCount","GET","/drives/{param}/items/$count","matched","Get-MgDriveItemCount" +"Cmdlets","GetMgDriveItemCreatedByUser.g.cs","v1.0","Get-MgDriveItemCreatedByUser","GET","/drives/{param}/items/{param}/createdByUser","matched","Get-MgDriveItemCreatedByUser" +"Cmdlets","GetMgDriveItemCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveItemCreatedByUserMailboxSetting","GET","/drives/{param}/items/{param}/createdByUser/mailboxSettings","matched","Get-MgDriveItemCreatedByUserMailboxSetting" +"Cmdlets","GetMgDriveItemCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveItemCreatedByUserServiceProvisioningError","GET","/drives/{param}/items/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgDriveItemCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgDriveItemCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveItemCreatedByUserServiceProvisioningErrorCount","GET","/drives/{param}/items/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgDriveItemCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgDriveItemDelta.g.cs","v1.0","Get-MgDriveItemDelta","GET","/drives/{param}/items/{param}/delta","matched","Get-MgDriveItemDelta" +"Cmdlets","GetMgDriveItemGetActivitiesByInterval.g.cs","v1.0","Get-MgDriveItemGetActivitiesByInterval","GET","/drives/{param}/items/{param}/getActivitiesByInterval","mismatch","Get-MgDriveItemActivityByInterval" +"Cmdlets","GetMgDriveItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgDriveItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","GET","/drives/{param}/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","no-oracle","" +"Cmdlets","GetMgDriveItemLastModifiedByUser.g.cs","v1.0","Get-MgDriveItemLastModifiedByUser","GET","/drives/{param}/items/{param}/lastModifiedByUser","matched","Get-MgDriveItemLastModifiedByUser" +"Cmdlets","GetMgDriveItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveItemLastModifiedByUserMailboxSetting","GET","/drives/{param}/items/{param}/lastModifiedByUser/mailboxSettings","matched","Get-MgDriveItemLastModifiedByUserMailboxSetting" +"Cmdlets","GetMgDriveItemLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveItemLastModifiedByUserServiceProvisioningError","GET","/drives/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgDriveItemLastModifiedByUserServiceProvisioningError" +"Cmdlets","GetMgDriveItemLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveItemLastModifiedByUserServiceProvisioningErrorCount","GET","/drives/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgDriveItemLastModifiedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgDriveItemListItem.g.cs","v1.0","Get-MgDriveItemListItem","GET","/drives/{param}/items/{param}/listItem","matched","Get-MgDriveItemListItem" +"Cmdlets","GetMgDriveItemPermission_Get.g.cs","v1.0","Get-MgDriveItemPermission","GET","/drives/{param}/items/{param}/permissions/{param}","matched","Get-MgDriveItemPermission" +"Cmdlets","GetMgDriveItemPermission_List.g.cs","v1.0","Get-MgDriveItemPermission","GET","/drives/{param}/items/{param}/permissions","matched","Get-MgDriveItemPermission" +"Cmdlets","GetMgDriveItemPermission.g.cs","v1.0","Get-MgDriveItemPermission","","","dispatcher","" +"Cmdlets","GetMgDriveItemPermissionCount.g.cs","v1.0","Get-MgDriveItemPermissionCount","GET","/drives/{param}/items/{param}/permissions/$count","matched","Get-MgDriveItemPermissionCount" +"Cmdlets","GetMgDriveItemRetentionLabel.g.cs","v1.0","Get-MgDriveItemRetentionLabel","GET","/drives/{param}/items/{param}/retentionLabel","matched","Get-MgDriveItemRetentionLabel" +"Cmdlets","GetMgDriveItemSearchWithQ.g.cs","v1.0","Get-MgDriveItemSearchWithQ","GET","/drives/{param}/items/{param}/search(q='{q}')","mismatch","Search-MgDriveItem" +"Cmdlets","GetMgDriveItemSubscription_Get.g.cs","v1.0","Get-MgDriveItemSubscription","GET","/drives/{param}/items/{param}/subscriptions/{param}","matched","Get-MgDriveItemSubscription" +"Cmdlets","GetMgDriveItemSubscription_List.g.cs","v1.0","Get-MgDriveItemSubscription","GET","/drives/{param}/items/{param}/subscriptions","matched","Get-MgDriveItemSubscription" +"Cmdlets","GetMgDriveItemSubscription.g.cs","v1.0","Get-MgDriveItemSubscription","","","dispatcher","" +"Cmdlets","GetMgDriveItemSubscriptionCount.g.cs","v1.0","Get-MgDriveItemSubscriptionCount","GET","/drives/{param}/items/{param}/subscriptions/$count","matched","Get-MgDriveItemSubscriptionCount" +"Cmdlets","GetMgDriveItemThumbnail_Get.g.cs","v1.0","Get-MgDriveItemThumbnail","GET","/drives/{param}/items/{param}/thumbnails/{param}","matched","Get-MgDriveItemThumbnail" +"Cmdlets","GetMgDriveItemThumbnail_List.g.cs","v1.0","Get-MgDriveItemThumbnail","GET","/drives/{param}/items/{param}/thumbnails","matched","Get-MgDriveItemThumbnail" +"Cmdlets","GetMgDriveItemThumbnail.g.cs","v1.0","Get-MgDriveItemThumbnail","","","dispatcher","" +"Cmdlets","GetMgDriveItemThumbnailCount.g.cs","v1.0","Get-MgDriveItemThumbnailCount","GET","/drives/{param}/items/{param}/thumbnails/$count","matched","Get-MgDriveItemThumbnailCount" +"Cmdlets","GetMgDriveItemVersion_Get.g.cs","v1.0","Get-MgDriveItemVersion","GET","/drives/{param}/items/{param}/versions/{param}","matched","Get-MgDriveItemVersion" +"Cmdlets","GetMgDriveItemVersion_List.g.cs","v1.0","Get-MgDriveItemVersion","GET","/drives/{param}/items/{param}/versions","matched","Get-MgDriveItemVersion" +"Cmdlets","GetMgDriveItemVersion.g.cs","v1.0","Get-MgDriveItemVersion","","","dispatcher","" +"Cmdlets","GetMgDriveItemVersionContent.g.cs","v1.0","Get-MgDriveItemVersionContent","GET","/drives/{param}/items/{param}/versions/{param}/content","matched","Get-MgDriveItemVersionContent" +"Cmdlets","GetMgDriveItemVersionCount.g.cs","v1.0","Get-MgDriveItemVersionCount","GET","/drives/{param}/items/{param}/versions/$count","matched","Get-MgDriveItemVersionCount" +"Cmdlets","GetMgDriveItemWorkbook.g.cs","v1.0","Get-MgDriveItemWorkbook","GET","/drives/{param}/items/{param}/workbook","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookApplication.g.cs","v1.0","Get-MgDriveItemWorkbookApplication","GET","/drives/{param}/items/{param}/workbook/application","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookComment_Get.g.cs","v1.0","Get-MgDriveItemWorkbookComment","GET","/drives/{param}/items/{param}/workbook/comments/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookComment_List.g.cs","v1.0","Get-MgDriveItemWorkbookComment","GET","/drives/{param}/items/{param}/workbook/comments","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookComment.g.cs","v1.0","Get-MgDriveItemWorkbookComment","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookCommentCount.g.cs","v1.0","Get-MgDriveItemWorkbookCommentCount","GET","/drives/{param}/items/{param}/workbook/comments/$count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookCommentReply_Get.g.cs","v1.0","Get-MgDriveItemWorkbookCommentReply","GET","/drives/{param}/items/{param}/workbook/comments/{param}/replies/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookCommentReply_List.g.cs","v1.0","Get-MgDriveItemWorkbookCommentReply","GET","/drives/{param}/items/{param}/workbook/comments/{param}/replies","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookCommentReply.g.cs","v1.0","Get-MgDriveItemWorkbookCommentReply","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookCommentReplyCount.g.cs","v1.0","Get-MgDriveItemWorkbookCommentReplyCount","GET","/drives/{param}/items/{param}/workbook/comments/{param}/replies/$count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookFunction.g.cs","v1.0","Get-MgDriveItemWorkbookFunction","GET","/drives/{param}/items/{param}/workbook/functions","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookName.g.cs","v1.0","Get-MgDriveItemWorkbookName","GET","/drives/{param}/items/{param}/workbook/names","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameCount.g.cs","v1.0","Get-MgDriveItemWorkbookNameCount","GET","/drives/{param}/items/{param}/workbook/names/$count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRange.g.cs","v1.0","Get-MgDriveItemWorkbookNameRange","GET","/drives/{param}/items/{param}/workbook/names/{param}/range","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeLastCell","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeLastRow","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookNameWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookNameWorksheet","GET","/drives/{param}/items/{param}/workbook/names/{param}/worksheet","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookOperation_Get.g.cs","v1.0","Get-MgDriveItemWorkbookOperation","GET","/drives/{param}/items/{param}/workbook/operations/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookOperation_List.g.cs","v1.0","Get-MgDriveItemWorkbookOperation","GET","/drives/{param}/items/{param}/workbook/operations","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookOperation.g.cs","v1.0","Get-MgDriveItemWorkbookOperation","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookOperationCount.g.cs","v1.0","Get-MgDriveItemWorkbookOperationCount","GET","/drives/{param}/items/{param}/workbook/operations/$count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookSessionInfoResourceWithKey.g.cs","v1.0","Get-MgDriveItemWorkbookSessionInfoResourceWithKey","GET","/drives/{param}/items/{param}/workbook/sessionInfoResource(key='{key}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTable_Get.g.cs","v1.0","Get-MgDriveItemWorkbookTable","GET","/drives/{param}/items/{param}/workbook/tables/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTable_List.g.cs","v1.0","Get-MgDriveItemWorkbookTable","GET","/drives/{param}/items/{param}/workbook/tables","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTable.g.cs","v1.0","Get-MgDriveItemWorkbookTable","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookTableColumn_Get.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumn_List.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumn","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnDataBodyRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnFilter.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnFilter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnHeaderRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnItemAtWithIndex","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/itemAt(index={index})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableColumnTotalRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableCount","GET","/drives/{param}/items/{param}/workbook/tables/count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableDataBodyRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableHeaderRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookTableItemAtWithIndex","GET","/drives/{param}/items/{param}/workbook/tables/itemAt(index={index})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRow_Get.g.cs","v1.0","Get-MgDriveItemWorkbookTableRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRow_List.g.cs","v1.0","Get-MgDriveItemWorkbookTableRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRow","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookTableRowCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowItemAtWithIndex","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/itemAt(index={index})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowOperationResultWithKey.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowOperationResultWithKey","GET","/drives/{param}/items/{param}/workbook/tableRowOperationResult(key='{key}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableSort.g.cs","v1.0","Get-MgDriveItemWorkbookTableSort","GET","/drives/{param}/items/{param}/workbook/tables/{param}/sort","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableTotalRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookTableWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookTableWorksheet","GET","/drives/{param}/items/{param}/workbook/tables/{param}/worksheet","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheet_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheet","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheet_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheet","GET","/drives/{param}/items/{param}/workbook/worksheets","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheet","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChart_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChart","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChart_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChart","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChart.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChart","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAx.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAx","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxis.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxis","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxis.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxis","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisTitle.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxis.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxis","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxisFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxisTitle.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartDataLabel.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartDataLabel","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartDataLabelFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartDataLabelFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartDataLabelFormatFill.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartDataLabelFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartFormatFill.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartFormatFill","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartImage.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartImage","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartImageWithWidth.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartImageWithWidth","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image(width={width})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartImageWithWidthWithHeight.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartImageWithWidthWithHeight","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image(width={width},height={height})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartImageWithWidthWithHeightWithFittingMode.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartImageWithWidthWithHeightWithFittingMode","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image(width={width},height={height},fittingMode='{fittingMode}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartItemAtWithIndex","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/itemAt(index={index})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartItemWithName.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartItemWithName","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/item(name='{name}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartLegend.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartLegend","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartLegendFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartLegendFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartLegendFormatFill.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartLegendFormatFill","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartLegendFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartLegendFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartSery_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSery","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartSery_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSery","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartSery.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSery","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartSeryCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartSeryFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartSeryFormatFill.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryFormatFill","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartSeryFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartSeryItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryItemAtWithIndex","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/itemAt(index={index})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartSeryPoint.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryPoint","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartSeryPointCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryPointCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartSeryPointFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryPointFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format","no-oracle","" +"Cmdlets","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","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartSeryPointItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryPointItemAtWithIndex","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/itemAt(index={index})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartTitle.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartTitle","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartTitleFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartTitleFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartTitleFormatFill.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartTitleFormatFill","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartTitleFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartTitleFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetChartWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartWorksheet","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/worksheet","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetCount","GET","/drives/{param}/items/{param}/workbook/worksheets/$count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetName.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetName","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/$count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetNameWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameWorksheet","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/worksheet","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetPivotTable_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetPivotTable","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetPivotTable_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetPivotTable","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetPivotTable.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetPivotTable","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetPivotTableCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetPivotTableCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/$count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetPivotTableWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetPivotTableWorksheet","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}/worksheet","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetProtection.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetProtection","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetRangeWithAddress.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeWithAddress","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range(address='{address}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTable_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTable","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTable_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTable","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTable.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTable","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumn_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumn_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumn","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnFilter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnFilter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnItemAtWithIndex","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/itemAt(index={index})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableItemAtWithIndex","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/itemAt(index={index})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRow_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRow_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRow","","","dispatcher","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/count","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowItemAtWithIndex","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/itemAt(index={index})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableSort.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableSort","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetTableWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableWorksheet","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/worksheet","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeBoundingRectWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/boundingRect(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeCellWithRowWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/cell(row={row},column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsAfter","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsAfterWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsAfter(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsBefore","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsBeforeWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsBefore(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeColumnWithColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/column(column={column})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/entireColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/entireRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeIntersectionWithAnotherRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/intersection(anotherRange='{anotherRange}')","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastCell","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastColumn","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastRow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeOffsetRangeWithRowOffsetWithColumnOffset","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeResizedRangeWithDeltaRowsWithDeltaColumns","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsAbove","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeRowsAboveWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsAbove(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsBelow","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeRowsBelowWithCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsBelow(count={count})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeRowWithRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/row(row={row})","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/visibleView","no-oracle","" +"Cmdlets","GetMgDriveItemWorkbookWorksheetUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeWithValuesOnly","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange(valuesOnly={valuesOnly})","no-oracle","" +"Cmdlets","GetMgDriveLastModifiedByUser.g.cs","v1.0","Get-MgDriveLastModifiedByUser","GET","/drives/{param}/lastModifiedByUser","matched","Get-MgDriveLastModifiedByUser" +"Cmdlets","GetMgDriveLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveLastModifiedByUserMailboxSetting","GET","/drives/{param}/lastModifiedByUser/mailboxSettings","matched","Get-MgDriveLastModifiedByUserMailboxSetting" +"Cmdlets","GetMgDriveLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveLastModifiedByUserServiceProvisioningError","GET","/drives/{param}/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgDriveLastModifiedByUserServiceProvisioningError" +"Cmdlets","GetMgDriveLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveLastModifiedByUserServiceProvisioningErrorCount","GET","/drives/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgDriveLastModifiedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgDriveList.g.cs","v1.0","Get-MgDriveList","GET","/drives/{param}/list","matched","Get-MgDriveList" +"Cmdlets","GetMgDriveListColumn_Get.g.cs","v1.0","Get-MgDriveListColumn","GET","/drives/{param}/list/columns/{param}","matched","Get-MgDriveListColumn" +"Cmdlets","GetMgDriveListColumn_List.g.cs","v1.0","Get-MgDriveListColumn","GET","/drives/{param}/list/columns","matched","Get-MgDriveListColumn" +"Cmdlets","GetMgDriveListColumn.g.cs","v1.0","Get-MgDriveListColumn","","","dispatcher","" +"Cmdlets","GetMgDriveListColumnCount.g.cs","v1.0","Get-MgDriveListColumnCount","GET","/drives/{param}/list/columns/$count","matched","Get-MgDriveListColumnCount" +"Cmdlets","GetMgDriveListColumnSourceColumn.g.cs","v1.0","Get-MgDriveListColumnSourceColumn","GET","/drives/{param}/list/columns/{param}/sourceColumn","matched","Get-MgDriveListColumnSourceColumn" +"Cmdlets","GetMgDriveListContentType_Get.g.cs","v1.0","Get-MgDriveListContentType","GET","/drives/{param}/list/contentTypes/{param}","matched","Get-MgDriveListContentType" +"Cmdlets","GetMgDriveListContentType_List.g.cs","v1.0","Get-MgDriveListContentType","GET","/drives/{param}/list/contentTypes","matched","Get-MgDriveListContentType" +"Cmdlets","GetMgDriveListContentType.g.cs","v1.0","Get-MgDriveListContentType","","","dispatcher","" +"Cmdlets","GetMgDriveListContentTypeBase.g.cs","v1.0","Get-MgDriveListContentTypeBase","GET","/drives/{param}/list/contentTypes/{param}/base","mismatch","Get-MgDriveContentTypeBase" +"Cmdlets","GetMgDriveListContentTypeBaseType_Get.g.cs","v1.0","Get-MgDriveListContentTypeBaseType","GET","/drives/{param}/list/contentTypes/{param}/baseTypes/{param}","mismatch","Get-MgDriveContentTypeBaseType" +"Cmdlets","GetMgDriveListContentTypeBaseType_List.g.cs","v1.0","Get-MgDriveListContentTypeBaseType","GET","/drives/{param}/list/contentTypes/{param}/baseTypes","mismatch","Get-MgDriveContentTypeBaseType" +"Cmdlets","GetMgDriveListContentTypeBaseType.g.cs","v1.0","Get-MgDriveListContentTypeBaseType","","","dispatcher","" +"Cmdlets","GetMgDriveListContentTypeBaseTypeCount.g.cs","v1.0","Get-MgDriveListContentTypeBaseTypeCount","GET","/drives/{param}/list/contentTypes/{param}/baseTypes/$count","mismatch","Get-MgDriveContentTypeBaseTypeCount" +"Cmdlets","GetMgDriveListContentTypeColumn_Get.g.cs","v1.0","Get-MgDriveListContentTypeColumn","GET","/drives/{param}/list/contentTypes/{param}/columns/{param}","matched","Get-MgDriveListContentTypeColumn" +"Cmdlets","GetMgDriveListContentTypeColumn_List.g.cs","v1.0","Get-MgDriveListContentTypeColumn","GET","/drives/{param}/list/contentTypes/{param}/columns","matched","Get-MgDriveListContentTypeColumn" +"Cmdlets","GetMgDriveListContentTypeColumn.g.cs","v1.0","Get-MgDriveListContentTypeColumn","","","dispatcher","" +"Cmdlets","GetMgDriveListContentTypeColumnCount.g.cs","v1.0","Get-MgDriveListContentTypeColumnCount","GET","/drives/{param}/list/contentTypes/{param}/columns/$count","matched","Get-MgDriveListContentTypeColumnCount" +"Cmdlets","GetMgDriveListContentTypeColumnLink_Get.g.cs","v1.0","Get-MgDriveListContentTypeColumnLink","GET","/drives/{param}/list/contentTypes/{param}/columnLinks/{param}","matched","Get-MgDriveListContentTypeColumnLink" +"Cmdlets","GetMgDriveListContentTypeColumnLink_List.g.cs","v1.0","Get-MgDriveListContentTypeColumnLink","GET","/drives/{param}/list/contentTypes/{param}/columnLinks","matched","Get-MgDriveListContentTypeColumnLink" +"Cmdlets","GetMgDriveListContentTypeColumnLink.g.cs","v1.0","Get-MgDriveListContentTypeColumnLink","","","dispatcher","" +"Cmdlets","GetMgDriveListContentTypeColumnLinkCount.g.cs","v1.0","Get-MgDriveListContentTypeColumnLinkCount","GET","/drives/{param}/list/contentTypes/{param}/columnLinks/$count","matched","Get-MgDriveListContentTypeColumnLinkCount" +"Cmdlets","GetMgDriveListContentTypeColumnPosition_Get.g.cs","v1.0","Get-MgDriveListContentTypeColumnPosition","GET","/drives/{param}/list/contentTypes/{param}/columnPositions/{param}","matched","Get-MgDriveListContentTypeColumnPosition" +"Cmdlets","GetMgDriveListContentTypeColumnPosition_List.g.cs","v1.0","Get-MgDriveListContentTypeColumnPosition","GET","/drives/{param}/list/contentTypes/{param}/columnPositions","matched","Get-MgDriveListContentTypeColumnPosition" +"Cmdlets","GetMgDriveListContentTypeColumnPosition.g.cs","v1.0","Get-MgDriveListContentTypeColumnPosition","","","dispatcher","" +"Cmdlets","GetMgDriveListContentTypeColumnPositionCount.g.cs","v1.0","Get-MgDriveListContentTypeColumnPositionCount","GET","/drives/{param}/list/contentTypes/{param}/columnPositions/$count","matched","Get-MgDriveListContentTypeColumnPositionCount" +"Cmdlets","GetMgDriveListContentTypeColumnSourceColumn.g.cs","v1.0","Get-MgDriveListContentTypeColumnSourceColumn","GET","/drives/{param}/list/contentTypes/{param}/columns/{param}/sourceColumn","matched","Get-MgDriveListContentTypeColumnSourceColumn" +"Cmdlets","GetMgDriveListContentTypeCount.g.cs","v1.0","Get-MgDriveListContentTypeCount","GET","/drives/{param}/list/contentTypes/$count","matched","Get-MgDriveListContentTypeCount" +"Cmdlets","GetMgDriveListContentTypeGetCompatibleHubContentTypes.g.cs","v1.0","Get-MgDriveListContentTypeGetCompatibleHubContentTypes","GET","/drives/{param}/list/contentTypes/getCompatibleHubContentTypes","mismatch","Get-MgDriveListContentTypeCompatibleHubContentType" +"Cmdlets","GetMgDriveListContentTypeIsPublished.g.cs","v1.0","Get-MgDriveListContentTypeIsPublished","GET","/drives/{param}/list/contentTypes/{param}/isPublished","mismatch","Test-MgDriveListContentTypePublished" +"Cmdlets","GetMgDriveListCreatedByUser.g.cs","v1.0","Get-MgDriveListCreatedByUser","GET","/drives/{param}/list/createdByUser","matched","Get-MgDriveListCreatedByUser" +"Cmdlets","GetMgDriveListCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveListCreatedByUserMailboxSetting","GET","/drives/{param}/list/createdByUser/mailboxSettings","matched","Get-MgDriveListCreatedByUserMailboxSetting" +"Cmdlets","GetMgDriveListCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveListCreatedByUserServiceProvisioningError","GET","/drives/{param}/list/createdByUser/serviceProvisioningErrors","matched","Get-MgDriveListCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgDriveListCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveListCreatedByUserServiceProvisioningErrorCount","GET","/drives/{param}/list/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgDriveListCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgDriveListDrive.g.cs","v1.0","Get-MgDriveListDrive","GET","/drives/{param}/list/drive","matched","Get-MgDriveListDrive" +"Cmdlets","GetMgDriveListItem_Get.g.cs","v1.0","Get-MgDriveListItem","GET","/drives/{param}/list/items/{param}","matched","Get-MgDriveListItem" +"Cmdlets","GetMgDriveListItem_List.g.cs","v1.0","Get-MgDriveListItem","GET","/drives/{param}/list/items","matched","Get-MgDriveListItem" +"Cmdlets","GetMgDriveListItem.g.cs","v1.0","Get-MgDriveListItem","","","dispatcher","" +"Cmdlets","GetMgDriveListItemAnalytic.g.cs","v1.0","Get-MgDriveListItemAnalytic","GET","/drives/{param}/list/items/{param}/analytics","matched","Get-MgDriveListItemAnalytic" +"Cmdlets","GetMgDriveListItemCount.g.cs","v1.0","Get-MgDriveListItemCount","GET","/drives/{param}/list/items/$count","matched","Get-MgDriveListItemCount" +"Cmdlets","GetMgDriveListItemCreatedByUser.g.cs","v1.0","Get-MgDriveListItemCreatedByUser","GET","/drives/{param}/list/items/{param}/createdByUser","matched","Get-MgDriveListItemCreatedByUser" +"Cmdlets","GetMgDriveListItemCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveListItemCreatedByUserMailboxSetting","GET","/drives/{param}/list/items/{param}/createdByUser/mailboxSettings","matched","Get-MgDriveListItemCreatedByUserMailboxSetting" +"Cmdlets","GetMgDriveListItemCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveListItemCreatedByUserServiceProvisioningError","GET","/drives/{param}/list/items/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgDriveListItemCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgDriveListItemCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveListItemCreatedByUserServiceProvisioningErrorCount","GET","/drives/{param}/list/items/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgDriveListItemCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgDriveListItemDelta.g.cs","v1.0","Get-MgDriveListItemDelta","GET","/drives/{param}/list/items/delta","matched","Get-MgDriveListItemDelta" +"Cmdlets","GetMgDriveListItemDocumentSetVersion_Get.g.cs","v1.0","Get-MgDriveListItemDocumentSetVersion","GET","/drives/{param}/list/items/{param}/documentSetVersions/{param}","matched","Get-MgDriveListItemDocumentSetVersion" +"Cmdlets","GetMgDriveListItemDocumentSetVersion_List.g.cs","v1.0","Get-MgDriveListItemDocumentSetVersion","GET","/drives/{param}/list/items/{param}/documentSetVersions","matched","Get-MgDriveListItemDocumentSetVersion" +"Cmdlets","GetMgDriveListItemDocumentSetVersion.g.cs","v1.0","Get-MgDriveListItemDocumentSetVersion","","","dispatcher","" +"Cmdlets","GetMgDriveListItemDocumentSetVersionCount.g.cs","v1.0","Get-MgDriveListItemDocumentSetVersionCount","GET","/drives/{param}/list/items/{param}/documentSetVersions/$count","matched","Get-MgDriveListItemDocumentSetVersionCount" +"Cmdlets","GetMgDriveListItemDocumentSetVersionField.g.cs","v1.0","Get-MgDriveListItemDocumentSetVersionField","GET","/drives/{param}/list/items/{param}/documentSetVersions/{param}/fields","matched","Get-MgDriveListItemDocumentSetVersionField" +"Cmdlets","GetMgDriveListItemDriveItem.g.cs","v1.0","Get-MgDriveListItemDriveItem","GET","/drives/{param}/list/items/{param}/driveItem","matched","Get-MgDriveListItemDriveItem" +"Cmdlets","GetMgDriveListItemDriveItemContent.g.cs","v1.0","Get-MgDriveListItemDriveItemContent","GET","/drives/{param}/list/items/{param}/driveItem/content","matched","Get-MgDriveListItemDriveItemContent" +"Cmdlets","GetMgDriveListItemField.g.cs","v1.0","Get-MgDriveListItemField","GET","/drives/{param}/list/items/{param}/fields","matched","Get-MgDriveListItemField" +"Cmdlets","GetMgDriveListItemGetActivitiesByInterval.g.cs","v1.0","Get-MgDriveListItemGetActivitiesByInterval","GET","/drives/{param}/list/items/{param}/getActivitiesByInterval","mismatch","Get-MgDriveListItemActivityByInterval" +"Cmdlets","GetMgDriveListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgDriveListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","GET","/drives/{param}/list/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","no-oracle","" +"Cmdlets","GetMgDriveListItemLastModifiedByUser.g.cs","v1.0","Get-MgDriveListItemLastModifiedByUser","GET","/drives/{param}/list/items/{param}/lastModifiedByUser","no-oracle","" +"Cmdlets","GetMgDriveListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveListItemLastModifiedByUserMailboxSetting","GET","/drives/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings","no-oracle","" +"Cmdlets","GetMgDriveListItemLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveListItemLastModifiedByUserServiceProvisioningError","GET","/drives/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgDriveListItemLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveListItemLastModifiedByUserServiceProvisioningErrorCount","GET","/drives/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgDriveListItemPermission_Get.g.cs","v1.0","Get-MgDriveListItemPermission","GET","/drives/{param}/list/items/{param}/permissions/{param}","no-oracle","" +"Cmdlets","GetMgDriveListItemPermission_List.g.cs","v1.0","Get-MgDriveListItemPermission","GET","/drives/{param}/list/items/{param}/permissions","no-oracle","" +"Cmdlets","GetMgDriveListItemPermission.g.cs","v1.0","Get-MgDriveListItemPermission","","","dispatcher","" +"Cmdlets","GetMgDriveListItemPermissionCount.g.cs","v1.0","Get-MgDriveListItemPermissionCount","GET","/drives/{param}/list/items/{param}/permissions/$count","no-oracle","" +"Cmdlets","GetMgDriveListItemVersion_Get.g.cs","v1.0","Get-MgDriveListItemVersion","GET","/drives/{param}/list/items/{param}/versions/{param}","matched","Get-MgDriveListItemVersion" +"Cmdlets","GetMgDriveListItemVersion_List.g.cs","v1.0","Get-MgDriveListItemVersion","GET","/drives/{param}/list/items/{param}/versions","matched","Get-MgDriveListItemVersion" +"Cmdlets","GetMgDriveListItemVersion.g.cs","v1.0","Get-MgDriveListItemVersion","","","dispatcher","" +"Cmdlets","GetMgDriveListItemVersionCount.g.cs","v1.0","Get-MgDriveListItemVersionCount","GET","/drives/{param}/list/items/{param}/versions/$count","matched","Get-MgDriveListItemVersionCount" +"Cmdlets","GetMgDriveListItemVersionField.g.cs","v1.0","Get-MgDriveListItemVersionField","GET","/drives/{param}/list/items/{param}/versions/{param}/fields","matched","Get-MgDriveListItemVersionField" +"Cmdlets","GetMgDriveListLastModifiedByUser.g.cs","v1.0","Get-MgDriveListLastModifiedByUser","GET","/drives/{param}/list/lastModifiedByUser","no-oracle","" +"Cmdlets","GetMgDriveListLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveListLastModifiedByUserMailboxSetting","GET","/drives/{param}/list/lastModifiedByUser/mailboxSettings","no-oracle","" +"Cmdlets","GetMgDriveListLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveListLastModifiedByUserServiceProvisioningError","GET","/drives/{param}/list/lastModifiedByUser/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgDriveListLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveListLastModifiedByUserServiceProvisioningErrorCount","GET","/drives/{param}/list/lastModifiedByUser/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgDriveListOperation_Get.g.cs","v1.0","Get-MgDriveListOperation","GET","/drives/{param}/list/operations/{param}","matched","Get-MgDriveListOperation" +"Cmdlets","GetMgDriveListOperation_List.g.cs","v1.0","Get-MgDriveListOperation","GET","/drives/{param}/list/operations","matched","Get-MgDriveListOperation" +"Cmdlets","GetMgDriveListOperation.g.cs","v1.0","Get-MgDriveListOperation","","","dispatcher","" +"Cmdlets","GetMgDriveListOperationCount.g.cs","v1.0","Get-MgDriveListOperationCount","GET","/drives/{param}/list/operations/$count","matched","Get-MgDriveListOperationCount" +"Cmdlets","GetMgDriveListPermission_Get.g.cs","v1.0","Get-MgDriveListPermission","GET","/drives/{param}/list/permissions/{param}","no-oracle","" +"Cmdlets","GetMgDriveListPermission_List.g.cs","v1.0","Get-MgDriveListPermission","GET","/drives/{param}/list/permissions","no-oracle","" +"Cmdlets","GetMgDriveListPermission.g.cs","v1.0","Get-MgDriveListPermission","","","dispatcher","" +"Cmdlets","GetMgDriveListPermissionCount.g.cs","v1.0","Get-MgDriveListPermissionCount","GET","/drives/{param}/list/permissions/$count","no-oracle","" +"Cmdlets","GetMgDriveListSubscription_Get.g.cs","v1.0","Get-MgDriveListSubscription","GET","/drives/{param}/list/subscriptions/{param}","matched","Get-MgDriveListSubscription" +"Cmdlets","GetMgDriveListSubscription_List.g.cs","v1.0","Get-MgDriveListSubscription","GET","/drives/{param}/list/subscriptions","matched","Get-MgDriveListSubscription" +"Cmdlets","GetMgDriveListSubscription.g.cs","v1.0","Get-MgDriveListSubscription","","","dispatcher","" +"Cmdlets","GetMgDriveListSubscriptionCount.g.cs","v1.0","Get-MgDriveListSubscriptionCount","GET","/drives/{param}/list/subscriptions/$count","matched","Get-MgDriveListSubscriptionCount" +"Cmdlets","GetMgDriveRecent.g.cs","v1.0","Get-MgDriveRecent","GET","/drives/{param}/recent","mismatch","Invoke-MgRecentDrive" +"Cmdlets","GetMgDriveRoot.g.cs","v1.0","Get-MgDriveRoot","GET","/drives/{param}/root","matched","Get-MgDriveRoot" +"Cmdlets","GetMgDriveRootContent.g.cs","v1.0","Get-MgDriveRootContent","GET","/drives/{param}/root/content","matched","Get-MgDriveRootContent" +"Cmdlets","GetMgDriveSearchWithQ.g.cs","v1.0","Get-MgDriveSearchWithQ","GET","/drives/{param}/search(q='{q}')","mismatch","Search-MgDrive" +"Cmdlets","GetMgDriveSharedWithMe.g.cs","v1.0","Get-MgDriveSharedWithMe","GET","/drives/{param}/sharedWithMe","mismatch","Invoke-MgGraphDrive" +"Cmdlets","GetMgDriveSpecial_Get.g.cs","v1.0","Get-MgDriveSpecial","GET","/drives/{param}/special/{param}","matched","Get-MgDriveSpecial" +"Cmdlets","GetMgDriveSpecial_List.g.cs","v1.0","Get-MgDriveSpecial","GET","/drives/{param}/special","matched","Get-MgDriveSpecial" +"Cmdlets","GetMgDriveSpecial.g.cs","v1.0","Get-MgDriveSpecial","","","dispatcher","" +"Cmdlets","GetMgDriveSpecialContent.g.cs","v1.0","Get-MgDriveSpecialContent","GET","/drives/{param}/special/{param}/content","matched","Get-MgDriveSpecialContent" +"Cmdlets","GetMgDriveSpecialCount.g.cs","v1.0","Get-MgDriveSpecialCount","GET","/drives/{param}/special/$count","matched","Get-MgDriveSpecialCount" +"Cmdlets","GetMgGroupDefaultDrive.g.cs","v1.0","Get-MgGroupDefaultDrive","GET","/groups/{param}/drive","matched","Get-MgGroupDefaultDrive" +"Cmdlets","GetMgGroupDrive_Get.g.cs","v1.0","Get-MgGroupDrive","GET","/groups/{param}/drives/{param}","matched","Get-MgGroupDrive" +"Cmdlets","GetMgGroupDrive_List.g.cs","v1.0","Get-MgGroupDrive","GET","/groups/{param}/drives","matched","Get-MgGroupDrive" +"Cmdlets","GetMgGroupDrive.g.cs","v1.0","Get-MgGroupDrive","","","dispatcher","" +"Cmdlets","GetMgGroupDriveCount.g.cs","v1.0","Get-MgGroupDriveCount","GET","/groups/{param}/drives/$count","matched","Get-MgGroupDriveCount" +"Cmdlets","GetMgShare_Get.g.cs","v1.0","Get-MgShare","GET","/shares/{param}","matched","Get-MgShareSharedDriveItemSharedDriveItem" +"Cmdlets","GetMgShare_List.g.cs","v1.0","Get-MgShare","GET","/shares","matched","Get-MgShareSharedDriveItemSharedDriveItem" +"Cmdlets","GetMgShare.g.cs","v1.0","Get-MgShare","","","dispatcher","" +"Cmdlets","GetMgShareCount.g.cs","v1.0","Get-MgShareCount","GET","/shares/$count","matched","Get-MgShareCount" +"Cmdlets","GetMgShareCreatedByUser.g.cs","v1.0","Get-MgShareCreatedByUser","GET","/shares/{param}/createdByUser","matched","Get-MgShareCreatedByUser" +"Cmdlets","GetMgShareCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgShareCreatedByUserMailboxSetting","GET","/shares/{param}/createdByUser/mailboxSettings","matched","Get-MgShareCreatedByUserMailboxSetting" +"Cmdlets","GetMgShareCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgShareCreatedByUserServiceProvisioningError","GET","/shares/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgShareCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgShareCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgShareCreatedByUserServiceProvisioningErrorCount","GET","/shares/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgShareCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgShareDriveItem.g.cs","v1.0","Get-MgShareDriveItem","GET","/shares/{param}/driveItem","matched","Get-MgShareDriveItem" +"Cmdlets","GetMgShareDriveItemContent.g.cs","v1.0","Get-MgShareDriveItemContent","GET","/shares/{param}/driveItem/content","matched","Get-MgShareDriveItemContent" +"Cmdlets","GetMgShareItem_Get.g.cs","v1.0","Get-MgShareItem","GET","/shares/{param}/items/{param}","matched","Get-MgShareItem" +"Cmdlets","GetMgShareItem_List.g.cs","v1.0","Get-MgShareItem","GET","/shares/{param}/items","matched","Get-MgShareItem" +"Cmdlets","GetMgShareItem.g.cs","v1.0","Get-MgShareItem","","","dispatcher","" +"Cmdlets","GetMgShareItemContent.g.cs","v1.0","Get-MgShareItemContent","GET","/shares/{param}/items/{param}/content","matched","Get-MgShareItemContent" +"Cmdlets","GetMgShareItemCount.g.cs","v1.0","Get-MgShareItemCount","GET","/shares/{param}/items/$count","matched","Get-MgShareItemCount" +"Cmdlets","GetMgShareLastModifiedByUser.g.cs","v1.0","Get-MgShareLastModifiedByUser","GET","/shares/{param}/lastModifiedByUser","matched","Get-MgShareLastModifiedByUser" +"Cmdlets","GetMgShareLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgShareLastModifiedByUserMailboxSetting","GET","/shares/{param}/lastModifiedByUser/mailboxSettings","matched","Get-MgShareLastModifiedByUserMailboxSetting" +"Cmdlets","GetMgShareLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgShareLastModifiedByUserServiceProvisioningError","GET","/shares/{param}/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgShareLastModifiedByUserServiceProvisioningError" +"Cmdlets","GetMgShareLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgShareLastModifiedByUserServiceProvisioningErrorCount","GET","/shares/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgShareLastModifiedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgShareList.g.cs","v1.0","Get-MgShareList","GET","/shares/{param}/list","matched","Get-MgShareList" +"Cmdlets","GetMgShareListColumn_Get.g.cs","v1.0","Get-MgShareListColumn","GET","/shares/{param}/list/columns/{param}","matched","Get-MgShareListColumn" +"Cmdlets","GetMgShareListColumn_List.g.cs","v1.0","Get-MgShareListColumn","GET","/shares/{param}/list/columns","matched","Get-MgShareListColumn" +"Cmdlets","GetMgShareListColumn.g.cs","v1.0","Get-MgShareListColumn","","","dispatcher","" +"Cmdlets","GetMgShareListColumnCount.g.cs","v1.0","Get-MgShareListColumnCount","GET","/shares/{param}/list/columns/$count","matched","Get-MgShareListColumnCount" +"Cmdlets","GetMgShareListColumnSourceColumn.g.cs","v1.0","Get-MgShareListColumnSourceColumn","GET","/shares/{param}/list/columns/{param}/sourceColumn","matched","Get-MgShareListColumnSourceColumn" +"Cmdlets","GetMgShareListContentType_Get.g.cs","v1.0","Get-MgShareListContentType","GET","/shares/{param}/list/contentTypes/{param}","matched","Get-MgShareListContentType" +"Cmdlets","GetMgShareListContentType_List.g.cs","v1.0","Get-MgShareListContentType","GET","/shares/{param}/list/contentTypes","matched","Get-MgShareListContentType" +"Cmdlets","GetMgShareListContentType.g.cs","v1.0","Get-MgShareListContentType","","","dispatcher","" +"Cmdlets","GetMgShareListContentTypeBase.g.cs","v1.0","Get-MgShareListContentTypeBase","GET","/shares/{param}/list/contentTypes/{param}/base","mismatch","Get-MgShareContentTypeBase" +"Cmdlets","GetMgShareListContentTypeBaseType_Get.g.cs","v1.0","Get-MgShareListContentTypeBaseType","GET","/shares/{param}/list/contentTypes/{param}/baseTypes/{param}","mismatch","Get-MgShareContentTypeBaseType" +"Cmdlets","GetMgShareListContentTypeBaseType_List.g.cs","v1.0","Get-MgShareListContentTypeBaseType","GET","/shares/{param}/list/contentTypes/{param}/baseTypes","mismatch","Get-MgShareContentTypeBaseType" +"Cmdlets","GetMgShareListContentTypeBaseType.g.cs","v1.0","Get-MgShareListContentTypeBaseType","","","dispatcher","" +"Cmdlets","GetMgShareListContentTypeBaseTypeCount.g.cs","v1.0","Get-MgShareListContentTypeBaseTypeCount","GET","/shares/{param}/list/contentTypes/{param}/baseTypes/$count","mismatch","Get-MgShareContentTypeBaseTypeCount" +"Cmdlets","GetMgShareListContentTypeColumn_Get.g.cs","v1.0","Get-MgShareListContentTypeColumn","GET","/shares/{param}/list/contentTypes/{param}/columns/{param}","matched","Get-MgShareListContentTypeColumn" +"Cmdlets","GetMgShareListContentTypeColumn_List.g.cs","v1.0","Get-MgShareListContentTypeColumn","GET","/shares/{param}/list/contentTypes/{param}/columns","matched","Get-MgShareListContentTypeColumn" +"Cmdlets","GetMgShareListContentTypeColumn.g.cs","v1.0","Get-MgShareListContentTypeColumn","","","dispatcher","" +"Cmdlets","GetMgShareListContentTypeColumnCount.g.cs","v1.0","Get-MgShareListContentTypeColumnCount","GET","/shares/{param}/list/contentTypes/{param}/columns/$count","matched","Get-MgShareListContentTypeColumnCount" +"Cmdlets","GetMgShareListContentTypeColumnLink_Get.g.cs","v1.0","Get-MgShareListContentTypeColumnLink","GET","/shares/{param}/list/contentTypes/{param}/columnLinks/{param}","matched","Get-MgShareListContentTypeColumnLink" +"Cmdlets","GetMgShareListContentTypeColumnLink_List.g.cs","v1.0","Get-MgShareListContentTypeColumnLink","GET","/shares/{param}/list/contentTypes/{param}/columnLinks","matched","Get-MgShareListContentTypeColumnLink" +"Cmdlets","GetMgShareListContentTypeColumnLink.g.cs","v1.0","Get-MgShareListContentTypeColumnLink","","","dispatcher","" +"Cmdlets","GetMgShareListContentTypeColumnLinkCount.g.cs","v1.0","Get-MgShareListContentTypeColumnLinkCount","GET","/shares/{param}/list/contentTypes/{param}/columnLinks/$count","matched","Get-MgShareListContentTypeColumnLinkCount" +"Cmdlets","GetMgShareListContentTypeColumnPosition_Get.g.cs","v1.0","Get-MgShareListContentTypeColumnPosition","GET","/shares/{param}/list/contentTypes/{param}/columnPositions/{param}","matched","Get-MgShareListContentTypeColumnPosition" +"Cmdlets","GetMgShareListContentTypeColumnPosition_List.g.cs","v1.0","Get-MgShareListContentTypeColumnPosition","GET","/shares/{param}/list/contentTypes/{param}/columnPositions","matched","Get-MgShareListContentTypeColumnPosition" +"Cmdlets","GetMgShareListContentTypeColumnPosition.g.cs","v1.0","Get-MgShareListContentTypeColumnPosition","","","dispatcher","" +"Cmdlets","GetMgShareListContentTypeColumnPositionCount.g.cs","v1.0","Get-MgShareListContentTypeColumnPositionCount","GET","/shares/{param}/list/contentTypes/{param}/columnPositions/$count","matched","Get-MgShareListContentTypeColumnPositionCount" +"Cmdlets","GetMgShareListContentTypeColumnSourceColumn.g.cs","v1.0","Get-MgShareListContentTypeColumnSourceColumn","GET","/shares/{param}/list/contentTypes/{param}/columns/{param}/sourceColumn","matched","Get-MgShareListContentTypeColumnSourceColumn" +"Cmdlets","GetMgShareListContentTypeCount.g.cs","v1.0","Get-MgShareListContentTypeCount","GET","/shares/{param}/list/contentTypes/$count","matched","Get-MgShareListContentTypeCount" +"Cmdlets","GetMgShareListContentTypeGetCompatibleHubContentTypes.g.cs","v1.0","Get-MgShareListContentTypeGetCompatibleHubContentTypes","GET","/shares/{param}/list/contentTypes/getCompatibleHubContentTypes","mismatch","Get-MgShareListContentTypeCompatibleHubContentType" +"Cmdlets","GetMgShareListContentTypeIsPublished.g.cs","v1.0","Get-MgShareListContentTypeIsPublished","GET","/shares/{param}/list/contentTypes/{param}/isPublished","mismatch","Test-MgShareListContentTypePublished" +"Cmdlets","GetMgShareListCreatedByUser.g.cs","v1.0","Get-MgShareListCreatedByUser","GET","/shares/{param}/list/createdByUser","matched","Get-MgShareListCreatedByUser" +"Cmdlets","GetMgShareListCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgShareListCreatedByUserMailboxSetting","GET","/shares/{param}/list/createdByUser/mailboxSettings","matched","Get-MgShareListCreatedByUserMailboxSetting" +"Cmdlets","GetMgShareListCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgShareListCreatedByUserServiceProvisioningError","GET","/shares/{param}/list/createdByUser/serviceProvisioningErrors","matched","Get-MgShareListCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgShareListCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgShareListCreatedByUserServiceProvisioningErrorCount","GET","/shares/{param}/list/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgShareListCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgShareListDrive.g.cs","v1.0","Get-MgShareListDrive","GET","/shares/{param}/list/drive","matched","Get-MgShareListDrive" +"Cmdlets","GetMgShareListItem.g.cs","v1.0","Get-MgShareListItem","GET","/shares/{param}/list/items","matched","Get-MgShareListItem" +"Cmdlets","GetMgShareListItemAnalytic.g.cs","v1.0","Get-MgShareListItemAnalytic","GET","/shares/{param}/list/items/{param}/analytics","matched","Get-MgShareListItemAnalytic" +"Cmdlets","GetMgShareListItemCreatedByUser.g.cs","v1.0","Get-MgShareListItemCreatedByUser","GET","/shares/{param}/list/items/{param}/createdByUser","matched","Get-MgShareListItemCreatedByUser" +"Cmdlets","GetMgShareListItemCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgShareListItemCreatedByUserMailboxSetting","GET","/shares/{param}/list/items/{param}/createdByUser/mailboxSettings","matched","Get-MgShareListItemCreatedByUserMailboxSetting" +"Cmdlets","GetMgShareListItemCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgShareListItemCreatedByUserServiceProvisioningError","GET","/shares/{param}/list/items/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgShareListItemCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgShareListItemCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgShareListItemCreatedByUserServiceProvisioningErrorCount","GET","/shares/{param}/list/items/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgShareListItemCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgShareListItemDelta.g.cs","v1.0","Get-MgShareListItemDelta","GET","/shares/{param}/list/items/delta","matched","Get-MgShareListItemDelta" +"Cmdlets","GetMgShareListItemDocumentSetVersion_Get.g.cs","v1.0","Get-MgShareListItemDocumentSetVersion","GET","/shares/{param}/list/items/{param}/documentSetVersions/{param}","matched","Get-MgShareListItemDocumentSetVersion" +"Cmdlets","GetMgShareListItemDocumentSetVersion_List.g.cs","v1.0","Get-MgShareListItemDocumentSetVersion","GET","/shares/{param}/list/items/{param}/documentSetVersions","matched","Get-MgShareListItemDocumentSetVersion" +"Cmdlets","GetMgShareListItemDocumentSetVersion.g.cs","v1.0","Get-MgShareListItemDocumentSetVersion","","","dispatcher","" +"Cmdlets","GetMgShareListItemDocumentSetVersionCount.g.cs","v1.0","Get-MgShareListItemDocumentSetVersionCount","GET","/shares/{param}/list/items/{param}/documentSetVersions/$count","matched","Get-MgShareListItemDocumentSetVersionCount" +"Cmdlets","GetMgShareListItemDocumentSetVersionField.g.cs","v1.0","Get-MgShareListItemDocumentSetVersionField","GET","/shares/{param}/list/items/{param}/documentSetVersions/{param}/fields","matched","Get-MgShareListItemDocumentSetVersionField" +"Cmdlets","GetMgShareListItemDriveItem.g.cs","v1.0","Get-MgShareListItemDriveItem","GET","/shares/{param}/list/items/{param}/driveItem","matched","Get-MgShareListItemDriveItem" +"Cmdlets","GetMgShareListItemDriveItemContent.g.cs","v1.0","Get-MgShareListItemDriveItemContent","GET","/shares/{param}/list/items/{param}/driveItem/content","matched","Get-MgShareListItemDriveItemContent" +"Cmdlets","GetMgShareListItemField.g.cs","v1.0","Get-MgShareListItemField","GET","/shares/{param}/list/items/{param}/fields","matched","Get-MgShareListItemField" +"Cmdlets","GetMgShareListItemGetActivitiesByInterval.g.cs","v1.0","Get-MgShareListItemGetActivitiesByInterval","GET","/shares/{param}/list/items/{param}/getActivitiesByInterval","mismatch","Get-MgShareListItemActivityByInterval" +"Cmdlets","GetMgShareListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgShareListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","GET","/shares/{param}/list/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","no-oracle","" +"Cmdlets","GetMgShareListItemLastModifiedByUser.g.cs","v1.0","Get-MgShareListItemLastModifiedByUser","GET","/shares/{param}/list/items/{param}/lastModifiedByUser","mismatch","Get-MgShareItemLastModifiedByUser" +"Cmdlets","GetMgShareListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgShareListItemLastModifiedByUserMailboxSetting","GET","/shares/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings","mismatch","Get-MgShareItemLastModifiedByUserMailboxSetting" +"Cmdlets","GetMgShareListItemLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgShareListItemLastModifiedByUserServiceProvisioningError","GET","/shares/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors","mismatch","Get-MgShareItemLastModifiedByUserServiceProvisioningError" +"Cmdlets","GetMgShareListItemLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgShareListItemLastModifiedByUserServiceProvisioningErrorCount","GET","/shares/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","mismatch","Get-MgShareItemLastModifiedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgShareListItemPermission_Get.g.cs","v1.0","Get-MgShareListItemPermission","GET","/shares/{param}/list/items/{param}/permissions/{param}","no-oracle","" +"Cmdlets","GetMgShareListItemPermission_List.g.cs","v1.0","Get-MgShareListItemPermission","GET","/shares/{param}/list/items/{param}/permissions","no-oracle","" +"Cmdlets","GetMgShareListItemPermission.g.cs","v1.0","Get-MgShareListItemPermission","","","dispatcher","" +"Cmdlets","GetMgShareListItemPermissionCount.g.cs","v1.0","Get-MgShareListItemPermissionCount","GET","/shares/{param}/list/items/{param}/permissions/$count","no-oracle","" +"Cmdlets","GetMgShareListItemVersion_Get.g.cs","v1.0","Get-MgShareListItemVersion","GET","/shares/{param}/list/items/{param}/versions/{param}","matched","Get-MgShareListItemVersion" +"Cmdlets","GetMgShareListItemVersion_List.g.cs","v1.0","Get-MgShareListItemVersion","GET","/shares/{param}/list/items/{param}/versions","matched","Get-MgShareListItemVersion" +"Cmdlets","GetMgShareListItemVersion.g.cs","v1.0","Get-MgShareListItemVersion","","","dispatcher","" +"Cmdlets","GetMgShareListItemVersionCount.g.cs","v1.0","Get-MgShareListItemVersionCount","GET","/shares/{param}/list/items/{param}/versions/$count","matched","Get-MgShareListItemVersionCount" +"Cmdlets","GetMgShareListItemVersionField.g.cs","v1.0","Get-MgShareListItemVersionField","GET","/shares/{param}/list/items/{param}/versions/{param}/fields","matched","Get-MgShareListItemVersionField" +"Cmdlets","GetMgShareListLastModifiedByUser.g.cs","v1.0","Get-MgShareListLastModifiedByUser","GET","/shares/{param}/list/lastModifiedByUser","no-oracle","" +"Cmdlets","GetMgShareListLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgShareListLastModifiedByUserMailboxSetting","GET","/shares/{param}/list/lastModifiedByUser/mailboxSettings","no-oracle","" +"Cmdlets","GetMgShareListLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgShareListLastModifiedByUserServiceProvisioningError","GET","/shares/{param}/list/lastModifiedByUser/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgShareListLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgShareListLastModifiedByUserServiceProvisioningErrorCount","GET","/shares/{param}/list/lastModifiedByUser/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgShareListOperation_Get.g.cs","v1.0","Get-MgShareListOperation","GET","/shares/{param}/list/operations/{param}","matched","Get-MgShareListOperation" +"Cmdlets","GetMgShareListOperation_List.g.cs","v1.0","Get-MgShareListOperation","GET","/shares/{param}/list/operations","matched","Get-MgShareListOperation" +"Cmdlets","GetMgShareListOperation.g.cs","v1.0","Get-MgShareListOperation","","","dispatcher","" +"Cmdlets","GetMgShareListOperationCount.g.cs","v1.0","Get-MgShareListOperationCount","GET","/shares/{param}/list/operations/$count","matched","Get-MgShareListOperationCount" +"Cmdlets","GetMgShareListPermission_Get.g.cs","v1.0","Get-MgShareListPermission","GET","/shares/{param}/list/permissions/{param}","no-oracle","" +"Cmdlets","GetMgShareListPermission_List.g.cs","v1.0","Get-MgShareListPermission","GET","/shares/{param}/list/permissions","no-oracle","" +"Cmdlets","GetMgShareListPermission.g.cs","v1.0","Get-MgShareListPermission","","","dispatcher","" +"Cmdlets","GetMgShareListPermissionCount.g.cs","v1.0","Get-MgShareListPermissionCount","GET","/shares/{param}/list/permissions/$count","no-oracle","" +"Cmdlets","GetMgShareListSubscription_Get.g.cs","v1.0","Get-MgShareListSubscription","GET","/shares/{param}/list/subscriptions/{param}","matched","Get-MgShareListSubscription" +"Cmdlets","GetMgShareListSubscription_List.g.cs","v1.0","Get-MgShareListSubscription","GET","/shares/{param}/list/subscriptions","matched","Get-MgShareListSubscription" +"Cmdlets","GetMgShareListSubscription.g.cs","v1.0","Get-MgShareListSubscription","","","dispatcher","" +"Cmdlets","GetMgShareListSubscriptionCount.g.cs","v1.0","Get-MgShareListSubscriptionCount","GET","/shares/{param}/list/subscriptions/$count","matched","Get-MgShareListSubscriptionCount" +"Cmdlets","GetMgSharePermission.g.cs","v1.0","Get-MgSharePermission","GET","/shares/{param}/permission","matched","Get-MgSharePermission" +"Cmdlets","GetMgShareRoot.g.cs","v1.0","Get-MgShareRoot","GET","/shares/{param}/root","matched","Get-MgShareRoot" +"Cmdlets","GetMgShareRootContent.g.cs","v1.0","Get-MgShareRootContent","GET","/shares/{param}/root/content","matched","Get-MgShareRootContent" +"Cmdlets","GetMgShareSite.g.cs","v1.0","Get-MgShareSite","GET","/shares/{param}/site","matched","Get-MgShareSite" +"Cmdlets","GetMgUserDefaultDrive.g.cs","v1.0","Get-MgUserDefaultDrive","GET","/users/{param}/drive","matched","Get-MgUserDefaultDrive" +"Cmdlets","GetMgUserDrive_Get.g.cs","v1.0","Get-MgUserDrive","GET","/users/{param}/drives/{param}","matched","Get-MgUserDrive" +"Cmdlets","GetMgUserDrive_List.g.cs","v1.0","Get-MgUserDrive","GET","/users/{param}/drives","matched","Get-MgUserDrive" +"Cmdlets","GetMgUserDrive.g.cs","v1.0","Get-MgUserDrive","","","dispatcher","" +"Cmdlets","GetMgUserDriveCount.g.cs","v1.0","Get-MgUserDriveCount","GET","/users/{param}/drives/$count","matched","Get-MgUserDriveCount" +"Cmdlets","InvokeMgDriveItemAssignSensitivityLabel.g.cs","v1.0","Invoke-MgDriveItemAssignSensitivityLabel","POST","/drives/{param}/items/{param}/assignSensitivityLabel","mismatch","Set-MgDriveItemSensitivityLabel" +"Cmdlets","InvokeMgDriveItemCheckin.g.cs","v1.0","Invoke-MgDriveItemCheckin","POST","/drives/{param}/items/{param}/checkin","mismatch","Invoke-MgCheckinDriveItem" +"Cmdlets","InvokeMgDriveItemCheckout.g.cs","v1.0","Invoke-MgDriveItemCheckout","POST","/drives/{param}/items/{param}/checkout","mismatch","Invoke-MgCheckoutDriveItem" +"Cmdlets","InvokeMgDriveItemCopy.g.cs","v1.0","Invoke-MgDriveItemCopy","POST","/drives/{param}/items/{param}/copy","mismatch","Copy-MgDriveItem" +"Cmdlets","InvokeMgDriveItemCreateLink.g.cs","v1.0","Invoke-MgDriveItemCreateLink","POST","/drives/{param}/items/{param}/createLink","mismatch","New-MgDriveItemLink" +"Cmdlets","InvokeMgDriveItemCreateUploadSession.g.cs","v1.0","Invoke-MgDriveItemCreateUploadSession","POST","/drives/{param}/items/{param}/createUploadSession","mismatch","New-MgDriveItemUploadSession" +"Cmdlets","InvokeMgDriveItemDiscardCheckout.g.cs","v1.0","Invoke-MgDriveItemDiscardCheckout","POST","/drives/{param}/items/{param}/discardCheckout","mismatch","Remove-MgDriveItemCheckout" +"Cmdlets","InvokeMgDriveItemExtractSensitivityLabels.g.cs","v1.0","Invoke-MgDriveItemExtractSensitivityLabels","POST","/drives/{param}/items/{param}/extractSensitivityLabels","mismatch","Invoke-MgExtractDriveItemSensitivityLabel" +"Cmdlets","InvokeMgDriveItemFollow.g.cs","v1.0","Invoke-MgDriveItemFollow","POST","/drives/{param}/items/{param}/follow","mismatch","Invoke-MgFollowDriveItem" +"Cmdlets","InvokeMgDriveItemInvite.g.cs","v1.0","Invoke-MgDriveItemInvite","POST","/drives/{param}/items/{param}/invite","mismatch","Invoke-MgInviteDriveItem" +"Cmdlets","InvokeMgDriveItemPermanentDelete.g.cs","v1.0","Invoke-MgDriveItemPermanentDelete","POST","/drives/{param}/items/{param}/permanentDelete","mismatch","Remove-MgDriveItemPermanent" +"Cmdlets","InvokeMgDriveItemPermissionGrant.g.cs","v1.0","Invoke-MgDriveItemPermissionGrant","POST","/drives/{param}/items/{param}/permissions/{param}/grant","mismatch","Grant-MgDriveItemPermission" +"Cmdlets","InvokeMgDriveItemPreview.g.cs","v1.0","Invoke-MgDriveItemPreview","POST","/drives/{param}/items/{param}/preview","mismatch","Invoke-MgPreviewDriveItem" +"Cmdlets","InvokeMgDriveItemRestore.g.cs","v1.0","Invoke-MgDriveItemRestore","POST","/drives/{param}/items/{param}/restore","mismatch","Restore-MgDriveItem" +"Cmdlets","InvokeMgDriveItemSubscriptionReauthorize.g.cs","v1.0","Invoke-MgDriveItemSubscriptionReauthorize","POST","/drives/{param}/items/{param}/subscriptions/{param}/reauthorize","mismatch","Invoke-MgReauthorizeDriveItemSubscription" +"Cmdlets","InvokeMgDriveItemUnfollow.g.cs","v1.0","Invoke-MgDriveItemUnfollow","POST","/drives/{param}/items/{param}/unfollow","mismatch","Invoke-MgUnfollowDriveItem" +"Cmdlets","InvokeMgDriveItemValidatePermission.g.cs","v1.0","Invoke-MgDriveItemValidatePermission","POST","/drives/{param}/items/{param}/validatePermission","mismatch","Test-MgDriveItemPermission" +"Cmdlets","InvokeMgDriveItemVersionRestoreVersion.g.cs","v1.0","Invoke-MgDriveItemVersionRestoreVersion","POST","/drives/{param}/items/{param}/versions/{param}/restoreVersion","mismatch","Restore-MgDriveItemVersion" +"Cmdlets","InvokeMgDriveItemWorkbookApplicationCalculate.g.cs","v1.0","Invoke-MgDriveItemWorkbookApplicationCalculate","POST","/drives/{param}/items/{param}/workbook/application/calculate","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookCloseSession.g.cs","v1.0","Invoke-MgDriveItemWorkbookCloseSession","POST","/drives/{param}/items/{param}/workbook/closeSession","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookCreateSession.g.cs","v1.0","Invoke-MgDriveItemWorkbookCreateSession","POST","/drives/{param}/items/{param}/workbook/createSession","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAbs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAbs","POST","/drives/{param}/items/{param}/workbook/functions/abs","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAccrInt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAccrInt","POST","/drives/{param}/items/{param}/workbook/functions/accrInt","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAccrIntM.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAccrIntM","POST","/drives/{param}/items/{param}/workbook/functions/accrIntM","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAcos.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAcos","POST","/drives/{param}/items/{param}/workbook/functions/acos","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAcosh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAcosh","POST","/drives/{param}/items/{param}/workbook/functions/acosh","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAcot.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAcot","POST","/drives/{param}/items/{param}/workbook/functions/acot","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAcoth.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAcoth","POST","/drives/{param}/items/{param}/workbook/functions/acoth","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAmorDegrc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAmorDegrc","POST","/drives/{param}/items/{param}/workbook/functions/amorDegrc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAmorLinc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAmorLinc","POST","/drives/{param}/items/{param}/workbook/functions/amorLinc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAnd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAnd","POST","/drives/{param}/items/{param}/workbook/functions/and","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionArabic.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionArabic","POST","/drives/{param}/items/{param}/workbook/functions/arabic","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAreas.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAreas","POST","/drives/{param}/items/{param}/workbook/functions/areas","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAsc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAsc","POST","/drives/{param}/items/{param}/workbook/functions/asc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAsin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAsin","POST","/drives/{param}/items/{param}/workbook/functions/asin","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAsinh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAsinh","POST","/drives/{param}/items/{param}/workbook/functions/asinh","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAtan.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAtan","POST","/drives/{param}/items/{param}/workbook/functions/atan","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAtan2.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAtan2","POST","/drives/{param}/items/{param}/workbook/functions/atan2","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAtanh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAtanh","POST","/drives/{param}/items/{param}/workbook/functions/atanh","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAveDev.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAveDev","POST","/drives/{param}/items/{param}/workbook/functions/aveDev","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAverage.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAverage","POST","/drives/{param}/items/{param}/workbook/functions/average","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAverageA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAverageA","POST","/drives/{param}/items/{param}/workbook/functions/averageA","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAverageIf.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAverageIf","POST","/drives/{param}/items/{param}/workbook/functions/averageIf","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionAverageIfs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAverageIfs","POST","/drives/{param}/items/{param}/workbook/functions/averageIfs","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBahtText.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBahtText","POST","/drives/{param}/items/{param}/workbook/functions/bahtText","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBase.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBase","POST","/drives/{param}/items/{param}/workbook/functions/base","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBesselI.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBesselI","POST","/drives/{param}/items/{param}/workbook/functions/besselI","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBesselJ.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBesselJ","POST","/drives/{param}/items/{param}/workbook/functions/besselJ","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBesselK.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBesselK","POST","/drives/{param}/items/{param}/workbook/functions/besselK","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBesselY.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBesselY","POST","/drives/{param}/items/{param}/workbook/functions/besselY","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBeta_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBeta_Dist","POST","/drives/{param}/items/{param}/workbook/functions/beta_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBeta_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBeta_Inv","POST","/drives/{param}/items/{param}/workbook/functions/beta_Inv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBin2Dec.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBin2Dec","POST","/drives/{param}/items/{param}/workbook/functions/bin2Dec","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBin2Hex.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBin2Hex","POST","/drives/{param}/items/{param}/workbook/functions/bin2Hex","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBin2Oct.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBin2Oct","POST","/drives/{param}/items/{param}/workbook/functions/bin2Oct","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBinom_Dist_Range.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBinom_Dist_Range","POST","/drives/{param}/items/{param}/workbook/functions/binom_Dist_Range","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBinom_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBinom_Dist","POST","/drives/{param}/items/{param}/workbook/functions/binom_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBinom_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBinom_Inv","POST","/drives/{param}/items/{param}/workbook/functions/binom_Inv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBitand.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBitand","POST","/drives/{param}/items/{param}/workbook/functions/bitand","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBitlshift.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBitlshift","POST","/drives/{param}/items/{param}/workbook/functions/bitlshift","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBitor.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBitor","POST","/drives/{param}/items/{param}/workbook/functions/bitor","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBitrshift.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBitrshift","POST","/drives/{param}/items/{param}/workbook/functions/bitrshift","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionBitxor.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBitxor","POST","/drives/{param}/items/{param}/workbook/functions/bitxor","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCeiling_Math.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCeiling_Math","POST","/drives/{param}/items/{param}/workbook/functions/ceiling_Math","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCeiling_Precise.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCeiling_Precise","POST","/drives/{param}/items/{param}/workbook/functions/ceiling_Precise","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionChar.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionChar","POST","/drives/{param}/items/{param}/workbook/functions/char","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionChiSq_Dist_RT.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionChiSq_Dist_RT","POST","/drives/{param}/items/{param}/workbook/functions/chiSq_Dist_RT","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionChiSq_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionChiSq_Dist","POST","/drives/{param}/items/{param}/workbook/functions/chiSq_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionChiSq_Inv_RT.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionChiSq_Inv_RT","POST","/drives/{param}/items/{param}/workbook/functions/chiSq_Inv_RT","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionChiSq_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionChiSq_Inv","POST","/drives/{param}/items/{param}/workbook/functions/chiSq_Inv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionChoose.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionChoose","POST","/drives/{param}/items/{param}/workbook/functions/choose","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionClean.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionClean","POST","/drives/{param}/items/{param}/workbook/functions/clean","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCode.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCode","POST","/drives/{param}/items/{param}/workbook/functions/code","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionColumns.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionColumns","POST","/drives/{param}/items/{param}/workbook/functions/columns","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCombin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCombin","POST","/drives/{param}/items/{param}/workbook/functions/combin","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCombina.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCombina","POST","/drives/{param}/items/{param}/workbook/functions/combina","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionComplex.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionComplex","POST","/drives/{param}/items/{param}/workbook/functions/complex","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionConcatenate.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionConcatenate","POST","/drives/{param}/items/{param}/workbook/functions/concatenate","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionConfidence_Norm.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionConfidence_Norm","POST","/drives/{param}/items/{param}/workbook/functions/confidence_Norm","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionConfidence_T.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionConfidence_T","POST","/drives/{param}/items/{param}/workbook/functions/confidence_T","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionConvert.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionConvert","POST","/drives/{param}/items/{param}/workbook/functions/convert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCos.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCos","POST","/drives/{param}/items/{param}/workbook/functions/cos","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCosh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCosh","POST","/drives/{param}/items/{param}/workbook/functions/cosh","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCot.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCot","POST","/drives/{param}/items/{param}/workbook/functions/cot","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCoth.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoth","POST","/drives/{param}/items/{param}/workbook/functions/coth","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCount.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCount","POST","/drives/{param}/items/{param}/workbook/functions/count","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCountA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCountA","POST","/drives/{param}/items/{param}/workbook/functions/countA","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCountBlank.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCountBlank","POST","/drives/{param}/items/{param}/workbook/functions/countBlank","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCountIf.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCountIf","POST","/drives/{param}/items/{param}/workbook/functions/countIf","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCountIfs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCountIfs","POST","/drives/{param}/items/{param}/workbook/functions/countIfs","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCoupDayBs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoupDayBs","POST","/drives/{param}/items/{param}/workbook/functions/coupDayBs","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCoupDays.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoupDays","POST","/drives/{param}/items/{param}/workbook/functions/coupDays","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCoupDaysNc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoupDaysNc","POST","/drives/{param}/items/{param}/workbook/functions/coupDaysNc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCoupNcd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoupNcd","POST","/drives/{param}/items/{param}/workbook/functions/coupNcd","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCoupNum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoupNum","POST","/drives/{param}/items/{param}/workbook/functions/coupNum","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCoupPcd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoupPcd","POST","/drives/{param}/items/{param}/workbook/functions/coupPcd","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCsc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCsc","POST","/drives/{param}/items/{param}/workbook/functions/csc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCsch.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCsch","POST","/drives/{param}/items/{param}/workbook/functions/csch","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCumIPmt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCumIPmt","POST","/drives/{param}/items/{param}/workbook/functions/cumIPmt","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionCumPrinc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCumPrinc","POST","/drives/{param}/items/{param}/workbook/functions/cumPrinc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDate.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDate","POST","/drives/{param}/items/{param}/workbook/functions/date","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDatevalue.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDatevalue","POST","/drives/{param}/items/{param}/workbook/functions/datevalue","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDaverage.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDaverage","POST","/drives/{param}/items/{param}/workbook/functions/daverage","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDay.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDay","POST","/drives/{param}/items/{param}/workbook/functions/day","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDays.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDays","POST","/drives/{param}/items/{param}/workbook/functions/days","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDays360.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDays360","POST","/drives/{param}/items/{param}/workbook/functions/days360","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDb","POST","/drives/{param}/items/{param}/workbook/functions/db","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDbcs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDbcs","POST","/drives/{param}/items/{param}/workbook/functions/dbcs","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDcount.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDcount","POST","/drives/{param}/items/{param}/workbook/functions/dcount","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDcountA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDcountA","POST","/drives/{param}/items/{param}/workbook/functions/dcountA","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDdb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDdb","POST","/drives/{param}/items/{param}/workbook/functions/ddb","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDec2Bin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDec2Bin","POST","/drives/{param}/items/{param}/workbook/functions/dec2Bin","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDec2Hex.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDec2Hex","POST","/drives/{param}/items/{param}/workbook/functions/dec2Hex","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDec2Oct.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDec2Oct","POST","/drives/{param}/items/{param}/workbook/functions/dec2Oct","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDecimal.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDecimal","POST","/drives/{param}/items/{param}/workbook/functions/decimal","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDegrees.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDegrees","POST","/drives/{param}/items/{param}/workbook/functions/degrees","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDelta.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDelta","POST","/drives/{param}/items/{param}/workbook/functions/delta","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDevSq.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDevSq","POST","/drives/{param}/items/{param}/workbook/functions/devSq","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDget.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDget","POST","/drives/{param}/items/{param}/workbook/functions/dget","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDisc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDisc","POST","/drives/{param}/items/{param}/workbook/functions/disc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDmax.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDmax","POST","/drives/{param}/items/{param}/workbook/functions/dmax","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDmin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDmin","POST","/drives/{param}/items/{param}/workbook/functions/dmin","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDollar.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDollar","POST","/drives/{param}/items/{param}/workbook/functions/dollar","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDollarDe.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDollarDe","POST","/drives/{param}/items/{param}/workbook/functions/dollarDe","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDollarFr.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDollarFr","POST","/drives/{param}/items/{param}/workbook/functions/dollarFr","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDproduct.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDproduct","POST","/drives/{param}/items/{param}/workbook/functions/dproduct","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDstDev.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDstDev","POST","/drives/{param}/items/{param}/workbook/functions/dstDev","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDstDevP.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDstDevP","POST","/drives/{param}/items/{param}/workbook/functions/dstDevP","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDsum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDsum","POST","/drives/{param}/items/{param}/workbook/functions/dsum","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDuration.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDuration","POST","/drives/{param}/items/{param}/workbook/functions/duration","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDvar.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDvar","POST","/drives/{param}/items/{param}/workbook/functions/dvar","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionDvarP.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDvarP","POST","/drives/{param}/items/{param}/workbook/functions/dvarP","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionEcma_Ceiling.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionEcma_Ceiling","POST","/drives/{param}/items/{param}/workbook/functions/ecma_Ceiling","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionEdate.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionEdate","POST","/drives/{param}/items/{param}/workbook/functions/edate","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionEffect.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionEffect","POST","/drives/{param}/items/{param}/workbook/functions/effect","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionEoMonth.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionEoMonth","POST","/drives/{param}/items/{param}/workbook/functions/eoMonth","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionErf_Precise.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionErf_Precise","POST","/drives/{param}/items/{param}/workbook/functions/erf_Precise","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionErf.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionErf","POST","/drives/{param}/items/{param}/workbook/functions/erf","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionErfC_Precise.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionErfC_Precise","POST","/drives/{param}/items/{param}/workbook/functions/erfC_Precise","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionErfC.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionErfC","POST","/drives/{param}/items/{param}/workbook/functions/erfC","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionError_Type.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionError_Type","POST","/drives/{param}/items/{param}/workbook/functions/error_Type","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionEven.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionEven","POST","/drives/{param}/items/{param}/workbook/functions/even","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionExact.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionExact","POST","/drives/{param}/items/{param}/workbook/functions/exact","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionExp.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionExp","POST","/drives/{param}/items/{param}/workbook/functions/exp","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionExpon_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionExpon_Dist","POST","/drives/{param}/items/{param}/workbook/functions/expon_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionF_Dist_RT.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionF_Dist_RT","POST","/drives/{param}/items/{param}/workbook/functions/f_Dist_RT","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionF_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionF_Dist","POST","/drives/{param}/items/{param}/workbook/functions/f_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionF_Inv_RT.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionF_Inv_RT","POST","/drives/{param}/items/{param}/workbook/functions/f_Inv_RT","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionF_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionF_Inv","POST","/drives/{param}/items/{param}/workbook/functions/f_Inv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionFact.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFact","POST","/drives/{param}/items/{param}/workbook/functions/fact","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionFactDouble.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFactDouble","POST","/drives/{param}/items/{param}/workbook/functions/factDouble","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionFalse.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFalse","POST","/drives/{param}/items/{param}/workbook/functions/false","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionFind.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFind","POST","/drives/{param}/items/{param}/workbook/functions/find","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionFindB.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFindB","POST","/drives/{param}/items/{param}/workbook/functions/findB","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionFisher.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFisher","POST","/drives/{param}/items/{param}/workbook/functions/fisher","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionFisherInv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFisherInv","POST","/drives/{param}/items/{param}/workbook/functions/fisherInv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionFixed.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFixed","POST","/drives/{param}/items/{param}/workbook/functions/fixed","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionFloor_Math.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFloor_Math","POST","/drives/{param}/items/{param}/workbook/functions/floor_Math","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionFloor_Precise.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFloor_Precise","POST","/drives/{param}/items/{param}/workbook/functions/floor_Precise","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionFv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFv","POST","/drives/{param}/items/{param}/workbook/functions/fv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionFvschedule.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFvschedule","POST","/drives/{param}/items/{param}/workbook/functions/fvschedule","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionGamma_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGamma_Dist","POST","/drives/{param}/items/{param}/workbook/functions/gamma_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionGamma_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGamma_Inv","POST","/drives/{param}/items/{param}/workbook/functions/gamma_Inv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionGamma.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGamma","POST","/drives/{param}/items/{param}/workbook/functions/gamma","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionGammaLn_Precise.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGammaLn_Precise","POST","/drives/{param}/items/{param}/workbook/functions/gammaLn_Precise","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionGammaLn.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGammaLn","POST","/drives/{param}/items/{param}/workbook/functions/gammaLn","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionGauss.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGauss","POST","/drives/{param}/items/{param}/workbook/functions/gauss","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionGcd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGcd","POST","/drives/{param}/items/{param}/workbook/functions/gcd","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionGeoMean.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGeoMean","POST","/drives/{param}/items/{param}/workbook/functions/geoMean","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionGeStep.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGeStep","POST","/drives/{param}/items/{param}/workbook/functions/geStep","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionHarMean.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHarMean","POST","/drives/{param}/items/{param}/workbook/functions/harMean","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionHex2Bin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHex2Bin","POST","/drives/{param}/items/{param}/workbook/functions/hex2Bin","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionHex2Dec.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHex2Dec","POST","/drives/{param}/items/{param}/workbook/functions/hex2Dec","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionHex2Oct.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHex2Oct","POST","/drives/{param}/items/{param}/workbook/functions/hex2Oct","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionHlookup.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHlookup","POST","/drives/{param}/items/{param}/workbook/functions/hlookup","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionHour.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHour","POST","/drives/{param}/items/{param}/workbook/functions/hour","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionHyperlink.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHyperlink","POST","/drives/{param}/items/{param}/workbook/functions/hyperlink","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionHypGeom_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHypGeom_Dist","POST","/drives/{param}/items/{param}/workbook/functions/hypGeom_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIf.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIf","POST","/drives/{param}/items/{param}/workbook/functions/if","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImAbs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImAbs","POST","/drives/{param}/items/{param}/workbook/functions/imAbs","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImaginary.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImaginary","POST","/drives/{param}/items/{param}/workbook/functions/imaginary","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImArgument.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImArgument","POST","/drives/{param}/items/{param}/workbook/functions/imArgument","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImConjugate.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImConjugate","POST","/drives/{param}/items/{param}/workbook/functions/imConjugate","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImCos.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImCos","POST","/drives/{param}/items/{param}/workbook/functions/imCos","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImCosh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImCosh","POST","/drives/{param}/items/{param}/workbook/functions/imCosh","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImCot.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImCot","POST","/drives/{param}/items/{param}/workbook/functions/imCot","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImCsc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImCsc","POST","/drives/{param}/items/{param}/workbook/functions/imCsc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImCsch.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImCsch","POST","/drives/{param}/items/{param}/workbook/functions/imCsch","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImDiv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImDiv","POST","/drives/{param}/items/{param}/workbook/functions/imDiv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImExp.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImExp","POST","/drives/{param}/items/{param}/workbook/functions/imExp","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImLn.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImLn","POST","/drives/{param}/items/{param}/workbook/functions/imLn","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImLog10.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImLog10","POST","/drives/{param}/items/{param}/workbook/functions/imLog10","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImLog2.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImLog2","POST","/drives/{param}/items/{param}/workbook/functions/imLog2","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImPower.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImPower","POST","/drives/{param}/items/{param}/workbook/functions/imPower","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImProduct.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImProduct","POST","/drives/{param}/items/{param}/workbook/functions/imProduct","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImReal.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImReal","POST","/drives/{param}/items/{param}/workbook/functions/imReal","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImSec.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSec","POST","/drives/{param}/items/{param}/workbook/functions/imSec","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImSech.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSech","POST","/drives/{param}/items/{param}/workbook/functions/imSech","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImSin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSin","POST","/drives/{param}/items/{param}/workbook/functions/imSin","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImSinh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSinh","POST","/drives/{param}/items/{param}/workbook/functions/imSinh","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImSqrt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSqrt","POST","/drives/{param}/items/{param}/workbook/functions/imSqrt","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImSub.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSub","POST","/drives/{param}/items/{param}/workbook/functions/imSub","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImSum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSum","POST","/drives/{param}/items/{param}/workbook/functions/imSum","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionImTan.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImTan","POST","/drives/{param}/items/{param}/workbook/functions/imTan","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionInt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionInt","POST","/drives/{param}/items/{param}/workbook/functions/int","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIntRate.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIntRate","POST","/drives/{param}/items/{param}/workbook/functions/intRate","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIpmt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIpmt","POST","/drives/{param}/items/{param}/workbook/functions/ipmt","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIrr.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIrr","POST","/drives/{param}/items/{param}/workbook/functions/irr","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIsErr.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsErr","POST","/drives/{param}/items/{param}/workbook/functions/isErr","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIsError.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsError","POST","/drives/{param}/items/{param}/workbook/functions/isError","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIsEven.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsEven","POST","/drives/{param}/items/{param}/workbook/functions/isEven","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIsFormula.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsFormula","POST","/drives/{param}/items/{param}/workbook/functions/isFormula","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIsLogical.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsLogical","POST","/drives/{param}/items/{param}/workbook/functions/isLogical","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIsNA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsNA","POST","/drives/{param}/items/{param}/workbook/functions/isNA","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIsNonText.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsNonText","POST","/drives/{param}/items/{param}/workbook/functions/isNonText","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIsNumber.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsNumber","POST","/drives/{param}/items/{param}/workbook/functions/isNumber","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIso_Ceiling.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIso_Ceiling","POST","/drives/{param}/items/{param}/workbook/functions/iso_Ceiling","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIsOdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsOdd","POST","/drives/{param}/items/{param}/workbook/functions/isOdd","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIsoWeekNum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsoWeekNum","POST","/drives/{param}/items/{param}/workbook/functions/isoWeekNum","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIspmt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIspmt","POST","/drives/{param}/items/{param}/workbook/functions/ispmt","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIsref.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsref","POST","/drives/{param}/items/{param}/workbook/functions/isref","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionIsText.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsText","POST","/drives/{param}/items/{param}/workbook/functions/isText","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionKurt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionKurt","POST","/drives/{param}/items/{param}/workbook/functions/kurt","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLarge.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLarge","POST","/drives/{param}/items/{param}/workbook/functions/large","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLcm.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLcm","POST","/drives/{param}/items/{param}/workbook/functions/lcm","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLeft.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLeft","POST","/drives/{param}/items/{param}/workbook/functions/left","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLeftb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLeftb","POST","/drives/{param}/items/{param}/workbook/functions/leftb","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLen.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLen","POST","/drives/{param}/items/{param}/workbook/functions/len","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLenb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLenb","POST","/drives/{param}/items/{param}/workbook/functions/lenb","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLn.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLn","POST","/drives/{param}/items/{param}/workbook/functions/ln","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLog.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLog","POST","/drives/{param}/items/{param}/workbook/functions/log","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLog10.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLog10","POST","/drives/{param}/items/{param}/workbook/functions/log10","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLogNorm_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLogNorm_Dist","POST","/drives/{param}/items/{param}/workbook/functions/logNorm_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLogNorm_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLogNorm_Inv","POST","/drives/{param}/items/{param}/workbook/functions/logNorm_Inv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLookup.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLookup","POST","/drives/{param}/items/{param}/workbook/functions/lookup","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionLower.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLower","POST","/drives/{param}/items/{param}/workbook/functions/lower","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMatch.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMatch","POST","/drives/{param}/items/{param}/workbook/functions/match","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMax.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMax","POST","/drives/{param}/items/{param}/workbook/functions/max","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMaxA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMaxA","POST","/drives/{param}/items/{param}/workbook/functions/maxA","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMduration.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMduration","POST","/drives/{param}/items/{param}/workbook/functions/mduration","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMedian.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMedian","POST","/drives/{param}/items/{param}/workbook/functions/median","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMid.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMid","POST","/drives/{param}/items/{param}/workbook/functions/mid","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMidb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMidb","POST","/drives/{param}/items/{param}/workbook/functions/midb","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMin","POST","/drives/{param}/items/{param}/workbook/functions/min","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMinA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMinA","POST","/drives/{param}/items/{param}/workbook/functions/minA","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMinute.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMinute","POST","/drives/{param}/items/{param}/workbook/functions/minute","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMirr.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMirr","POST","/drives/{param}/items/{param}/workbook/functions/mirr","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMod.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMod","POST","/drives/{param}/items/{param}/workbook/functions/mod","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMonth.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMonth","POST","/drives/{param}/items/{param}/workbook/functions/month","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMround.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMround","POST","/drives/{param}/items/{param}/workbook/functions/mround","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionMultiNomial.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMultiNomial","POST","/drives/{param}/items/{param}/workbook/functions/multiNomial","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionN.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionN","POST","/drives/{param}/items/{param}/workbook/functions/n","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNa.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNa","POST","/drives/{param}/items/{param}/workbook/functions/na","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNegBinom_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNegBinom_Dist","POST","/drives/{param}/items/{param}/workbook/functions/negBinom_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNetworkDays_Intl.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNetworkDays_Intl","POST","/drives/{param}/items/{param}/workbook/functions/networkDays_Intl","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNetworkDays.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNetworkDays","POST","/drives/{param}/items/{param}/workbook/functions/networkDays","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNominal.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNominal","POST","/drives/{param}/items/{param}/workbook/functions/nominal","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNorm_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNorm_Dist","POST","/drives/{param}/items/{param}/workbook/functions/norm_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNorm_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNorm_Inv","POST","/drives/{param}/items/{param}/workbook/functions/norm_Inv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNorm_S_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNorm_S_Dist","POST","/drives/{param}/items/{param}/workbook/functions/norm_S_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNorm_S_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNorm_S_Inv","POST","/drives/{param}/items/{param}/workbook/functions/norm_S_Inv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNot.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNot","POST","/drives/{param}/items/{param}/workbook/functions/not","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNow.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNow","POST","/drives/{param}/items/{param}/workbook/functions/now","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNper.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNper","POST","/drives/{param}/items/{param}/workbook/functions/nper","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNpv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNpv","POST","/drives/{param}/items/{param}/workbook/functions/npv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionNumberValue.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNumberValue","POST","/drives/{param}/items/{param}/workbook/functions/numberValue","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionOct2Bin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOct2Bin","POST","/drives/{param}/items/{param}/workbook/functions/oct2Bin","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionOct2Dec.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOct2Dec","POST","/drives/{param}/items/{param}/workbook/functions/oct2Dec","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionOct2Hex.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOct2Hex","POST","/drives/{param}/items/{param}/workbook/functions/oct2Hex","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionOdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOdd","POST","/drives/{param}/items/{param}/workbook/functions/odd","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionOddFPrice.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOddFPrice","POST","/drives/{param}/items/{param}/workbook/functions/oddFPrice","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionOddFYield.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOddFYield","POST","/drives/{param}/items/{param}/workbook/functions/oddFYield","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionOddLPrice.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOddLPrice","POST","/drives/{param}/items/{param}/workbook/functions/oddLPrice","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionOddLYield.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOddLYield","POST","/drives/{param}/items/{param}/workbook/functions/oddLYield","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionOr.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOr","POST","/drives/{param}/items/{param}/workbook/functions/or","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPduration.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPduration","POST","/drives/{param}/items/{param}/workbook/functions/pduration","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPercentile_Exc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPercentile_Exc","POST","/drives/{param}/items/{param}/workbook/functions/percentile_Exc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPercentile_Inc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPercentile_Inc","POST","/drives/{param}/items/{param}/workbook/functions/percentile_Inc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPercentRank_Exc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPercentRank_Exc","POST","/drives/{param}/items/{param}/workbook/functions/percentRank_Exc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPercentRank_Inc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPercentRank_Inc","POST","/drives/{param}/items/{param}/workbook/functions/percentRank_Inc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPermut.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPermut","POST","/drives/{param}/items/{param}/workbook/functions/permut","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPermutationa.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPermutationa","POST","/drives/{param}/items/{param}/workbook/functions/permutationa","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPhi.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPhi","POST","/drives/{param}/items/{param}/workbook/functions/phi","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPi.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPi","POST","/drives/{param}/items/{param}/workbook/functions/pi","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPmt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPmt","POST","/drives/{param}/items/{param}/workbook/functions/pmt","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPoisson_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPoisson_Dist","POST","/drives/{param}/items/{param}/workbook/functions/poisson_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPower.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPower","POST","/drives/{param}/items/{param}/workbook/functions/power","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPpmt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPpmt","POST","/drives/{param}/items/{param}/workbook/functions/ppmt","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPrice.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPrice","POST","/drives/{param}/items/{param}/workbook/functions/price","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPriceDisc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPriceDisc","POST","/drives/{param}/items/{param}/workbook/functions/priceDisc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPriceMat.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPriceMat","POST","/drives/{param}/items/{param}/workbook/functions/priceMat","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionProduct.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionProduct","POST","/drives/{param}/items/{param}/workbook/functions/product","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionProper.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionProper","POST","/drives/{param}/items/{param}/workbook/functions/proper","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionPv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPv","POST","/drives/{param}/items/{param}/workbook/functions/pv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionQuartile_Exc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionQuartile_Exc","POST","/drives/{param}/items/{param}/workbook/functions/quartile_Exc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionQuartile_Inc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionQuartile_Inc","POST","/drives/{param}/items/{param}/workbook/functions/quartile_Inc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionQuotient.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionQuotient","POST","/drives/{param}/items/{param}/workbook/functions/quotient","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRadians.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRadians","POST","/drives/{param}/items/{param}/workbook/functions/radians","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRand.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRand","POST","/drives/{param}/items/{param}/workbook/functions/rand","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRandBetween.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRandBetween","POST","/drives/{param}/items/{param}/workbook/functions/randBetween","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRank_Avg.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRank_Avg","POST","/drives/{param}/items/{param}/workbook/functions/rank_Avg","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRank_Eq.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRank_Eq","POST","/drives/{param}/items/{param}/workbook/functions/rank_Eq","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRate.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRate","POST","/drives/{param}/items/{param}/workbook/functions/rate","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionReceived.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionReceived","POST","/drives/{param}/items/{param}/workbook/functions/received","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionReplace.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionReplace","POST","/drives/{param}/items/{param}/workbook/functions/replace","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionReplaceB.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionReplaceB","POST","/drives/{param}/items/{param}/workbook/functions/replaceB","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRept.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRept","POST","/drives/{param}/items/{param}/workbook/functions/rept","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRight.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRight","POST","/drives/{param}/items/{param}/workbook/functions/right","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRightb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRightb","POST","/drives/{param}/items/{param}/workbook/functions/rightb","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRoman.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRoman","POST","/drives/{param}/items/{param}/workbook/functions/roman","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRound.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRound","POST","/drives/{param}/items/{param}/workbook/functions/round","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRoundDown.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRoundDown","POST","/drives/{param}/items/{param}/workbook/functions/roundDown","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRoundUp.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRoundUp","POST","/drives/{param}/items/{param}/workbook/functions/roundUp","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRows.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRows","POST","/drives/{param}/items/{param}/workbook/functions/rows","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionRri.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRri","POST","/drives/{param}/items/{param}/workbook/functions/rri","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSec.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSec","POST","/drives/{param}/items/{param}/workbook/functions/sec","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSech.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSech","POST","/drives/{param}/items/{param}/workbook/functions/sech","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSecond.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSecond","POST","/drives/{param}/items/{param}/workbook/functions/second","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSeriesSum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSeriesSum","POST","/drives/{param}/items/{param}/workbook/functions/seriesSum","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSheet.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSheet","POST","/drives/{param}/items/{param}/workbook/functions/sheet","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSheets.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSheets","POST","/drives/{param}/items/{param}/workbook/functions/sheets","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSign.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSign","POST","/drives/{param}/items/{param}/workbook/functions/sign","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSin","POST","/drives/{param}/items/{param}/workbook/functions/sin","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSinh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSinh","POST","/drives/{param}/items/{param}/workbook/functions/sinh","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSkew_p.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSkew_p","POST","/drives/{param}/items/{param}/workbook/functions/skew_p","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSkew.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSkew","POST","/drives/{param}/items/{param}/workbook/functions/skew","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSln.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSln","POST","/drives/{param}/items/{param}/workbook/functions/sln","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSmall.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSmall","POST","/drives/{param}/items/{param}/workbook/functions/small","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSqrt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSqrt","POST","/drives/{param}/items/{param}/workbook/functions/sqrt","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSqrtPi.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSqrtPi","POST","/drives/{param}/items/{param}/workbook/functions/sqrtPi","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionStandardize.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionStandardize","POST","/drives/{param}/items/{param}/workbook/functions/standardize","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionStDev_P.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionStDev_P","POST","/drives/{param}/items/{param}/workbook/functions/stDev_P","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionStDev_S.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionStDev_S","POST","/drives/{param}/items/{param}/workbook/functions/stDev_S","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionStDevA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionStDevA","POST","/drives/{param}/items/{param}/workbook/functions/stDevA","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionStDevPA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionStDevPA","POST","/drives/{param}/items/{param}/workbook/functions/stDevPA","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSubstitute.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSubstitute","POST","/drives/{param}/items/{param}/workbook/functions/substitute","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSubtotal.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSubtotal","POST","/drives/{param}/items/{param}/workbook/functions/subtotal","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSum","POST","/drives/{param}/items/{param}/workbook/functions/sum","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSumIf.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSumIf","POST","/drives/{param}/items/{param}/workbook/functions/sumIf","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSumIfs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSumIfs","POST","/drives/{param}/items/{param}/workbook/functions/sumIfs","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSumSq.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSumSq","POST","/drives/{param}/items/{param}/workbook/functions/sumSq","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionSyd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSyd","POST","/drives/{param}/items/{param}/workbook/functions/syd","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionT_Dist_2T.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionT_Dist_2T","POST","/drives/{param}/items/{param}/workbook/functions/t_Dist_2T","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionT_Dist_RT.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionT_Dist_RT","POST","/drives/{param}/items/{param}/workbook/functions/t_Dist_RT","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionT_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionT_Dist","POST","/drives/{param}/items/{param}/workbook/functions/t_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionT_Inv_2T.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionT_Inv_2T","POST","/drives/{param}/items/{param}/workbook/functions/t_Inv_2T","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionT_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionT_Inv","POST","/drives/{param}/items/{param}/workbook/functions/t_Inv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionT.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionT","POST","/drives/{param}/items/{param}/workbook/functions/t","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionTan.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTan","POST","/drives/{param}/items/{param}/workbook/functions/tan","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionTanh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTanh","POST","/drives/{param}/items/{param}/workbook/functions/tanh","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionTbillEq.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTbillEq","POST","/drives/{param}/items/{param}/workbook/functions/tbillEq","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionTbillPrice.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTbillPrice","POST","/drives/{param}/items/{param}/workbook/functions/tbillPrice","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionTbillYield.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTbillYield","POST","/drives/{param}/items/{param}/workbook/functions/tbillYield","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionText.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionText","POST","/drives/{param}/items/{param}/workbook/functions/text","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionTime.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTime","POST","/drives/{param}/items/{param}/workbook/functions/time","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionTimevalue.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTimevalue","POST","/drives/{param}/items/{param}/workbook/functions/timevalue","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionToday.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionToday","POST","/drives/{param}/items/{param}/workbook/functions/today","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionTrim.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTrim","POST","/drives/{param}/items/{param}/workbook/functions/trim","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionTrimMean.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTrimMean","POST","/drives/{param}/items/{param}/workbook/functions/trimMean","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionTrue.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTrue","POST","/drives/{param}/items/{param}/workbook/functions/true","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionTrunc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTrunc","POST","/drives/{param}/items/{param}/workbook/functions/trunc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionType.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionType","POST","/drives/{param}/items/{param}/workbook/functions/type","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionUnichar.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionUnichar","POST","/drives/{param}/items/{param}/workbook/functions/unichar","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionUnicode.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionUnicode","POST","/drives/{param}/items/{param}/workbook/functions/unicode","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionUpper.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionUpper","POST","/drives/{param}/items/{param}/workbook/functions/upper","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionUsdollar.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionUsdollar","POST","/drives/{param}/items/{param}/workbook/functions/usdollar","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionValue.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionValue","POST","/drives/{param}/items/{param}/workbook/functions/value","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionVar_P.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionVar_P","POST","/drives/{param}/items/{param}/workbook/functions/var_P","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionVar_S.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionVar_S","POST","/drives/{param}/items/{param}/workbook/functions/var_S","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionVarA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionVarA","POST","/drives/{param}/items/{param}/workbook/functions/varA","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionVarPA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionVarPA","POST","/drives/{param}/items/{param}/workbook/functions/varPA","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionVdb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionVdb","POST","/drives/{param}/items/{param}/workbook/functions/vdb","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionVlookup.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionVlookup","POST","/drives/{param}/items/{param}/workbook/functions/vlookup","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionWeekday.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionWeekday","POST","/drives/{param}/items/{param}/workbook/functions/weekday","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionWeekNum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionWeekNum","POST","/drives/{param}/items/{param}/workbook/functions/weekNum","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionWeibull_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionWeibull_Dist","POST","/drives/{param}/items/{param}/workbook/functions/weibull_Dist","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionWorkDay_Intl.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionWorkDay_Intl","POST","/drives/{param}/items/{param}/workbook/functions/workDay_Intl","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionWorkDay.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionWorkDay","POST","/drives/{param}/items/{param}/workbook/functions/workDay","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionXirr.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionXirr","POST","/drives/{param}/items/{param}/workbook/functions/xirr","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionXnpv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionXnpv","POST","/drives/{param}/items/{param}/workbook/functions/xnpv","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionXor.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionXor","POST","/drives/{param}/items/{param}/workbook/functions/xor","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionYear.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionYear","POST","/drives/{param}/items/{param}/workbook/functions/year","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionYearFrac.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionYearFrac","POST","/drives/{param}/items/{param}/workbook/functions/yearFrac","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionYield.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionYield","POST","/drives/{param}/items/{param}/workbook/functions/yield","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionYieldDisc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionYieldDisc","POST","/drives/{param}/items/{param}/workbook/functions/yieldDisc","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionYieldMat.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionYieldMat","POST","/drives/{param}/items/{param}/workbook/functions/yieldMat","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookFunctionZ_Test.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionZ_Test","POST","/drives/{param}/items/{param}/workbook/functions/z_Test","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookNameAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameAdd","POST","/drives/{param}/items/{param}/workbook/names/add","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookNameAddFormulaLocal.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameAddFormulaLocal","POST","/drives/{param}/items/{param}/workbook/names/addFormulaLocal","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookNameRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameRangeClear","POST","/drives/{param}/items/{param}/workbook/names/{param}/range/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookNameRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameRangeDelete","POST","/drives/{param}/items/{param}/workbook/names/{param}/range/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookNameRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameRangeInsert","POST","/drives/{param}/items/{param}/workbook/names/{param}/range/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookNameRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameRangeMerge","POST","/drives/{param}/items/{param}/workbook/names/{param}/range/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookNameRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/names/{param}/range/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookRefreshSession.g.cs","v1.0","Invoke-MgDriveItemWorkbookRefreshSession","POST","/drives/{param}/items/{param}/workbook/refreshSession","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableAdd","POST","/drives/{param}/items/{param}/workbook/tables/add","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableClearFilters.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableClearFilters","POST","/drives/{param}/items/{param}/workbook/tables/{param}/clearFilters","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnAdd","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/add","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnDataBodyRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnDataBodyRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnDataBodyRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnDataBodyRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnDataBodyRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnFilterApply.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApply","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/apply","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnFilterApplyBottomItemsFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyBottomItemsFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyBottomItemsFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnFilterApplyBottomPercentFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyBottomPercentFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyBottomPercentFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnFilterApplyCellColorFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyCellColorFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyCellColorFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnFilterApplyCustomFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyCustomFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyCustomFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnFilterApplyDynamicFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyDynamicFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyDynamicFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnFilterApplyFontColorFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyFontColorFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyFontColorFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnFilterApplyIconFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyIconFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyIconFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnFilterApplyTopItemsFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyTopItemsFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyTopItemsFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnFilterApplyTopPercentFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyTopPercentFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyTopPercentFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnFilterApplyValuesFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyValuesFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyValuesFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnFilterClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnHeaderRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnHeaderRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnHeaderRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnHeaderRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnHeaderRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnTotalRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnTotalRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnTotalRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnTotalRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableColumnTotalRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableConvertToRange.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableConvertToRange","POST","/drives/{param}/items/{param}/workbook/tables/{param}/convertToRange","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableDataBodyRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableDataBodyRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableDataBodyRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableDataBodyRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableDataBodyRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableDataBodyRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableDataBodyRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableDataBodyRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableDataBodyRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableDataBodyRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableHeaderRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableHeaderRowRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableHeaderRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableHeaderRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableHeaderRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableHeaderRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableHeaderRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableHeaderRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableHeaderRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableHeaderRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableReapplyFilters.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableReapplyFilters","POST","/drives/{param}/items/{param}/workbook/tables/{param}/reapplyFilters","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableRowAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRowAdd","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/add","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRowRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableSortApply.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableSortApply","POST","/drives/{param}/items/{param}/workbook/tables/{param}/sort/apply","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableSortClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableSortClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/sort/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableSortReapply.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableSortReapply","POST","/drives/{param}/items/{param}/workbook/tables/{param}/sort/reapply","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableTotalRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableTotalRowRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableTotalRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableTotalRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableTotalRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableTotalRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableTotalRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableTotalRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookTableTotalRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableTotalRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetAdd","POST","/drives/{param}/items/{param}/workbook/worksheets/add","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAdd","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/add","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line/clear","no-oracle","" +"Cmdlets","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","" +"Cmdlets","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","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line/clear","no-oracle","" +"Cmdlets","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","" +"Cmdlets","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","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartAxValueAxisFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line/clear","no-oracle","" +"Cmdlets","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","" +"Cmdlets","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","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartDataLabelFormatFillClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartDataLabelFormatFillClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartDataLabelFormatFillSetSolidColor.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartDataLabelFormatFillSetSolidColor","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill/setSolidColor","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartFormatFillClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartFormatFillClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartFormatFillSetSolidColor.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartFormatFillSetSolidColor","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill/setSolidColor","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartLegendFormatFillClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartLegendFormatFillClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartLegendFormatFillSetSolidColor.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartLegendFormatFillSetSolidColor","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill/setSolidColor","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartSeryFormatFillClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatFillClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartSeryFormatFillSetSolidColor.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatFillSetSolidColor","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill/setSolidColor","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartSeryFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line/clear","no-oracle","" +"Cmdlets","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","" +"Cmdlets","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","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartSetData.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartSetData","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/setData","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartSetPosition.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartSetPosition","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/setPosition","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartTitleFormatFillClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartTitleFormatFillClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetChartTitleFormatFillSetSolidColor.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartTitleFormatFillSetSolidColor","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill/setSolidColor","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetNameAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameAdd","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/add","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetNameAddFormulaLocal.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameAddFormulaLocal","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/addFormulaLocal","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetNameRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetNameRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetNameRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetNameRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetNameRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetPivotTableRefresh.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetPivotTableRefresh","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}/refresh","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetPivotTableRefreshAll.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetPivotTableRefreshAll","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/refreshAll","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetProtectionProtect.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetProtectionProtect","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection/protect","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetProtectionUnprotect.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetProtectionUnprotect","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection/unprotect","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableAdd","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/add","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableClearFilters.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableClearFilters","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/clearFilters","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnAdd","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/add","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApply.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApply","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/apply","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomItemsFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomItemsFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyBottomItemsFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomPercentFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomPercentFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyBottomPercentFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyCellColorFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyCellColorFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyCellColorFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyCustomFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyCustomFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyCustomFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyDynamicFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyDynamicFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyDynamicFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyFontColorFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyFontColorFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyFontColorFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyIconFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyIconFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyIconFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyTopItemsFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyTopItemsFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyTopItemsFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyTopPercentFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyTopPercentFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyTopPercentFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyValuesFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyValuesFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyValuesFilter","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableConvertToRange.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableConvertToRange","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/convertToRange","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableDataBodyRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableDataBodyRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableDataBodyRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableDataBodyRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableDataBodyRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableHeaderRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableHeaderRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableHeaderRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableHeaderRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableHeaderRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableReapplyFilters.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableReapplyFilters","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/reapplyFilters","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableRowAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRowAdd","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/add","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRowRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableSortApply.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableSortApply","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/apply","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableSortClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableSortClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableSortReapply.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableSortReapply","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/reapply","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableTotalRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableTotalRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableTotalRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableTotalRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetTableTotalRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetUsedRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetUsedRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/clear","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetUsedRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetUsedRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/delete","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetUsedRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetUsedRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/insert","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetUsedRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetUsedRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/merge","no-oracle","" +"Cmdlets","InvokeMgDriveItemWorkbookWorksheetUsedRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetUsedRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/unmerge","no-oracle","" +"Cmdlets","InvokeMgDriveListContentTypeAddCopy.g.cs","v1.0","Invoke-MgDriveListContentTypeAddCopy","POST","/drives/{param}/list/contentTypes/addCopy","mismatch","Add-MgDriveListContentTypeCopy" +"Cmdlets","InvokeMgDriveListContentTypeAddCopyFromContentTypeHub.g.cs","v1.0","Invoke-MgDriveListContentTypeAddCopyFromContentTypeHub","POST","/drives/{param}/list/contentTypes/addCopyFromContentTypeHub","mismatch","Add-MgDriveListContentTypeCopyFromContentTypeHub" +"Cmdlets","InvokeMgDriveListContentTypeAssociateWithHubSites.g.cs","v1.0","Invoke-MgDriveListContentTypeAssociateWithHubSites","POST","/drives/{param}/list/contentTypes/{param}/associateWithHubSites","mismatch","Join-MgDriveListContentTypeWithHubSite" +"Cmdlets","InvokeMgDriveListContentTypeCopyToDefaultContentLocation.g.cs","v1.0","Invoke-MgDriveListContentTypeCopyToDefaultContentLocation","POST","/drives/{param}/list/contentTypes/{param}/copyToDefaultContentLocation","mismatch","Copy-MgDriveListContentTypeToDefaultContentLocation" +"Cmdlets","InvokeMgDriveListContentTypePublish.g.cs","v1.0","Invoke-MgDriveListContentTypePublish","POST","/drives/{param}/list/contentTypes/{param}/publish","mismatch","Publish-MgDriveListContentType" +"Cmdlets","InvokeMgDriveListContentTypeUnpublish.g.cs","v1.0","Invoke-MgDriveListContentTypeUnpublish","POST","/drives/{param}/list/contentTypes/{param}/unpublish","mismatch","Unpublish-MgDriveListContentType" +"Cmdlets","InvokeMgDriveListItemCreateLink.g.cs","v1.0","Invoke-MgDriveListItemCreateLink","POST","/drives/{param}/list/items/{param}/createLink","mismatch","New-MgDriveListItemLink" +"Cmdlets","InvokeMgDriveListItemDocumentSetVersionRestore.g.cs","v1.0","Invoke-MgDriveListItemDocumentSetVersionRestore","POST","/drives/{param}/list/items/{param}/documentSetVersions/{param}/restore","mismatch","Restore-MgDriveListItemDocumentSetVersion" +"Cmdlets","InvokeMgDriveListItemPermissionGrant.g.cs","v1.0","Invoke-MgDriveListItemPermissionGrant","POST","/drives/{param}/list/items/{param}/permissions/{param}/grant","no-oracle","" +"Cmdlets","InvokeMgDriveListItemVersionRestoreVersion.g.cs","v1.0","Invoke-MgDriveListItemVersionRestoreVersion","POST","/drives/{param}/list/items/{param}/versions/{param}/restoreVersion","mismatch","Restore-MgDriveListItemVersion" +"Cmdlets","InvokeMgDriveListPermissionGrant.g.cs","v1.0","Invoke-MgDriveListPermissionGrant","POST","/drives/{param}/list/permissions/{param}/grant","no-oracle","" +"Cmdlets","InvokeMgDriveListSubscriptionReauthorize.g.cs","v1.0","Invoke-MgDriveListSubscriptionReauthorize","POST","/drives/{param}/list/subscriptions/{param}/reauthorize","mismatch","Invoke-MgReauthorizeDriveListSubscription" +"Cmdlets","InvokeMgShareListContentTypeAddCopy.g.cs","v1.0","Invoke-MgShareListContentTypeAddCopy","POST","/shares/{param}/list/contentTypes/addCopy","mismatch","Add-MgShareListContentTypeCopy" +"Cmdlets","InvokeMgShareListContentTypeAddCopyFromContentTypeHub.g.cs","v1.0","Invoke-MgShareListContentTypeAddCopyFromContentTypeHub","POST","/shares/{param}/list/contentTypes/addCopyFromContentTypeHub","mismatch","Add-MgShareListContentTypeCopyFromContentTypeHub" +"Cmdlets","InvokeMgShareListContentTypeAssociateWithHubSites.g.cs","v1.0","Invoke-MgShareListContentTypeAssociateWithHubSites","POST","/shares/{param}/list/contentTypes/{param}/associateWithHubSites","mismatch","Join-MgShareListContentTypeWithHubSite" +"Cmdlets","InvokeMgShareListContentTypeCopyToDefaultContentLocation.g.cs","v1.0","Invoke-MgShareListContentTypeCopyToDefaultContentLocation","POST","/shares/{param}/list/contentTypes/{param}/copyToDefaultContentLocation","mismatch","Copy-MgShareListContentTypeToDefaultContentLocation" +"Cmdlets","InvokeMgShareListContentTypePublish.g.cs","v1.0","Invoke-MgShareListContentTypePublish","POST","/shares/{param}/list/contentTypes/{param}/publish","mismatch","Publish-MgShareListContentType" +"Cmdlets","InvokeMgShareListContentTypeUnpublish.g.cs","v1.0","Invoke-MgShareListContentTypeUnpublish","POST","/shares/{param}/list/contentTypes/{param}/unpublish","mismatch","Unpublish-MgShareListContentType" +"Cmdlets","InvokeMgShareListItemCreateLink.g.cs","v1.0","Invoke-MgShareListItemCreateLink","POST","/shares/{param}/list/items/{param}/createLink","no-oracle","" +"Cmdlets","InvokeMgShareListItemDocumentSetVersionRestore.g.cs","v1.0","Invoke-MgShareListItemDocumentSetVersionRestore","POST","/shares/{param}/list/items/{param}/documentSetVersions/{param}/restore","mismatch","Restore-MgShareListItemDocumentSetVersion" +"Cmdlets","InvokeMgShareListItemPermissionGrant.g.cs","v1.0","Invoke-MgShareListItemPermissionGrant","POST","/shares/{param}/list/items/{param}/permissions/{param}/grant","no-oracle","" +"Cmdlets","InvokeMgShareListItemVersionRestoreVersion.g.cs","v1.0","Invoke-MgShareListItemVersionRestoreVersion","POST","/shares/{param}/list/items/{param}/versions/{param}/restoreVersion","mismatch","Restore-MgShareListItemVersion" +"Cmdlets","InvokeMgShareListPermissionGrant.g.cs","v1.0","Invoke-MgShareListPermissionGrant","POST","/shares/{param}/list/permissions/{param}/grant","no-oracle","" +"Cmdlets","InvokeMgShareListSubscriptionReauthorize.g.cs","v1.0","Invoke-MgShareListSubscriptionReauthorize","POST","/shares/{param}/list/subscriptions/{param}/reauthorize","mismatch","Invoke-MgReauthorizeShareListSubscription" +"Cmdlets","InvokeMgSharePermissionGrant.g.cs","v1.0","Invoke-MgSharePermissionGrant","POST","/shares/{param}/permission/grant","mismatch","Grant-MgSharePermission" +"Cmdlets","NewMgDrive.g.cs","v1.0","New-MgDrive","POST","/drives","matched","New-MgDrive" +"Cmdlets","NewMgDriveBundle.g.cs","v1.0","New-MgDriveBundle","POST","/drives/{param}/bundles","matched","New-MgDriveBundle" +"Cmdlets","NewMgDriveItem.g.cs","v1.0","New-MgDriveItem","POST","/drives/{param}/items","matched","New-MgDriveItem" +"Cmdlets","NewMgDriveItemAnalyticItemActivityStat.g.cs","v1.0","New-MgDriveItemAnalyticItemActivityStat","POST","/drives/{param}/items/{param}/analytics/itemActivityStats","matched","New-MgDriveItemAnalyticItemActivityStat" +"Cmdlets","NewMgDriveItemAnalyticItemActivityStatActivity.g.cs","v1.0","New-MgDriveItemAnalyticItemActivityStatActivity","POST","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities","no-oracle","" +"Cmdlets","NewMgDriveItemChild.g.cs","v1.0","New-MgDriveItemChild","POST","/drives/{param}/items/{param}/children","matched","New-MgDriveItemChild" +"Cmdlets","NewMgDriveItemPermission.g.cs","v1.0","New-MgDriveItemPermission","POST","/drives/{param}/items/{param}/permissions","matched","New-MgDriveItemPermission" +"Cmdlets","NewMgDriveItemSubscription.g.cs","v1.0","New-MgDriveItemSubscription","POST","/drives/{param}/items/{param}/subscriptions","matched","New-MgDriveItemSubscription" +"Cmdlets","NewMgDriveItemThumbnail.g.cs","v1.0","New-MgDriveItemThumbnail","POST","/drives/{param}/items/{param}/thumbnails","matched","New-MgDriveItemThumbnail" +"Cmdlets","NewMgDriveItemVersion.g.cs","v1.0","New-MgDriveItemVersion","POST","/drives/{param}/items/{param}/versions","matched","New-MgDriveItemVersion" +"Cmdlets","NewMgDriveItemWorkbookComment.g.cs","v1.0","New-MgDriveItemWorkbookComment","POST","/drives/{param}/items/{param}/workbook/comments","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookCommentReply.g.cs","v1.0","New-MgDriveItemWorkbookCommentReply","POST","/drives/{param}/items/{param}/workbook/comments/{param}/replies","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookName.g.cs","v1.0","New-MgDriveItemWorkbookName","POST","/drives/{param}/items/{param}/workbook/names","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookOperation.g.cs","v1.0","New-MgDriveItemWorkbookOperation","POST","/drives/{param}/items/{param}/workbook/operations","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookTable.g.cs","v1.0","New-MgDriveItemWorkbookTable","POST","/drives/{param}/items/{param}/workbook/tables","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookTableColumn.g.cs","v1.0","New-MgDriveItemWorkbookTableColumn","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookTableRow.g.cs","v1.0","New-MgDriveItemWorkbookTableRow","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookWorksheet.g.cs","v1.0","New-MgDriveItemWorkbookWorksheet","POST","/drives/{param}/items/{param}/workbook/worksheets","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookWorksheetChart.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetChart","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookWorksheetChartSery.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetChartSery","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookWorksheetChartSeryPoint.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetChartSeryPoint","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookWorksheetName.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetName","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookWorksheetPivotTable.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetPivotTable","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookWorksheetTable.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetTable","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookWorksheetTableColumn.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetTableColumn","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns","no-oracle","" +"Cmdlets","NewMgDriveItemWorkbookWorksheetTableRow.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetTableRow","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows","no-oracle","" +"Cmdlets","NewMgDriveListColumn.g.cs","v1.0","New-MgDriveListColumn","POST","/drives/{param}/list/columns","matched","New-MgDriveListColumn" +"Cmdlets","NewMgDriveListContentType.g.cs","v1.0","New-MgDriveListContentType","POST","/drives/{param}/list/contentTypes","matched","New-MgDriveListContentType" +"Cmdlets","NewMgDriveListContentTypeColumn.g.cs","v1.0","New-MgDriveListContentTypeColumn","POST","/drives/{param}/list/contentTypes/{param}/columns","matched","New-MgDriveListContentTypeColumn" +"Cmdlets","NewMgDriveListContentTypeColumnLink.g.cs","v1.0","New-MgDriveListContentTypeColumnLink","POST","/drives/{param}/list/contentTypes/{param}/columnLinks","matched","New-MgDriveListContentTypeColumnLink" +"Cmdlets","NewMgDriveListItem.g.cs","v1.0","New-MgDriveListItem","POST","/drives/{param}/list/items","matched","New-MgDriveListItem" +"Cmdlets","NewMgDriveListItemDocumentSetVersion.g.cs","v1.0","New-MgDriveListItemDocumentSetVersion","POST","/drives/{param}/list/items/{param}/documentSetVersions","matched","New-MgDriveListItemDocumentSetVersion" +"Cmdlets","NewMgDriveListItemPermission.g.cs","v1.0","New-MgDriveListItemPermission","POST","/drives/{param}/list/items/{param}/permissions","no-oracle","" +"Cmdlets","NewMgDriveListItemVersion.g.cs","v1.0","New-MgDriveListItemVersion","POST","/drives/{param}/list/items/{param}/versions","matched","New-MgDriveListItemVersion" +"Cmdlets","NewMgDriveListOperation.g.cs","v1.0","New-MgDriveListOperation","POST","/drives/{param}/list/operations","matched","New-MgDriveListOperation" +"Cmdlets","NewMgDriveListPermission.g.cs","v1.0","New-MgDriveListPermission","POST","/drives/{param}/list/permissions","no-oracle","" +"Cmdlets","NewMgDriveListSubscription.g.cs","v1.0","New-MgDriveListSubscription","POST","/drives/{param}/list/subscriptions","matched","New-MgDriveListSubscription" +"Cmdlets","NewMgShare.g.cs","v1.0","New-MgShare","POST","/shares","matched","New-MgShareSharedDriveItemSharedDriveItem" +"Cmdlets","NewMgShareListColumn.g.cs","v1.0","New-MgShareListColumn","POST","/shares/{param}/list/columns","matched","New-MgShareListColumn" +"Cmdlets","NewMgShareListContentType.g.cs","v1.0","New-MgShareListContentType","POST","/shares/{param}/list/contentTypes","matched","New-MgShareListContentType" +"Cmdlets","NewMgShareListContentTypeColumn.g.cs","v1.0","New-MgShareListContentTypeColumn","POST","/shares/{param}/list/contentTypes/{param}/columns","matched","New-MgShareListContentTypeColumn" +"Cmdlets","NewMgShareListContentTypeColumnLink.g.cs","v1.0","New-MgShareListContentTypeColumnLink","POST","/shares/{param}/list/contentTypes/{param}/columnLinks","matched","New-MgShareListContentTypeColumnLink" +"Cmdlets","NewMgShareListItem.g.cs","v1.0","New-MgShareListItem","POST","/shares/{param}/list/items","matched","New-MgShareListItem" +"Cmdlets","NewMgShareListItemDocumentSetVersion.g.cs","v1.0","New-MgShareListItemDocumentSetVersion","POST","/shares/{param}/list/items/{param}/documentSetVersions","matched","New-MgShareListItemDocumentSetVersion" +"Cmdlets","NewMgShareListItemPermission.g.cs","v1.0","New-MgShareListItemPermission","POST","/shares/{param}/list/items/{param}/permissions","no-oracle","" +"Cmdlets","NewMgShareListItemVersion.g.cs","v1.0","New-MgShareListItemVersion","POST","/shares/{param}/list/items/{param}/versions","matched","New-MgShareListItemVersion" +"Cmdlets","NewMgShareListOperation.g.cs","v1.0","New-MgShareListOperation","POST","/shares/{param}/list/operations","matched","New-MgShareListOperation" +"Cmdlets","NewMgShareListPermission.g.cs","v1.0","New-MgShareListPermission","POST","/shares/{param}/list/permissions","no-oracle","" +"Cmdlets","NewMgShareListSubscription.g.cs","v1.0","New-MgShareListSubscription","POST","/shares/{param}/list/subscriptions","matched","New-MgShareListSubscription" +"Cmdlets","RemoveMgDrive.g.cs","v1.0","Remove-MgDrive","DELETE","/drives/{param}","matched","Remove-MgDrive" +"Cmdlets","RemoveMgDriveBundleContent.g.cs","v1.0","Remove-MgDriveBundleContent","DELETE","/drives/{param}/bundles/{param}/content","matched","Remove-MgDriveBundleContent" +"Cmdlets","RemoveMgDriveFollowingContent.g.cs","v1.0","Remove-MgDriveFollowingContent","DELETE","/drives/{param}/following/{param}/content","matched","Remove-MgDriveFollowingContent" +"Cmdlets","RemoveMgDriveItem.g.cs","v1.0","Remove-MgDriveItem","DELETE","/drives/{param}/items/{param}","matched","Remove-MgDriveItem" +"Cmdlets","RemoveMgDriveItemAnalytic.g.cs","v1.0","Remove-MgDriveItemAnalytic","DELETE","/drives/{param}/items/{param}/analytics","matched","Remove-MgDriveItemAnalytic" +"Cmdlets","RemoveMgDriveItemAnalyticItemActivityStat.g.cs","v1.0","Remove-MgDriveItemAnalyticItemActivityStat","DELETE","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}","matched","Remove-MgDriveItemAnalyticItemActivityStat" +"Cmdlets","RemoveMgDriveItemAnalyticItemActivityStatActivity.g.cs","v1.0","Remove-MgDriveItemAnalyticItemActivityStatActivity","DELETE","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Remove-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent","DELETE","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","no-oracle","" +"Cmdlets","RemoveMgDriveItemChildContent.g.cs","v1.0","Remove-MgDriveItemChildContent","DELETE","/drives/{param}/items/{param}/children/{param}/content","matched","Remove-MgDriveItemChildContent" +"Cmdlets","RemoveMgDriveItemContent.g.cs","v1.0","Remove-MgDriveItemContent","DELETE","/drives/{param}/items/{param}/content","matched","Remove-MgDriveItemContent" +"Cmdlets","RemoveMgDriveItemPermission.g.cs","v1.0","Remove-MgDriveItemPermission","DELETE","/drives/{param}/items/{param}/permissions/{param}","matched","Remove-MgDriveItemPermission" +"Cmdlets","RemoveMgDriveItemRetentionLabel.g.cs","v1.0","Remove-MgDriveItemRetentionLabel","DELETE","/drives/{param}/items/{param}/retentionLabel","matched","Remove-MgDriveItemRetentionLabel" +"Cmdlets","RemoveMgDriveItemSubscription.g.cs","v1.0","Remove-MgDriveItemSubscription","DELETE","/drives/{param}/items/{param}/subscriptions/{param}","matched","Remove-MgDriveItemSubscription" +"Cmdlets","RemoveMgDriveItemThumbnail.g.cs","v1.0","Remove-MgDriveItemThumbnail","DELETE","/drives/{param}/items/{param}/thumbnails/{param}","matched","Remove-MgDriveItemThumbnail" +"Cmdlets","RemoveMgDriveItemVersion.g.cs","v1.0","Remove-MgDriveItemVersion","DELETE","/drives/{param}/items/{param}/versions/{param}","matched","Remove-MgDriveItemVersion" +"Cmdlets","RemoveMgDriveItemVersionContent.g.cs","v1.0","Remove-MgDriveItemVersionContent","DELETE","/drives/{param}/items/{param}/versions/{param}/content","matched","Remove-MgDriveItemVersionContent" +"Cmdlets","RemoveMgDriveItemWorkbook.g.cs","v1.0","Remove-MgDriveItemWorkbook","DELETE","/drives/{param}/items/{param}/workbook","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookApplication.g.cs","v1.0","Remove-MgDriveItemWorkbookApplication","DELETE","/drives/{param}/items/{param}/workbook/application","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookComment.g.cs","v1.0","Remove-MgDriveItemWorkbookComment","DELETE","/drives/{param}/items/{param}/workbook/comments/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookCommentReply.g.cs","v1.0","Remove-MgDriveItemWorkbookCommentReply","DELETE","/drives/{param}/items/{param}/workbook/comments/{param}/replies/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookFunction.g.cs","v1.0","Remove-MgDriveItemWorkbookFunction","DELETE","/drives/{param}/items/{param}/workbook/functions","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookName.g.cs","v1.0","Remove-MgDriveItemWorkbookName","DELETE","/drives/{param}/items/{param}/workbook/names/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookOperation.g.cs","v1.0","Remove-MgDriveItemWorkbookOperation","DELETE","/drives/{param}/items/{param}/workbook/operations/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookTable.g.cs","v1.0","Remove-MgDriveItemWorkbookTable","DELETE","/drives/{param}/items/{param}/workbook/tables/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookTableColumn.g.cs","v1.0","Remove-MgDriveItemWorkbookTableColumn","DELETE","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookTableColumnFilter.g.cs","v1.0","Remove-MgDriveItemWorkbookTableColumnFilter","DELETE","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookTableRow.g.cs","v1.0","Remove-MgDriveItemWorkbookTableRow","DELETE","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookTableSort.g.cs","v1.0","Remove-MgDriveItemWorkbookTableSort","DELETE","/drives/{param}/items/{param}/workbook/tables/{param}/sort","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheet.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheet","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChart.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChart","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAx.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAx","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxis.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxis","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxis.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxis","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisTitle.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxis.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxis","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisTitle.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartDataLabel.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartDataLabel","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartDataLabelFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartDataLabelFormatFill.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartDataLabelFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartFormatFill.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartFormatFill","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartLegend.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartLegend","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartLegendFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartLegendFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartLegendFormatFill.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartLegendFormatFill","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartLegendFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartLegendFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartSery.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSery","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartSeryFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSeryFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartSeryFormatFill.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSeryFormatFill","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartSeryFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSeryFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartSeryPoint.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSeryPoint","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartSeryPointFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSeryPointFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format","no-oracle","" +"Cmdlets","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","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartTitle.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartTitle","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartTitleFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartTitleFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartTitleFormatFill.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartTitleFormatFill","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetChartTitleFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartTitleFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetName.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetName","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetPivotTable.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetPivotTable","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetProtection.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetProtection","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetTable.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetTable","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetTableColumn.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetTableColumn","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetTableColumnFilter.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetTableColumnFilter","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetTableRow.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetTableRow","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveItemWorkbookWorksheetTableSort.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetTableSort","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort","no-oracle","" +"Cmdlets","RemoveMgDriveList.g.cs","v1.0","Remove-MgDriveList","DELETE","/drives/{param}/list","matched","Remove-MgDriveList" +"Cmdlets","RemoveMgDriveListColumn.g.cs","v1.0","Remove-MgDriveListColumn","DELETE","/drives/{param}/list/columns/{param}","matched","Remove-MgDriveListColumn" +"Cmdlets","RemoveMgDriveListContentType.g.cs","v1.0","Remove-MgDriveListContentType","DELETE","/drives/{param}/list/contentTypes/{param}","matched","Remove-MgDriveListContentType" +"Cmdlets","RemoveMgDriveListContentTypeColumn.g.cs","v1.0","Remove-MgDriveListContentTypeColumn","DELETE","/drives/{param}/list/contentTypes/{param}/columns/{param}","matched","Remove-MgDriveListContentTypeColumn" +"Cmdlets","RemoveMgDriveListContentTypeColumnLink.g.cs","v1.0","Remove-MgDriveListContentTypeColumnLink","DELETE","/drives/{param}/list/contentTypes/{param}/columnLinks/{param}","matched","Remove-MgDriveListContentTypeColumnLink" +"Cmdlets","RemoveMgDriveListItem.g.cs","v1.0","Remove-MgDriveListItem","DELETE","/drives/{param}/list/items/{param}","matched","Remove-MgDriveListItem" +"Cmdlets","RemoveMgDriveListItemDocumentSetVersion.g.cs","v1.0","Remove-MgDriveListItemDocumentSetVersion","DELETE","/drives/{param}/list/items/{param}/documentSetVersions/{param}","matched","Remove-MgDriveListItemDocumentSetVersion" +"Cmdlets","RemoveMgDriveListItemDocumentSetVersionField.g.cs","v1.0","Remove-MgDriveListItemDocumentSetVersionField","DELETE","/drives/{param}/list/items/{param}/documentSetVersions/{param}/fields","matched","Remove-MgDriveListItemDocumentSetVersionField" +"Cmdlets","RemoveMgDriveListItemDriveItemContent.g.cs","v1.0","Remove-MgDriveListItemDriveItemContent","DELETE","/drives/{param}/list/items/{param}/driveItem/content","matched","Remove-MgDriveListItemDriveItemContent" +"Cmdlets","RemoveMgDriveListItemField.g.cs","v1.0","Remove-MgDriveListItemField","DELETE","/drives/{param}/list/items/{param}/fields","matched","Remove-MgDriveListItemField" +"Cmdlets","RemoveMgDriveListItemPermission.g.cs","v1.0","Remove-MgDriveListItemPermission","DELETE","/drives/{param}/list/items/{param}/permissions/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveListItemVersion.g.cs","v1.0","Remove-MgDriveListItemVersion","DELETE","/drives/{param}/list/items/{param}/versions/{param}","matched","Remove-MgDriveListItemVersion" +"Cmdlets","RemoveMgDriveListItemVersionField.g.cs","v1.0","Remove-MgDriveListItemVersionField","DELETE","/drives/{param}/list/items/{param}/versions/{param}/fields","matched","Remove-MgDriveListItemVersionField" +"Cmdlets","RemoveMgDriveListOperation.g.cs","v1.0","Remove-MgDriveListOperation","DELETE","/drives/{param}/list/operations/{param}","matched","Remove-MgDriveListOperation" +"Cmdlets","RemoveMgDriveListPermission.g.cs","v1.0","Remove-MgDriveListPermission","DELETE","/drives/{param}/list/permissions/{param}","no-oracle","" +"Cmdlets","RemoveMgDriveListSubscription.g.cs","v1.0","Remove-MgDriveListSubscription","DELETE","/drives/{param}/list/subscriptions/{param}","matched","Remove-MgDriveListSubscription" +"Cmdlets","RemoveMgDriveRootContent.g.cs","v1.0","Remove-MgDriveRootContent","DELETE","/drives/{param}/root/content","matched","Remove-MgDriveRootContent" +"Cmdlets","RemoveMgDriveSpecialContent.g.cs","v1.0","Remove-MgDriveSpecialContent","DELETE","/drives/{param}/special/{param}/content","matched","Remove-MgDriveSpecialContent" +"Cmdlets","RemoveMgShare.g.cs","v1.0","Remove-MgShare","DELETE","/shares/{param}","matched","Remove-MgShareSharedDriveItemSharedDriveItem" +"Cmdlets","RemoveMgShareDriveItemContent.g.cs","v1.0","Remove-MgShareDriveItemContent","DELETE","/shares/{param}/driveItem/content","matched","Remove-MgShareDriveItemContent" +"Cmdlets","RemoveMgShareItemContent.g.cs","v1.0","Remove-MgShareItemContent","DELETE","/shares/{param}/items/{param}/content","matched","Remove-MgShareItemContent" +"Cmdlets","RemoveMgShareList.g.cs","v1.0","Remove-MgShareList","DELETE","/shares/{param}/list","matched","Remove-MgShareList" +"Cmdlets","RemoveMgShareListColumn.g.cs","v1.0","Remove-MgShareListColumn","DELETE","/shares/{param}/list/columns/{param}","matched","Remove-MgShareListColumn" +"Cmdlets","RemoveMgShareListContentType.g.cs","v1.0","Remove-MgShareListContentType","DELETE","/shares/{param}/list/contentTypes/{param}","matched","Remove-MgShareListContentType" +"Cmdlets","RemoveMgShareListContentTypeColumn.g.cs","v1.0","Remove-MgShareListContentTypeColumn","DELETE","/shares/{param}/list/contentTypes/{param}/columns/{param}","matched","Remove-MgShareListContentTypeColumn" +"Cmdlets","RemoveMgShareListContentTypeColumnLink.g.cs","v1.0","Remove-MgShareListContentTypeColumnLink","DELETE","/shares/{param}/list/contentTypes/{param}/columnLinks/{param}","matched","Remove-MgShareListContentTypeColumnLink" +"Cmdlets","RemoveMgShareListItem.g.cs","v1.0","Remove-MgShareListItem","DELETE","/shares/{param}/list/items/{param}","no-oracle","" +"Cmdlets","RemoveMgShareListItemDocumentSetVersion.g.cs","v1.0","Remove-MgShareListItemDocumentSetVersion","DELETE","/shares/{param}/list/items/{param}/documentSetVersions/{param}","matched","Remove-MgShareListItemDocumentSetVersion" +"Cmdlets","RemoveMgShareListItemDocumentSetVersionField.g.cs","v1.0","Remove-MgShareListItemDocumentSetVersionField","DELETE","/shares/{param}/list/items/{param}/documentSetVersions/{param}/fields","matched","Remove-MgShareListItemDocumentSetVersionField" +"Cmdlets","RemoveMgShareListItemDriveItemContent.g.cs","v1.0","Remove-MgShareListItemDriveItemContent","DELETE","/shares/{param}/list/items/{param}/driveItem/content","matched","Remove-MgShareListItemDriveItemContent" +"Cmdlets","RemoveMgShareListItemField.g.cs","v1.0","Remove-MgShareListItemField","DELETE","/shares/{param}/list/items/{param}/fields","matched","Remove-MgShareListItemField" +"Cmdlets","RemoveMgShareListItemPermission.g.cs","v1.0","Remove-MgShareListItemPermission","DELETE","/shares/{param}/list/items/{param}/permissions/{param}","no-oracle","" +"Cmdlets","RemoveMgShareListItemVersion.g.cs","v1.0","Remove-MgShareListItemVersion","DELETE","/shares/{param}/list/items/{param}/versions/{param}","matched","Remove-MgShareListItemVersion" +"Cmdlets","RemoveMgShareListItemVersionField.g.cs","v1.0","Remove-MgShareListItemVersionField","DELETE","/shares/{param}/list/items/{param}/versions/{param}/fields","matched","Remove-MgShareListItemVersionField" +"Cmdlets","RemoveMgShareListOperation.g.cs","v1.0","Remove-MgShareListOperation","DELETE","/shares/{param}/list/operations/{param}","matched","Remove-MgShareListOperation" +"Cmdlets","RemoveMgShareListPermission.g.cs","v1.0","Remove-MgShareListPermission","DELETE","/shares/{param}/list/permissions/{param}","no-oracle","" +"Cmdlets","RemoveMgShareListSubscription.g.cs","v1.0","Remove-MgShareListSubscription","DELETE","/shares/{param}/list/subscriptions/{param}","matched","Remove-MgShareListSubscription" +"Cmdlets","RemoveMgSharePermission.g.cs","v1.0","Remove-MgSharePermission","DELETE","/shares/{param}/permission","matched","Remove-MgSharePermission" +"Cmdlets","RemoveMgShareRootContent.g.cs","v1.0","Remove-MgShareRootContent","DELETE","/shares/{param}/root/content","matched","Remove-MgShareRootContent" +"Cmdlets","SetMgDriveBundleContent.g.cs","v1.0","Set-MgDriveBundleContent","PUT","/drives/{param}/bundles/{param}/content","matched","Set-MgDriveBundleContent" +"Cmdlets","SetMgDriveFollowingContent.g.cs","v1.0","Set-MgDriveFollowingContent","PUT","/drives/{param}/following/{param}/content","matched","Set-MgDriveFollowingContent" +"Cmdlets","SetMgDriveItemAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Set-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent","PUT","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","no-oracle","" +"Cmdlets","SetMgDriveItemChildContent.g.cs","v1.0","Set-MgDriveItemChildContent","PUT","/drives/{param}/items/{param}/children/{param}/content","matched","Set-MgDriveItemChildContent" +"Cmdlets","SetMgDriveItemContent.g.cs","v1.0","Set-MgDriveItemContent","PUT","/drives/{param}/items/{param}/content","matched","Set-MgDriveItemContent" +"Cmdlets","SetMgDriveItemVersionContent.g.cs","v1.0","Set-MgDriveItemVersionContent","PUT","/drives/{param}/items/{param}/versions/{param}/content","matched","Set-MgDriveItemVersionContent" +"Cmdlets","SetMgDriveListItemDriveItemContent.g.cs","v1.0","Set-MgDriveListItemDriveItemContent","PUT","/drives/{param}/list/items/{param}/driveItem/content","matched","Set-MgDriveListItemDriveItemContent" +"Cmdlets","SetMgDriveRootContent.g.cs","v1.0","Set-MgDriveRootContent","PUT","/drives/{param}/root/content","matched","Set-MgDriveRootContent" +"Cmdlets","SetMgDriveSpecialContent.g.cs","v1.0","Set-MgDriveSpecialContent","PUT","/drives/{param}/special/{param}/content","matched","Set-MgDriveSpecialContent" +"Cmdlets","SetMgShareDriveItemContent.g.cs","v1.0","Set-MgShareDriveItemContent","PUT","/shares/{param}/driveItem/content","matched","Set-MgShareDriveItemContent" +"Cmdlets","SetMgShareItemContent.g.cs","v1.0","Set-MgShareItemContent","PUT","/shares/{param}/items/{param}/content","matched","Set-MgShareItemContent" +"Cmdlets","SetMgShareListItemDriveItemContent.g.cs","v1.0","Set-MgShareListItemDriveItemContent","PUT","/shares/{param}/list/items/{param}/driveItem/content","matched","Set-MgShareListItemDriveItemContent" +"Cmdlets","SetMgShareRootContent.g.cs","v1.0","Set-MgShareRootContent","PUT","/shares/{param}/root/content","matched","Set-MgShareRootContent" +"Cmdlets","UpdateMgDrive.g.cs","v1.0","Update-MgDrive","PATCH","/drives/{param}","matched","Update-MgDrive" +"Cmdlets","UpdateMgDriveCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveCreatedByUserMailboxSetting","PATCH","/drives/{param}/createdByUser/mailboxSettings","matched","Update-MgDriveCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgDriveItem.g.cs","v1.0","Update-MgDriveItem","PATCH","/drives/{param}/items/{param}","matched","Update-MgDriveItem" +"Cmdlets","UpdateMgDriveItemAnalytic.g.cs","v1.0","Update-MgDriveItemAnalytic","PATCH","/drives/{param}/items/{param}/analytics","matched","Update-MgDriveItemAnalytic" +"Cmdlets","UpdateMgDriveItemAnalyticItemActivityStat.g.cs","v1.0","Update-MgDriveItemAnalyticItemActivityStat","PATCH","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}","matched","Update-MgDriveItemAnalyticItemActivityStat" +"Cmdlets","UpdateMgDriveItemAnalyticItemActivityStatActivity.g.cs","v1.0","Update-MgDriveItemAnalyticItemActivityStatActivity","PATCH","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveItemCreatedByUserMailboxSetting","PATCH","/drives/{param}/items/{param}/createdByUser/mailboxSettings","matched","Update-MgDriveItemCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgDriveItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveItemLastModifiedByUserMailboxSetting","PATCH","/drives/{param}/items/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgDriveItemLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgDriveItemPermission.g.cs","v1.0","Update-MgDriveItemPermission","PATCH","/drives/{param}/items/{param}/permissions/{param}","matched","Update-MgDriveItemPermission" +"Cmdlets","UpdateMgDriveItemRetentionLabel.g.cs","v1.0","Update-MgDriveItemRetentionLabel","PATCH","/drives/{param}/items/{param}/retentionLabel","matched","Update-MgDriveItemRetentionLabel" +"Cmdlets","UpdateMgDriveItemSubscription.g.cs","v1.0","Update-MgDriveItemSubscription","PATCH","/drives/{param}/items/{param}/subscriptions/{param}","matched","Update-MgDriveItemSubscription" +"Cmdlets","UpdateMgDriveItemThumbnail.g.cs","v1.0","Update-MgDriveItemThumbnail","PATCH","/drives/{param}/items/{param}/thumbnails/{param}","matched","Update-MgDriveItemThumbnail" +"Cmdlets","UpdateMgDriveItemVersion.g.cs","v1.0","Update-MgDriveItemVersion","PATCH","/drives/{param}/items/{param}/versions/{param}","matched","Update-MgDriveItemVersion" +"Cmdlets","UpdateMgDriveItemWorkbook.g.cs","v1.0","Update-MgDriveItemWorkbook","PATCH","/drives/{param}/items/{param}/workbook","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookApplication.g.cs","v1.0","Update-MgDriveItemWorkbookApplication","PATCH","/drives/{param}/items/{param}/workbook/application","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookComment.g.cs","v1.0","Update-MgDriveItemWorkbookComment","PATCH","/drives/{param}/items/{param}/workbook/comments/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookCommentReply.g.cs","v1.0","Update-MgDriveItemWorkbookCommentReply","PATCH","/drives/{param}/items/{param}/workbook/comments/{param}/replies/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookFunction.g.cs","v1.0","Update-MgDriveItemWorkbookFunction","PATCH","/drives/{param}/items/{param}/workbook/functions","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookName.g.cs","v1.0","Update-MgDriveItemWorkbookName","PATCH","/drives/{param}/items/{param}/workbook/names/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookOperation.g.cs","v1.0","Update-MgDriveItemWorkbookOperation","PATCH","/drives/{param}/items/{param}/workbook/operations/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookTable.g.cs","v1.0","Update-MgDriveItemWorkbookTable","PATCH","/drives/{param}/items/{param}/workbook/tables/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookTableColumn.g.cs","v1.0","Update-MgDriveItemWorkbookTableColumn","PATCH","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookTableColumnFilter.g.cs","v1.0","Update-MgDriveItemWorkbookTableColumnFilter","PATCH","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookTableRow.g.cs","v1.0","Update-MgDriveItemWorkbookTableRow","PATCH","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookTableSort.g.cs","v1.0","Update-MgDriveItemWorkbookTableSort","PATCH","/drives/{param}/items/{param}/workbook/tables/{param}/sort","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheet.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheet","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChart.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChart","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAx.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAx","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxis.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxis","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxis.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxis","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisTitle.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxis.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxis","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisTitle.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartDataLabel.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartDataLabel","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartDataLabelFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartDataLabelFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartDataLabelFormatFill.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartDataLabelFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartFormatFill.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartFormatFill","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartLegend.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartLegend","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartLegendFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartLegendFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartLegendFormatFill.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartLegendFormatFill","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartLegendFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartLegendFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartSery.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSery","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartSeryFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSeryFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartSeryFormatFill.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSeryFormatFill","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartSeryFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSeryFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartSeryPoint.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSeryPoint","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartSeryPointFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSeryPointFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format","no-oracle","" +"Cmdlets","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","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartTitle.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartTitle","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartTitleFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartTitleFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartTitleFormatFill.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartTitleFormatFill","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetChartTitleFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartTitleFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetName.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetName","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetPivotTable.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetPivotTable","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetProtection.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetProtection","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetTable.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetTable","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetTableColumn.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetTableColumn","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetTableColumnFilter.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetTableColumnFilter","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetTableRow.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetTableRow","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveItemWorkbookWorksheetTableSort.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetTableSort","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort","no-oracle","" +"Cmdlets","UpdateMgDriveLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveLastModifiedByUserMailboxSetting","PATCH","/drives/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgDriveLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgDriveList.g.cs","v1.0","Update-MgDriveList","PATCH","/drives/{param}/list","matched","Update-MgDriveList" +"Cmdlets","UpdateMgDriveListColumn.g.cs","v1.0","Update-MgDriveListColumn","PATCH","/drives/{param}/list/columns/{param}","matched","Update-MgDriveListColumn" +"Cmdlets","UpdateMgDriveListContentType.g.cs","v1.0","Update-MgDriveListContentType","PATCH","/drives/{param}/list/contentTypes/{param}","matched","Update-MgDriveListContentType" +"Cmdlets","UpdateMgDriveListContentTypeColumn.g.cs","v1.0","Update-MgDriveListContentTypeColumn","PATCH","/drives/{param}/list/contentTypes/{param}/columns/{param}","matched","Update-MgDriveListContentTypeColumn" +"Cmdlets","UpdateMgDriveListContentTypeColumnLink.g.cs","v1.0","Update-MgDriveListContentTypeColumnLink","PATCH","/drives/{param}/list/contentTypes/{param}/columnLinks/{param}","matched","Update-MgDriveListContentTypeColumnLink" +"Cmdlets","UpdateMgDriveListCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveListCreatedByUserMailboxSetting","PATCH","/drives/{param}/list/createdByUser/mailboxSettings","matched","Update-MgDriveListCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgDriveListItem.g.cs","v1.0","Update-MgDriveListItem","PATCH","/drives/{param}/list/items/{param}","matched","Update-MgDriveListItem" +"Cmdlets","UpdateMgDriveListItemCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveListItemCreatedByUserMailboxSetting","PATCH","/drives/{param}/list/items/{param}/createdByUser/mailboxSettings","matched","Update-MgDriveListItemCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgDriveListItemDocumentSetVersion.g.cs","v1.0","Update-MgDriveListItemDocumentSetVersion","PATCH","/drives/{param}/list/items/{param}/documentSetVersions/{param}","matched","Update-MgDriveListItemDocumentSetVersion" +"Cmdlets","UpdateMgDriveListItemDocumentSetVersionField.g.cs","v1.0","Update-MgDriveListItemDocumentSetVersionField","PATCH","/drives/{param}/list/items/{param}/documentSetVersions/{param}/fields","matched","Update-MgDriveListItemDocumentSetVersionField" +"Cmdlets","UpdateMgDriveListItemField.g.cs","v1.0","Update-MgDriveListItemField","PATCH","/drives/{param}/list/items/{param}/fields","matched","Update-MgDriveListItemField" +"Cmdlets","UpdateMgDriveListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveListItemLastModifiedByUserMailboxSetting","PATCH","/drives/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgDriveListItemLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgDriveListItemPermission.g.cs","v1.0","Update-MgDriveListItemPermission","PATCH","/drives/{param}/list/items/{param}/permissions/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveListItemVersion.g.cs","v1.0","Update-MgDriveListItemVersion","PATCH","/drives/{param}/list/items/{param}/versions/{param}","matched","Update-MgDriveListItemVersion" +"Cmdlets","UpdateMgDriveListItemVersionField.g.cs","v1.0","Update-MgDriveListItemVersionField","PATCH","/drives/{param}/list/items/{param}/versions/{param}/fields","matched","Update-MgDriveListItemVersionField" +"Cmdlets","UpdateMgDriveListLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveListLastModifiedByUserMailboxSetting","PATCH","/drives/{param}/list/lastModifiedByUser/mailboxSettings","matched","Update-MgDriveListLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgDriveListOperation.g.cs","v1.0","Update-MgDriveListOperation","PATCH","/drives/{param}/list/operations/{param}","matched","Update-MgDriveListOperation" +"Cmdlets","UpdateMgDriveListPermission.g.cs","v1.0","Update-MgDriveListPermission","PATCH","/drives/{param}/list/permissions/{param}","no-oracle","" +"Cmdlets","UpdateMgDriveListSubscription.g.cs","v1.0","Update-MgDriveListSubscription","PATCH","/drives/{param}/list/subscriptions/{param}","matched","Update-MgDriveListSubscription" +"Cmdlets","UpdateMgShare.g.cs","v1.0","Update-MgShare","PATCH","/shares/{param}","matched","Update-MgShareSharedDriveItemSharedDriveItem" +"Cmdlets","UpdateMgShareCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgShareCreatedByUserMailboxSetting","PATCH","/shares/{param}/createdByUser/mailboxSettings","matched","Update-MgShareCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgShareLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgShareLastModifiedByUserMailboxSetting","PATCH","/shares/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgShareLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgShareList.g.cs","v1.0","Update-MgShareList","PATCH","/shares/{param}/list","matched","Update-MgShareList" +"Cmdlets","UpdateMgShareListColumn.g.cs","v1.0","Update-MgShareListColumn","PATCH","/shares/{param}/list/columns/{param}","matched","Update-MgShareListColumn" +"Cmdlets","UpdateMgShareListContentType.g.cs","v1.0","Update-MgShareListContentType","PATCH","/shares/{param}/list/contentTypes/{param}","matched","Update-MgShareListContentType" +"Cmdlets","UpdateMgShareListContentTypeColumn.g.cs","v1.0","Update-MgShareListContentTypeColumn","PATCH","/shares/{param}/list/contentTypes/{param}/columns/{param}","matched","Update-MgShareListContentTypeColumn" +"Cmdlets","UpdateMgShareListContentTypeColumnLink.g.cs","v1.0","Update-MgShareListContentTypeColumnLink","PATCH","/shares/{param}/list/contentTypes/{param}/columnLinks/{param}","matched","Update-MgShareListContentTypeColumnLink" +"Cmdlets","UpdateMgShareListCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgShareListCreatedByUserMailboxSetting","PATCH","/shares/{param}/list/createdByUser/mailboxSettings","matched","Update-MgShareListCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgShareListItem.g.cs","v1.0","Update-MgShareListItem","PATCH","/shares/{param}/list/items/{param}","no-oracle","" +"Cmdlets","UpdateMgShareListItemCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgShareListItemCreatedByUserMailboxSetting","PATCH","/shares/{param}/list/items/{param}/createdByUser/mailboxSettings","matched","Update-MgShareListItemCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgShareListItemDocumentSetVersion.g.cs","v1.0","Update-MgShareListItemDocumentSetVersion","PATCH","/shares/{param}/list/items/{param}/documentSetVersions/{param}","matched","Update-MgShareListItemDocumentSetVersion" +"Cmdlets","UpdateMgShareListItemDocumentSetVersionField.g.cs","v1.0","Update-MgShareListItemDocumentSetVersionField","PATCH","/shares/{param}/list/items/{param}/documentSetVersions/{param}/fields","matched","Update-MgShareListItemDocumentSetVersionField" +"Cmdlets","UpdateMgShareListItemField.g.cs","v1.0","Update-MgShareListItemField","PATCH","/shares/{param}/list/items/{param}/fields","matched","Update-MgShareListItemField" +"Cmdlets","UpdateMgShareListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgShareListItemLastModifiedByUserMailboxSetting","PATCH","/shares/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgShareListItemLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgShareListItemPermission.g.cs","v1.0","Update-MgShareListItemPermission","PATCH","/shares/{param}/list/items/{param}/permissions/{param}","no-oracle","" +"Cmdlets","UpdateMgShareListItemVersion.g.cs","v1.0","Update-MgShareListItemVersion","PATCH","/shares/{param}/list/items/{param}/versions/{param}","matched","Update-MgShareListItemVersion" +"Cmdlets","UpdateMgShareListItemVersionField.g.cs","v1.0","Update-MgShareListItemVersionField","PATCH","/shares/{param}/list/items/{param}/versions/{param}/fields","matched","Update-MgShareListItemVersionField" +"Cmdlets","UpdateMgShareListLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgShareListLastModifiedByUserMailboxSetting","PATCH","/shares/{param}/list/lastModifiedByUser/mailboxSettings","matched","Update-MgShareListLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgShareListOperation.g.cs","v1.0","Update-MgShareListOperation","PATCH","/shares/{param}/list/operations/{param}","matched","Update-MgShareListOperation" +"Cmdlets","UpdateMgShareListPermission.g.cs","v1.0","Update-MgShareListPermission","PATCH","/shares/{param}/list/permissions/{param}","no-oracle","" +"Cmdlets","UpdateMgShareListSubscription.g.cs","v1.0","Update-MgShareListSubscription","PATCH","/shares/{param}/list/subscriptions/{param}","matched","Update-MgShareListSubscription" +"Cmdlets","UpdateMgSharePermission.g.cs","v1.0","Update-MgSharePermission","PATCH","/shares/{param}/permission","matched","Update-MgSharePermission" +"Cmdlets","GetMgGroup_Get.g.cs","v1.0","Get-MgGroup","GET","/groups/{param}","matched","Get-MgGroup" +"Cmdlets","GetMgGroup_List.g.cs","v1.0","Get-MgGroup","GET","/groups","matched","Get-MgGroup" +"Cmdlets","GetMgGroup.g.cs","v1.0","Get-MgGroup","","","dispatcher","" +"Cmdlets","GetMgGroupAcceptedSender.g.cs","v1.0","Get-MgGroupAcceptedSender","GET","/groups/{param}/acceptedSenders","matched","Get-MgGroupAcceptedSender" +"Cmdlets","GetMgGroupAcceptedSenderByRef.g.cs","v1.0","Get-MgGroupAcceptedSenderByRef","GET","/groups/{param}/acceptedSenders/$ref","matched","Get-MgGroupAcceptedSenderByRef" +"Cmdlets","GetMgGroupAcceptedSenderCount.g.cs","v1.0","Get-MgGroupAcceptedSenderCount","GET","/groups/{param}/acceptedSenders/$count","matched","Get-MgGroupAcceptedSenderCount" +"Cmdlets","GetMgGroupConversation_Get.g.cs","v1.0","Get-MgGroupConversation","GET","/groups/{param}/conversations/{param}","matched","Get-MgGroupConversation" +"Cmdlets","GetMgGroupConversation_List.g.cs","v1.0","Get-MgGroupConversation","GET","/groups/{param}/conversations","matched","Get-MgGroupConversation" +"Cmdlets","GetMgGroupConversation.g.cs","v1.0","Get-MgGroupConversation","","","dispatcher","" +"Cmdlets","GetMgGroupConversationCount.g.cs","v1.0","Get-MgGroupConversationCount","GET","/groups/{param}/conversations/$count","matched","Get-MgGroupConversationCount" +"Cmdlets","GetMgGroupConversationThread_Get.g.cs","v1.0","Get-MgGroupConversationThread","GET","/groups/{param}/conversations/{param}/threads/{param}","matched","Get-MgGroupConversationThread" +"Cmdlets","GetMgGroupConversationThread_List.g.cs","v1.0","Get-MgGroupConversationThread","GET","/groups/{param}/conversations/{param}/threads","matched","Get-MgGroupConversationThread" +"Cmdlets","GetMgGroupConversationThread.g.cs","v1.0","Get-MgGroupConversationThread","","","dispatcher","" +"Cmdlets","GetMgGroupConversationThreadCount.g.cs","v1.0","Get-MgGroupConversationThreadCount","GET","/groups/{param}/conversations/{param}/threads/$count","matched","Get-MgGroupConversationThreadCount" +"Cmdlets","GetMgGroupConversationThreadPost_Get.g.cs","v1.0","Get-MgGroupConversationThreadPost","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}","matched","Get-MgGroupConversationThreadPost" +"Cmdlets","GetMgGroupConversationThreadPost_List.g.cs","v1.0","Get-MgGroupConversationThreadPost","GET","/groups/{param}/conversations/{param}/threads/{param}/posts","matched","Get-MgGroupConversationThreadPost" +"Cmdlets","GetMgGroupConversationThreadPost.g.cs","v1.0","Get-MgGroupConversationThreadPost","","","dispatcher","" +"Cmdlets","GetMgGroupConversationThreadPostAttachment_Get.g.cs","v1.0","Get-MgGroupConversationThreadPostAttachment","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments/{param}","matched","Get-MgGroupConversationThreadPostAttachment" +"Cmdlets","GetMgGroupConversationThreadPostAttachment_List.g.cs","v1.0","Get-MgGroupConversationThreadPostAttachment","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments","matched","Get-MgGroupConversationThreadPostAttachment" +"Cmdlets","GetMgGroupConversationThreadPostAttachment.g.cs","v1.0","Get-MgGroupConversationThreadPostAttachment","","","dispatcher","" +"Cmdlets","GetMgGroupConversationThreadPostAttachmentCount.g.cs","v1.0","Get-MgGroupConversationThreadPostAttachmentCount","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments/$count","matched","Get-MgGroupConversationThreadPostAttachmentCount" +"Cmdlets","GetMgGroupConversationThreadPostCount.g.cs","v1.0","Get-MgGroupConversationThreadPostCount","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/$count","matched","Get-MgGroupConversationThreadPostCount" +"Cmdlets","GetMgGroupConversationThreadPostExtension_Get.g.cs","v1.0","Get-MgGroupConversationThreadPostExtension","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions/{param}","matched","Get-MgGroupConversationThreadPostExtension" +"Cmdlets","GetMgGroupConversationThreadPostExtension_List.g.cs","v1.0","Get-MgGroupConversationThreadPostExtension","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions","matched","Get-MgGroupConversationThreadPostExtension" +"Cmdlets","GetMgGroupConversationThreadPostExtension.g.cs","v1.0","Get-MgGroupConversationThreadPostExtension","","","dispatcher","" +"Cmdlets","GetMgGroupConversationThreadPostExtensionCount.g.cs","v1.0","Get-MgGroupConversationThreadPostExtensionCount","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions/$count","matched","Get-MgGroupConversationThreadPostExtensionCount" +"Cmdlets","GetMgGroupConversationThreadPostInReplyTo.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyTo","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo","no-oracle","" +"Cmdlets","GetMgGroupConversationThreadPostInReplyToAttachment_Get.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToAttachment","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/{param}","matched","Get-MgGroupConversationThreadPostInReplyToAttachment" +"Cmdlets","GetMgGroupConversationThreadPostInReplyToAttachment_List.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToAttachment","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments","matched","Get-MgGroupConversationThreadPostInReplyToAttachment" +"Cmdlets","GetMgGroupConversationThreadPostInReplyToAttachment.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToAttachment","","","dispatcher","" +"Cmdlets","GetMgGroupConversationThreadPostInReplyToAttachmentCount.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToAttachmentCount","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/$count","matched","Get-MgGroupConversationThreadPostInReplyToAttachmentCount" +"Cmdlets","GetMgGroupConversationThreadPostInReplyToExtension_Get.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToExtension","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","matched","Get-MgGroupConversationThreadPostInReplyToExtension" +"Cmdlets","GetMgGroupConversationThreadPostInReplyToExtension_List.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToExtension","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions","matched","Get-MgGroupConversationThreadPostInReplyToExtension" +"Cmdlets","GetMgGroupConversationThreadPostInReplyToExtension.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToExtension","","","dispatcher","" +"Cmdlets","GetMgGroupConversationThreadPostInReplyToExtensionCount.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToExtensionCount","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/$count","matched","Get-MgGroupConversationThreadPostInReplyToExtensionCount" +"Cmdlets","GetMgGroupCount.g.cs","v1.0","Get-MgGroupCount","GET","/groups/$count","matched","Get-MgGroupCount" +"Cmdlets","GetMgGroupCreatedOnBehalfOf.g.cs","v1.0","Get-MgGroupCreatedOnBehalfOf","GET","/groups/{param}/createdOnBehalfOf","matched","Get-MgGroupCreatedOnBehalfOf" +"Cmdlets","GetMgGroupDelta.g.cs","v1.0","Get-MgGroupDelta","GET","/groups/delta","matched","Get-MgGroupDelta" +"Cmdlets","GetMgGroupExtension_Get.g.cs","v1.0","Get-MgGroupExtension","GET","/groups/{param}/extensions/{param}","matched","Get-MgGroupExtension" +"Cmdlets","GetMgGroupExtension_List.g.cs","v1.0","Get-MgGroupExtension","GET","/groups/{param}/extensions","matched","Get-MgGroupExtension" +"Cmdlets","GetMgGroupExtension.g.cs","v1.0","Get-MgGroupExtension","","","dispatcher","" +"Cmdlets","GetMgGroupExtensionCount.g.cs","v1.0","Get-MgGroupExtensionCount","GET","/groups/{param}/extensions/$count","matched","Get-MgGroupExtensionCount" +"Cmdlets","GetMgGroupLifecyclePolicy_Get.g.cs","v1.0","Get-MgGroupLifecyclePolicy","GET","/groupLifecyclePolicies/{param}","matched","Get-MgGroupLifecyclePolicy" +"Cmdlets","GetMgGroupLifecyclePolicy_List.g.cs","v1.0","Get-MgGroupLifecyclePolicy","GET","/groupLifecyclePolicies","matched","Get-MgGroupLifecyclePolicy" +"Cmdlets","GetMgGroupLifecyclePolicy.g.cs","v1.0","Get-MgGroupLifecyclePolicy","","","dispatcher","" +"Cmdlets","GetMgGroupLifecyclePolicyByGroup.g.cs","v1.0","Get-MgGroupLifecyclePolicyByGroup","GET","/groups/{param}/groupLifecyclePolicies","matched","Get-MgGroupLifecyclePolicyByGroup" +"Cmdlets","GetMgGroupLifecyclePolicyCount.g.cs","v1.0","Get-MgGroupLifecyclePolicyCount","GET","/groupLifecyclePolicies/$count","matched","Get-MgGroupLifecyclePolicyCount" +"Cmdlets","GetMgGroupMember.g.cs","v1.0","Get-MgGroupMember","GET","/groups/{param}/members","matched","Get-MgGroupMember" +"Cmdlets","GetMgGroupMemberAsApplication_Get.g.cs","v1.0","Get-MgGroupMemberAsApplication","GET","/groups/{param}/members/{param}/application","matched","Get-MgGroupMemberAsApplication" +"Cmdlets","GetMgGroupMemberAsApplication_List.g.cs","v1.0","Get-MgGroupMemberAsApplication","GET","/groups/{param}/members/application","matched","Get-MgGroupMemberAsApplication" +"Cmdlets","GetMgGroupMemberAsApplication.g.cs","v1.0","Get-MgGroupMemberAsApplication","","","dispatcher","" +"Cmdlets","GetMgGroupMemberAsDevice_Get.g.cs","v1.0","Get-MgGroupMemberAsDevice","GET","/groups/{param}/members/{param}/device","matched","Get-MgGroupMemberAsDevice" +"Cmdlets","GetMgGroupMemberAsDevice_List.g.cs","v1.0","Get-MgGroupMemberAsDevice","GET","/groups/{param}/members/device","matched","Get-MgGroupMemberAsDevice" +"Cmdlets","GetMgGroupMemberAsDevice.g.cs","v1.0","Get-MgGroupMemberAsDevice","","","dispatcher","" +"Cmdlets","GetMgGroupMemberAsGroup_Get.g.cs","v1.0","Get-MgGroupMemberAsGroup","GET","/groups/{param}/members/{param}/group","matched","Get-MgGroupMemberAsGroup" +"Cmdlets","GetMgGroupMemberAsGroup_List.g.cs","v1.0","Get-MgGroupMemberAsGroup","GET","/groups/{param}/members/group","matched","Get-MgGroupMemberAsGroup" +"Cmdlets","GetMgGroupMemberAsGroup.g.cs","v1.0","Get-MgGroupMemberAsGroup","","","dispatcher","" +"Cmdlets","GetMgGroupMemberAsOrgContact_Get.g.cs","v1.0","Get-MgGroupMemberAsOrgContact","GET","/groups/{param}/members/{param}/orgContact","matched","Get-MgGroupMemberAsOrgContact" +"Cmdlets","GetMgGroupMemberAsOrgContact_List.g.cs","v1.0","Get-MgGroupMemberAsOrgContact","GET","/groups/{param}/members/orgContact","matched","Get-MgGroupMemberAsOrgContact" +"Cmdlets","GetMgGroupMemberAsOrgContact.g.cs","v1.0","Get-MgGroupMemberAsOrgContact","","","dispatcher","" +"Cmdlets","GetMgGroupMemberAsServicePrincipal_Get.g.cs","v1.0","Get-MgGroupMemberAsServicePrincipal","GET","/groups/{param}/members/{param}/servicePrincipal","matched","Get-MgGroupMemberAsServicePrincipal" +"Cmdlets","GetMgGroupMemberAsServicePrincipal_List.g.cs","v1.0","Get-MgGroupMemberAsServicePrincipal","GET","/groups/{param}/members/servicePrincipal","matched","Get-MgGroupMemberAsServicePrincipal" +"Cmdlets","GetMgGroupMemberAsServicePrincipal.g.cs","v1.0","Get-MgGroupMemberAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgGroupMemberAsUser_Get.g.cs","v1.0","Get-MgGroupMemberAsUser","GET","/groups/{param}/members/{param}/user","matched","Get-MgGroupMemberAsUser" +"Cmdlets","GetMgGroupMemberAsUser_List.g.cs","v1.0","Get-MgGroupMemberAsUser","GET","/groups/{param}/members/user","matched","Get-MgGroupMemberAsUser" +"Cmdlets","GetMgGroupMemberAsUser.g.cs","v1.0","Get-MgGroupMemberAsUser","","","dispatcher","" +"Cmdlets","GetMgGroupMemberByRef.g.cs","v1.0","Get-MgGroupMemberByRef","GET","/groups/{param}/members/$ref","matched","Get-MgGroupMemberByRef" +"Cmdlets","GetMgGroupMemberCount.g.cs","v1.0","Get-MgGroupMemberCount","GET","/groups/{param}/members/$count","matched","Get-MgGroupMemberCount" +"Cmdlets","GetMgGroupMemberCountAsApplication.g.cs","v1.0","Get-MgGroupMemberCountAsApplication","GET","/groups/{param}/members/application/$count","matched","Get-MgGroupMemberCountAsApplication" +"Cmdlets","GetMgGroupMemberCountAsDevice.g.cs","v1.0","Get-MgGroupMemberCountAsDevice","GET","/groups/{param}/members/device/$count","matched","Get-MgGroupMemberCountAsDevice" +"Cmdlets","GetMgGroupMemberCountAsGroup.g.cs","v1.0","Get-MgGroupMemberCountAsGroup","GET","/groups/{param}/members/group/$count","matched","Get-MgGroupMemberCountAsGroup" +"Cmdlets","GetMgGroupMemberCountAsOrgContact.g.cs","v1.0","Get-MgGroupMemberCountAsOrgContact","GET","/groups/{param}/members/orgContact/$count","matched","Get-MgGroupMemberCountAsOrgContact" +"Cmdlets","GetMgGroupMemberCountAsServicePrincipal.g.cs","v1.0","Get-MgGroupMemberCountAsServicePrincipal","GET","/groups/{param}/members/servicePrincipal/$count","matched","Get-MgGroupMemberCountAsServicePrincipal" +"Cmdlets","GetMgGroupMemberCountAsUser.g.cs","v1.0","Get-MgGroupMemberCountAsUser","GET","/groups/{param}/members/user/$count","matched","Get-MgGroupMemberCountAsUser" +"Cmdlets","GetMgGroupMemberOf_Get.g.cs","v1.0","Get-MgGroupMemberOf","GET","/groups/{param}/memberOf/{param}","matched","Get-MgGroupMemberOf" +"Cmdlets","GetMgGroupMemberOf_List.g.cs","v1.0","Get-MgGroupMemberOf","GET","/groups/{param}/memberOf","matched","Get-MgGroupMemberOf" +"Cmdlets","GetMgGroupMemberOf.g.cs","v1.0","Get-MgGroupMemberOf","","","dispatcher","" +"Cmdlets","GetMgGroupMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgGroupMemberOfAsAdministrativeUnit","GET","/groups/{param}/memberOf/{param}/administrativeUnit","matched","Get-MgGroupMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgGroupMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgGroupMemberOfAsAdministrativeUnit","GET","/groups/{param}/memberOf/administrativeUnit","matched","Get-MgGroupMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgGroupMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgGroupMemberOfAsAdministrativeUnit","","","dispatcher","" +"Cmdlets","GetMgGroupMemberOfAsGroup_Get.g.cs","v1.0","Get-MgGroupMemberOfAsGroup","GET","/groups/{param}/memberOf/{param}/group","matched","Get-MgGroupMemberOfAsGroup" +"Cmdlets","GetMgGroupMemberOfAsGroup_List.g.cs","v1.0","Get-MgGroupMemberOfAsGroup","GET","/groups/{param}/memberOf/group","matched","Get-MgGroupMemberOfAsGroup" +"Cmdlets","GetMgGroupMemberOfAsGroup.g.cs","v1.0","Get-MgGroupMemberOfAsGroup","","","dispatcher","" +"Cmdlets","GetMgGroupMemberOfCount.g.cs","v1.0","Get-MgGroupMemberOfCount","GET","/groups/{param}/memberOf/$count","matched","Get-MgGroupMemberOfCount" +"Cmdlets","GetMgGroupMemberOfCountAsAdministrativeUnit.g.cs","v1.0","Get-MgGroupMemberOfCountAsAdministrativeUnit","GET","/groups/{param}/memberOf/administrativeUnit/$count","matched","Get-MgGroupMemberOfCountAsAdministrativeUnit" +"Cmdlets","GetMgGroupMemberOfCountAsGroup.g.cs","v1.0","Get-MgGroupMemberOfCountAsGroup","GET","/groups/{param}/memberOf/group/$count","matched","Get-MgGroupMemberOfCountAsGroup" +"Cmdlets","GetMgGroupMemberWithLicenseError_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseError","GET","/groups/{param}/membersWithLicenseErrors/{param}","matched","Get-MgGroupMemberWithLicenseError" +"Cmdlets","GetMgGroupMemberWithLicenseError_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseError","GET","/groups/{param}/membersWithLicenseErrors","matched","Get-MgGroupMemberWithLicenseError" +"Cmdlets","GetMgGroupMemberWithLicenseError.g.cs","v1.0","Get-MgGroupMemberWithLicenseError","","","dispatcher","" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsApplication_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsApplication","GET","/groups/{param}/membersWithLicenseErrors/{param}/application","matched","Get-MgGroupMemberWithLicenseErrorAsApplication" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsApplication_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsApplication","GET","/groups/{param}/membersWithLicenseErrors/application","matched","Get-MgGroupMemberWithLicenseErrorAsApplication" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsApplication.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsApplication","","","dispatcher","" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsDevice_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsDevice","GET","/groups/{param}/membersWithLicenseErrors/{param}/device","matched","Get-MgGroupMemberWithLicenseErrorAsDevice" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsDevice_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsDevice","GET","/groups/{param}/membersWithLicenseErrors/device","matched","Get-MgGroupMemberWithLicenseErrorAsDevice" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsDevice.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsDevice","","","dispatcher","" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsGroup_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsGroup","GET","/groups/{param}/membersWithLicenseErrors/{param}/group","matched","Get-MgGroupMemberWithLicenseErrorAsGroup" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsGroup_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsGroup","GET","/groups/{param}/membersWithLicenseErrors/group","matched","Get-MgGroupMemberWithLicenseErrorAsGroup" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsGroup.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsGroup","","","dispatcher","" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsOrgContact_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsOrgContact","GET","/groups/{param}/membersWithLicenseErrors/{param}/orgContact","matched","Get-MgGroupMemberWithLicenseErrorAsOrgContact" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsOrgContact_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsOrgContact","GET","/groups/{param}/membersWithLicenseErrors/orgContact","matched","Get-MgGroupMemberWithLicenseErrorAsOrgContact" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsOrgContact.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsOrgContact","","","dispatcher","" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsServicePrincipal_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsServicePrincipal","GET","/groups/{param}/membersWithLicenseErrors/{param}/servicePrincipal","matched","Get-MgGroupMemberWithLicenseErrorAsServicePrincipal" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsServicePrincipal_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsServicePrincipal","GET","/groups/{param}/membersWithLicenseErrors/servicePrincipal","matched","Get-MgGroupMemberWithLicenseErrorAsServicePrincipal" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsServicePrincipal.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsUser_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsUser","GET","/groups/{param}/membersWithLicenseErrors/{param}/user","matched","Get-MgGroupMemberWithLicenseErrorAsUser" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsUser_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsUser","GET","/groups/{param}/membersWithLicenseErrors/user","matched","Get-MgGroupMemberWithLicenseErrorAsUser" +"Cmdlets","GetMgGroupMemberWithLicenseErrorAsUser.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsUser","","","dispatcher","" +"Cmdlets","GetMgGroupMemberWithLicenseErrorCount.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorCount","GET","/groups/{param}/membersWithLicenseErrors/$count","matched","Get-MgGroupMemberWithLicenseErrorCount" +"Cmdlets","GetMgGroupMemberWithLicenseErrorCountAsApplication.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorCountAsApplication","GET","/groups/{param}/membersWithLicenseErrors/application/$count","matched","Get-MgGroupMemberWithLicenseErrorCountAsApplication" +"Cmdlets","GetMgGroupMemberWithLicenseErrorCountAsDevice.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorCountAsDevice","GET","/groups/{param}/membersWithLicenseErrors/device/$count","matched","Get-MgGroupMemberWithLicenseErrorCountAsDevice" +"Cmdlets","GetMgGroupMemberWithLicenseErrorCountAsGroup.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorCountAsGroup","GET","/groups/{param}/membersWithLicenseErrors/group/$count","matched","Get-MgGroupMemberWithLicenseErrorCountAsGroup" +"Cmdlets","GetMgGroupMemberWithLicenseErrorCountAsOrgContact.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorCountAsOrgContact","GET","/groups/{param}/membersWithLicenseErrors/orgContact/$count","matched","Get-MgGroupMemberWithLicenseErrorCountAsOrgContact" +"Cmdlets","GetMgGroupMemberWithLicenseErrorCountAsServicePrincipal.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorCountAsServicePrincipal","GET","/groups/{param}/membersWithLicenseErrors/servicePrincipal/$count","matched","Get-MgGroupMemberWithLicenseErrorCountAsServicePrincipal" +"Cmdlets","GetMgGroupMemberWithLicenseErrorCountAsUser.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorCountAsUser","GET","/groups/{param}/membersWithLicenseErrors/user/$count","matched","Get-MgGroupMemberWithLicenseErrorCountAsUser" +"Cmdlets","GetMgGroupOnPremiseSyncBehavior.g.cs","v1.0","Get-MgGroupOnPremiseSyncBehavior","GET","/groups/{param}/onPremisesSyncBehavior","matched","Get-MgGroupOnPremiseSyncBehavior" +"Cmdlets","GetMgGroupOwner.g.cs","v1.0","Get-MgGroupOwner","GET","/groups/{param}/owners","matched","Get-MgGroupOwner" +"Cmdlets","GetMgGroupOwnerAsApplication_Get.g.cs","v1.0","Get-MgGroupOwnerAsApplication","GET","/groups/{param}/owners/{param}/application","matched","Get-MgGroupOwnerAsApplication" +"Cmdlets","GetMgGroupOwnerAsApplication_List.g.cs","v1.0","Get-MgGroupOwnerAsApplication","GET","/groups/{param}/owners/application","matched","Get-MgGroupOwnerAsApplication" +"Cmdlets","GetMgGroupOwnerAsApplication.g.cs","v1.0","Get-MgGroupOwnerAsApplication","","","dispatcher","" +"Cmdlets","GetMgGroupOwnerAsDevice_Get.g.cs","v1.0","Get-MgGroupOwnerAsDevice","GET","/groups/{param}/owners/{param}/device","matched","Get-MgGroupOwnerAsDevice" +"Cmdlets","GetMgGroupOwnerAsDevice_List.g.cs","v1.0","Get-MgGroupOwnerAsDevice","GET","/groups/{param}/owners/device","matched","Get-MgGroupOwnerAsDevice" +"Cmdlets","GetMgGroupOwnerAsDevice.g.cs","v1.0","Get-MgGroupOwnerAsDevice","","","dispatcher","" +"Cmdlets","GetMgGroupOwnerAsGroup_Get.g.cs","v1.0","Get-MgGroupOwnerAsGroup","GET","/groups/{param}/owners/{param}/group","matched","Get-MgGroupOwnerAsGroup" +"Cmdlets","GetMgGroupOwnerAsGroup_List.g.cs","v1.0","Get-MgGroupOwnerAsGroup","GET","/groups/{param}/owners/group","matched","Get-MgGroupOwnerAsGroup" +"Cmdlets","GetMgGroupOwnerAsGroup.g.cs","v1.0","Get-MgGroupOwnerAsGroup","","","dispatcher","" +"Cmdlets","GetMgGroupOwnerAsOrgContact_Get.g.cs","v1.0","Get-MgGroupOwnerAsOrgContact","GET","/groups/{param}/owners/{param}/orgContact","matched","Get-MgGroupOwnerAsOrgContact" +"Cmdlets","GetMgGroupOwnerAsOrgContact_List.g.cs","v1.0","Get-MgGroupOwnerAsOrgContact","GET","/groups/{param}/owners/orgContact","matched","Get-MgGroupOwnerAsOrgContact" +"Cmdlets","GetMgGroupOwnerAsOrgContact.g.cs","v1.0","Get-MgGroupOwnerAsOrgContact","","","dispatcher","" +"Cmdlets","GetMgGroupOwnerAsServicePrincipal_Get.g.cs","v1.0","Get-MgGroupOwnerAsServicePrincipal","GET","/groups/{param}/owners/{param}/servicePrincipal","matched","Get-MgGroupOwnerAsServicePrincipal" +"Cmdlets","GetMgGroupOwnerAsServicePrincipal_List.g.cs","v1.0","Get-MgGroupOwnerAsServicePrincipal","GET","/groups/{param}/owners/servicePrincipal","matched","Get-MgGroupOwnerAsServicePrincipal" +"Cmdlets","GetMgGroupOwnerAsServicePrincipal.g.cs","v1.0","Get-MgGroupOwnerAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgGroupOwnerAsUser_Get.g.cs","v1.0","Get-MgGroupOwnerAsUser","GET","/groups/{param}/owners/{param}/user","matched","Get-MgGroupOwnerAsUser" +"Cmdlets","GetMgGroupOwnerAsUser_List.g.cs","v1.0","Get-MgGroupOwnerAsUser","GET","/groups/{param}/owners/user","matched","Get-MgGroupOwnerAsUser" +"Cmdlets","GetMgGroupOwnerAsUser.g.cs","v1.0","Get-MgGroupOwnerAsUser","","","dispatcher","" +"Cmdlets","GetMgGroupOwnerByRef.g.cs","v1.0","Get-MgGroupOwnerByRef","GET","/groups/{param}/owners/$ref","matched","Get-MgGroupOwnerByRef" +"Cmdlets","GetMgGroupOwnerCount.g.cs","v1.0","Get-MgGroupOwnerCount","GET","/groups/{param}/owners/$count","matched","Get-MgGroupOwnerCount" +"Cmdlets","GetMgGroupOwnerCountAsApplication.g.cs","v1.0","Get-MgGroupOwnerCountAsApplication","GET","/groups/{param}/owners/application/$count","matched","Get-MgGroupOwnerCountAsApplication" +"Cmdlets","GetMgGroupOwnerCountAsDevice.g.cs","v1.0","Get-MgGroupOwnerCountAsDevice","GET","/groups/{param}/owners/device/$count","matched","Get-MgGroupOwnerCountAsDevice" +"Cmdlets","GetMgGroupOwnerCountAsGroup.g.cs","v1.0","Get-MgGroupOwnerCountAsGroup","GET","/groups/{param}/owners/group/$count","matched","Get-MgGroupOwnerCountAsGroup" +"Cmdlets","GetMgGroupOwnerCountAsOrgContact.g.cs","v1.0","Get-MgGroupOwnerCountAsOrgContact","GET","/groups/{param}/owners/orgContact/$count","matched","Get-MgGroupOwnerCountAsOrgContact" +"Cmdlets","GetMgGroupOwnerCountAsServicePrincipal.g.cs","v1.0","Get-MgGroupOwnerCountAsServicePrincipal","GET","/groups/{param}/owners/servicePrincipal/$count","matched","Get-MgGroupOwnerCountAsServicePrincipal" +"Cmdlets","GetMgGroupOwnerCountAsUser.g.cs","v1.0","Get-MgGroupOwnerCountAsUser","GET","/groups/{param}/owners/user/$count","matched","Get-MgGroupOwnerCountAsUser" +"Cmdlets","GetMgGroupPermissionGrant_Get.g.cs","v1.0","Get-MgGroupPermissionGrant","GET","/groups/{param}/permissionGrants/{param}","matched","Get-MgGroupPermissionGrant" +"Cmdlets","GetMgGroupPermissionGrant_List.g.cs","v1.0","Get-MgGroupPermissionGrant","GET","/groups/{param}/permissionGrants","matched","Get-MgGroupPermissionGrant" +"Cmdlets","GetMgGroupPermissionGrant.g.cs","v1.0","Get-MgGroupPermissionGrant","","","dispatcher","" +"Cmdlets","GetMgGroupPermissionGrantCount.g.cs","v1.0","Get-MgGroupPermissionGrantCount","GET","/groups/{param}/permissionGrants/$count","matched","Get-MgGroupPermissionGrantCount" +"Cmdlets","GetMgGroupPhoto.g.cs","v1.0","Get-MgGroupPhoto","GET","/groups/{param}/photo","matched","Get-MgGroupPhoto" +"Cmdlets","GetMgGroupPhotoContent.g.cs","v1.0","Get-MgGroupPhotoContent","GET","/groups/{param}/photo/$value","matched","Get-MgGroupPhotoContent" +"Cmdlets","GetMgGroupRejectedSender.g.cs","v1.0","Get-MgGroupRejectedSender","GET","/groups/{param}/rejectedSenders","matched","Get-MgGroupRejectedSender" +"Cmdlets","GetMgGroupRejectedSenderByRef.g.cs","v1.0","Get-MgGroupRejectedSenderByRef","GET","/groups/{param}/rejectedSenders/$ref","matched","Get-MgGroupRejectedSenderByRef" +"Cmdlets","GetMgGroupRejectedSenderCount.g.cs","v1.0","Get-MgGroupRejectedSenderCount","GET","/groups/{param}/rejectedSenders/$count","matched","Get-MgGroupRejectedSenderCount" +"Cmdlets","GetMgGroupSetting.g.cs","v1.0","Get-MgGroupSetting","GET","/groups/{param}/settings","matched","Get-MgGroupSetting" +"Cmdlets","GetMgGroupSettingCount.g.cs","v1.0","Get-MgGroupSettingCount","GET","/groups/{param}/settings/$count","matched","Get-MgGroupSettingCount" +"Cmdlets","GetMgGroupSettingTemplate_Get.g.cs","v1.0","Get-MgGroupSettingTemplate","GET","/groupSettingTemplates/{param}","matched","Get-MgGroupSettingTemplateGroupSettingTemplate" +"Cmdlets","GetMgGroupSettingTemplate_List.g.cs","v1.0","Get-MgGroupSettingTemplate","GET","/groupSettingTemplates","matched","Get-MgGroupSettingTemplateGroupSettingTemplate" +"Cmdlets","GetMgGroupSettingTemplate.g.cs","v1.0","Get-MgGroupSettingTemplate","","","dispatcher","" +"Cmdlets","GetMgGroupSettingTemplateCount.g.cs","v1.0","Get-MgGroupSettingTemplateCount","GET","/groupSettingTemplates/$count","matched","Get-MgGroupSettingTemplateCount" +"Cmdlets","GetMgGroupSettingTemplateDelta.g.cs","v1.0","Get-MgGroupSettingTemplateDelta","GET","/groupSettingTemplates/delta","matched","Get-MgGroupSettingTemplateDelta" +"Cmdlets","GetMgGroupThread_Get.g.cs","v1.0","Get-MgGroupThread","GET","/groups/{param}/threads/{param}","matched","Get-MgGroupThread" +"Cmdlets","GetMgGroupThread_List.g.cs","v1.0","Get-MgGroupThread","GET","/groups/{param}/threads","matched","Get-MgGroupThread" +"Cmdlets","GetMgGroupThread.g.cs","v1.0","Get-MgGroupThread","","","dispatcher","" +"Cmdlets","GetMgGroupThreadCount.g.cs","v1.0","Get-MgGroupThreadCount","GET","/groups/{param}/threads/$count","matched","Get-MgGroupThreadCount" +"Cmdlets","GetMgGroupThreadPost_Get.g.cs","v1.0","Get-MgGroupThreadPost","GET","/groups/{param}/threads/{param}/posts/{param}","matched","Get-MgGroupThreadPost" +"Cmdlets","GetMgGroupThreadPost_List.g.cs","v1.0","Get-MgGroupThreadPost","GET","/groups/{param}/threads/{param}/posts","matched","Get-MgGroupThreadPost" +"Cmdlets","GetMgGroupThreadPost.g.cs","v1.0","Get-MgGroupThreadPost","","","dispatcher","" +"Cmdlets","GetMgGroupThreadPostAttachment_Get.g.cs","v1.0","Get-MgGroupThreadPostAttachment","GET","/groups/{param}/threads/{param}/posts/{param}/attachments/{param}","matched","Get-MgGroupThreadPostAttachment" +"Cmdlets","GetMgGroupThreadPostAttachment_List.g.cs","v1.0","Get-MgGroupThreadPostAttachment","GET","/groups/{param}/threads/{param}/posts/{param}/attachments","matched","Get-MgGroupThreadPostAttachment" +"Cmdlets","GetMgGroupThreadPostAttachment.g.cs","v1.0","Get-MgGroupThreadPostAttachment","","","dispatcher","" +"Cmdlets","GetMgGroupThreadPostAttachmentCount.g.cs","v1.0","Get-MgGroupThreadPostAttachmentCount","GET","/groups/{param}/threads/{param}/posts/{param}/attachments/$count","matched","Get-MgGroupThreadPostAttachmentCount" +"Cmdlets","GetMgGroupThreadPostCount.g.cs","v1.0","Get-MgGroupThreadPostCount","GET","/groups/{param}/threads/{param}/posts/$count","matched","Get-MgGroupThreadPostCount" +"Cmdlets","GetMgGroupThreadPostExtension_Get.g.cs","v1.0","Get-MgGroupThreadPostExtension","GET","/groups/{param}/threads/{param}/posts/{param}/extensions/{param}","matched","Get-MgGroupThreadPostExtension" +"Cmdlets","GetMgGroupThreadPostExtension_List.g.cs","v1.0","Get-MgGroupThreadPostExtension","GET","/groups/{param}/threads/{param}/posts/{param}/extensions","matched","Get-MgGroupThreadPostExtension" +"Cmdlets","GetMgGroupThreadPostExtension.g.cs","v1.0","Get-MgGroupThreadPostExtension","","","dispatcher","" +"Cmdlets","GetMgGroupThreadPostExtensionCount.g.cs","v1.0","Get-MgGroupThreadPostExtensionCount","GET","/groups/{param}/threads/{param}/posts/{param}/extensions/$count","matched","Get-MgGroupThreadPostExtensionCount" +"Cmdlets","GetMgGroupThreadPostInReplyTo.g.cs","v1.0","Get-MgGroupThreadPostInReplyTo","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo","no-oracle","" +"Cmdlets","GetMgGroupThreadPostInReplyToAttachment_Get.g.cs","v1.0","Get-MgGroupThreadPostInReplyToAttachment","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/{param}","matched","Get-MgGroupThreadPostInReplyToAttachment" +"Cmdlets","GetMgGroupThreadPostInReplyToAttachment_List.g.cs","v1.0","Get-MgGroupThreadPostInReplyToAttachment","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments","matched","Get-MgGroupThreadPostInReplyToAttachment" +"Cmdlets","GetMgGroupThreadPostInReplyToAttachment.g.cs","v1.0","Get-MgGroupThreadPostInReplyToAttachment","","","dispatcher","" +"Cmdlets","GetMgGroupThreadPostInReplyToAttachmentCount.g.cs","v1.0","Get-MgGroupThreadPostInReplyToAttachmentCount","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/$count","matched","Get-MgGroupThreadPostInReplyToAttachmentCount" +"Cmdlets","GetMgGroupThreadPostInReplyToExtension_Get.g.cs","v1.0","Get-MgGroupThreadPostInReplyToExtension","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","matched","Get-MgGroupThreadPostInReplyToExtension" +"Cmdlets","GetMgGroupThreadPostInReplyToExtension_List.g.cs","v1.0","Get-MgGroupThreadPostInReplyToExtension","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions","matched","Get-MgGroupThreadPostInReplyToExtension" +"Cmdlets","GetMgGroupThreadPostInReplyToExtension.g.cs","v1.0","Get-MgGroupThreadPostInReplyToExtension","","","dispatcher","" +"Cmdlets","GetMgGroupThreadPostInReplyToExtensionCount.g.cs","v1.0","Get-MgGroupThreadPostInReplyToExtensionCount","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/$count","matched","Get-MgGroupThreadPostInReplyToExtensionCount" +"Cmdlets","GetMgGroupTransitiveMember_Get.g.cs","v1.0","Get-MgGroupTransitiveMember","GET","/groups/{param}/transitiveMembers/{param}","matched","Get-MgGroupTransitiveMember" +"Cmdlets","GetMgGroupTransitiveMember_List.g.cs","v1.0","Get-MgGroupTransitiveMember","GET","/groups/{param}/transitiveMembers","matched","Get-MgGroupTransitiveMember" +"Cmdlets","GetMgGroupTransitiveMember.g.cs","v1.0","Get-MgGroupTransitiveMember","","","dispatcher","" +"Cmdlets","GetMgGroupTransitiveMemberAsApplication_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberAsApplication","GET","/groups/{param}/transitiveMembers/{param}/application","matched","Get-MgGroupTransitiveMemberAsApplication" +"Cmdlets","GetMgGroupTransitiveMemberAsApplication_List.g.cs","v1.0","Get-MgGroupTransitiveMemberAsApplication","GET","/groups/{param}/transitiveMembers/application","matched","Get-MgGroupTransitiveMemberAsApplication" +"Cmdlets","GetMgGroupTransitiveMemberAsApplication.g.cs","v1.0","Get-MgGroupTransitiveMemberAsApplication","","","dispatcher","" +"Cmdlets","GetMgGroupTransitiveMemberAsDevice_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberAsDevice","GET","/groups/{param}/transitiveMembers/{param}/device","matched","Get-MgGroupTransitiveMemberAsDevice" +"Cmdlets","GetMgGroupTransitiveMemberAsDevice_List.g.cs","v1.0","Get-MgGroupTransitiveMemberAsDevice","GET","/groups/{param}/transitiveMembers/device","matched","Get-MgGroupTransitiveMemberAsDevice" +"Cmdlets","GetMgGroupTransitiveMemberAsDevice.g.cs","v1.0","Get-MgGroupTransitiveMemberAsDevice","","","dispatcher","" +"Cmdlets","GetMgGroupTransitiveMemberAsGroup_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberAsGroup","GET","/groups/{param}/transitiveMembers/{param}/group","matched","Get-MgGroupTransitiveMemberAsGroup" +"Cmdlets","GetMgGroupTransitiveMemberAsGroup_List.g.cs","v1.0","Get-MgGroupTransitiveMemberAsGroup","GET","/groups/{param}/transitiveMembers/group","matched","Get-MgGroupTransitiveMemberAsGroup" +"Cmdlets","GetMgGroupTransitiveMemberAsGroup.g.cs","v1.0","Get-MgGroupTransitiveMemberAsGroup","","","dispatcher","" +"Cmdlets","GetMgGroupTransitiveMemberAsOrgContact_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberAsOrgContact","GET","/groups/{param}/transitiveMembers/{param}/orgContact","matched","Get-MgGroupTransitiveMemberAsOrgContact" +"Cmdlets","GetMgGroupTransitiveMemberAsOrgContact_List.g.cs","v1.0","Get-MgGroupTransitiveMemberAsOrgContact","GET","/groups/{param}/transitiveMembers/orgContact","matched","Get-MgGroupTransitiveMemberAsOrgContact" +"Cmdlets","GetMgGroupTransitiveMemberAsOrgContact.g.cs","v1.0","Get-MgGroupTransitiveMemberAsOrgContact","","","dispatcher","" +"Cmdlets","GetMgGroupTransitiveMemberAsServicePrincipal_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberAsServicePrincipal","GET","/groups/{param}/transitiveMembers/{param}/servicePrincipal","matched","Get-MgGroupTransitiveMemberAsServicePrincipal" +"Cmdlets","GetMgGroupTransitiveMemberAsServicePrincipal_List.g.cs","v1.0","Get-MgGroupTransitiveMemberAsServicePrincipal","GET","/groups/{param}/transitiveMembers/servicePrincipal","matched","Get-MgGroupTransitiveMemberAsServicePrincipal" +"Cmdlets","GetMgGroupTransitiveMemberAsServicePrincipal.g.cs","v1.0","Get-MgGroupTransitiveMemberAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgGroupTransitiveMemberAsUser_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberAsUser","GET","/groups/{param}/transitiveMembers/{param}/user","matched","Get-MgGroupTransitiveMemberAsUser" +"Cmdlets","GetMgGroupTransitiveMemberAsUser_List.g.cs","v1.0","Get-MgGroupTransitiveMemberAsUser","GET","/groups/{param}/transitiveMembers/user","matched","Get-MgGroupTransitiveMemberAsUser" +"Cmdlets","GetMgGroupTransitiveMemberAsUser.g.cs","v1.0","Get-MgGroupTransitiveMemberAsUser","","","dispatcher","" +"Cmdlets","GetMgGroupTransitiveMemberCount.g.cs","v1.0","Get-MgGroupTransitiveMemberCount","GET","/groups/{param}/transitiveMembers/$count","matched","Get-MgGroupTransitiveMemberCount" +"Cmdlets","GetMgGroupTransitiveMemberCountAsApplication.g.cs","v1.0","Get-MgGroupTransitiveMemberCountAsApplication","GET","/groups/{param}/transitiveMembers/application/$count","matched","Get-MgGroupTransitiveMemberCountAsApplication" +"Cmdlets","GetMgGroupTransitiveMemberCountAsDevice.g.cs","v1.0","Get-MgGroupTransitiveMemberCountAsDevice","GET","/groups/{param}/transitiveMembers/device/$count","matched","Get-MgGroupTransitiveMemberCountAsDevice" +"Cmdlets","GetMgGroupTransitiveMemberCountAsGroup.g.cs","v1.0","Get-MgGroupTransitiveMemberCountAsGroup","GET","/groups/{param}/transitiveMembers/group/$count","matched","Get-MgGroupTransitiveMemberCountAsGroup" +"Cmdlets","GetMgGroupTransitiveMemberCountAsOrgContact.g.cs","v1.0","Get-MgGroupTransitiveMemberCountAsOrgContact","GET","/groups/{param}/transitiveMembers/orgContact/$count","matched","Get-MgGroupTransitiveMemberCountAsOrgContact" +"Cmdlets","GetMgGroupTransitiveMemberCountAsServicePrincipal.g.cs","v1.0","Get-MgGroupTransitiveMemberCountAsServicePrincipal","GET","/groups/{param}/transitiveMembers/servicePrincipal/$count","matched","Get-MgGroupTransitiveMemberCountAsServicePrincipal" +"Cmdlets","GetMgGroupTransitiveMemberCountAsUser.g.cs","v1.0","Get-MgGroupTransitiveMemberCountAsUser","GET","/groups/{param}/transitiveMembers/user/$count","matched","Get-MgGroupTransitiveMemberCountAsUser" +"Cmdlets","GetMgGroupTransitiveMemberOf_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberOf","GET","/groups/{param}/transitiveMemberOf/{param}","matched","Get-MgGroupTransitiveMemberOf" +"Cmdlets","GetMgGroupTransitiveMemberOf_List.g.cs","v1.0","Get-MgGroupTransitiveMemberOf","GET","/groups/{param}/transitiveMemberOf","matched","Get-MgGroupTransitiveMemberOf" +"Cmdlets","GetMgGroupTransitiveMemberOf.g.cs","v1.0","Get-MgGroupTransitiveMemberOf","","","dispatcher","" +"Cmdlets","GetMgGroupTransitiveMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsAdministrativeUnit","GET","/groups/{param}/transitiveMemberOf/{param}/administrativeUnit","matched","Get-MgGroupTransitiveMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgGroupTransitiveMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsAdministrativeUnit","GET","/groups/{param}/transitiveMemberOf/administrativeUnit","matched","Get-MgGroupTransitiveMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgGroupTransitiveMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsAdministrativeUnit","","","dispatcher","" +"Cmdlets","GetMgGroupTransitiveMemberOfAsGroup_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsGroup","GET","/groups/{param}/transitiveMemberOf/{param}/group","matched","Get-MgGroupTransitiveMemberOfAsGroup" +"Cmdlets","GetMgGroupTransitiveMemberOfAsGroup_List.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsGroup","GET","/groups/{param}/transitiveMemberOf/group","matched","Get-MgGroupTransitiveMemberOfAsGroup" +"Cmdlets","GetMgGroupTransitiveMemberOfAsGroup.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsGroup","","","dispatcher","" +"Cmdlets","GetMgGroupTransitiveMemberOfCount.g.cs","v1.0","Get-MgGroupTransitiveMemberOfCount","GET","/groups/{param}/transitiveMemberOf/$count","matched","Get-MgGroupTransitiveMemberOfCount" +"Cmdlets","GetMgGroupTransitiveMemberOfCountAsAdministrativeUnit.g.cs","v1.0","Get-MgGroupTransitiveMemberOfCountAsAdministrativeUnit","GET","/groups/{param}/transitiveMemberOf/administrativeUnit/$count","matched","Get-MgGroupTransitiveMemberOfCountAsAdministrativeUnit" +"Cmdlets","GetMgGroupTransitiveMemberOfCountAsGroup.g.cs","v1.0","Get-MgGroupTransitiveMemberOfCountAsGroup","GET","/groups/{param}/transitiveMemberOf/group/$count","matched","Get-MgGroupTransitiveMemberOfCountAsGroup" +"Cmdlets","InvokeMgGroupAddFavorite.g.cs","v1.0","Invoke-MgGroupAddFavorite","POST","/groups/{param}/addFavorite","mismatch","Add-MgGroupFavorite" +"Cmdlets","InvokeMgGroupAssignLicense.g.cs","v1.0","Invoke-MgGroupAssignLicense","POST","/groups/{param}/assignLicense","mismatch","Set-MgGroupLicense" +"Cmdlets","InvokeMgGroupCheckGrantedPermissionsForApp.g.cs","v1.0","Invoke-MgGroupCheckGrantedPermissionsForApp","POST","/groups/{param}/checkGrantedPermissionsForApp","mismatch","Confirm-MgGroupGrantedPermissionForApp" +"Cmdlets","InvokeMgGroupCheckMemberGroups.g.cs","v1.0","Invoke-MgGroupCheckMemberGroups","POST","/groups/{param}/checkMemberGroups","mismatch","Confirm-MgGroupMemberGroup" +"Cmdlets","InvokeMgGroupCheckMemberObjects.g.cs","v1.0","Invoke-MgGroupCheckMemberObjects","POST","/groups/{param}/checkMemberObjects","mismatch","Confirm-MgGroupMemberObject" +"Cmdlets","InvokeMgGroupConversationThreadPostAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgGroupConversationThreadPostAttachmentCreateUploadSession","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments/createUploadSession","mismatch","New-MgGroupConversationThreadPostAttachmentUploadSession" +"Cmdlets","InvokeMgGroupConversationThreadPostForward.g.cs","v1.0","Invoke-MgGroupConversationThreadPostForward","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/forward","mismatch","Invoke-MgForwardGroupConversationThreadPost" +"Cmdlets","InvokeMgGroupConversationThreadPostInReplyToAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgGroupConversationThreadPostInReplyToAttachmentCreateUploadSession","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/createUploadSession","mismatch","New-MgGroupConversationThreadPostInReplyToAttachmentUploadSession" +"Cmdlets","InvokeMgGroupConversationThreadPostInReplyToForward.g.cs","v1.0","Invoke-MgGroupConversationThreadPostInReplyToForward","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/forward","mismatch","Invoke-MgForwardGroupConversationThreadPostInReplyTo" +"Cmdlets","InvokeMgGroupConversationThreadPostInReplyToReply.g.cs","v1.0","Invoke-MgGroupConversationThreadPostInReplyToReply","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/reply","mismatch","Invoke-MgReplyGroupConversationThreadPostInReplyTo" +"Cmdlets","InvokeMgGroupConversationThreadPostReply.g.cs","v1.0","Invoke-MgGroupConversationThreadPostReply","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/reply","mismatch","Invoke-MgReplyGroupConversationThreadPost" +"Cmdlets","InvokeMgGroupConversationThreadReply.g.cs","v1.0","Invoke-MgGroupConversationThreadReply","POST","/groups/{param}/conversations/{param}/threads/{param}/reply","mismatch","Invoke-MgReplyGroupConversationThread" +"Cmdlets","InvokeMgGroupGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgGroupGetAvailableExtensionProperties","POST","/groups/getAvailableExtensionProperties","no-oracle","" +"Cmdlets","InvokeMgGroupGetByIds.g.cs","v1.0","Invoke-MgGroupGetByIds","POST","/groups/getByIds","mismatch","Get-MgGroupById" +"Cmdlets","InvokeMgGroupGetMemberGroups.g.cs","v1.0","Invoke-MgGroupGetMemberGroups","POST","/groups/{param}/getMemberGroups","mismatch","Get-MgGroupMemberGroup" +"Cmdlets","InvokeMgGroupGetMemberObjects.g.cs","v1.0","Invoke-MgGroupGetMemberObjects","POST","/groups/{param}/getMemberObjects","mismatch","Get-MgGroupMemberObject" +"Cmdlets","InvokeMgGroupLifecyclePolicyAddGroup.g.cs","v1.0","Invoke-MgGroupLifecyclePolicyAddGroup","POST","/groupLifecyclePolicies/{param}/addGroup","mismatch","Add-MgGroupToLifecyclePolicy" +"Cmdlets","InvokeMgGroupLifecyclePolicyRemoveGroup.g.cs","v1.0","Invoke-MgGroupLifecyclePolicyRemoveGroup","POST","/groupLifecyclePolicies/{param}/removeGroup","mismatch","Remove-MgGroupFromLifecyclePolicy" +"Cmdlets","InvokeMgGroupRemoveFavorite.g.cs","v1.0","Invoke-MgGroupRemoveFavorite","POST","/groups/{param}/removeFavorite","mismatch","Remove-MgGroupFavorite" +"Cmdlets","InvokeMgGroupRenew.g.cs","v1.0","Invoke-MgGroupRenew","POST","/groups/{param}/renew","mismatch","Invoke-MgRenewGroup" +"Cmdlets","InvokeMgGroupResetUnseenCount.g.cs","v1.0","Invoke-MgGroupResetUnseenCount","POST","/groups/{param}/resetUnseenCount","mismatch","Reset-MgGroupUnseenCount" +"Cmdlets","InvokeMgGroupRestore.g.cs","v1.0","Invoke-MgGroupRestore","POST","/groups/{param}/restore","no-oracle","" +"Cmdlets","InvokeMgGroupRetryServiceProvisioning.g.cs","v1.0","Invoke-MgGroupRetryServiceProvisioning","POST","/groups/{param}/retryServiceProvisioning","mismatch","Invoke-MgRetryGroupServiceProvisioning" +"Cmdlets","InvokeMgGroupSettingTemplateCheckMemberGroups.g.cs","v1.0","Invoke-MgGroupSettingTemplateCheckMemberGroups","POST","/groupSettingTemplates/{param}/checkMemberGroups","mismatch","Confirm-MgGroupSettingTemplateMemberGroup" +"Cmdlets","InvokeMgGroupSettingTemplateCheckMemberObjects.g.cs","v1.0","Invoke-MgGroupSettingTemplateCheckMemberObjects","POST","/groupSettingTemplates/{param}/checkMemberObjects","mismatch","Confirm-MgGroupSettingTemplateMemberObject" +"Cmdlets","InvokeMgGroupSettingTemplateGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgGroupSettingTemplateGetAvailableExtensionProperties","POST","/groupSettingTemplates/getAvailableExtensionProperties","no-oracle","" +"Cmdlets","InvokeMgGroupSettingTemplateGetByIds.g.cs","v1.0","Invoke-MgGroupSettingTemplateGetByIds","POST","/groupSettingTemplates/getByIds","mismatch","Get-MgGroupSettingTemplateById" +"Cmdlets","InvokeMgGroupSettingTemplateGetMemberGroups.g.cs","v1.0","Invoke-MgGroupSettingTemplateGetMemberGroups","POST","/groupSettingTemplates/{param}/getMemberGroups","mismatch","Get-MgGroupSettingTemplateMemberGroup" +"Cmdlets","InvokeMgGroupSettingTemplateGetMemberObjects.g.cs","v1.0","Invoke-MgGroupSettingTemplateGetMemberObjects","POST","/groupSettingTemplates/{param}/getMemberObjects","mismatch","Get-MgGroupSettingTemplateMemberObject" +"Cmdlets","InvokeMgGroupSettingTemplateRestore.g.cs","v1.0","Invoke-MgGroupSettingTemplateRestore","POST","/groupSettingTemplates/{param}/restore","mismatch","Restore-MgGroupSettingTemplate" +"Cmdlets","InvokeMgGroupSettingTemplateValidateProperties.g.cs","v1.0","Invoke-MgGroupSettingTemplateValidateProperties","POST","/groupSettingTemplates/validateProperties","mismatch","Test-MgGroupSettingTemplateProperty" +"Cmdlets","InvokeMgGroupSubscribeByMail.g.cs","v1.0","Invoke-MgGroupSubscribeByMail","POST","/groups/{param}/subscribeByMail","mismatch","Invoke-MgSubscribeGroupByMail" +"Cmdlets","InvokeMgGroupThreadPostAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgGroupThreadPostAttachmentCreateUploadSession","POST","/groups/{param}/threads/{param}/posts/{param}/attachments/createUploadSession","mismatch","New-MgGroupThreadPostAttachmentUploadSession" +"Cmdlets","InvokeMgGroupThreadPostForward.g.cs","v1.0","Invoke-MgGroupThreadPostForward","POST","/groups/{param}/threads/{param}/posts/{param}/forward","mismatch","Invoke-MgForwardGroupThreadPost" +"Cmdlets","InvokeMgGroupThreadPostInReplyToAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgGroupThreadPostInReplyToAttachmentCreateUploadSession","POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/createUploadSession","mismatch","New-MgGroupThreadPostInReplyToAttachmentUploadSession" +"Cmdlets","InvokeMgGroupThreadPostInReplyToForward.g.cs","v1.0","Invoke-MgGroupThreadPostInReplyToForward","POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/forward","mismatch","Invoke-MgForwardGroupThreadPostInReplyTo" +"Cmdlets","InvokeMgGroupThreadPostInReplyToReply.g.cs","v1.0","Invoke-MgGroupThreadPostInReplyToReply","POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/reply","mismatch","Invoke-MgReplyGroupThreadPostInReplyTo" +"Cmdlets","InvokeMgGroupThreadPostReply.g.cs","v1.0","Invoke-MgGroupThreadPostReply","POST","/groups/{param}/threads/{param}/posts/{param}/reply","mismatch","Invoke-MgReplyGroupThreadPost" +"Cmdlets","InvokeMgGroupThreadReply.g.cs","v1.0","Invoke-MgGroupThreadReply","POST","/groups/{param}/threads/{param}/reply","mismatch","Invoke-MgReplyGroupThread" +"Cmdlets","InvokeMgGroupUnsubscribeByMail.g.cs","v1.0","Invoke-MgGroupUnsubscribeByMail","POST","/groups/{param}/unsubscribeByMail","mismatch","Invoke-MgGraphGroup" +"Cmdlets","InvokeMgGroupValidateProperties.g.cs","v1.0","Invoke-MgGroupValidateProperties","POST","/groups/{param}/validateProperties","mismatch","Test-MgGroupProperty" +"Cmdlets","NewMgGroup.g.cs","v1.0","New-MgGroup","POST","/groups","matched","New-MgGroup" +"Cmdlets","NewMgGroupAcceptedSenderByRef.g.cs","v1.0","New-MgGroupAcceptedSenderByRef","POST","/groups/{param}/acceptedSenders/$ref","matched","New-MgGroupAcceptedSenderByRef" +"Cmdlets","NewMgGroupConversation.g.cs","v1.0","New-MgGroupConversation","POST","/groups/{param}/conversations","matched","New-MgGroupConversation" +"Cmdlets","NewMgGroupConversationThread.g.cs","v1.0","New-MgGroupConversationThread","POST","/groups/{param}/conversations/{param}/threads","matched","New-MgGroupConversationThread" +"Cmdlets","NewMgGroupConversationThreadPostAttachment.g.cs","v1.0","New-MgGroupConversationThreadPostAttachment","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments","matched","New-MgGroupConversationThreadPostAttachment" +"Cmdlets","NewMgGroupConversationThreadPostExtension.g.cs","v1.0","New-MgGroupConversationThreadPostExtension","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions","matched","New-MgGroupConversationThreadPostExtension" +"Cmdlets","NewMgGroupConversationThreadPostInReplyToAttachment.g.cs","v1.0","New-MgGroupConversationThreadPostInReplyToAttachment","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments","matched","New-MgGroupConversationThreadPostInReplyToAttachment" +"Cmdlets","NewMgGroupConversationThreadPostInReplyToExtension.g.cs","v1.0","New-MgGroupConversationThreadPostInReplyToExtension","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions","matched","New-MgGroupConversationThreadPostInReplyToExtension" +"Cmdlets","NewMgGroupExtension.g.cs","v1.0","New-MgGroupExtension","POST","/groups/{param}/extensions","matched","New-MgGroupExtension" +"Cmdlets","NewMgGroupLifecyclePolicy.g.cs","v1.0","New-MgGroupLifecyclePolicy","POST","/groupLifecyclePolicies","matched","New-MgGroupLifecyclePolicy" +"Cmdlets","NewMgGroupMemberByRef.g.cs","v1.0","New-MgGroupMemberByRef","POST","/groups/{param}/members/$ref","matched","New-MgGroupMemberByRef" +"Cmdlets","NewMgGroupOwnerByRef.g.cs","v1.0","New-MgGroupOwnerByRef","POST","/groups/{param}/owners/$ref","matched","New-MgGroupOwnerByRef" +"Cmdlets","NewMgGroupPermissionGrant.g.cs","v1.0","New-MgGroupPermissionGrant","POST","/groups/{param}/permissionGrants","matched","New-MgGroupPermissionGrant" +"Cmdlets","NewMgGroupRejectedSenderByRef.g.cs","v1.0","New-MgGroupRejectedSenderByRef","POST","/groups/{param}/rejectedSenders/$ref","matched","New-MgGroupRejectedSenderByRef" +"Cmdlets","NewMgGroupSetting.g.cs","v1.0","New-MgGroupSetting","POST","/groups/{param}/settings","matched","New-MgGroupSetting" +"Cmdlets","NewMgGroupSettingTemplate.g.cs","v1.0","New-MgGroupSettingTemplate","POST","/groupSettingTemplates","matched","New-MgGroupSettingTemplateGroupSettingTemplate" +"Cmdlets","NewMgGroupThread.g.cs","v1.0","New-MgGroupThread","POST","/groups/{param}/threads","matched","New-MgGroupThread" +"Cmdlets","NewMgGroupThreadPostAttachment.g.cs","v1.0","New-MgGroupThreadPostAttachment","POST","/groups/{param}/threads/{param}/posts/{param}/attachments","matched","New-MgGroupThreadPostAttachment" +"Cmdlets","NewMgGroupThreadPostExtension.g.cs","v1.0","New-MgGroupThreadPostExtension","POST","/groups/{param}/threads/{param}/posts/{param}/extensions","matched","New-MgGroupThreadPostExtension" +"Cmdlets","NewMgGroupThreadPostInReplyToAttachment.g.cs","v1.0","New-MgGroupThreadPostInReplyToAttachment","POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments","matched","New-MgGroupThreadPostInReplyToAttachment" +"Cmdlets","NewMgGroupThreadPostInReplyToExtension.g.cs","v1.0","New-MgGroupThreadPostInReplyToExtension","POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions","matched","New-MgGroupThreadPostInReplyToExtension" +"Cmdlets","RemoveMgGroup.g.cs","v1.0","Remove-MgGroup","DELETE","/groups/{param}","matched","Remove-MgGroup" +"Cmdlets","RemoveMgGroupAcceptedSenderByRef.g.cs","v1.0","Remove-MgGroupAcceptedSenderByRef","DELETE","/groups/{param}/acceptedSenders/{param}/$ref","mismatch","Remove-MgGroupAcceptedSenderDirectoryObjectByRef" +"Cmdlets","RemoveMgGroupConversation.g.cs","v1.0","Remove-MgGroupConversation","DELETE","/groups/{param}/conversations/{param}","matched","Remove-MgGroupConversation" +"Cmdlets","RemoveMgGroupConversationThread.g.cs","v1.0","Remove-MgGroupConversationThread","DELETE","/groups/{param}/conversations/{param}/threads/{param}","matched","Remove-MgGroupConversationThread" +"Cmdlets","RemoveMgGroupConversationThreadPostAttachment.g.cs","v1.0","Remove-MgGroupConversationThreadPostAttachment","DELETE","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments/{param}","matched","Remove-MgGroupConversationThreadPostAttachment" +"Cmdlets","RemoveMgGroupConversationThreadPostExtension.g.cs","v1.0","Remove-MgGroupConversationThreadPostExtension","DELETE","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions/{param}","matched","Remove-MgGroupConversationThreadPostExtension" +"Cmdlets","RemoveMgGroupConversationThreadPostInReplyToAttachment.g.cs","v1.0","Remove-MgGroupConversationThreadPostInReplyToAttachment","DELETE","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/{param}","matched","Remove-MgGroupConversationThreadPostInReplyToAttachment" +"Cmdlets","RemoveMgGroupConversationThreadPostInReplyToExtension.g.cs","v1.0","Remove-MgGroupConversationThreadPostInReplyToExtension","DELETE","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","matched","Remove-MgGroupConversationThreadPostInReplyToExtension" +"Cmdlets","RemoveMgGroupExtension.g.cs","v1.0","Remove-MgGroupExtension","DELETE","/groups/{param}/extensions/{param}","matched","Remove-MgGroupExtension" +"Cmdlets","RemoveMgGroupLifecyclePolicy.g.cs","v1.0","Remove-MgGroupLifecyclePolicy","DELETE","/groupLifecyclePolicies/{param}","matched","Remove-MgGroupLifecyclePolicy" +"Cmdlets","RemoveMgGroupMemberByRef.g.cs","v1.0","Remove-MgGroupMemberByRef","DELETE","/groups/{param}/members/{param}/$ref","mismatch","Remove-MgGroupMemberDirectoryObjectByRef" +"Cmdlets","RemoveMgGroupOnPremiseSyncBehavior.g.cs","v1.0","Remove-MgGroupOnPremiseSyncBehavior","DELETE","/groups/{param}/onPremisesSyncBehavior","matched","Remove-MgGroupOnPremiseSyncBehavior" +"Cmdlets","RemoveMgGroupOwnerByRef.g.cs","v1.0","Remove-MgGroupOwnerByRef","DELETE","/groups/{param}/owners/{param}/$ref","mismatch","Remove-MgGroupOwnerDirectoryObjectByRef" +"Cmdlets","RemoveMgGroupPermissionGrant.g.cs","v1.0","Remove-MgGroupPermissionGrant","DELETE","/groups/{param}/permissionGrants/{param}","matched","Remove-MgGroupPermissionGrant" +"Cmdlets","RemoveMgGroupPhoto.g.cs","v1.0","Remove-MgGroupPhoto","DELETE","/groups/{param}/photo","matched","Remove-MgGroupPhoto" +"Cmdlets","RemoveMgGroupPhotoContent.g.cs","v1.0","Remove-MgGroupPhotoContent","DELETE","/groups/{param}/photo/$value","matched","Remove-MgGroupPhotoContent" +"Cmdlets","RemoveMgGroupRejectedSenderByRef.g.cs","v1.0","Remove-MgGroupRejectedSenderByRef","DELETE","/groups/{param}/rejectedSenders/{param}/$ref","mismatch","Remove-MgGroupRejectedSenderDirectoryObjectByRef" +"Cmdlets","RemoveMgGroupSetting.g.cs","v1.0","Remove-MgGroupSetting","DELETE","/groups/{param}/settings/{param}","matched","Remove-MgGroupSetting" +"Cmdlets","RemoveMgGroupSettingTemplate.g.cs","v1.0","Remove-MgGroupSettingTemplate","DELETE","/groupSettingTemplates/{param}","matched","Remove-MgGroupSettingTemplateGroupSettingTemplate" +"Cmdlets","RemoveMgGroupThread.g.cs","v1.0","Remove-MgGroupThread","DELETE","/groups/{param}/threads/{param}","matched","Remove-MgGroupThread" +"Cmdlets","RemoveMgGroupThreadPostAttachment.g.cs","v1.0","Remove-MgGroupThreadPostAttachment","DELETE","/groups/{param}/threads/{param}/posts/{param}/attachments/{param}","matched","Remove-MgGroupThreadPostAttachment" +"Cmdlets","RemoveMgGroupThreadPostExtension.g.cs","v1.0","Remove-MgGroupThreadPostExtension","DELETE","/groups/{param}/threads/{param}/posts/{param}/extensions/{param}","matched","Remove-MgGroupThreadPostExtension" +"Cmdlets","RemoveMgGroupThreadPostInReplyToAttachment.g.cs","v1.0","Remove-MgGroupThreadPostInReplyToAttachment","DELETE","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/{param}","matched","Remove-MgGroupThreadPostInReplyToAttachment" +"Cmdlets","RemoveMgGroupThreadPostInReplyToExtension.g.cs","v1.0","Remove-MgGroupThreadPostInReplyToExtension","DELETE","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","matched","Remove-MgGroupThreadPostInReplyToExtension" +"Cmdlets","UpdateMgGroup.g.cs","v1.0","Update-MgGroup","PATCH","/groups/{param}","matched","Update-MgGroup" +"Cmdlets","UpdateMgGroupConversationThread.g.cs","v1.0","Update-MgGroupConversationThread","PATCH","/groups/{param}/conversations/{param}/threads/{param}","matched","Update-MgGroupConversationThread" +"Cmdlets","UpdateMgGroupConversationThreadPostExtension.g.cs","v1.0","Update-MgGroupConversationThreadPostExtension","PATCH","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions/{param}","matched","Update-MgGroupConversationThreadPostExtension" +"Cmdlets","UpdateMgGroupConversationThreadPostInReplyToExtension.g.cs","v1.0","Update-MgGroupConversationThreadPostInReplyToExtension","PATCH","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","matched","Update-MgGroupConversationThreadPostInReplyToExtension" +"Cmdlets","UpdateMgGroupExtension.g.cs","v1.0","Update-MgGroupExtension","PATCH","/groups/{param}/extensions/{param}","matched","Update-MgGroupExtension" +"Cmdlets","UpdateMgGroupLifecyclePolicy.g.cs","v1.0","Update-MgGroupLifecyclePolicy","PATCH","/groupLifecyclePolicies/{param}","matched","Update-MgGroupLifecyclePolicy" +"Cmdlets","UpdateMgGroupOnPremiseSyncBehavior.g.cs","v1.0","Update-MgGroupOnPremiseSyncBehavior","PATCH","/groups/{param}/onPremisesSyncBehavior","matched","Update-MgGroupOnPremiseSyncBehavior" +"Cmdlets","UpdateMgGroupPermissionGrant.g.cs","v1.0","Update-MgGroupPermissionGrant","PATCH","/groups/{param}/permissionGrants/{param}","matched","Update-MgGroupPermissionGrant" +"Cmdlets","UpdateMgGroupPhoto.g.cs","v1.0","Update-MgGroupPhoto","PATCH","/groups/{param}/photo","no-oracle","" +"Cmdlets","UpdateMgGroupSetting.g.cs","v1.0","Update-MgGroupSetting","PATCH","/groups/{param}/settings/{param}","matched","Update-MgGroupSetting" +"Cmdlets","UpdateMgGroupSettingTemplate.g.cs","v1.0","Update-MgGroupSettingTemplate","PATCH","/groupSettingTemplates/{param}","matched","Update-MgGroupSettingTemplateGroupSettingTemplate" +"Cmdlets","UpdateMgGroupThread.g.cs","v1.0","Update-MgGroupThread","PATCH","/groups/{param}/threads/{param}","matched","Update-MgGroupThread" +"Cmdlets","UpdateMgGroupThreadPostExtension.g.cs","v1.0","Update-MgGroupThreadPostExtension","PATCH","/groups/{param}/threads/{param}/posts/{param}/extensions/{param}","matched","Update-MgGroupThreadPostExtension" +"Cmdlets","UpdateMgGroupThreadPostInReplyToExtension.g.cs","v1.0","Update-MgGroupThreadPostInReplyToExtension","PATCH","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","matched","Update-MgGroupThreadPostInReplyToExtension" +"Cmdlets","GetMgAdminPeople.g.cs","v1.0","Get-MgAdminPeople","GET","/admin/people","matched","Get-MgAdminPeople" +"Cmdlets","GetMgAdminPeopleItemInsight.g.cs","v1.0","Get-MgAdminPeopleItemInsight","GET","/admin/people/itemInsights","matched","Get-MgAdminPeopleItemInsight" +"Cmdlets","GetMgAdminPeopleProfileCardProperty_Get.g.cs","v1.0","Get-MgAdminPeopleProfileCardProperty","GET","/admin/people/profileCardProperties/{param}","matched","Get-MgAdminPeopleProfileCardProperty" +"Cmdlets","GetMgAdminPeopleProfileCardProperty_List.g.cs","v1.0","Get-MgAdminPeopleProfileCardProperty","GET","/admin/people/profileCardProperties","matched","Get-MgAdminPeopleProfileCardProperty" +"Cmdlets","GetMgAdminPeopleProfileCardProperty.g.cs","v1.0","Get-MgAdminPeopleProfileCardProperty","","","dispatcher","" +"Cmdlets","GetMgAdminPeopleProfilePropertySetting_Get.g.cs","v1.0","Get-MgAdminPeopleProfilePropertySetting","GET","/admin/people/profilePropertySettings/{param}","matched","Get-MgAdminPeopleProfilePropertySetting" +"Cmdlets","GetMgAdminPeopleProfilePropertySetting_List.g.cs","v1.0","Get-MgAdminPeopleProfilePropertySetting","GET","/admin/people/profilePropertySettings","matched","Get-MgAdminPeopleProfilePropertySetting" +"Cmdlets","GetMgAdminPeopleProfilePropertySetting.g.cs","v1.0","Get-MgAdminPeopleProfilePropertySetting","","","dispatcher","" +"Cmdlets","GetMgAdminPeopleProfileSource_Get.g.cs","v1.0","Get-MgAdminPeopleProfileSource","GET","/admin/people/profileSources/{param}","matched","Get-MgAdminPeopleProfileSource" +"Cmdlets","GetMgAdminPeopleProfileSource_List.g.cs","v1.0","Get-MgAdminPeopleProfileSource","GET","/admin/people/profileSources","matched","Get-MgAdminPeopleProfileSource" +"Cmdlets","GetMgAdminPeopleProfileSource.g.cs","v1.0","Get-MgAdminPeopleProfileSource","","","dispatcher","" +"Cmdlets","GetMgAdminPeoplePronoun.g.cs","v1.0","Get-MgAdminPeoplePronoun","GET","/admin/people/pronouns","matched","Get-MgAdminPeoplePronoun" +"Cmdlets","GetMgAdminPersonProfileCardPropertyCount.g.cs","v1.0","Get-MgAdminPersonProfileCardPropertyCount","GET","/admin/people/profileCardProperties/$count","mismatch","Get-MgAdminPeopleProfileCardPropertyCount" +"Cmdlets","GetMgAdminPersonProfilePropertySettingCount.g.cs","v1.0","Get-MgAdminPersonProfilePropertySettingCount","GET","/admin/people/profilePropertySettings/$count","mismatch","Get-MgAdminPeopleProfilePropertySettingCount" +"Cmdlets","GetMgAdminPersonProfileSourceCount.g.cs","v1.0","Get-MgAdminPersonProfileSourceCount","GET","/admin/people/profileSources/$count","mismatch","Get-MgAdminPeopleProfileSourceCount" +"Cmdlets","GetMgContact_Get.g.cs","v1.0","Get-MgContact","GET","/contacts/{param}","matched","Get-MgContact" +"Cmdlets","GetMgContact_List.g.cs","v1.0","Get-MgContact","GET","/contacts","matched","Get-MgContact" +"Cmdlets","GetMgContact.g.cs","v1.0","Get-MgContact","","","dispatcher","" +"Cmdlets","GetMgContactCount.g.cs","v1.0","Get-MgContactCount","GET","/contacts/$count","matched","Get-MgContactCount" +"Cmdlets","GetMgContactDelta.g.cs","v1.0","Get-MgContactDelta","GET","/contacts/delta","matched","Get-MgContactDelta" +"Cmdlets","GetMgContactDirectReport_Get.g.cs","v1.0","Get-MgContactDirectReport","GET","/contacts/{param}/directReports/{param}","matched","Get-MgContactDirectReport" +"Cmdlets","GetMgContactDirectReport_List.g.cs","v1.0","Get-MgContactDirectReport","GET","/contacts/{param}/directReports","matched","Get-MgContactDirectReport" +"Cmdlets","GetMgContactDirectReport.g.cs","v1.0","Get-MgContactDirectReport","","","dispatcher","" +"Cmdlets","GetMgContactDirectReportAsOrgContact_Get.g.cs","v1.0","Get-MgContactDirectReportAsOrgContact","GET","/contacts/{param}/directReports/{param}/orgContact","matched","Get-MgContactDirectReportAsOrgContact" +"Cmdlets","GetMgContactDirectReportAsOrgContact_List.g.cs","v1.0","Get-MgContactDirectReportAsOrgContact","GET","/contacts/{param}/directReports/orgContact","matched","Get-MgContactDirectReportAsOrgContact" +"Cmdlets","GetMgContactDirectReportAsOrgContact.g.cs","v1.0","Get-MgContactDirectReportAsOrgContact","","","dispatcher","" +"Cmdlets","GetMgContactDirectReportAsUser_Get.g.cs","v1.0","Get-MgContactDirectReportAsUser","GET","/contacts/{param}/directReports/{param}/user","matched","Get-MgContactDirectReportAsUser" +"Cmdlets","GetMgContactDirectReportAsUser_List.g.cs","v1.0","Get-MgContactDirectReportAsUser","GET","/contacts/{param}/directReports/user","matched","Get-MgContactDirectReportAsUser" +"Cmdlets","GetMgContactDirectReportAsUser.g.cs","v1.0","Get-MgContactDirectReportAsUser","","","dispatcher","" +"Cmdlets","GetMgContactDirectReportCount.g.cs","v1.0","Get-MgContactDirectReportCount","GET","/contacts/{param}/directReports/$count","matched","Get-MgContactDirectReportCount" +"Cmdlets","GetMgContactDirectReportCountAsOrgContact.g.cs","v1.0","Get-MgContactDirectReportCountAsOrgContact","GET","/contacts/{param}/directReports/orgContact/$count","matched","Get-MgContactDirectReportCountAsOrgContact" +"Cmdlets","GetMgContactDirectReportCountAsUser.g.cs","v1.0","Get-MgContactDirectReportCountAsUser","GET","/contacts/{param}/directReports/user/$count","matched","Get-MgContactDirectReportCountAsUser" +"Cmdlets","GetMgContactManager.g.cs","v1.0","Get-MgContactManager","GET","/contacts/{param}/manager","matched","Get-MgContactManager" +"Cmdlets","GetMgContactMemberOf_Get.g.cs","v1.0","Get-MgContactMemberOf","GET","/contacts/{param}/memberOf/{param}","matched","Get-MgContactMemberOf" +"Cmdlets","GetMgContactMemberOf_List.g.cs","v1.0","Get-MgContactMemberOf","GET","/contacts/{param}/memberOf","matched","Get-MgContactMemberOf" +"Cmdlets","GetMgContactMemberOf.g.cs","v1.0","Get-MgContactMemberOf","","","dispatcher","" +"Cmdlets","GetMgContactMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgContactMemberOfAsAdministrativeUnit","GET","/contacts/{param}/memberOf/{param}/administrativeUnit","matched","Get-MgContactMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgContactMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgContactMemberOfAsAdministrativeUnit","GET","/contacts/{param}/memberOf/administrativeUnit","matched","Get-MgContactMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgContactMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgContactMemberOfAsAdministrativeUnit","","","dispatcher","" +"Cmdlets","GetMgContactMemberOfAsGroup_Get.g.cs","v1.0","Get-MgContactMemberOfAsGroup","GET","/contacts/{param}/memberOf/{param}/group","matched","Get-MgContactMemberOfAsGroup" +"Cmdlets","GetMgContactMemberOfAsGroup_List.g.cs","v1.0","Get-MgContactMemberOfAsGroup","GET","/contacts/{param}/memberOf/group","matched","Get-MgContactMemberOfAsGroup" +"Cmdlets","GetMgContactMemberOfAsGroup.g.cs","v1.0","Get-MgContactMemberOfAsGroup","","","dispatcher","" +"Cmdlets","GetMgContactMemberOfCount.g.cs","v1.0","Get-MgContactMemberOfCount","GET","/contacts/{param}/memberOf/$count","matched","Get-MgContactMemberOfCount" +"Cmdlets","GetMgContactMemberOfCountAsAdministrativeUnit.g.cs","v1.0","Get-MgContactMemberOfCountAsAdministrativeUnit","GET","/contacts/{param}/memberOf/administrativeUnit/$count","matched","Get-MgContactMemberOfCountAsAdministrativeUnit" +"Cmdlets","GetMgContactMemberOfCountAsGroup.g.cs","v1.0","Get-MgContactMemberOfCountAsGroup","GET","/contacts/{param}/memberOf/group/$count","matched","Get-MgContactMemberOfCountAsGroup" +"Cmdlets","GetMgContactOnPremiseSyncBehavior.g.cs","v1.0","Get-MgContactOnPremiseSyncBehavior","GET","/contacts/{param}/onPremisesSyncBehavior","matched","Get-MgContactOnPremiseSyncBehavior" +"Cmdlets","GetMgContactServiceProvisioningError.g.cs","v1.0","Get-MgContactServiceProvisioningError","GET","/contacts/{param}/serviceProvisioningErrors","matched","Get-MgContactServiceProvisioningError" +"Cmdlets","GetMgContactServiceProvisioningErrorCount.g.cs","v1.0","Get-MgContactServiceProvisioningErrorCount","GET","/contacts/{param}/serviceProvisioningErrors/$count","matched","Get-MgContactServiceProvisioningErrorCount" +"Cmdlets","GetMgContactTransitiveMemberOf_Get.g.cs","v1.0","Get-MgContactTransitiveMemberOf","GET","/contacts/{param}/transitiveMemberOf/{param}","matched","Get-MgContactTransitiveMemberOf" +"Cmdlets","GetMgContactTransitiveMemberOf_List.g.cs","v1.0","Get-MgContactTransitiveMemberOf","GET","/contacts/{param}/transitiveMemberOf","matched","Get-MgContactTransitiveMemberOf" +"Cmdlets","GetMgContactTransitiveMemberOf.g.cs","v1.0","Get-MgContactTransitiveMemberOf","","","dispatcher","" +"Cmdlets","GetMgContactTransitiveMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsAdministrativeUnit","GET","/contacts/{param}/transitiveMemberOf/{param}/administrativeUnit","matched","Get-MgContactTransitiveMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgContactTransitiveMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsAdministrativeUnit","GET","/contacts/{param}/transitiveMemberOf/administrativeUnit","matched","Get-MgContactTransitiveMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgContactTransitiveMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsAdministrativeUnit","","","dispatcher","" +"Cmdlets","GetMgContactTransitiveMemberOfAsGroup_Get.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsGroup","GET","/contacts/{param}/transitiveMemberOf/{param}/group","matched","Get-MgContactTransitiveMemberOfAsGroup" +"Cmdlets","GetMgContactTransitiveMemberOfAsGroup_List.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsGroup","GET","/contacts/{param}/transitiveMemberOf/group","matched","Get-MgContactTransitiveMemberOfAsGroup" +"Cmdlets","GetMgContactTransitiveMemberOfAsGroup.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsGroup","","","dispatcher","" +"Cmdlets","GetMgContactTransitiveMemberOfCount.g.cs","v1.0","Get-MgContactTransitiveMemberOfCount","GET","/contacts/{param}/transitiveMemberOf/$count","matched","Get-MgContactTransitiveMemberOfCount" +"Cmdlets","GetMgContactTransitiveMemberOfCountAsAdministrativeUnit.g.cs","v1.0","Get-MgContactTransitiveMemberOfCountAsAdministrativeUnit","GET","/contacts/{param}/transitiveMemberOf/administrativeUnit/$count","matched","Get-MgContactTransitiveMemberOfCountAsAdministrativeUnit" +"Cmdlets","GetMgContactTransitiveMemberOfCountAsGroup.g.cs","v1.0","Get-MgContactTransitiveMemberOfCountAsGroup","GET","/contacts/{param}/transitiveMemberOf/group/$count","matched","Get-MgContactTransitiveMemberOfCountAsGroup" +"Cmdlets","GetMgContract_Get.g.cs","v1.0","Get-MgContract","GET","/contracts/{param}","matched","Get-MgContract" +"Cmdlets","GetMgContract_List.g.cs","v1.0","Get-MgContract","GET","/contracts","matched","Get-MgContract" +"Cmdlets","GetMgContract.g.cs","v1.0","Get-MgContract","","","dispatcher","" +"Cmdlets","GetMgContractCount.g.cs","v1.0","Get-MgContractCount","GET","/contracts/$count","matched","Get-MgContractCount" +"Cmdlets","GetMgContractDelta.g.cs","v1.0","Get-MgContractDelta","GET","/contracts/delta","matched","Get-MgContractDelta" +"Cmdlets","GetMgDevice_Get.g.cs","v1.0","Get-MgDevice","GET","/devices/{param}","matched","Get-MgDevice" +"Cmdlets","GetMgDevice_List.g.cs","v1.0","Get-MgDevice","GET","/devices","matched","Get-MgDevice" +"Cmdlets","GetMgDevice.g.cs","v1.0","Get-MgDevice","","","dispatcher","" +"Cmdlets","GetMgDeviceCount.g.cs","v1.0","Get-MgDeviceCount","GET","/devices/$count","matched","Get-MgDeviceCount" +"Cmdlets","GetMgDeviceDelta.g.cs","v1.0","Get-MgDeviceDelta","GET","/devices/delta","matched","Get-MgDeviceDelta" +"Cmdlets","GetMgDeviceExtension_Get.g.cs","v1.0","Get-MgDeviceExtension","GET","/devices/{param}/extensions/{param}","matched","Get-MgDeviceExtension" +"Cmdlets","GetMgDeviceExtension_List.g.cs","v1.0","Get-MgDeviceExtension","GET","/devices/{param}/extensions","matched","Get-MgDeviceExtension" +"Cmdlets","GetMgDeviceExtension.g.cs","v1.0","Get-MgDeviceExtension","","","dispatcher","" +"Cmdlets","GetMgDeviceExtensionCount.g.cs","v1.0","Get-MgDeviceExtensionCount","GET","/devices/{param}/extensions/$count","matched","Get-MgDeviceExtensionCount" +"Cmdlets","GetMgDeviceMemberOf_Get.g.cs","v1.0","Get-MgDeviceMemberOf","GET","/devices/{param}/memberOf/{param}","matched","Get-MgDeviceMemberOf" +"Cmdlets","GetMgDeviceMemberOf_List.g.cs","v1.0","Get-MgDeviceMemberOf","GET","/devices/{param}/memberOf","matched","Get-MgDeviceMemberOf" +"Cmdlets","GetMgDeviceMemberOf.g.cs","v1.0","Get-MgDeviceMemberOf","","","dispatcher","" +"Cmdlets","GetMgDeviceMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgDeviceMemberOfAsAdministrativeUnit","GET","/devices/{param}/memberOf/{param}/administrativeUnit","matched","Get-MgDeviceMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgDeviceMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgDeviceMemberOfAsAdministrativeUnit","GET","/devices/{param}/memberOf/administrativeUnit","matched","Get-MgDeviceMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgDeviceMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgDeviceMemberOfAsAdministrativeUnit","","","dispatcher","" +"Cmdlets","GetMgDeviceMemberOfAsGroup_Get.g.cs","v1.0","Get-MgDeviceMemberOfAsGroup","GET","/devices/{param}/memberOf/{param}/group","matched","Get-MgDeviceMemberOfAsGroup" +"Cmdlets","GetMgDeviceMemberOfAsGroup_List.g.cs","v1.0","Get-MgDeviceMemberOfAsGroup","GET","/devices/{param}/memberOf/group","matched","Get-MgDeviceMemberOfAsGroup" +"Cmdlets","GetMgDeviceMemberOfAsGroup.g.cs","v1.0","Get-MgDeviceMemberOfAsGroup","","","dispatcher","" +"Cmdlets","GetMgDeviceMemberOfCount.g.cs","v1.0","Get-MgDeviceMemberOfCount","GET","/devices/{param}/memberOf/$count","matched","Get-MgDeviceMemberOfCount" +"Cmdlets","GetMgDeviceMemberOfCountAsAdministrativeUnit.g.cs","v1.0","Get-MgDeviceMemberOfCountAsAdministrativeUnit","GET","/devices/{param}/memberOf/administrativeUnit/$count","matched","Get-MgDeviceMemberOfCountAsAdministrativeUnit" +"Cmdlets","GetMgDeviceMemberOfCountAsGroup.g.cs","v1.0","Get-MgDeviceMemberOfCountAsGroup","GET","/devices/{param}/memberOf/group/$count","matched","Get-MgDeviceMemberOfCountAsGroup" +"Cmdlets","GetMgDeviceRegisteredOwner.g.cs","v1.0","Get-MgDeviceRegisteredOwner","GET","/devices/{param}/registeredOwners","matched","Get-MgDeviceRegisteredOwner" +"Cmdlets","GetMgDeviceRegisteredOwnerAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsAppRoleAssignment","GET","/devices/{param}/registeredOwners/{param}/appRoleAssignment","matched","Get-MgDeviceRegisteredOwnerAsAppRoleAssignment" +"Cmdlets","GetMgDeviceRegisteredOwnerAsAppRoleAssignment_List.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsAppRoleAssignment","GET","/devices/{param}/registeredOwners/appRoleAssignment","matched","Get-MgDeviceRegisteredOwnerAsAppRoleAssignment" +"Cmdlets","GetMgDeviceRegisteredOwnerAsAppRoleAssignment.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsAppRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceRegisteredOwnerAsEndpoint_Get.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsEndpoint","GET","/devices/{param}/registeredOwners/{param}/endpoint","matched","Get-MgDeviceRegisteredOwnerAsEndpoint" +"Cmdlets","GetMgDeviceRegisteredOwnerAsEndpoint_List.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsEndpoint","GET","/devices/{param}/registeredOwners/endpoint","matched","Get-MgDeviceRegisteredOwnerAsEndpoint" +"Cmdlets","GetMgDeviceRegisteredOwnerAsEndpoint.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsEndpoint","","","dispatcher","" +"Cmdlets","GetMgDeviceRegisteredOwnerAsServicePrincipal_Get.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsServicePrincipal","GET","/devices/{param}/registeredOwners/{param}/servicePrincipal","matched","Get-MgDeviceRegisteredOwnerAsServicePrincipal" +"Cmdlets","GetMgDeviceRegisteredOwnerAsServicePrincipal_List.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsServicePrincipal","GET","/devices/{param}/registeredOwners/servicePrincipal","matched","Get-MgDeviceRegisteredOwnerAsServicePrincipal" +"Cmdlets","GetMgDeviceRegisteredOwnerAsServicePrincipal.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgDeviceRegisteredOwnerAsUser_Get.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsUser","GET","/devices/{param}/registeredOwners/{param}/user","matched","Get-MgDeviceRegisteredOwnerAsUser" +"Cmdlets","GetMgDeviceRegisteredOwnerAsUser_List.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsUser","GET","/devices/{param}/registeredOwners/user","matched","Get-MgDeviceRegisteredOwnerAsUser" +"Cmdlets","GetMgDeviceRegisteredOwnerAsUser.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsUser","","","dispatcher","" +"Cmdlets","GetMgDeviceRegisteredOwnerByRef.g.cs","v1.0","Get-MgDeviceRegisteredOwnerByRef","GET","/devices/{param}/registeredOwners/$ref","matched","Get-MgDeviceRegisteredOwnerByRef" +"Cmdlets","GetMgDeviceRegisteredOwnerCount.g.cs","v1.0","Get-MgDeviceRegisteredOwnerCount","GET","/devices/{param}/registeredOwners/$count","matched","Get-MgDeviceRegisteredOwnerCount" +"Cmdlets","GetMgDeviceRegisteredOwnerCountAsAppRoleAssignment.g.cs","v1.0","Get-MgDeviceRegisteredOwnerCountAsAppRoleAssignment","GET","/devices/{param}/registeredOwners/appRoleAssignment/$count","matched","Get-MgDeviceRegisteredOwnerCountAsAppRoleAssignment" +"Cmdlets","GetMgDeviceRegisteredOwnerCountAsEndpoint.g.cs","v1.0","Get-MgDeviceRegisteredOwnerCountAsEndpoint","GET","/devices/{param}/registeredOwners/endpoint/$count","matched","Get-MgDeviceRegisteredOwnerCountAsEndpoint" +"Cmdlets","GetMgDeviceRegisteredOwnerCountAsServicePrincipal.g.cs","v1.0","Get-MgDeviceRegisteredOwnerCountAsServicePrincipal","GET","/devices/{param}/registeredOwners/servicePrincipal/$count","matched","Get-MgDeviceRegisteredOwnerCountAsServicePrincipal" +"Cmdlets","GetMgDeviceRegisteredOwnerCountAsUser.g.cs","v1.0","Get-MgDeviceRegisteredOwnerCountAsUser","GET","/devices/{param}/registeredOwners/user/$count","matched","Get-MgDeviceRegisteredOwnerCountAsUser" +"Cmdlets","GetMgDeviceRegisteredUser.g.cs","v1.0","Get-MgDeviceRegisteredUser","GET","/devices/{param}/registeredUsers","matched","Get-MgDeviceRegisteredUser" +"Cmdlets","GetMgDeviceRegisteredUserAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgDeviceRegisteredUserAsAppRoleAssignment","GET","/devices/{param}/registeredUsers/{param}/appRoleAssignment","matched","Get-MgDeviceRegisteredUserAsAppRoleAssignment" +"Cmdlets","GetMgDeviceRegisteredUserAsAppRoleAssignment_List.g.cs","v1.0","Get-MgDeviceRegisteredUserAsAppRoleAssignment","GET","/devices/{param}/registeredUsers/appRoleAssignment","matched","Get-MgDeviceRegisteredUserAsAppRoleAssignment" +"Cmdlets","GetMgDeviceRegisteredUserAsAppRoleAssignment.g.cs","v1.0","Get-MgDeviceRegisteredUserAsAppRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgDeviceRegisteredUserAsEndpoint_Get.g.cs","v1.0","Get-MgDeviceRegisteredUserAsEndpoint","GET","/devices/{param}/registeredUsers/{param}/endpoint","matched","Get-MgDeviceRegisteredUserAsEndpoint" +"Cmdlets","GetMgDeviceRegisteredUserAsEndpoint_List.g.cs","v1.0","Get-MgDeviceRegisteredUserAsEndpoint","GET","/devices/{param}/registeredUsers/endpoint","matched","Get-MgDeviceRegisteredUserAsEndpoint" +"Cmdlets","GetMgDeviceRegisteredUserAsEndpoint.g.cs","v1.0","Get-MgDeviceRegisteredUserAsEndpoint","","","dispatcher","" +"Cmdlets","GetMgDeviceRegisteredUserAsServicePrincipal_Get.g.cs","v1.0","Get-MgDeviceRegisteredUserAsServicePrincipal","GET","/devices/{param}/registeredUsers/{param}/servicePrincipal","matched","Get-MgDeviceRegisteredUserAsServicePrincipal" +"Cmdlets","GetMgDeviceRegisteredUserAsServicePrincipal_List.g.cs","v1.0","Get-MgDeviceRegisteredUserAsServicePrincipal","GET","/devices/{param}/registeredUsers/servicePrincipal","matched","Get-MgDeviceRegisteredUserAsServicePrincipal" +"Cmdlets","GetMgDeviceRegisteredUserAsServicePrincipal.g.cs","v1.0","Get-MgDeviceRegisteredUserAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgDeviceRegisteredUserAsUser_Get.g.cs","v1.0","Get-MgDeviceRegisteredUserAsUser","GET","/devices/{param}/registeredUsers/{param}/user","matched","Get-MgDeviceRegisteredUserAsUser" +"Cmdlets","GetMgDeviceRegisteredUserAsUser_List.g.cs","v1.0","Get-MgDeviceRegisteredUserAsUser","GET","/devices/{param}/registeredUsers/user","matched","Get-MgDeviceRegisteredUserAsUser" +"Cmdlets","GetMgDeviceRegisteredUserAsUser.g.cs","v1.0","Get-MgDeviceRegisteredUserAsUser","","","dispatcher","" +"Cmdlets","GetMgDeviceRegisteredUserByRef.g.cs","v1.0","Get-MgDeviceRegisteredUserByRef","GET","/devices/{param}/registeredUsers/$ref","matched","Get-MgDeviceRegisteredUserByRef" +"Cmdlets","GetMgDeviceRegisteredUserCount.g.cs","v1.0","Get-MgDeviceRegisteredUserCount","GET","/devices/{param}/registeredUsers/$count","matched","Get-MgDeviceRegisteredUserCount" +"Cmdlets","GetMgDeviceRegisteredUserCountAsAppRoleAssignment.g.cs","v1.0","Get-MgDeviceRegisteredUserCountAsAppRoleAssignment","GET","/devices/{param}/registeredUsers/appRoleAssignment/$count","matched","Get-MgDeviceRegisteredUserCountAsAppRoleAssignment" +"Cmdlets","GetMgDeviceRegisteredUserCountAsEndpoint.g.cs","v1.0","Get-MgDeviceRegisteredUserCountAsEndpoint","GET","/devices/{param}/registeredUsers/endpoint/$count","matched","Get-MgDeviceRegisteredUserCountAsEndpoint" +"Cmdlets","GetMgDeviceRegisteredUserCountAsServicePrincipal.g.cs","v1.0","Get-MgDeviceRegisteredUserCountAsServicePrincipal","GET","/devices/{param}/registeredUsers/servicePrincipal/$count","matched","Get-MgDeviceRegisteredUserCountAsServicePrincipal" +"Cmdlets","GetMgDeviceRegisteredUserCountAsUser.g.cs","v1.0","Get-MgDeviceRegisteredUserCountAsUser","GET","/devices/{param}/registeredUsers/user/$count","matched","Get-MgDeviceRegisteredUserCountAsUser" +"Cmdlets","GetMgDeviceTransitiveMemberOf_Get.g.cs","v1.0","Get-MgDeviceTransitiveMemberOf","GET","/devices/{param}/transitiveMemberOf/{param}","matched","Get-MgDeviceTransitiveMemberOf" +"Cmdlets","GetMgDeviceTransitiveMemberOf_List.g.cs","v1.0","Get-MgDeviceTransitiveMemberOf","GET","/devices/{param}/transitiveMemberOf","matched","Get-MgDeviceTransitiveMemberOf" +"Cmdlets","GetMgDeviceTransitiveMemberOf.g.cs","v1.0","Get-MgDeviceTransitiveMemberOf","","","dispatcher","" +"Cmdlets","GetMgDeviceTransitiveMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit","GET","/devices/{param}/transitiveMemberOf/{param}/administrativeUnit","matched","Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgDeviceTransitiveMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit","GET","/devices/{param}/transitiveMemberOf/administrativeUnit","matched","Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgDeviceTransitiveMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit","","","dispatcher","" +"Cmdlets","GetMgDeviceTransitiveMemberOfAsGroup_Get.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsGroup","GET","/devices/{param}/transitiveMemberOf/{param}/group","matched","Get-MgDeviceTransitiveMemberOfAsGroup" +"Cmdlets","GetMgDeviceTransitiveMemberOfAsGroup_List.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsGroup","GET","/devices/{param}/transitiveMemberOf/group","matched","Get-MgDeviceTransitiveMemberOfAsGroup" +"Cmdlets","GetMgDeviceTransitiveMemberOfAsGroup.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsGroup","","","dispatcher","" +"Cmdlets","GetMgDeviceTransitiveMemberOfCount.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfCount","GET","/devices/{param}/transitiveMemberOf/$count","matched","Get-MgDeviceTransitiveMemberOfCount" +"Cmdlets","GetMgDeviceTransitiveMemberOfCountAsAdministrativeUnit.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfCountAsAdministrativeUnit","GET","/devices/{param}/transitiveMemberOf/administrativeUnit/$count","matched","Get-MgDeviceTransitiveMemberOfCountAsAdministrativeUnit" +"Cmdlets","GetMgDeviceTransitiveMemberOfCountAsGroup.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfCountAsGroup","GET","/devices/{param}/transitiveMemberOf/group/$count","matched","Get-MgDeviceTransitiveMemberOfCountAsGroup" +"Cmdlets","GetMgDirectory.g.cs","v1.0","Get-MgDirectory","GET","/directory","matched","Get-MgDirectory" +"Cmdlets","GetMgDirectoryAdministrativeUnit_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnit","GET","/directory/administrativeUnits/{param}","matched","Get-MgDirectoryAdministrativeUnit" +"Cmdlets","GetMgDirectoryAdministrativeUnit_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnit","GET","/directory/administrativeUnits","matched","Get-MgDirectoryAdministrativeUnit" +"Cmdlets","GetMgDirectoryAdministrativeUnit.g.cs","v1.0","Get-MgDirectoryAdministrativeUnit","","","dispatcher","" +"Cmdlets","GetMgDirectoryAdministrativeUnitCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitCount","GET","/directory/administrativeUnits/$count","matched","Get-MgDirectoryAdministrativeUnitCount" +"Cmdlets","GetMgDirectoryAdministrativeUnitDelta.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitDelta","GET","/directory/administrativeUnits/delta","matched","Get-MgDirectoryAdministrativeUnitDelta" +"Cmdlets","GetMgDirectoryAdministrativeUnitExtension_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitExtension","GET","/directory/administrativeUnits/{param}/extensions/{param}","matched","Get-MgDirectoryAdministrativeUnitExtension" +"Cmdlets","GetMgDirectoryAdministrativeUnitExtension_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitExtension","GET","/directory/administrativeUnits/{param}/extensions","matched","Get-MgDirectoryAdministrativeUnitExtension" +"Cmdlets","GetMgDirectoryAdministrativeUnitExtension.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitExtension","","","dispatcher","" +"Cmdlets","GetMgDirectoryAdministrativeUnitExtensionCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitExtensionCount","GET","/directory/administrativeUnits/{param}/extensions/$count","matched","Get-MgDirectoryAdministrativeUnitExtensionCount" +"Cmdlets","GetMgDirectoryAdministrativeUnitMember.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMember","GET","/directory/administrativeUnits/{param}/members","matched","Get-MgDirectoryAdministrativeUnitMember" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsApplication_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsApplication","GET","/directory/administrativeUnits/{param}/members/{param}/application","matched","Get-MgDirectoryAdministrativeUnitMemberAsApplication" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsApplication_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsApplication","GET","/directory/administrativeUnits/{param}/members/application","matched","Get-MgDirectoryAdministrativeUnitMemberAsApplication" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsApplication.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsApplication","","","dispatcher","" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsDevice_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsDevice","GET","/directory/administrativeUnits/{param}/members/{param}/device","matched","Get-MgDirectoryAdministrativeUnitMemberAsDevice" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsDevice_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsDevice","GET","/directory/administrativeUnits/{param}/members/device","matched","Get-MgDirectoryAdministrativeUnitMemberAsDevice" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsDevice.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsDevice","","","dispatcher","" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsGroup_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsGroup","GET","/directory/administrativeUnits/{param}/members/{param}/group","matched","Get-MgDirectoryAdministrativeUnitMemberAsGroup" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsGroup_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsGroup","GET","/directory/administrativeUnits/{param}/members/group","matched","Get-MgDirectoryAdministrativeUnitMemberAsGroup" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsGroup.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsGroup","","","dispatcher","" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsOrgContact_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsOrgContact","GET","/directory/administrativeUnits/{param}/members/{param}/orgContact","matched","Get-MgDirectoryAdministrativeUnitMemberAsOrgContact" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsOrgContact_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsOrgContact","GET","/directory/administrativeUnits/{param}/members/orgContact","matched","Get-MgDirectoryAdministrativeUnitMemberAsOrgContact" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsOrgContact.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsOrgContact","","","dispatcher","" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsServicePrincipal_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal","GET","/directory/administrativeUnits/{param}/members/{param}/servicePrincipal","matched","Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsServicePrincipal_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal","GET","/directory/administrativeUnits/{param}/members/servicePrincipal","matched","Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsServicePrincipal.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsUser_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsUser","GET","/directory/administrativeUnits/{param}/members/{param}/user","matched","Get-MgDirectoryAdministrativeUnitMemberAsUser" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsUser_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsUser","GET","/directory/administrativeUnits/{param}/members/user","matched","Get-MgDirectoryAdministrativeUnitMemberAsUser" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberAsUser.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsUser","","","dispatcher","" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberByRef.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberByRef","GET","/directory/administrativeUnits/{param}/members/$ref","matched","Get-MgDirectoryAdministrativeUnitMemberByRef" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberCount","GET","/directory/administrativeUnits/{param}/members/$count","matched","Get-MgDirectoryAdministrativeUnitMemberCount" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberCountAsApplication.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberCountAsApplication","GET","/directory/administrativeUnits/{param}/members/application/$count","matched","Get-MgDirectoryAdministrativeUnitMemberCountAsApplication" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberCountAsDevice.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberCountAsDevice","GET","/directory/administrativeUnits/{param}/members/device/$count","matched","Get-MgDirectoryAdministrativeUnitMemberCountAsDevice" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberCountAsGroup.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberCountAsGroup","GET","/directory/administrativeUnits/{param}/members/group/$count","matched","Get-MgDirectoryAdministrativeUnitMemberCountAsGroup" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberCountAsOrgContact.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberCountAsOrgContact","GET","/directory/administrativeUnits/{param}/members/orgContact/$count","matched","Get-MgDirectoryAdministrativeUnitMemberCountAsOrgContact" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberCountAsServicePrincipal.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberCountAsServicePrincipal","GET","/directory/administrativeUnits/{param}/members/servicePrincipal/$count","matched","Get-MgDirectoryAdministrativeUnitMemberCountAsServicePrincipal" +"Cmdlets","GetMgDirectoryAdministrativeUnitMemberCountAsUser.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberCountAsUser","GET","/directory/administrativeUnits/{param}/members/user/$count","matched","Get-MgDirectoryAdministrativeUnitMemberCountAsUser" +"Cmdlets","GetMgDirectoryAdministrativeUnitScopedRoleMember_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitScopedRoleMember","GET","/directory/administrativeUnits/{param}/scopedRoleMembers/{param}","matched","Get-MgDirectoryAdministrativeUnitScopedRoleMember" +"Cmdlets","GetMgDirectoryAdministrativeUnitScopedRoleMember_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitScopedRoleMember","GET","/directory/administrativeUnits/{param}/scopedRoleMembers","matched","Get-MgDirectoryAdministrativeUnitScopedRoleMember" +"Cmdlets","GetMgDirectoryAdministrativeUnitScopedRoleMember.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitScopedRoleMember","","","dispatcher","" +"Cmdlets","GetMgDirectoryAdministrativeUnitScopedRoleMemberCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitScopedRoleMemberCount","GET","/directory/administrativeUnits/{param}/scopedRoleMembers/$count","matched","Get-MgDirectoryAdministrativeUnitScopedRoleMemberCount" +"Cmdlets","GetMgDirectoryAttributeSet_Get.g.cs","v1.0","Get-MgDirectoryAttributeSet","GET","/directory/attributeSets/{param}","matched","Get-MgDirectoryAttributeSet" +"Cmdlets","GetMgDirectoryAttributeSet_List.g.cs","v1.0","Get-MgDirectoryAttributeSet","GET","/directory/attributeSets","matched","Get-MgDirectoryAttributeSet" +"Cmdlets","GetMgDirectoryAttributeSet.g.cs","v1.0","Get-MgDirectoryAttributeSet","","","dispatcher","" +"Cmdlets","GetMgDirectoryAttributeSetCount.g.cs","v1.0","Get-MgDirectoryAttributeSetCount","GET","/directory/attributeSets/$count","matched","Get-MgDirectoryAttributeSetCount" +"Cmdlets","GetMgDirectoryCustomSecurityAttributeDefinition_Get.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinition","GET","/directory/customSecurityAttributeDefinitions/{param}","matched","Get-MgDirectoryCustomSecurityAttributeDefinition" +"Cmdlets","GetMgDirectoryCustomSecurityAttributeDefinition_List.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinition","GET","/directory/customSecurityAttributeDefinitions","matched","Get-MgDirectoryCustomSecurityAttributeDefinition" +"Cmdlets","GetMgDirectoryCustomSecurityAttributeDefinition.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinition","","","dispatcher","" +"Cmdlets","GetMgDirectoryCustomSecurityAttributeDefinitionAllowedValue_Get.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","GET","/directory/customSecurityAttributeDefinitions/{param}/allowedValues/{param}","matched","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"Cmdlets","GetMgDirectoryCustomSecurityAttributeDefinitionAllowedValue_List.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","GET","/directory/customSecurityAttributeDefinitions/{param}/allowedValues","matched","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"Cmdlets","GetMgDirectoryCustomSecurityAttributeDefinitionAllowedValue.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","","","dispatcher","" +"Cmdlets","GetMgDirectoryCustomSecurityAttributeDefinitionAllowedValueCount.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValueCount","GET","/directory/customSecurityAttributeDefinitions/{param}/allowedValues/$count","matched","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValueCount" +"Cmdlets","GetMgDirectoryCustomSecurityAttributeDefinitionCount.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinitionCount","GET","/directory/customSecurityAttributeDefinitions/$count","matched","Get-MgDirectoryCustomSecurityAttributeDefinitionCount" +"Cmdlets","GetMgDirectoryDeletedItem_Get.g.cs","v1.0","Get-MgDirectoryDeletedItem","GET","/directory/deletedItems/{param}","matched","Get-MgDirectoryDeletedItem" +"Cmdlets","GetMgDirectoryDeletedItem_List.g.cs","v1.0","Get-MgDirectoryDeletedItem","GET","/directory/deletedItems","no-oracle","" +"Cmdlets","GetMgDirectoryDeletedItem.g.cs","v1.0","Get-MgDirectoryDeletedItem","","","dispatcher","" +"Cmdlets","GetMgDirectoryDeletedItemAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgDirectoryDeletedItemAsAdministrativeUnit","GET","/directory/deletedItems/{param}/administrativeUnit","matched","Get-MgDirectoryDeletedItemAsAdministrativeUnit" +"Cmdlets","GetMgDirectoryDeletedItemAsAdministrativeUnit_List.g.cs","v1.0","Get-MgDirectoryDeletedItemAsAdministrativeUnit","GET","/directory/deletedItems/administrativeUnit","matched","Get-MgDirectoryDeletedItemAsAdministrativeUnit" +"Cmdlets","GetMgDirectoryDeletedItemAsAdministrativeUnit.g.cs","v1.0","Get-MgDirectoryDeletedItemAsAdministrativeUnit","","","dispatcher","" +"Cmdlets","GetMgDirectoryDeletedItemAsApplication_Get.g.cs","v1.0","Get-MgDirectoryDeletedItemAsApplication","GET","/directory/deletedItems/{param}/application","matched","Get-MgDirectoryDeletedItemAsApplication" +"Cmdlets","GetMgDirectoryDeletedItemAsApplication_List.g.cs","v1.0","Get-MgDirectoryDeletedItemAsApplication","GET","/directory/deletedItems/application","matched","Get-MgDirectoryDeletedItemAsApplication" +"Cmdlets","GetMgDirectoryDeletedItemAsApplication.g.cs","v1.0","Get-MgDirectoryDeletedItemAsApplication","","","dispatcher","" +"Cmdlets","GetMgDirectoryDeletedItemAsDevice_Get.g.cs","v1.0","Get-MgDirectoryDeletedItemAsDevice","GET","/directory/deletedItems/{param}/device","matched","Get-MgDirectoryDeletedItemAsDevice" +"Cmdlets","GetMgDirectoryDeletedItemAsDevice_List.g.cs","v1.0","Get-MgDirectoryDeletedItemAsDevice","GET","/directory/deletedItems/device","matched","Get-MgDirectoryDeletedItemAsDevice" +"Cmdlets","GetMgDirectoryDeletedItemAsDevice.g.cs","v1.0","Get-MgDirectoryDeletedItemAsDevice","","","dispatcher","" +"Cmdlets","GetMgDirectoryDeletedItemAsGroup_Get.g.cs","v1.0","Get-MgDirectoryDeletedItemAsGroup","GET","/directory/deletedItems/{param}/group","matched","Get-MgDirectoryDeletedItemAsGroup" +"Cmdlets","GetMgDirectoryDeletedItemAsGroup_List.g.cs","v1.0","Get-MgDirectoryDeletedItemAsGroup","GET","/directory/deletedItems/group","matched","Get-MgDirectoryDeletedItemAsGroup" +"Cmdlets","GetMgDirectoryDeletedItemAsGroup.g.cs","v1.0","Get-MgDirectoryDeletedItemAsGroup","","","dispatcher","" +"Cmdlets","GetMgDirectoryDeletedItemAsServicePrincipal_Get.g.cs","v1.0","Get-MgDirectoryDeletedItemAsServicePrincipal","GET","/directory/deletedItems/{param}/servicePrincipal","matched","Get-MgDirectoryDeletedItemAsServicePrincipal" +"Cmdlets","GetMgDirectoryDeletedItemAsServicePrincipal_List.g.cs","v1.0","Get-MgDirectoryDeletedItemAsServicePrincipal","GET","/directory/deletedItems/servicePrincipal","matched","Get-MgDirectoryDeletedItemAsServicePrincipal" +"Cmdlets","GetMgDirectoryDeletedItemAsServicePrincipal.g.cs","v1.0","Get-MgDirectoryDeletedItemAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgDirectoryDeletedItemAsUser_Get.g.cs","v1.0","Get-MgDirectoryDeletedItemAsUser","GET","/directory/deletedItems/{param}/user","matched","Get-MgDirectoryDeletedItemAsUser" +"Cmdlets","GetMgDirectoryDeletedItemAsUser_List.g.cs","v1.0","Get-MgDirectoryDeletedItemAsUser","GET","/directory/deletedItems/user","matched","Get-MgDirectoryDeletedItemAsUser" +"Cmdlets","GetMgDirectoryDeletedItemAsUser.g.cs","v1.0","Get-MgDirectoryDeletedItemAsUser","","","dispatcher","" +"Cmdlets","GetMgDirectoryDeletedItemCount.g.cs","v1.0","Get-MgDirectoryDeletedItemCount","GET","/directory/deletedItems/$count","no-oracle","" +"Cmdlets","GetMgDirectoryDeletedItemCountAsAdministrativeUnit.g.cs","v1.0","Get-MgDirectoryDeletedItemCountAsAdministrativeUnit","GET","/directory/deletedItems/administrativeUnit/$count","matched","Get-MgDirectoryDeletedItemCountAsAdministrativeUnit" +"Cmdlets","GetMgDirectoryDeletedItemCountAsApplication.g.cs","v1.0","Get-MgDirectoryDeletedItemCountAsApplication","GET","/directory/deletedItems/application/$count","matched","Get-MgDirectoryDeletedItemCountAsApplication" +"Cmdlets","GetMgDirectoryDeletedItemCountAsDevice.g.cs","v1.0","Get-MgDirectoryDeletedItemCountAsDevice","GET","/directory/deletedItems/device/$count","matched","Get-MgDirectoryDeletedItemCountAsDevice" +"Cmdlets","GetMgDirectoryDeletedItemCountAsGroup.g.cs","v1.0","Get-MgDirectoryDeletedItemCountAsGroup","GET","/directory/deletedItems/group/$count","matched","Get-MgDirectoryDeletedItemCountAsGroup" +"Cmdlets","GetMgDirectoryDeletedItemCountAsServicePrincipal.g.cs","v1.0","Get-MgDirectoryDeletedItemCountAsServicePrincipal","GET","/directory/deletedItems/servicePrincipal/$count","matched","Get-MgDirectoryDeletedItemCountAsServicePrincipal" +"Cmdlets","GetMgDirectoryDeletedItemCountAsUser.g.cs","v1.0","Get-MgDirectoryDeletedItemCountAsUser","GET","/directory/deletedItems/user/$count","matched","Get-MgDirectoryDeletedItemCountAsUser" +"Cmdlets","GetMgDirectoryDeviceLocalCredential_Get.g.cs","v1.0","Get-MgDirectoryDeviceLocalCredential","GET","/directory/deviceLocalCredentials/{param}","matched","Get-MgDirectoryDeviceLocalCredential" +"Cmdlets","GetMgDirectoryDeviceLocalCredential_List.g.cs","v1.0","Get-MgDirectoryDeviceLocalCredential","GET","/directory/deviceLocalCredentials","matched","Get-MgDirectoryDeviceLocalCredential" +"Cmdlets","GetMgDirectoryDeviceLocalCredential.g.cs","v1.0","Get-MgDirectoryDeviceLocalCredential","","","dispatcher","" +"Cmdlets","GetMgDirectoryDeviceLocalCredentialCount.g.cs","v1.0","Get-MgDirectoryDeviceLocalCredentialCount","GET","/directory/deviceLocalCredentials/$count","matched","Get-MgDirectoryDeviceLocalCredentialCount" +"Cmdlets","GetMgDirectoryFederationConfiguration_Get.g.cs","v1.0","Get-MgDirectoryFederationConfiguration","GET","/directory/federationConfigurations/{param}","matched","Get-MgDirectoryFederationConfiguration" +"Cmdlets","GetMgDirectoryFederationConfiguration_List.g.cs","v1.0","Get-MgDirectoryFederationConfiguration","GET","/directory/federationConfigurations","matched","Get-MgDirectoryFederationConfiguration" +"Cmdlets","GetMgDirectoryFederationConfiguration.g.cs","v1.0","Get-MgDirectoryFederationConfiguration","","","dispatcher","" +"Cmdlets","GetMgDirectoryFederationConfigurationAvailableProviderTypes.g.cs","v1.0","Get-MgDirectoryFederationConfigurationAvailableProviderTypes","GET","/directory/federationConfigurations/availableProviderTypes","mismatch","Invoke-MgAvailableDirectoryFederationConfigurationProviderType" +"Cmdlets","GetMgDirectoryFederationConfigurationCount.g.cs","v1.0","Get-MgDirectoryFederationConfigurationCount","GET","/directory/federationConfigurations/$count","matched","Get-MgDirectoryFederationConfigurationCount" +"Cmdlets","GetMgDirectoryOnPremiseSynchronization_Get.g.cs","v1.0","Get-MgDirectoryOnPremiseSynchronization","GET","/directory/onPremisesSynchronization/{param}","matched","Get-MgDirectoryOnPremiseSynchronization" +"Cmdlets","GetMgDirectoryOnPremiseSynchronization_List.g.cs","v1.0","Get-MgDirectoryOnPremiseSynchronization","GET","/directory/onPremisesSynchronization","matched","Get-MgDirectoryOnPremiseSynchronization" +"Cmdlets","GetMgDirectoryOnPremiseSynchronization.g.cs","v1.0","Get-MgDirectoryOnPremiseSynchronization","","","dispatcher","" +"Cmdlets","GetMgDirectoryOnPremiseSynchronizationCount.g.cs","v1.0","Get-MgDirectoryOnPremiseSynchronizationCount","GET","/directory/onPremisesSynchronization/$count","matched","Get-MgDirectoryOnPremiseSynchronizationCount" +"Cmdlets","GetMgDirectoryPublicKeyInfrastructure.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructure","GET","/directory/publicKeyInfrastructure","matched","Get-MgDirectoryPublicKeyInfrastructure" +"Cmdlets","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration_Get.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"Cmdlets","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration_List.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"Cmdlets","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","","","dispatcher","" +"Cmdlets","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority_Get.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/{param}","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"Cmdlets","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority_List.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"Cmdlets","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","","","dispatcher","" +"Cmdlets","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthorityCount.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthorityCount","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/$count","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthorityCount" +"Cmdlets","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCount.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCount","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/$count","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCount" +"Cmdlets","GetMgDirectoryRecovery.g.cs","v1.0","Get-MgDirectoryRecovery","GET","/directory/recovery","matched","Get-MgDirectoryRecovery" +"Cmdlets","GetMgDirectoryRecoveryJob_Get.g.cs","v1.0","Get-MgDirectoryRecoveryJob","GET","/directory/recovery/jobs/{param}","matched","Get-MgDirectoryRecoveryJob" +"Cmdlets","GetMgDirectoryRecoveryJob_List.g.cs","v1.0","Get-MgDirectoryRecoveryJob","GET","/directory/recovery/jobs","matched","Get-MgDirectoryRecoveryJob" +"Cmdlets","GetMgDirectoryRecoveryJob.g.cs","v1.0","Get-MgDirectoryRecoveryJob","","","dispatcher","" +"Cmdlets","GetMgDirectoryRecoveryJobCount.g.cs","v1.0","Get-MgDirectoryRecoveryJobCount","GET","/directory/recovery/jobs/$count","matched","Get-MgDirectoryRecoveryJobCount" +"Cmdlets","GetMgDirectoryRecoverySnapshot_Get.g.cs","v1.0","Get-MgDirectoryRecoverySnapshot","GET","/directory/recovery/snapshots/{param}","matched","Get-MgDirectoryRecoverySnapshot" +"Cmdlets","GetMgDirectoryRecoverySnapshot_List.g.cs","v1.0","Get-MgDirectoryRecoverySnapshot","GET","/directory/recovery/snapshots","matched","Get-MgDirectoryRecoverySnapshot" +"Cmdlets","GetMgDirectoryRecoverySnapshot.g.cs","v1.0","Get-MgDirectoryRecoverySnapshot","","","dispatcher","" +"Cmdlets","GetMgDirectoryRecoverySnapshotCount.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotCount","GET","/directory/recovery/snapshots/$count","matched","Get-MgDirectoryRecoverySnapshotCount" +"Cmdlets","GetMgDirectoryRecoverySnapshotRecoveryJob_Get.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryJob","GET","/directory/recovery/snapshots/{param}/recoveryJobs/{param}","matched","Get-MgDirectoryRecoverySnapshotRecoveryJob" +"Cmdlets","GetMgDirectoryRecoverySnapshotRecoveryJob_List.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryJob","GET","/directory/recovery/snapshots/{param}/recoveryJobs","matched","Get-MgDirectoryRecoverySnapshotRecoveryJob" +"Cmdlets","GetMgDirectoryRecoverySnapshotRecoveryJob.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryJob","","","dispatcher","" +"Cmdlets","GetMgDirectoryRecoverySnapshotRecoveryJobCount.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryJobCount","GET","/directory/recovery/snapshots/{param}/recoveryJobs/$count","matched","Get-MgDirectoryRecoverySnapshotRecoveryJobCount" +"Cmdlets","GetMgDirectoryRecoverySnapshotRecoveryPreviewJob_Get.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob","GET","/directory/recovery/snapshots/{param}/recoveryPreviewJobs/{param}","matched","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob" +"Cmdlets","GetMgDirectoryRecoverySnapshotRecoveryPreviewJob_List.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob","GET","/directory/recovery/snapshots/{param}/recoveryPreviewJobs","matched","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob" +"Cmdlets","GetMgDirectoryRecoverySnapshotRecoveryPreviewJob.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob","","","dispatcher","" +"Cmdlets","GetMgDirectoryRecoverySnapshotRecoveryPreviewJobCount.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJobCount","GET","/directory/recovery/snapshots/{param}/recoveryPreviewJobs/$count","matched","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJobCount" +"Cmdlets","GetMgDirectoryRole_Get.g.cs","v1.0","Get-MgDirectoryRole","GET","/directoryRoles/{param}","matched","Get-MgDirectoryRole" +"Cmdlets","GetMgDirectoryRole_List.g.cs","v1.0","Get-MgDirectoryRole","GET","/directoryRoles","matched","Get-MgDirectoryRole" +"Cmdlets","GetMgDirectoryRole.g.cs","v1.0","Get-MgDirectoryRole","","","dispatcher","" +"Cmdlets","GetMgDirectoryRoleCount.g.cs","v1.0","Get-MgDirectoryRoleCount","GET","/directoryRoles/$count","matched","Get-MgDirectoryRoleCount" +"Cmdlets","GetMgDirectoryRoleDelta.g.cs","v1.0","Get-MgDirectoryRoleDelta","GET","/directoryRoles/delta","matched","Get-MgDirectoryRoleDelta" +"Cmdlets","GetMgDirectoryRoleMember.g.cs","v1.0","Get-MgDirectoryRoleMember","GET","/directoryRoles/{param}/members","matched","Get-MgDirectoryRoleMember" +"Cmdlets","GetMgDirectoryRoleMemberAsApplication_Get.g.cs","v1.0","Get-MgDirectoryRoleMemberAsApplication","GET","/directoryRoles/{param}/members/{param}/application","matched","Get-MgDirectoryRoleMemberAsApplication" +"Cmdlets","GetMgDirectoryRoleMemberAsApplication_List.g.cs","v1.0","Get-MgDirectoryRoleMemberAsApplication","GET","/directoryRoles/{param}/members/application","matched","Get-MgDirectoryRoleMemberAsApplication" +"Cmdlets","GetMgDirectoryRoleMemberAsApplication.g.cs","v1.0","Get-MgDirectoryRoleMemberAsApplication","","","dispatcher","" +"Cmdlets","GetMgDirectoryRoleMemberAsDevice_Get.g.cs","v1.0","Get-MgDirectoryRoleMemberAsDevice","GET","/directoryRoles/{param}/members/{param}/device","matched","Get-MgDirectoryRoleMemberAsDevice" +"Cmdlets","GetMgDirectoryRoleMemberAsDevice_List.g.cs","v1.0","Get-MgDirectoryRoleMemberAsDevice","GET","/directoryRoles/{param}/members/device","matched","Get-MgDirectoryRoleMemberAsDevice" +"Cmdlets","GetMgDirectoryRoleMemberAsDevice.g.cs","v1.0","Get-MgDirectoryRoleMemberAsDevice","","","dispatcher","" +"Cmdlets","GetMgDirectoryRoleMemberAsGroup_Get.g.cs","v1.0","Get-MgDirectoryRoleMemberAsGroup","GET","/directoryRoles/{param}/members/{param}/group","matched","Get-MgDirectoryRoleMemberAsGroup" +"Cmdlets","GetMgDirectoryRoleMemberAsGroup_List.g.cs","v1.0","Get-MgDirectoryRoleMemberAsGroup","GET","/directoryRoles/{param}/members/group","matched","Get-MgDirectoryRoleMemberAsGroup" +"Cmdlets","GetMgDirectoryRoleMemberAsGroup.g.cs","v1.0","Get-MgDirectoryRoleMemberAsGroup","","","dispatcher","" +"Cmdlets","GetMgDirectoryRoleMemberAsOrgContact_Get.g.cs","v1.0","Get-MgDirectoryRoleMemberAsOrgContact","GET","/directoryRoles/{param}/members/{param}/orgContact","matched","Get-MgDirectoryRoleMemberAsOrgContact" +"Cmdlets","GetMgDirectoryRoleMemberAsOrgContact_List.g.cs","v1.0","Get-MgDirectoryRoleMemberAsOrgContact","GET","/directoryRoles/{param}/members/orgContact","matched","Get-MgDirectoryRoleMemberAsOrgContact" +"Cmdlets","GetMgDirectoryRoleMemberAsOrgContact.g.cs","v1.0","Get-MgDirectoryRoleMemberAsOrgContact","","","dispatcher","" +"Cmdlets","GetMgDirectoryRoleMemberAsServicePrincipal_Get.g.cs","v1.0","Get-MgDirectoryRoleMemberAsServicePrincipal","GET","/directoryRoles/{param}/members/{param}/servicePrincipal","matched","Get-MgDirectoryRoleMemberAsServicePrincipal" +"Cmdlets","GetMgDirectoryRoleMemberAsServicePrincipal_List.g.cs","v1.0","Get-MgDirectoryRoleMemberAsServicePrincipal","GET","/directoryRoles/{param}/members/servicePrincipal","matched","Get-MgDirectoryRoleMemberAsServicePrincipal" +"Cmdlets","GetMgDirectoryRoleMemberAsServicePrincipal.g.cs","v1.0","Get-MgDirectoryRoleMemberAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgDirectoryRoleMemberAsUser_Get.g.cs","v1.0","Get-MgDirectoryRoleMemberAsUser","GET","/directoryRoles/{param}/members/{param}/user","matched","Get-MgDirectoryRoleMemberAsUser" +"Cmdlets","GetMgDirectoryRoleMemberAsUser_List.g.cs","v1.0","Get-MgDirectoryRoleMemberAsUser","GET","/directoryRoles/{param}/members/user","matched","Get-MgDirectoryRoleMemberAsUser" +"Cmdlets","GetMgDirectoryRoleMemberAsUser.g.cs","v1.0","Get-MgDirectoryRoleMemberAsUser","","","dispatcher","" +"Cmdlets","GetMgDirectoryRoleMemberByRef.g.cs","v1.0","Get-MgDirectoryRoleMemberByRef","GET","/directoryRoles/{param}/members/$ref","matched","Get-MgDirectoryRoleMemberByRef" +"Cmdlets","GetMgDirectoryRoleMemberCount.g.cs","v1.0","Get-MgDirectoryRoleMemberCount","GET","/directoryRoles/{param}/members/$count","matched","Get-MgDirectoryRoleMemberCount" +"Cmdlets","GetMgDirectoryRoleMemberCountAsApplication.g.cs","v1.0","Get-MgDirectoryRoleMemberCountAsApplication","GET","/directoryRoles/{param}/members/application/$count","matched","Get-MgDirectoryRoleMemberCountAsApplication" +"Cmdlets","GetMgDirectoryRoleMemberCountAsDevice.g.cs","v1.0","Get-MgDirectoryRoleMemberCountAsDevice","GET","/directoryRoles/{param}/members/device/$count","matched","Get-MgDirectoryRoleMemberCountAsDevice" +"Cmdlets","GetMgDirectoryRoleMemberCountAsGroup.g.cs","v1.0","Get-MgDirectoryRoleMemberCountAsGroup","GET","/directoryRoles/{param}/members/group/$count","matched","Get-MgDirectoryRoleMemberCountAsGroup" +"Cmdlets","GetMgDirectoryRoleMemberCountAsOrgContact.g.cs","v1.0","Get-MgDirectoryRoleMemberCountAsOrgContact","GET","/directoryRoles/{param}/members/orgContact/$count","matched","Get-MgDirectoryRoleMemberCountAsOrgContact" +"Cmdlets","GetMgDirectoryRoleMemberCountAsServicePrincipal.g.cs","v1.0","Get-MgDirectoryRoleMemberCountAsServicePrincipal","GET","/directoryRoles/{param}/members/servicePrincipal/$count","matched","Get-MgDirectoryRoleMemberCountAsServicePrincipal" +"Cmdlets","GetMgDirectoryRoleMemberCountAsUser.g.cs","v1.0","Get-MgDirectoryRoleMemberCountAsUser","GET","/directoryRoles/{param}/members/user/$count","matched","Get-MgDirectoryRoleMemberCountAsUser" +"Cmdlets","GetMgDirectoryRoleScopedMember_Get.g.cs","v1.0","Get-MgDirectoryRoleScopedMember","GET","/directoryRoles/{param}/scopedMembers/{param}","matched","Get-MgDirectoryRoleScopedMember" +"Cmdlets","GetMgDirectoryRoleScopedMember_List.g.cs","v1.0","Get-MgDirectoryRoleScopedMember","GET","/directoryRoles/{param}/scopedMembers","matched","Get-MgDirectoryRoleScopedMember" +"Cmdlets","GetMgDirectoryRoleScopedMember.g.cs","v1.0","Get-MgDirectoryRoleScopedMember","","","dispatcher","" +"Cmdlets","GetMgDirectoryRoleScopedMemberCount.g.cs","v1.0","Get-MgDirectoryRoleScopedMemberCount","GET","/directoryRoles/{param}/scopedMembers/$count","matched","Get-MgDirectoryRoleScopedMemberCount" +"Cmdlets","GetMgDirectoryRoleTemplate_Get.g.cs","v1.0","Get-MgDirectoryRoleTemplate","GET","/directoryRoleTemplates/{param}","matched","Get-MgDirectoryRoleTemplate" +"Cmdlets","GetMgDirectoryRoleTemplate_List.g.cs","v1.0","Get-MgDirectoryRoleTemplate","GET","/directoryRoleTemplates","matched","Get-MgDirectoryRoleTemplate" +"Cmdlets","GetMgDirectoryRoleTemplate.g.cs","v1.0","Get-MgDirectoryRoleTemplate","","","dispatcher","" +"Cmdlets","GetMgDirectoryRoleTemplateCount.g.cs","v1.0","Get-MgDirectoryRoleTemplateCount","GET","/directoryRoleTemplates/$count","matched","Get-MgDirectoryRoleTemplateCount" +"Cmdlets","GetMgDirectoryRoleTemplateDelta.g.cs","v1.0","Get-MgDirectoryRoleTemplateDelta","GET","/directoryRoleTemplates/delta","matched","Get-MgDirectoryRoleTemplateDelta" +"Cmdlets","GetMgDirectorySubscription_Get.g.cs","v1.0","Get-MgDirectorySubscription","GET","/directory/subscriptions/{param}","matched","Get-MgDirectorySubscription" +"Cmdlets","GetMgDirectorySubscription_List.g.cs","v1.0","Get-MgDirectorySubscription","GET","/directory/subscriptions","matched","Get-MgDirectorySubscription" +"Cmdlets","GetMgDirectorySubscription.g.cs","v1.0","Get-MgDirectorySubscription","","","dispatcher","" +"Cmdlets","GetMgDirectorySubscriptionCount.g.cs","v1.0","Get-MgDirectorySubscriptionCount","GET","/directory/subscriptions/$count","matched","Get-MgDirectorySubscriptionCount" +"Cmdlets","GetMgDomain_Get.g.cs","v1.0","Get-MgDomain","GET","/domains/{param}","matched","Get-MgDomain" +"Cmdlets","GetMgDomain_List.g.cs","v1.0","Get-MgDomain","GET","/domains","matched","Get-MgDomain" +"Cmdlets","GetMgDomain.g.cs","v1.0","Get-MgDomain","","","dispatcher","" +"Cmdlets","GetMgDomainCount.g.cs","v1.0","Get-MgDomainCount","GET","/domains/$count","matched","Get-MgDomainCount" +"Cmdlets","GetMgDomainFederationConfiguration_Get.g.cs","v1.0","Get-MgDomainFederationConfiguration","GET","/domains/{param}/federationConfiguration/{param}","matched","Get-MgDomainFederationConfiguration" +"Cmdlets","GetMgDomainFederationConfiguration_List.g.cs","v1.0","Get-MgDomainFederationConfiguration","GET","/domains/{param}/federationConfiguration","matched","Get-MgDomainFederationConfiguration" +"Cmdlets","GetMgDomainFederationConfiguration.g.cs","v1.0","Get-MgDomainFederationConfiguration","","","dispatcher","" +"Cmdlets","GetMgDomainFederationConfigurationCount.g.cs","v1.0","Get-MgDomainFederationConfigurationCount","GET","/domains/{param}/federationConfiguration/$count","matched","Get-MgDomainFederationConfigurationCount" +"Cmdlets","GetMgDomainNameReference_Get.g.cs","v1.0","Get-MgDomainNameReference","GET","/domains/{param}/domainNameReferences/{param}","matched","Get-MgDomainNameReference" +"Cmdlets","GetMgDomainNameReference_List.g.cs","v1.0","Get-MgDomainNameReference","GET","/domains/{param}/domainNameReferences","matched","Get-MgDomainNameReference" +"Cmdlets","GetMgDomainNameReference.g.cs","v1.0","Get-MgDomainNameReference","","","dispatcher","" +"Cmdlets","GetMgDomainNameReferenceCount.g.cs","v1.0","Get-MgDomainNameReferenceCount","GET","/domains/{param}/domainNameReferences/$count","matched","Get-MgDomainNameReferenceCount" +"Cmdlets","GetMgDomainRootDomain.g.cs","v1.0","Get-MgDomainRootDomain","GET","/domains/{param}/rootDomain","matched","Get-MgDomainRootDomain" +"Cmdlets","GetMgDomainServiceConfigurationRecord_Get.g.cs","v1.0","Get-MgDomainServiceConfigurationRecord","GET","/domains/{param}/serviceConfigurationRecords/{param}","matched","Get-MgDomainServiceConfigurationRecord" +"Cmdlets","GetMgDomainServiceConfigurationRecord_List.g.cs","v1.0","Get-MgDomainServiceConfigurationRecord","GET","/domains/{param}/serviceConfigurationRecords","matched","Get-MgDomainServiceConfigurationRecord" +"Cmdlets","GetMgDomainServiceConfigurationRecord.g.cs","v1.0","Get-MgDomainServiceConfigurationRecord","","","dispatcher","" +"Cmdlets","GetMgDomainServiceConfigurationRecordCount.g.cs","v1.0","Get-MgDomainServiceConfigurationRecordCount","GET","/domains/{param}/serviceConfigurationRecords/$count","matched","Get-MgDomainServiceConfigurationRecordCount" +"Cmdlets","GetMgDomainVerificationDnsRecord_Get.g.cs","v1.0","Get-MgDomainVerificationDnsRecord","GET","/domains/{param}/verificationDnsRecords/{param}","matched","Get-MgDomainVerificationDnsRecord" +"Cmdlets","GetMgDomainVerificationDnsRecord_List.g.cs","v1.0","Get-MgDomainVerificationDnsRecord","GET","/domains/{param}/verificationDnsRecords","matched","Get-MgDomainVerificationDnsRecord" +"Cmdlets","GetMgDomainVerificationDnsRecord.g.cs","v1.0","Get-MgDomainVerificationDnsRecord","","","dispatcher","" +"Cmdlets","GetMgDomainVerificationDnsRecordCount.g.cs","v1.0","Get-MgDomainVerificationDnsRecordCount","GET","/domains/{param}/verificationDnsRecords/$count","matched","Get-MgDomainVerificationDnsRecordCount" +"Cmdlets","GetMgOrganization_Get.g.cs","v1.0","Get-MgOrganization","GET","/organization/{param}","matched","Get-MgOrganization" +"Cmdlets","GetMgOrganization_List.g.cs","v1.0","Get-MgOrganization","GET","/organization","matched","Get-MgOrganization" +"Cmdlets","GetMgOrganization.g.cs","v1.0","Get-MgOrganization","","","dispatcher","" +"Cmdlets","GetMgOrganizationBranding.g.cs","v1.0","Get-MgOrganizationBranding","GET","/organization/{param}/branding","matched","Get-MgOrganizationBranding" +"Cmdlets","GetMgOrganizationBrandingBackgroundImage.g.cs","v1.0","Get-MgOrganizationBrandingBackgroundImage","GET","/organization/{param}/branding/backgroundImage","matched","Get-MgOrganizationBrandingBackgroundImage" +"Cmdlets","GetMgOrganizationBrandingBannerLogo.g.cs","v1.0","Get-MgOrganizationBrandingBannerLogo","GET","/organization/{param}/branding/bannerLogo","matched","Get-MgOrganizationBrandingBannerLogo" +"Cmdlets","GetMgOrganizationBrandingCustomCSS.g.cs","v1.0","Get-MgOrganizationBrandingCustomCSS","GET","/organization/{param}/branding/customCSS","mismatch","Get-MgOrganizationBrandingCustomCss" +"Cmdlets","GetMgOrganizationBrandingFavicon.g.cs","v1.0","Get-MgOrganizationBrandingFavicon","GET","/organization/{param}/branding/favicon","matched","Get-MgOrganizationBrandingFavicon" +"Cmdlets","GetMgOrganizationBrandingHeaderLogo.g.cs","v1.0","Get-MgOrganizationBrandingHeaderLogo","GET","/organization/{param}/branding/headerLogo","matched","Get-MgOrganizationBrandingHeaderLogo" +"Cmdlets","GetMgOrganizationBrandingLocalization_Get.g.cs","v1.0","Get-MgOrganizationBrandingLocalization","GET","/organization/{param}/branding/localizations/{param}","matched","Get-MgOrganizationBrandingLocalization" +"Cmdlets","GetMgOrganizationBrandingLocalization_List.g.cs","v1.0","Get-MgOrganizationBrandingLocalization","GET","/organization/{param}/branding/localizations","matched","Get-MgOrganizationBrandingLocalization" +"Cmdlets","GetMgOrganizationBrandingLocalization.g.cs","v1.0","Get-MgOrganizationBrandingLocalization","","","dispatcher","" +"Cmdlets","GetMgOrganizationBrandingLocalizationBackgroundImage.g.cs","v1.0","Get-MgOrganizationBrandingLocalizationBackgroundImage","GET","/organization/{param}/branding/localizations/{param}/backgroundImage","matched","Get-MgOrganizationBrandingLocalizationBackgroundImage" +"Cmdlets","GetMgOrganizationBrandingLocalizationBannerLogo.g.cs","v1.0","Get-MgOrganizationBrandingLocalizationBannerLogo","GET","/organization/{param}/branding/localizations/{param}/bannerLogo","matched","Get-MgOrganizationBrandingLocalizationBannerLogo" +"Cmdlets","GetMgOrganizationBrandingLocalizationCount.g.cs","v1.0","Get-MgOrganizationBrandingLocalizationCount","GET","/organization/{param}/branding/localizations/$count","matched","Get-MgOrganizationBrandingLocalizationCount" +"Cmdlets","GetMgOrganizationBrandingLocalizationCustomCSS.g.cs","v1.0","Get-MgOrganizationBrandingLocalizationCustomCSS","GET","/organization/{param}/branding/localizations/{param}/customCSS","mismatch","Get-MgOrganizationBrandingLocalizationCustomCss" +"Cmdlets","GetMgOrganizationBrandingLocalizationFavicon.g.cs","v1.0","Get-MgOrganizationBrandingLocalizationFavicon","GET","/organization/{param}/branding/localizations/{param}/favicon","matched","Get-MgOrganizationBrandingLocalizationFavicon" +"Cmdlets","GetMgOrganizationBrandingLocalizationHeaderLogo.g.cs","v1.0","Get-MgOrganizationBrandingLocalizationHeaderLogo","GET","/organization/{param}/branding/localizations/{param}/headerLogo","matched","Get-MgOrganizationBrandingLocalizationHeaderLogo" +"Cmdlets","GetMgOrganizationBrandingLocalizationSquareLogo.g.cs","v1.0","Get-MgOrganizationBrandingLocalizationSquareLogo","GET","/organization/{param}/branding/localizations/{param}/squareLogo","matched","Get-MgOrganizationBrandingLocalizationSquareLogo" +"Cmdlets","GetMgOrganizationBrandingLocalizationSquareLogoDark.g.cs","v1.0","Get-MgOrganizationBrandingLocalizationSquareLogoDark","GET","/organization/{param}/branding/localizations/{param}/squareLogoDark","matched","Get-MgOrganizationBrandingLocalizationSquareLogoDark" +"Cmdlets","GetMgOrganizationBrandingSquareLogo.g.cs","v1.0","Get-MgOrganizationBrandingSquareLogo","GET","/organization/{param}/branding/squareLogo","matched","Get-MgOrganizationBrandingSquareLogo" +"Cmdlets","GetMgOrganizationBrandingSquareLogoDark.g.cs","v1.0","Get-MgOrganizationBrandingSquareLogoDark","GET","/organization/{param}/branding/squareLogoDark","matched","Get-MgOrganizationBrandingSquareLogoDark" +"Cmdlets","GetMgOrganizationCount.g.cs","v1.0","Get-MgOrganizationCount","GET","/organization/$count","matched","Get-MgOrganizationCount" +"Cmdlets","GetMgOrganizationExtension_Get.g.cs","v1.0","Get-MgOrganizationExtension","GET","/organization/{param}/extensions/{param}","matched","Get-MgOrganizationExtension" +"Cmdlets","GetMgOrganizationExtension_List.g.cs","v1.0","Get-MgOrganizationExtension","GET","/organization/{param}/extensions","matched","Get-MgOrganizationExtension" +"Cmdlets","GetMgOrganizationExtension.g.cs","v1.0","Get-MgOrganizationExtension","","","dispatcher","" +"Cmdlets","GetMgOrganizationExtensionCount.g.cs","v1.0","Get-MgOrganizationExtensionCount","GET","/organization/{param}/extensions/$count","matched","Get-MgOrganizationExtensionCount" +"Cmdlets","GetMgSubscribedSku_Get.g.cs","v1.0","Get-MgSubscribedSku","GET","/subscribedSkus/{param}","matched","Get-MgSubscribedSku" +"Cmdlets","GetMgSubscribedSku_List.g.cs","v1.0","Get-MgSubscribedSku","GET","/subscribedSkus","matched","Get-MgSubscribedSku" +"Cmdlets","GetMgSubscribedSku.g.cs","v1.0","Get-MgSubscribedSku","","","dispatcher","" +"Cmdlets","GetMgTenantRelationshipFindTenantInformationByDomainNameWithDomainName.g.cs","v1.0","Get-MgTenantRelationshipFindTenantInformationByDomainNameWithDomainName","GET","/tenantRelationships/findTenantInformationByDomainName(domainName='{domainName}')","mismatch","Find-MgTenantRelationshipTenantInformationByDomainName" +"Cmdlets","GetMgTenantRelationshipFindTenantInformationByTenantIdWithTenantId.g.cs","v1.0","Get-MgTenantRelationshipFindTenantInformationByTenantIdWithTenantId","GET","/tenantRelationships/findTenantInformationByTenantId(tenantId='{tenantId}')","mismatch","Find-MgTenantRelationshipTenantInformationByTenantId" +"Cmdlets","GetMgUserScopedRoleMemberOf_Get.g.cs","v1.0","Get-MgUserScopedRoleMemberOf","GET","/users/{param}/scopedRoleMemberOf/{param}","matched","Get-MgUserScopedRoleMemberOf" +"Cmdlets","GetMgUserScopedRoleMemberOf_List.g.cs","v1.0","Get-MgUserScopedRoleMemberOf","GET","/users/{param}/scopedRoleMemberOf","matched","Get-MgUserScopedRoleMemberOf" +"Cmdlets","GetMgUserScopedRoleMemberOf.g.cs","v1.0","Get-MgUserScopedRoleMemberOf","","","dispatcher","" +"Cmdlets","GetMgUserScopedRoleMemberOfCount.g.cs","v1.0","Get-MgUserScopedRoleMemberOfCount","GET","/users/{param}/scopedRoleMemberOf/$count","matched","Get-MgUserScopedRoleMemberOfCount" +"Cmdlets","InvokeMgContactCheckMemberGroups.g.cs","v1.0","Invoke-MgContactCheckMemberGroups","POST","/contacts/{param}/checkMemberGroups","mismatch","Confirm-MgContactMemberGroup" +"Cmdlets","InvokeMgContactCheckMemberObjects.g.cs","v1.0","Invoke-MgContactCheckMemberObjects","POST","/contacts/{param}/checkMemberObjects","mismatch","Confirm-MgContactMemberObject" +"Cmdlets","InvokeMgContactGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgContactGetAvailableExtensionProperties","POST","/contacts/getAvailableExtensionProperties","no-oracle","" +"Cmdlets","InvokeMgContactGetByIds.g.cs","v1.0","Invoke-MgContactGetByIds","POST","/contacts/getByIds","mismatch","Get-MgContactById" +"Cmdlets","InvokeMgContactGetMemberGroups.g.cs","v1.0","Invoke-MgContactGetMemberGroups","POST","/contacts/{param}/getMemberGroups","mismatch","Get-MgContactMemberGroup" +"Cmdlets","InvokeMgContactGetMemberObjects.g.cs","v1.0","Invoke-MgContactGetMemberObjects","POST","/contacts/{param}/getMemberObjects","mismatch","Get-MgContactMemberObject" +"Cmdlets","InvokeMgContactRestore.g.cs","v1.0","Invoke-MgContactRestore","POST","/contacts/{param}/restore","no-oracle","" +"Cmdlets","InvokeMgContactRetryServiceProvisioning.g.cs","v1.0","Invoke-MgContactRetryServiceProvisioning","POST","/contacts/{param}/retryServiceProvisioning","mismatch","Invoke-MgRetryContactServiceProvisioning" +"Cmdlets","InvokeMgContactValidateProperties.g.cs","v1.0","Invoke-MgContactValidateProperties","POST","/contacts/validateProperties","mismatch","Test-MgContactProperty" +"Cmdlets","InvokeMgContractCheckMemberGroups.g.cs","v1.0","Invoke-MgContractCheckMemberGroups","POST","/contracts/{param}/checkMemberGroups","mismatch","Confirm-MgContractMemberGroup" +"Cmdlets","InvokeMgContractCheckMemberObjects.g.cs","v1.0","Invoke-MgContractCheckMemberObjects","POST","/contracts/{param}/checkMemberObjects","mismatch","Confirm-MgContractMemberObject" +"Cmdlets","InvokeMgContractGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgContractGetAvailableExtensionProperties","POST","/contracts/getAvailableExtensionProperties","no-oracle","" +"Cmdlets","InvokeMgContractGetByIds.g.cs","v1.0","Invoke-MgContractGetByIds","POST","/contracts/getByIds","mismatch","Get-MgContractById" +"Cmdlets","InvokeMgContractGetMemberGroups.g.cs","v1.0","Invoke-MgContractGetMemberGroups","POST","/contracts/{param}/getMemberGroups","mismatch","Get-MgContractMemberGroup" +"Cmdlets","InvokeMgContractGetMemberObjects.g.cs","v1.0","Invoke-MgContractGetMemberObjects","POST","/contracts/{param}/getMemberObjects","mismatch","Get-MgContractMemberObject" +"Cmdlets","InvokeMgContractRestore.g.cs","v1.0","Invoke-MgContractRestore","POST","/contracts/{param}/restore","no-oracle","" +"Cmdlets","InvokeMgContractValidateProperties.g.cs","v1.0","Invoke-MgContractValidateProperties","POST","/contracts/validateProperties","mismatch","Test-MgContractProperty" +"Cmdlets","InvokeMgDeviceCheckMemberGroups.g.cs","v1.0","Invoke-MgDeviceCheckMemberGroups","POST","/devices/{param}/checkMemberGroups","mismatch","Confirm-MgDeviceMemberGroup" +"Cmdlets","InvokeMgDeviceCheckMemberObjects.g.cs","v1.0","Invoke-MgDeviceCheckMemberObjects","POST","/devices/{param}/checkMemberObjects","mismatch","Confirm-MgDeviceMemberObject" +"Cmdlets","InvokeMgDeviceGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgDeviceGetAvailableExtensionProperties","POST","/devices/getAvailableExtensionProperties","no-oracle","" +"Cmdlets","InvokeMgDeviceGetByIds.g.cs","v1.0","Invoke-MgDeviceGetByIds","POST","/devices/getByIds","mismatch","Get-MgDeviceById" +"Cmdlets","InvokeMgDeviceGetMemberGroups.g.cs","v1.0","Invoke-MgDeviceGetMemberGroups","POST","/devices/{param}/getMemberGroups","mismatch","Get-MgDeviceMemberGroup" +"Cmdlets","InvokeMgDeviceGetMemberObjects.g.cs","v1.0","Invoke-MgDeviceGetMemberObjects","POST","/devices/{param}/getMemberObjects","mismatch","Get-MgDeviceMemberObject" +"Cmdlets","InvokeMgDeviceRestore.g.cs","v1.0","Invoke-MgDeviceRestore","POST","/devices/{param}/restore","no-oracle","" +"Cmdlets","InvokeMgDeviceValidateProperties.g.cs","v1.0","Invoke-MgDeviceValidateProperties","POST","/devices/validateProperties","mismatch","Test-MgDeviceProperty" +"Cmdlets","InvokeMgDirectoryDeletedItemCheckMemberGroups.g.cs","v1.0","Invoke-MgDirectoryDeletedItemCheckMemberGroups","POST","/directory/deletedItems/{param}/checkMemberGroups","mismatch","Confirm-MgDirectoryDeletedItemMemberGroup" +"Cmdlets","InvokeMgDirectoryDeletedItemCheckMemberObjects.g.cs","v1.0","Invoke-MgDirectoryDeletedItemCheckMemberObjects","POST","/directory/deletedItems/{param}/checkMemberObjects","mismatch","Confirm-MgDirectoryDeletedItemMemberObject" +"Cmdlets","InvokeMgDirectoryDeletedItemGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgDirectoryDeletedItemGetAvailableExtensionProperties","POST","/directory/deletedItems/getAvailableExtensionProperties","no-oracle","" +"Cmdlets","InvokeMgDirectoryDeletedItemGetByIds.g.cs","v1.0","Invoke-MgDirectoryDeletedItemGetByIds","POST","/directory/deletedItems/getByIds","mismatch","Get-MgDirectoryDeletedItemById" +"Cmdlets","InvokeMgDirectoryDeletedItemGetMemberGroups.g.cs","v1.0","Invoke-MgDirectoryDeletedItemGetMemberGroups","POST","/directory/deletedItems/{param}/getMemberGroups","mismatch","Get-MgDirectoryDeletedItemMemberGroup" +"Cmdlets","InvokeMgDirectoryDeletedItemGetMemberObjects.g.cs","v1.0","Invoke-MgDirectoryDeletedItemGetMemberObjects","POST","/directory/deletedItems/{param}/getMemberObjects","mismatch","Get-MgDirectoryDeletedItemMemberObject" +"Cmdlets","InvokeMgDirectoryDeletedItemRestore.g.cs","v1.0","Invoke-MgDirectoryDeletedItemRestore","POST","/directory/deletedItems/{param}/restore","mismatch","Restore-MgDirectoryDeletedItem" +"Cmdlets","InvokeMgDirectoryDeletedItemValidateProperties.g.cs","v1.0","Invoke-MgDirectoryDeletedItemValidateProperties","POST","/directory/deletedItems/validateProperties","mismatch","Test-MgDirectoryDeletedItemProperty" +"Cmdlets","InvokeMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationUpload.g.cs","v1.0","Invoke-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationUpload","POST","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/upload","mismatch","Invoke-MgUploadDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"Cmdlets","InvokeMgDirectoryRecoveryJobCancel.g.cs","v1.0","Invoke-MgDirectoryRecoveryJobCancel","POST","/directory/recovery/jobs/{param}/cancel","mismatch","Stop-MgDirectoryRecoveryJob" +"Cmdlets","InvokeMgDirectoryRoleCheckMemberGroups.g.cs","v1.0","Invoke-MgDirectoryRoleCheckMemberGroups","POST","/directoryRoles/{param}/checkMemberGroups","mismatch","Confirm-MgDirectoryRoleMemberGroup" +"Cmdlets","InvokeMgDirectoryRoleCheckMemberObjects.g.cs","v1.0","Invoke-MgDirectoryRoleCheckMemberObjects","POST","/directoryRoles/{param}/checkMemberObjects","mismatch","Confirm-MgDirectoryRoleMemberObject" +"Cmdlets","InvokeMgDirectoryRoleGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgDirectoryRoleGetAvailableExtensionProperties","POST","/directoryRoles/getAvailableExtensionProperties","no-oracle","" +"Cmdlets","InvokeMgDirectoryRoleGetByIds.g.cs","v1.0","Invoke-MgDirectoryRoleGetByIds","POST","/directoryRoles/getByIds","mismatch","Get-MgDirectoryRoleById" +"Cmdlets","InvokeMgDirectoryRoleGetMemberGroups.g.cs","v1.0","Invoke-MgDirectoryRoleGetMemberGroups","POST","/directoryRoles/{param}/getMemberGroups","mismatch","Get-MgDirectoryRoleMemberGroup" +"Cmdlets","InvokeMgDirectoryRoleGetMemberObjects.g.cs","v1.0","Invoke-MgDirectoryRoleGetMemberObjects","POST","/directoryRoles/{param}/getMemberObjects","mismatch","Get-MgDirectoryRoleMemberObject" +"Cmdlets","InvokeMgDirectoryRoleRestore.g.cs","v1.0","Invoke-MgDirectoryRoleRestore","POST","/directoryRoles/{param}/restore","no-oracle","" +"Cmdlets","InvokeMgDirectoryRoleTemplateCheckMemberGroups.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateCheckMemberGroups","POST","/directoryRoleTemplates/{param}/checkMemberGroups","mismatch","Confirm-MgDirectoryRoleTemplateMemberGroup" +"Cmdlets","InvokeMgDirectoryRoleTemplateCheckMemberObjects.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateCheckMemberObjects","POST","/directoryRoleTemplates/{param}/checkMemberObjects","mismatch","Confirm-MgDirectoryRoleTemplateMemberObject" +"Cmdlets","InvokeMgDirectoryRoleTemplateGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateGetAvailableExtensionProperties","POST","/directoryRoleTemplates/getAvailableExtensionProperties","no-oracle","" +"Cmdlets","InvokeMgDirectoryRoleTemplateGetByIds.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateGetByIds","POST","/directoryRoleTemplates/getByIds","mismatch","Get-MgDirectoryRoleTemplateById" +"Cmdlets","InvokeMgDirectoryRoleTemplateGetMemberGroups.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateGetMemberGroups","POST","/directoryRoleTemplates/{param}/getMemberGroups","mismatch","Get-MgDirectoryRoleTemplateMemberGroup" +"Cmdlets","InvokeMgDirectoryRoleTemplateGetMemberObjects.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateGetMemberObjects","POST","/directoryRoleTemplates/{param}/getMemberObjects","mismatch","Get-MgDirectoryRoleTemplateMemberObject" +"Cmdlets","InvokeMgDirectoryRoleTemplateRestore.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateRestore","POST","/directoryRoleTemplates/{param}/restore","no-oracle","" +"Cmdlets","InvokeMgDirectoryRoleTemplateValidateProperties.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateValidateProperties","POST","/directoryRoleTemplates/validateProperties","mismatch","Test-MgDirectoryRoleTemplateProperty" +"Cmdlets","InvokeMgDirectoryRoleValidateProperties.g.cs","v1.0","Invoke-MgDirectoryRoleValidateProperties","POST","/directoryRoles/validateProperties","mismatch","Test-MgDirectoryRoleProperty" +"Cmdlets","InvokeMgDomainForceDelete.g.cs","v1.0","Invoke-MgDomainForceDelete","POST","/domains/{param}/forceDelete","mismatch","Invoke-MgForceDomainDelete" +"Cmdlets","InvokeMgDomainPromote.g.cs","v1.0","Invoke-MgDomainPromote","POST","/domains/{param}/promote","mismatch","Invoke-MgPromoteDomain" +"Cmdlets","InvokeMgDomainVerify.g.cs","v1.0","Invoke-MgDomainVerify","POST","/domains/{param}/verify","mismatch","Confirm-MgDomain" +"Cmdlets","InvokeMgOrganizationCheckMemberGroups.g.cs","v1.0","Invoke-MgOrganizationCheckMemberGroups","POST","/organization/{param}/checkMemberGroups","mismatch","Confirm-MgOrganizationMemberGroup" +"Cmdlets","InvokeMgOrganizationCheckMemberObjects.g.cs","v1.0","Invoke-MgOrganizationCheckMemberObjects","POST","/organization/{param}/checkMemberObjects","mismatch","Confirm-MgOrganizationMemberObject" +"Cmdlets","InvokeMgOrganizationGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgOrganizationGetAvailableExtensionProperties","POST","/organization/getAvailableExtensionProperties","no-oracle","" +"Cmdlets","InvokeMgOrganizationGetByIds.g.cs","v1.0","Invoke-MgOrganizationGetByIds","POST","/organization/getByIds","mismatch","Get-MgOrganizationById" +"Cmdlets","InvokeMgOrganizationGetMemberGroups.g.cs","v1.0","Invoke-MgOrganizationGetMemberGroups","POST","/organization/{param}/getMemberGroups","mismatch","Get-MgOrganizationMemberGroup" +"Cmdlets","InvokeMgOrganizationGetMemberObjects.g.cs","v1.0","Invoke-MgOrganizationGetMemberObjects","POST","/organization/{param}/getMemberObjects","mismatch","Get-MgOrganizationMemberObject" +"Cmdlets","InvokeMgOrganizationRestore.g.cs","v1.0","Invoke-MgOrganizationRestore","POST","/organization/{param}/restore","no-oracle","" +"Cmdlets","InvokeMgOrganizationSetMobileDeviceManagementAuthority.g.cs","v1.0","Invoke-MgOrganizationSetMobileDeviceManagementAuthority","POST","/organization/{param}/setMobileDeviceManagementAuthority","mismatch","Set-MgOrganizationMobileDeviceManagementAuthority" +"Cmdlets","InvokeMgOrganizationValidateProperties.g.cs","v1.0","Invoke-MgOrganizationValidateProperties","POST","/organization/validateProperties","mismatch","Test-MgOrganizationProperty" +"Cmdlets","NewMgAdminPeopleProfileCardProperty.g.cs","v1.0","New-MgAdminPeopleProfileCardProperty","POST","/admin/people/profileCardProperties","matched","New-MgAdminPeopleProfileCardProperty" +"Cmdlets","NewMgAdminPeopleProfilePropertySetting.g.cs","v1.0","New-MgAdminPeopleProfilePropertySetting","POST","/admin/people/profilePropertySettings","matched","New-MgAdminPeopleProfilePropertySetting" +"Cmdlets","NewMgAdminPeopleProfileSource.g.cs","v1.0","New-MgAdminPeopleProfileSource","POST","/admin/people/profileSources","matched","New-MgAdminPeopleProfileSource" +"Cmdlets","NewMgContract.g.cs","v1.0","New-MgContract","POST","/contracts","matched","New-MgContract" +"Cmdlets","NewMgDevice.g.cs","v1.0","New-MgDevice","POST","/devices","matched","New-MgDevice" +"Cmdlets","NewMgDeviceExtension.g.cs","v1.0","New-MgDeviceExtension","POST","/devices/{param}/extensions","matched","New-MgDeviceExtension" +"Cmdlets","NewMgDeviceRegisteredOwnerByRef.g.cs","v1.0","New-MgDeviceRegisteredOwnerByRef","POST","/devices/{param}/registeredOwners/$ref","matched","New-MgDeviceRegisteredOwnerByRef" +"Cmdlets","NewMgDeviceRegisteredUserByRef.g.cs","v1.0","New-MgDeviceRegisteredUserByRef","POST","/devices/{param}/registeredUsers/$ref","matched","New-MgDeviceRegisteredUserByRef" +"Cmdlets","NewMgDirectoryAdministrativeUnit.g.cs","v1.0","New-MgDirectoryAdministrativeUnit","POST","/directory/administrativeUnits","matched","New-MgDirectoryAdministrativeUnit" +"Cmdlets","NewMgDirectoryAdministrativeUnitExtension.g.cs","v1.0","New-MgDirectoryAdministrativeUnitExtension","POST","/directory/administrativeUnits/{param}/extensions","matched","New-MgDirectoryAdministrativeUnitExtension" +"Cmdlets","NewMgDirectoryAdministrativeUnitMember.g.cs","v1.0","New-MgDirectoryAdministrativeUnitMember","POST","/directory/administrativeUnits/{param}/members","matched","New-MgDirectoryAdministrativeUnitMember" +"Cmdlets","NewMgDirectoryAdministrativeUnitMemberByRef.g.cs","v1.0","New-MgDirectoryAdministrativeUnitMemberByRef","POST","/directory/administrativeUnits/{param}/members/$ref","matched","New-MgDirectoryAdministrativeUnitMemberByRef" +"Cmdlets","NewMgDirectoryAdministrativeUnitScopedRoleMember.g.cs","v1.0","New-MgDirectoryAdministrativeUnitScopedRoleMember","POST","/directory/administrativeUnits/{param}/scopedRoleMembers","matched","New-MgDirectoryAdministrativeUnitScopedRoleMember" +"Cmdlets","NewMgDirectoryAttributeSet.g.cs","v1.0","New-MgDirectoryAttributeSet","POST","/directory/attributeSets","matched","New-MgDirectoryAttributeSet" +"Cmdlets","NewMgDirectoryCustomSecurityAttributeDefinition.g.cs","v1.0","New-MgDirectoryCustomSecurityAttributeDefinition","POST","/directory/customSecurityAttributeDefinitions","matched","New-MgDirectoryCustomSecurityAttributeDefinition" +"Cmdlets","NewMgDirectoryCustomSecurityAttributeDefinitionAllowedValue.g.cs","v1.0","New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","POST","/directory/customSecurityAttributeDefinitions/{param}/allowedValues","matched","New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"Cmdlets","NewMgDirectoryDeviceLocalCredential.g.cs","v1.0","New-MgDirectoryDeviceLocalCredential","POST","/directory/deviceLocalCredentials","matched","New-MgDirectoryDeviceLocalCredential" +"Cmdlets","NewMgDirectoryFederationConfiguration.g.cs","v1.0","New-MgDirectoryFederationConfiguration","POST","/directory/federationConfigurations","matched","New-MgDirectoryFederationConfiguration" +"Cmdlets","NewMgDirectoryOnPremiseSynchronization.g.cs","v1.0","New-MgDirectoryOnPremiseSynchronization","POST","/directory/onPremisesSynchronization","matched","New-MgDirectoryOnPremiseSynchronization" +"Cmdlets","NewMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration.g.cs","v1.0","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","POST","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations","matched","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"Cmdlets","NewMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority.g.cs","v1.0","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","POST","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities","matched","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"Cmdlets","NewMgDirectoryRecoveryJob.g.cs","v1.0","New-MgDirectoryRecoveryJob","POST","/directory/recovery/jobs","matched","New-MgDirectoryRecoveryJob" +"Cmdlets","NewMgDirectoryRecoverySnapshot.g.cs","v1.0","New-MgDirectoryRecoverySnapshot","POST","/directory/recovery/snapshots","matched","New-MgDirectoryRecoverySnapshot" +"Cmdlets","NewMgDirectoryRole.g.cs","v1.0","New-MgDirectoryRole","POST","/directoryRoles","matched","New-MgDirectoryRole" +"Cmdlets","NewMgDirectoryRoleMemberByRef.g.cs","v1.0","New-MgDirectoryRoleMemberByRef","POST","/directoryRoles/{param}/members/$ref","matched","New-MgDirectoryRoleMemberByRef" +"Cmdlets","NewMgDirectoryRoleScopedMember.g.cs","v1.0","New-MgDirectoryRoleScopedMember","POST","/directoryRoles/{param}/scopedMembers","matched","New-MgDirectoryRoleScopedMember" +"Cmdlets","NewMgDirectoryRoleTemplate.g.cs","v1.0","New-MgDirectoryRoleTemplate","POST","/directoryRoleTemplates","matched","New-MgDirectoryRoleTemplate" +"Cmdlets","NewMgDirectorySubscription.g.cs","v1.0","New-MgDirectorySubscription","POST","/directory/subscriptions","matched","New-MgDirectorySubscription" +"Cmdlets","NewMgDomain.g.cs","v1.0","New-MgDomain","POST","/domains","matched","New-MgDomain" +"Cmdlets","NewMgDomainFederationConfiguration.g.cs","v1.0","New-MgDomainFederationConfiguration","POST","/domains/{param}/federationConfiguration","matched","New-MgDomainFederationConfiguration" +"Cmdlets","NewMgDomainServiceConfigurationRecord.g.cs","v1.0","New-MgDomainServiceConfigurationRecord","POST","/domains/{param}/serviceConfigurationRecords","matched","New-MgDomainServiceConfigurationRecord" +"Cmdlets","NewMgDomainVerificationDnsRecord.g.cs","v1.0","New-MgDomainVerificationDnsRecord","POST","/domains/{param}/verificationDnsRecords","matched","New-MgDomainVerificationDnsRecord" +"Cmdlets","NewMgOrganization.g.cs","v1.0","New-MgOrganization","POST","/organization","matched","New-MgOrganization" +"Cmdlets","NewMgOrganizationBrandingLocalization.g.cs","v1.0","New-MgOrganizationBrandingLocalization","POST","/organization/{param}/branding/localizations","matched","New-MgOrganizationBrandingLocalization" +"Cmdlets","NewMgOrganizationExtension.g.cs","v1.0","New-MgOrganizationExtension","POST","/organization/{param}/extensions","matched","New-MgOrganizationExtension" +"Cmdlets","NewMgSubscribedSku.g.cs","v1.0","New-MgSubscribedSku","POST","/subscribedSkus","matched","New-MgSubscribedSku" +"Cmdlets","NewMgUserScopedRoleMemberOf.g.cs","v1.0","New-MgUserScopedRoleMemberOf","POST","/users/{param}/scopedRoleMemberOf","matched","New-MgUserScopedRoleMemberOf" +"Cmdlets","RemoveMgAdminPeopleItemInsight.g.cs","v1.0","Remove-MgAdminPeopleItemInsight","DELETE","/admin/people/itemInsights","matched","Remove-MgAdminPeopleItemInsight" +"Cmdlets","RemoveMgAdminPeopleProfileCardProperty.g.cs","v1.0","Remove-MgAdminPeopleProfileCardProperty","DELETE","/admin/people/profileCardProperties/{param}","matched","Remove-MgAdminPeopleProfileCardProperty" +"Cmdlets","RemoveMgAdminPeopleProfilePropertySetting.g.cs","v1.0","Remove-MgAdminPeopleProfilePropertySetting","DELETE","/admin/people/profilePropertySettings/{param}","matched","Remove-MgAdminPeopleProfilePropertySetting" +"Cmdlets","RemoveMgAdminPeopleProfileSource.g.cs","v1.0","Remove-MgAdminPeopleProfileSource","DELETE","/admin/people/profileSources/{param}","matched","Remove-MgAdminPeopleProfileSource" +"Cmdlets","RemoveMgContact.g.cs","v1.0","Remove-MgContact","DELETE","/contacts/{param}","matched","Remove-MgContact" +"Cmdlets","RemoveMgContactOnPremiseSyncBehavior.g.cs","v1.0","Remove-MgContactOnPremiseSyncBehavior","DELETE","/contacts/{param}/onPremisesSyncBehavior","matched","Remove-MgContactOnPremiseSyncBehavior" +"Cmdlets","RemoveMgContract.g.cs","v1.0","Remove-MgContract","DELETE","/contracts/{param}","matched","Remove-MgContract" +"Cmdlets","RemoveMgDevice.g.cs","v1.0","Remove-MgDevice","DELETE","/devices/{param}","matched","Remove-MgDevice" +"Cmdlets","RemoveMgDeviceExtension.g.cs","v1.0","Remove-MgDeviceExtension","DELETE","/devices/{param}/extensions/{param}","matched","Remove-MgDeviceExtension" +"Cmdlets","RemoveMgDeviceRegisteredOwnerByRef.g.cs","v1.0","Remove-MgDeviceRegisteredOwnerByRef","DELETE","/devices/{param}/registeredOwners/{param}/$ref","mismatch","Remove-MgDeviceRegisteredOwnerDirectoryObjectByRef" +"Cmdlets","RemoveMgDeviceRegisteredUserByRef.g.cs","v1.0","Remove-MgDeviceRegisteredUserByRef","DELETE","/devices/{param}/registeredUsers/{param}/$ref","mismatch","Remove-MgDeviceRegisteredUserDirectoryObjectByRef" +"Cmdlets","RemoveMgDirectoryAdministrativeUnit.g.cs","v1.0","Remove-MgDirectoryAdministrativeUnit","DELETE","/directory/administrativeUnits/{param}","matched","Remove-MgDirectoryAdministrativeUnit" +"Cmdlets","RemoveMgDirectoryAdministrativeUnitExtension.g.cs","v1.0","Remove-MgDirectoryAdministrativeUnitExtension","DELETE","/directory/administrativeUnits/{param}/extensions/{param}","matched","Remove-MgDirectoryAdministrativeUnitExtension" +"Cmdlets","RemoveMgDirectoryAdministrativeUnitMemberByRef.g.cs","v1.0","Remove-MgDirectoryAdministrativeUnitMemberByRef","DELETE","/directory/administrativeUnits/{param}/members/{param}/$ref","mismatch","Remove-MgDirectoryAdministrativeUnitMemberDirectoryObjectByRef" +"Cmdlets","RemoveMgDirectoryAdministrativeUnitScopedRoleMember.g.cs","v1.0","Remove-MgDirectoryAdministrativeUnitScopedRoleMember","DELETE","/directory/administrativeUnits/{param}/scopedRoleMembers/{param}","matched","Remove-MgDirectoryAdministrativeUnitScopedRoleMember" +"Cmdlets","RemoveMgDirectoryAttributeSet.g.cs","v1.0","Remove-MgDirectoryAttributeSet","DELETE","/directory/attributeSets/{param}","matched","Remove-MgDirectoryAttributeSet" +"Cmdlets","RemoveMgDirectoryCustomSecurityAttributeDefinition.g.cs","v1.0","Remove-MgDirectoryCustomSecurityAttributeDefinition","DELETE","/directory/customSecurityAttributeDefinitions/{param}","matched","Remove-MgDirectoryCustomSecurityAttributeDefinition" +"Cmdlets","RemoveMgDirectoryCustomSecurityAttributeDefinitionAllowedValue.g.cs","v1.0","Remove-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","DELETE","/directory/customSecurityAttributeDefinitions/{param}/allowedValues/{param}","matched","Remove-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"Cmdlets","RemoveMgDirectoryDeletedItem.g.cs","v1.0","Remove-MgDirectoryDeletedItem","DELETE","/directory/deletedItems/{param}","matched","Remove-MgDirectoryDeletedItem" +"Cmdlets","RemoveMgDirectoryDeviceLocalCredential.g.cs","v1.0","Remove-MgDirectoryDeviceLocalCredential","DELETE","/directory/deviceLocalCredentials/{param}","matched","Remove-MgDirectoryDeviceLocalCredential" +"Cmdlets","RemoveMgDirectoryFederationConfiguration.g.cs","v1.0","Remove-MgDirectoryFederationConfiguration","DELETE","/directory/federationConfigurations/{param}","matched","Remove-MgDirectoryFederationConfiguration" +"Cmdlets","RemoveMgDirectoryOnPremiseSynchronization.g.cs","v1.0","Remove-MgDirectoryOnPremiseSynchronization","DELETE","/directory/onPremisesSynchronization/{param}","matched","Remove-MgDirectoryOnPremiseSynchronization" +"Cmdlets","RemoveMgDirectoryPublicKeyInfrastructure.g.cs","v1.0","Remove-MgDirectoryPublicKeyInfrastructure","DELETE","/directory/publicKeyInfrastructure","matched","Remove-MgDirectoryPublicKeyInfrastructure" +"Cmdlets","RemoveMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration.g.cs","v1.0","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","DELETE","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}","matched","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"Cmdlets","RemoveMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority.g.cs","v1.0","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","DELETE","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/{param}","matched","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"Cmdlets","RemoveMgDirectoryRecovery.g.cs","v1.0","Remove-MgDirectoryRecovery","DELETE","/directory/recovery","matched","Remove-MgDirectoryRecovery" +"Cmdlets","RemoveMgDirectoryRecoveryJob.g.cs","v1.0","Remove-MgDirectoryRecoveryJob","DELETE","/directory/recovery/jobs/{param}","matched","Remove-MgDirectoryRecoveryJob" +"Cmdlets","RemoveMgDirectoryRecoverySnapshot.g.cs","v1.0","Remove-MgDirectoryRecoverySnapshot","DELETE","/directory/recovery/snapshots/{param}","matched","Remove-MgDirectoryRecoverySnapshot" +"Cmdlets","RemoveMgDirectoryRole.g.cs","v1.0","Remove-MgDirectoryRole","DELETE","/directoryRoles/{param}","matched","Remove-MgDirectoryRole" +"Cmdlets","RemoveMgDirectoryRoleMemberByRef.g.cs","v1.0","Remove-MgDirectoryRoleMemberByRef","DELETE","/directoryRoles/{param}/members/{param}/$ref","mismatch","Remove-MgDirectoryRoleMemberDirectoryObjectByRef" +"Cmdlets","RemoveMgDirectoryRoleScopedMember.g.cs","v1.0","Remove-MgDirectoryRoleScopedMember","DELETE","/directoryRoles/{param}/scopedMembers/{param}","matched","Remove-MgDirectoryRoleScopedMember" +"Cmdlets","RemoveMgDirectoryRoleTemplate.g.cs","v1.0","Remove-MgDirectoryRoleTemplate","DELETE","/directoryRoleTemplates/{param}","matched","Remove-MgDirectoryRoleTemplate" +"Cmdlets","RemoveMgDirectorySubscription.g.cs","v1.0","Remove-MgDirectorySubscription","DELETE","/directory/subscriptions/{param}","matched","Remove-MgDirectorySubscription" +"Cmdlets","RemoveMgDomain.g.cs","v1.0","Remove-MgDomain","DELETE","/domains/{param}","matched","Remove-MgDomain" +"Cmdlets","RemoveMgDomainFederationConfiguration.g.cs","v1.0","Remove-MgDomainFederationConfiguration","DELETE","/domains/{param}/federationConfiguration/{param}","matched","Remove-MgDomainFederationConfiguration" +"Cmdlets","RemoveMgDomainServiceConfigurationRecord.g.cs","v1.0","Remove-MgDomainServiceConfigurationRecord","DELETE","/domains/{param}/serviceConfigurationRecords/{param}","matched","Remove-MgDomainServiceConfigurationRecord" +"Cmdlets","RemoveMgDomainVerificationDnsRecord.g.cs","v1.0","Remove-MgDomainVerificationDnsRecord","DELETE","/domains/{param}/verificationDnsRecords/{param}","matched","Remove-MgDomainVerificationDnsRecord" +"Cmdlets","RemoveMgOrganization.g.cs","v1.0","Remove-MgOrganization","DELETE","/organization/{param}","matched","Remove-MgOrganization" +"Cmdlets","RemoveMgOrganizationBranding.g.cs","v1.0","Remove-MgOrganizationBranding","DELETE","/organization/{param}/branding","matched","Remove-MgOrganizationBranding" +"Cmdlets","RemoveMgOrganizationBrandingBackgroundImage.g.cs","v1.0","Remove-MgOrganizationBrandingBackgroundImage","DELETE","/organization/{param}/branding/backgroundImage","matched","Remove-MgOrganizationBrandingBackgroundImage" +"Cmdlets","RemoveMgOrganizationBrandingBannerLogo.g.cs","v1.0","Remove-MgOrganizationBrandingBannerLogo","DELETE","/organization/{param}/branding/bannerLogo","matched","Remove-MgOrganizationBrandingBannerLogo" +"Cmdlets","RemoveMgOrganizationBrandingCustomCSS.g.cs","v1.0","Remove-MgOrganizationBrandingCustomCSS","DELETE","/organization/{param}/branding/customCSS","mismatch","Remove-MgOrganizationBrandingCustomCss" +"Cmdlets","RemoveMgOrganizationBrandingFavicon.g.cs","v1.0","Remove-MgOrganizationBrandingFavicon","DELETE","/organization/{param}/branding/favicon","matched","Remove-MgOrganizationBrandingFavicon" +"Cmdlets","RemoveMgOrganizationBrandingHeaderLogo.g.cs","v1.0","Remove-MgOrganizationBrandingHeaderLogo","DELETE","/organization/{param}/branding/headerLogo","matched","Remove-MgOrganizationBrandingHeaderLogo" +"Cmdlets","RemoveMgOrganizationBrandingLocalization.g.cs","v1.0","Remove-MgOrganizationBrandingLocalization","DELETE","/organization/{param}/branding/localizations/{param}","matched","Remove-MgOrganizationBrandingLocalization" +"Cmdlets","RemoveMgOrganizationBrandingLocalizationBackgroundImage.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationBackgroundImage","DELETE","/organization/{param}/branding/localizations/{param}/backgroundImage","matched","Remove-MgOrganizationBrandingLocalizationBackgroundImage" +"Cmdlets","RemoveMgOrganizationBrandingLocalizationBannerLogo.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationBannerLogo","DELETE","/organization/{param}/branding/localizations/{param}/bannerLogo","matched","Remove-MgOrganizationBrandingLocalizationBannerLogo" +"Cmdlets","RemoveMgOrganizationBrandingLocalizationCustomCSS.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationCustomCSS","DELETE","/organization/{param}/branding/localizations/{param}/customCSS","mismatch","Remove-MgOrganizationBrandingLocalizationCustomCss" +"Cmdlets","RemoveMgOrganizationBrandingLocalizationFavicon.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationFavicon","DELETE","/organization/{param}/branding/localizations/{param}/favicon","matched","Remove-MgOrganizationBrandingLocalizationFavicon" +"Cmdlets","RemoveMgOrganizationBrandingLocalizationHeaderLogo.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationHeaderLogo","DELETE","/organization/{param}/branding/localizations/{param}/headerLogo","matched","Remove-MgOrganizationBrandingLocalizationHeaderLogo" +"Cmdlets","RemoveMgOrganizationBrandingLocalizationSquareLogo.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationSquareLogo","DELETE","/organization/{param}/branding/localizations/{param}/squareLogo","matched","Remove-MgOrganizationBrandingLocalizationSquareLogo" +"Cmdlets","RemoveMgOrganizationBrandingLocalizationSquareLogoDark.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationSquareLogoDark","DELETE","/organization/{param}/branding/localizations/{param}/squareLogoDark","matched","Remove-MgOrganizationBrandingLocalizationSquareLogoDark" +"Cmdlets","RemoveMgOrganizationBrandingSquareLogo.g.cs","v1.0","Remove-MgOrganizationBrandingSquareLogo","DELETE","/organization/{param}/branding/squareLogo","matched","Remove-MgOrganizationBrandingSquareLogo" +"Cmdlets","RemoveMgOrganizationBrandingSquareLogoDark.g.cs","v1.0","Remove-MgOrganizationBrandingSquareLogoDark","DELETE","/organization/{param}/branding/squareLogoDark","matched","Remove-MgOrganizationBrandingSquareLogoDark" +"Cmdlets","RemoveMgOrganizationExtension.g.cs","v1.0","Remove-MgOrganizationExtension","DELETE","/organization/{param}/extensions/{param}","matched","Remove-MgOrganizationExtension" +"Cmdlets","RemoveMgSubscribedSku.g.cs","v1.0","Remove-MgSubscribedSku","DELETE","/subscribedSkus/{param}","matched","Remove-MgSubscribedSku" +"Cmdlets","RemoveMgUserScopedRoleMemberOf.g.cs","v1.0","Remove-MgUserScopedRoleMemberOf","DELETE","/users/{param}/scopedRoleMemberOf/{param}","matched","Remove-MgUserScopedRoleMemberOf" +"Cmdlets","UpdateMgAdminPeopleItemInsight.g.cs","v1.0","Update-MgAdminPeopleItemInsight","PATCH","/admin/people/itemInsights","matched","Update-MgAdminPeopleItemInsight" +"Cmdlets","UpdateMgAdminPeopleProfileCardProperty.g.cs","v1.0","Update-MgAdminPeopleProfileCardProperty","PATCH","/admin/people/profileCardProperties/{param}","matched","Update-MgAdminPeopleProfileCardProperty" +"Cmdlets","UpdateMgAdminPeopleProfilePropertySetting.g.cs","v1.0","Update-MgAdminPeopleProfilePropertySetting","PATCH","/admin/people/profilePropertySettings/{param}","matched","Update-MgAdminPeopleProfilePropertySetting" +"Cmdlets","UpdateMgAdminPeopleProfileSource.g.cs","v1.0","Update-MgAdminPeopleProfileSource","PATCH","/admin/people/profileSources/{param}","matched","Update-MgAdminPeopleProfileSource" +"Cmdlets","UpdateMgAdminPeoplePronoun.g.cs","v1.0","Update-MgAdminPeoplePronoun","PATCH","/admin/people/pronouns","matched","Update-MgAdminPeoplePronoun" +"Cmdlets","UpdateMgContact.g.cs","v1.0","Update-MgContact","PATCH","/contacts/{param}","matched","Update-MgContact" +"Cmdlets","UpdateMgContactOnPremiseSyncBehavior.g.cs","v1.0","Update-MgContactOnPremiseSyncBehavior","PATCH","/contacts/{param}/onPremisesSyncBehavior","matched","Update-MgContactOnPremiseSyncBehavior" +"Cmdlets","UpdateMgContract.g.cs","v1.0","Update-MgContract","PATCH","/contracts/{param}","matched","Update-MgContract" +"Cmdlets","UpdateMgDevice.g.cs","v1.0","Update-MgDevice","PATCH","/devices/{param}","matched","Update-MgDevice" +"Cmdlets","UpdateMgDeviceExtension.g.cs","v1.0","Update-MgDeviceExtension","PATCH","/devices/{param}/extensions/{param}","matched","Update-MgDeviceExtension" +"Cmdlets","UpdateMgDirectory.g.cs","v1.0","Update-MgDirectory","PATCH","/directory","matched","Update-MgDirectory" +"Cmdlets","UpdateMgDirectoryAdministrativeUnit.g.cs","v1.0","Update-MgDirectoryAdministrativeUnit","PATCH","/directory/administrativeUnits/{param}","matched","Update-MgDirectoryAdministrativeUnit" +"Cmdlets","UpdateMgDirectoryAdministrativeUnitExtension.g.cs","v1.0","Update-MgDirectoryAdministrativeUnitExtension","PATCH","/directory/administrativeUnits/{param}/extensions/{param}","matched","Update-MgDirectoryAdministrativeUnitExtension" +"Cmdlets","UpdateMgDirectoryAdministrativeUnitScopedRoleMember.g.cs","v1.0","Update-MgDirectoryAdministrativeUnitScopedRoleMember","PATCH","/directory/administrativeUnits/{param}/scopedRoleMembers/{param}","matched","Update-MgDirectoryAdministrativeUnitScopedRoleMember" +"Cmdlets","UpdateMgDirectoryAttributeSet.g.cs","v1.0","Update-MgDirectoryAttributeSet","PATCH","/directory/attributeSets/{param}","matched","Update-MgDirectoryAttributeSet" +"Cmdlets","UpdateMgDirectoryCustomSecurityAttributeDefinition.g.cs","v1.0","Update-MgDirectoryCustomSecurityAttributeDefinition","PATCH","/directory/customSecurityAttributeDefinitions/{param}","matched","Update-MgDirectoryCustomSecurityAttributeDefinition" +"Cmdlets","UpdateMgDirectoryCustomSecurityAttributeDefinitionAllowedValue.g.cs","v1.0","Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","PATCH","/directory/customSecurityAttributeDefinitions/{param}/allowedValues/{param}","matched","Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"Cmdlets","UpdateMgDirectoryDeviceLocalCredential.g.cs","v1.0","Update-MgDirectoryDeviceLocalCredential","PATCH","/directory/deviceLocalCredentials/{param}","matched","Update-MgDirectoryDeviceLocalCredential" +"Cmdlets","UpdateMgDirectoryFederationConfiguration.g.cs","v1.0","Update-MgDirectoryFederationConfiguration","PATCH","/directory/federationConfigurations/{param}","matched","Update-MgDirectoryFederationConfiguration" +"Cmdlets","UpdateMgDirectoryOnPremiseSynchronization.g.cs","v1.0","Update-MgDirectoryOnPremiseSynchronization","PATCH","/directory/onPremisesSynchronization/{param}","matched","Update-MgDirectoryOnPremiseSynchronization" +"Cmdlets","UpdateMgDirectoryPublicKeyInfrastructure.g.cs","v1.0","Update-MgDirectoryPublicKeyInfrastructure","PATCH","/directory/publicKeyInfrastructure","matched","Update-MgDirectoryPublicKeyInfrastructure" +"Cmdlets","UpdateMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration.g.cs","v1.0","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","PATCH","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}","matched","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"Cmdlets","UpdateMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority.g.cs","v1.0","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","PATCH","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/{param}","matched","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"Cmdlets","UpdateMgDirectoryRecovery.g.cs","v1.0","Update-MgDirectoryRecovery","PATCH","/directory/recovery","matched","Update-MgDirectoryRecovery" +"Cmdlets","UpdateMgDirectoryRecoveryJob.g.cs","v1.0","Update-MgDirectoryRecoveryJob","PATCH","/directory/recovery/jobs/{param}","matched","Update-MgDirectoryRecoveryJob" +"Cmdlets","UpdateMgDirectoryRecoverySnapshot.g.cs","v1.0","Update-MgDirectoryRecoverySnapshot","PATCH","/directory/recovery/snapshots/{param}","matched","Update-MgDirectoryRecoverySnapshot" +"Cmdlets","UpdateMgDirectoryRole.g.cs","v1.0","Update-MgDirectoryRole","PATCH","/directoryRoles/{param}","matched","Update-MgDirectoryRole" +"Cmdlets","UpdateMgDirectoryRoleScopedMember.g.cs","v1.0","Update-MgDirectoryRoleScopedMember","PATCH","/directoryRoles/{param}/scopedMembers/{param}","matched","Update-MgDirectoryRoleScopedMember" +"Cmdlets","UpdateMgDirectoryRoleTemplate.g.cs","v1.0","Update-MgDirectoryRoleTemplate","PATCH","/directoryRoleTemplates/{param}","matched","Update-MgDirectoryRoleTemplate" +"Cmdlets","UpdateMgDirectorySubscription.g.cs","v1.0","Update-MgDirectorySubscription","PATCH","/directory/subscriptions/{param}","matched","Update-MgDirectorySubscription" +"Cmdlets","UpdateMgDomain.g.cs","v1.0","Update-MgDomain","PATCH","/domains/{param}","matched","Update-MgDomain" +"Cmdlets","UpdateMgDomainFederationConfiguration.g.cs","v1.0","Update-MgDomainFederationConfiguration","PATCH","/domains/{param}/federationConfiguration/{param}","matched","Update-MgDomainFederationConfiguration" +"Cmdlets","UpdateMgDomainServiceConfigurationRecord.g.cs","v1.0","Update-MgDomainServiceConfigurationRecord","PATCH","/domains/{param}/serviceConfigurationRecords/{param}","matched","Update-MgDomainServiceConfigurationRecord" +"Cmdlets","UpdateMgDomainVerificationDnsRecord.g.cs","v1.0","Update-MgDomainVerificationDnsRecord","PATCH","/domains/{param}/verificationDnsRecords/{param}","matched","Update-MgDomainVerificationDnsRecord" +"Cmdlets","UpdateMgOrganization.g.cs","v1.0","Update-MgOrganization","PATCH","/organization/{param}","matched","Update-MgOrganization" +"Cmdlets","UpdateMgOrganizationBranding.g.cs","v1.0","Update-MgOrganizationBranding","PATCH","/organization/{param}/branding","matched","Update-MgOrganizationBranding" +"Cmdlets","UpdateMgOrganizationBrandingLocalization.g.cs","v1.0","Update-MgOrganizationBrandingLocalization","PATCH","/organization/{param}/branding/localizations/{param}","matched","Update-MgOrganizationBrandingLocalization" +"Cmdlets","UpdateMgOrganizationExtension.g.cs","v1.0","Update-MgOrganizationExtension","PATCH","/organization/{param}/extensions/{param}","matched","Update-MgOrganizationExtension" +"Cmdlets","UpdateMgSubscribedSku.g.cs","v1.0","Update-MgSubscribedSku","PATCH","/subscribedSkus/{param}","matched","Update-MgSubscribedSku" +"Cmdlets","UpdateMgUserScopedRoleMemberOf.g.cs","v1.0","Update-MgUserScopedRoleMemberOf","PATCH","/users/{param}/scopedRoleMemberOf/{param}","matched","Update-MgUserScopedRoleMemberOf" +"Cmdlets","GetMgAgreement_Get.g.cs","v1.0","Get-MgAgreement","GET","/agreements/{param}","matched","Get-MgAgreement" +"Cmdlets","GetMgAgreement_List.g.cs","v1.0","Get-MgAgreement","GET","/agreements","matched","Get-MgAgreement" +"Cmdlets","GetMgAgreement.g.cs","v1.0","Get-MgAgreement","","","dispatcher","" +"Cmdlets","GetMgAgreementAcceptance_Get.g.cs","v1.0","Get-MgAgreementAcceptance","GET","/agreements/{param}/acceptances/{param}","matched","Get-MgAgreementAcceptance" +"Cmdlets","GetMgAgreementAcceptance_List.g.cs","v1.0","Get-MgAgreementAcceptance","GET","/agreements/{param}/acceptances","matched","Get-MgAgreementAcceptance" +"Cmdlets","GetMgAgreementAcceptance.g.cs","v1.0","Get-MgAgreementAcceptance","","","dispatcher","" +"Cmdlets","GetMgAgreementAcceptanceCount.g.cs","v1.0","Get-MgAgreementAcceptanceCount","GET","/agreements/{param}/acceptances/$count","matched","Get-MgAgreementAcceptanceCount" +"Cmdlets","GetMgAgreementFile.g.cs","v1.0","Get-MgAgreementFile","GET","/agreements/{param}/files","matched","Get-MgAgreementFile" +"Cmdlets","GetMgAgreementFileCount.g.cs","v1.0","Get-MgAgreementFileCount","GET","/agreements/{param}/files/$count","matched","Get-MgAgreementFileCount" +"Cmdlets","GetMgAgreementFileLocalization_Get.g.cs","v1.0","Get-MgAgreementFileLocalization","GET","/agreements/{param}/file/localizations/{param}","matched","Get-MgAgreementFileLocalization" +"Cmdlets","GetMgAgreementFileLocalization_List.g.cs","v1.0","Get-MgAgreementFileLocalization","GET","/agreements/{param}/file/localizations","matched","Get-MgAgreementFileLocalization" +"Cmdlets","GetMgAgreementFileLocalization.g.cs","v1.0","Get-MgAgreementFileLocalization","","","dispatcher","" +"Cmdlets","GetMgAgreementFileLocalizationCount.g.cs","v1.0","Get-MgAgreementFileLocalizationCount","GET","/agreements/{param}/file/localizations/$count","matched","Get-MgAgreementFileLocalizationCount" +"Cmdlets","GetMgAgreementFileLocalizationVersion_Get.g.cs","v1.0","Get-MgAgreementFileLocalizationVersion","GET","/agreements/{param}/file/localizations/{param}/versions/{param}","matched","Get-MgAgreementFileLocalizationVersion" +"Cmdlets","GetMgAgreementFileLocalizationVersion_List.g.cs","v1.0","Get-MgAgreementFileLocalizationVersion","GET","/agreements/{param}/file/localizations/{param}/versions","matched","Get-MgAgreementFileLocalizationVersion" +"Cmdlets","GetMgAgreementFileLocalizationVersion.g.cs","v1.0","Get-MgAgreementFileLocalizationVersion","","","dispatcher","" +"Cmdlets","GetMgAgreementFileLocalizationVersionCount.g.cs","v1.0","Get-MgAgreementFileLocalizationVersionCount","GET","/agreements/{param}/file/localizations/{param}/versions/$count","matched","Get-MgAgreementFileLocalizationVersionCount" +"Cmdlets","GetMgAgreementFileVersion_Get.g.cs","v1.0","Get-MgAgreementFileVersion","GET","/agreements/{param}/files/{param}/versions/{param}","matched","Get-MgAgreementFileVersion" +"Cmdlets","GetMgAgreementFileVersion_List.g.cs","v1.0","Get-MgAgreementFileVersion","GET","/agreements/{param}/files/{param}/versions","matched","Get-MgAgreementFileVersion" +"Cmdlets","GetMgAgreementFileVersion.g.cs","v1.0","Get-MgAgreementFileVersion","","","dispatcher","" +"Cmdlets","GetMgAgreementFileVersionCount.g.cs","v1.0","Get-MgAgreementFileVersionCount","GET","/agreements/{param}/files/{param}/versions/$count","matched","Get-MgAgreementFileVersionCount" +"Cmdlets","GetMgIdentityGovernance.g.cs","v1.0","Get-MgIdentityGovernance","GET","/identityGovernance","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceAccessReview.g.cs","v1.0","Get-MgIdentityGovernanceAccessReview","GET","/identityGovernance/accessReviews","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinition_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinition","GET","/identityGovernance/accessReviews/definitions/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinition" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinition_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinition","GET","/identityGovernance/accessReviews/definitions","matched","Get-MgIdentityGovernanceAccessReviewDefinition" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinition.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinition","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionCount","GET","/identityGovernance/accessReviews/definitions/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionCount" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionFilterByCurrentUserWithOn","GET","/identityGovernance/accessReviews/definitions/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionByCurrentUser" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstance_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstance","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstance" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstance_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstance","GET","/identityGovernance/accessReviews/definitions/{param}/instances","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstance" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstance.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstance","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceCount" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecision_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecision_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecision.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionFilterByCurrentUserWithOn","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceDecisionByCurrentUser" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceFilterByCurrentUserWithOn","GET","/identityGovernance/accessReviews/definitions/{param}/instances/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceByCurrentUser" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStage_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStage_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStage.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageCount" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionFilterByCurrentUserWithOn","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionByCurrentUser" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsightCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsightCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageFilterByCurrentUserWithOn","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceStageByCurrentUser" +"Cmdlets","GetMgIdentityGovernanceAccessReviewHistoryDefinition_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinition","GET","/identityGovernance/accessReviews/historyDefinitions/{param}","matched","Get-MgIdentityGovernanceAccessReviewHistoryDefinition" +"Cmdlets","GetMgIdentityGovernanceAccessReviewHistoryDefinition_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinition","GET","/identityGovernance/accessReviews/historyDefinitions","matched","Get-MgIdentityGovernanceAccessReviewHistoryDefinition" +"Cmdlets","GetMgIdentityGovernanceAccessReviewHistoryDefinition.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinition","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAccessReviewHistoryDefinitionCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionCount","GET","/identityGovernance/accessReviews/historyDefinitions/$count","matched","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionCount" +"Cmdlets","GetMgIdentityGovernanceAccessReviewHistoryDefinitionInstance_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","GET","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/{param}","matched","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"Cmdlets","GetMgIdentityGovernanceAccessReviewHistoryDefinitionInstance_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","GET","/identityGovernance/accessReviews/historyDefinitions/{param}/instances","matched","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"Cmdlets","GetMgIdentityGovernanceAccessReviewHistoryDefinitionInstance.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount","GET","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/$count","matched","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount" +"Cmdlets","GetMgIdentityGovernanceAppConsent.g.cs","v1.0","Get-MgIdentityGovernanceAppConsent","GET","/identityGovernance/appConsent","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequest_Get.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequest","GET","/identityGovernance/appConsent/appConsentRequests/{param}","mismatch","Get-MgIdentityGovernanceAppConsentRequest" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequest_List.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequest","GET","/identityGovernance/appConsent/appConsentRequests","mismatch","Get-MgIdentityGovernanceAppConsentRequest" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequest.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequest","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequestCount.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestCount","GET","/identityGovernance/appConsent/appConsentRequests/$count","mismatch","Get-MgIdentityGovernanceAppConsentRequestCount" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestFilterByCurrentUserWithOn","GET","/identityGovernance/appConsent/appConsentRequests/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernanceAppConsentRequestByCurrentUser" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest_Get.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest_List.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage_Get.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages/{param}","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage_List.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStageCount.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStageCount","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages/$count","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStageCount" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestCount.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestCount","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/$count","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestCount" +"Cmdlets","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestFilterByCurrentUserWithOn","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernanceAppConsentRequestUserConsentRequestByCurrentUser" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagement.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagement","GET","/identityGovernance/entitlementManagement","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackage_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackage","GET","/identityGovernance/entitlementManagement/accessPackages/{param}","mismatch","Get-MgEntitlementManagementAccessPackage" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackage_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackage","GET","/identityGovernance/entitlementManagement/accessPackages","mismatch","Get-MgEntitlementManagementAccessPackage" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackage","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/accessPackagesIncompatibleWith/{param}","mismatch","Get-MgEntitlementManagementAccessPackageIncompatibleWith" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/accessPackagesIncompatibleWith","mismatch","Get-MgEntitlementManagementAccessPackageIncompatibleWith" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWithCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWithCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/accessPackagesIncompatibleWith/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalCount","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/$count","mismatch","Get-MgEntitlementManagementAccessPackageAssignmentApprovalCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalFilterByCurrentUserWithOn","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterEntitlementManagementAccessPackageAssignmentApprovalByCurrentUser" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages/{param}","mismatch","Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages","mismatch","Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStageCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStageCount","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages/$count","mismatch","Get-MgEntitlementManagementAccessPackageAssignmentApprovalStageCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}","mismatch","Get-MgEntitlementManagementAccessPackageAssignmentPolicy" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies","mismatch","Get-MgEntitlementManagementAccessPackageAssignmentPolicy" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyAccessPackage","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/accessPackage","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCatalog.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCatalog","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/catalog","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCustomExtension.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCustomExtension","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}/customExtension","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestionCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestionCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageCatalog.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageCatalog","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/catalog","mismatch","Get-MgEntitlementManagementAccessPackageCatalog" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageCount","GET","/identityGovernance/entitlementManagement/accessPackages/$count","mismatch","Get-MgEntitlementManagementAccessPackageCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageFilterByCurrentUserWithOn","GET","/identityGovernance/entitlementManagement/accessPackages/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterEntitlementManagementAccessPackageByCurrentUser" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackage","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages","mismatch","Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/$ref","mismatch","Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroup.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroup","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups","mismatch","Get-MgEntitlementManagementAccessPackageIncompatibleGroup" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/$ref","mismatch","Get-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningError","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningErrorCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/environment","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/environment","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScopeCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/environment","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRoleCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/environment","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageSuggestion_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","GET","/identityGovernance/entitlementManagement/accessPackageSuggestions/{param}","mismatch","Get-MgEntitlementManagementAccessPackageSuggestion" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageSuggestion_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","GET","/identityGovernance/entitlementManagement/accessPackageSuggestions","mismatch","Get-MgEntitlementManagementAccessPackageSuggestion" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageSuggestion.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageSuggestionAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionAccessPackage","GET","/identityGovernance/entitlementManagement/accessPackageSuggestions/{param}/accessPackage","mismatch","Get-MgEntitlementManagementAccessPackageSuggestionAccessPackage" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageSuggestionCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionCount","GET","/identityGovernance/entitlementManagement/accessPackageSuggestions/$count","mismatch","Get-MgEntitlementManagementAccessPackageSuggestionCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAccessPackageSuggestionFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionFilterByCurrentUserWithOn","GET","/identityGovernance/entitlementManagement/accessPackageSuggestions/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterEntitlementManagementAccessPackageSuggestionByCurrentUser" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignment_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignment","GET","/identityGovernance/entitlementManagement/assignments/{param}","mismatch","Get-MgEntitlementManagementAssignment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignment_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignment","GET","/identityGovernance/entitlementManagement/assignments","mismatch","Get-MgEntitlementManagementAssignment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignment","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentAccessPackage","GET","/identityGovernance/entitlementManagement/assignments/{param}/accessPackage","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccess.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccess","GET","/identityGovernance/entitlementManagement/assignments/additionalAccess","mismatch","Get-MgEntitlementManagementAssignmentAdditional" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccessWithAccessPackageIdWithIncompatibleAccessPackageId.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccessWithAccessPackageIdWithIncompatibleAccessPackageId","GET","/identityGovernance/entitlementManagement/assignments/additionalAccess(accessPackageId='{accessPackageId}',incompatibleAccessPackageId='{incompatibleAccessPackageId}')","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentCount","GET","/identityGovernance/entitlementManagement/assignments/$count","mismatch","Get-MgEntitlementManagementAssignmentCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentFilterByCurrentUserWithOn","GET","/identityGovernance/entitlementManagement/assignments/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterEntitlementManagementAssignmentByCurrentUser" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicy_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}","mismatch","Get-MgEntitlementManagementAssignmentPolicy" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicy_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","GET","/identityGovernance/entitlementManagement/assignmentPolicies","mismatch","Get-MgEntitlementManagementAssignmentPolicy" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicy.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyAccessPackage","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/accessPackage","mismatch","Get-MgEntitlementManagementAssignmentPolicyAccessPackage" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCatalog.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCatalog","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/catalog","mismatch","Get-MgEntitlementManagementAssignmentPolicyCatalog" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCount","GET","/identityGovernance/entitlementManagement/assignmentPolicies/$count","mismatch","Get-MgEntitlementManagementAssignmentPolicyCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/{param}","mismatch","Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings","mismatch","Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/$count","mismatch","Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/{param}/customExtension","mismatch","Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions/{param}","mismatch","Get-MgEntitlementManagementAssignmentPolicyQuestion" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions","mismatch","Get-MgEntitlementManagementAssignmentPolicyQuestion" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestionCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestionCount","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions/$count","mismatch","Get-MgEntitlementManagementAssignmentPolicyQuestionCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentRequest_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest","GET","/identityGovernance/entitlementManagement/assignmentRequests/{param}","mismatch","Get-MgEntitlementManagementAssignmentRequest" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentRequest_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest","GET","/identityGovernance/entitlementManagement/assignmentRequests","mismatch","Get-MgEntitlementManagementAssignmentRequest" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentRequest.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentRequestAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestAccessPackage","GET","/identityGovernance/entitlementManagement/assignmentRequests/{param}/accessPackage","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentRequestAssignment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestAssignment","GET","/identityGovernance/entitlementManagement/assignmentRequests/{param}/assignment","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentRequestCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestCount","GET","/identityGovernance/entitlementManagement/assignmentRequests/$count","mismatch","Get-MgEntitlementManagementAssignmentRequestCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestFilterByCurrentUserWithOn","GET","/identityGovernance/entitlementManagement/assignmentRequests/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterEntitlementManagementAssignmentRequestByCurrentUser" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentRequestor.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestor","GET","/identityGovernance/entitlementManagement/assignmentRequests/{param}/requestor","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAssignmentTarget.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentTarget","GET","/identityGovernance/entitlementManagement/assignments/{param}/target","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackage_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","GET","/identityGovernance/entitlementManagement/availableAccessPackages/{param}","mismatch","Get-MgEntitlementManagementAvailableAccessPackage" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackage_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","GET","/identityGovernance/entitlementManagement/availableAccessPackages","mismatch","Get-MgEntitlementManagementAvailableAccessPackage" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackageCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageCount","GET","/identityGovernance/entitlementManagement/availableAccessPackages/$count","mismatch","Get-MgEntitlementManagementAvailableAccessPackageCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope","GET","/identityGovernance/entitlementManagement/availableAccessPackages/{param}/resourceRoleScopes/{param}","mismatch","Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope","GET","/identityGovernance/entitlementManagement/availableAccessPackages/{param}/resourceRoleScopes","mismatch","Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScopeCount","GET","/identityGovernance/entitlementManagement/availableAccessPackages/{param}/resourceRoleScopes/$count","mismatch","Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalog_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalog","GET","/identityGovernance/entitlementManagement/catalogs/{param}","mismatch","Get-MgEntitlementManagementCatalog" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalog_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalog","GET","/identityGovernance/entitlementManagement/catalogs","mismatch","Get-MgEntitlementManagementCatalog" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalog.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalog","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogAccessPackage_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage","GET","/identityGovernance/entitlementManagement/catalogs/{param}/accessPackages/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogAccessPackage_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage","GET","/identityGovernance/entitlementManagement/catalogs/{param}/accessPackages","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogAccessPackageCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackageCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/accessPackages/$count","mismatch","Get-MgEntitlementManagementCatalogAccessPackageCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogCount","GET","/identityGovernance/entitlementManagement/catalogs/$count","mismatch","Get-MgEntitlementManagementCatalogCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","GET","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions/{param}","mismatch","Get-MgEntitlementManagementCatalogCustomWorkflowExtension" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","GET","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions","mismatch","Get-MgEntitlementManagementCatalogCustomWorkflowExtension" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtensionCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtensionCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions/$count","mismatch","Get-MgEntitlementManagementCatalogCustomWorkflowExtensionCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResource_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResource","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}","mismatch","Get-MgEntitlementManagementCatalogResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResource_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResource","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources","mismatch","Get-MgEntitlementManagementCatalogResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResource","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/$count","mismatch","Get-MgEntitlementManagementCatalogResourceCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceEnvironment","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/environment","mismatch","Get-MgEntitlementManagementCatalogResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles","mismatch","Get-MgEntitlementManagementCatalogResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/$count","mismatch","Get-MgEntitlementManagementCatalogResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRoleCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/$count","mismatch","Get-MgEntitlementManagementCatalogResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScopeCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementConnectedOrganization_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}","mismatch","Get-MgEntitlementManagementConnectedOrganization" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementConnectedOrganization_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization","GET","/identityGovernance/entitlementManagement/connectedOrganizations","mismatch","Get-MgEntitlementManagementConnectedOrganization" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementConnectedOrganization.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationCount","GET","/identityGovernance/entitlementManagement/connectedOrganizations/$count","mismatch","Get-MgEntitlementManagementConnectedOrganizationCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsor.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsor","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors","mismatch","Get-MgEntitlementManagementConnectedOrganizationExternalSponsor" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors/$ref","mismatch","Get-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorCount","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors/$count","mismatch","Get-MgEntitlementManagementConnectedOrganizationExternalSponsorCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsor.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsor","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors","mismatch","Get-MgEntitlementManagementConnectedOrganizationInternalSponsor" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors/$ref","mismatch","Get-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorCount","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors/$count","mismatch","Get-MgEntitlementManagementConnectedOrganizationInternalSponsorCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementControlConfiguration_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementControlConfiguration","GET","/identityGovernance/entitlementManagement/controlConfigurations/{param}","mismatch","Get-MgEntitlementManagementControlConfiguration" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementControlConfiguration_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementControlConfiguration","GET","/identityGovernance/entitlementManagement/controlConfigurations","mismatch","Get-MgEntitlementManagementControlConfiguration" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementControlConfiguration.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementControlConfiguration","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementControlConfigurationCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementControlConfigurationCount","GET","/identityGovernance/entitlementManagement/controlConfigurations/$count","mismatch","Get-MgEntitlementManagementControlConfigurationCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResource_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResource","GET","/identityGovernance/entitlementManagement/resources/{param}","mismatch","Get-MgEntitlementManagementResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResource_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResource","GET","/identityGovernance/entitlementManagement/resources","mismatch","Get-MgEntitlementManagementResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResource","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceCount","GET","/identityGovernance/entitlementManagement/resources/$count","mismatch","Get-MgEntitlementManagementResourceCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironment_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}","mismatch","Get-MgEntitlementManagementResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironment_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments","mismatch","Get-MgEntitlementManagementResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentCount","GET","/identityGovernance/entitlementManagement/resourceEnvironments/$count","mismatch","Get-MgEntitlementManagementResourceEnvironmentCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResource_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}","mismatch","Get-MgEntitlementManagementResourceEnvironmentResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResource_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources","mismatch","Get-MgEntitlementManagementResourceEnvironmentResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceCount","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/$count","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/environment","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/$count","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/$count","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequest_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequest","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}","mismatch","Get-MgEntitlementManagementResourceRequest" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequest_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequest","GET","/identityGovernance/entitlementManagement/resourceRequests","mismatch","Get-MgEntitlementManagementResourceRequest" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequest.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequest","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalog.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog","mismatch","Get-MgEntitlementManagementResourceRequestCatalog" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/accessPackages/{param}","mismatch","Get-MgEntitlementManagementResourceRequestCatalogAccessPackage" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/accessPackages","mismatch","Get-MgEntitlementManagementResourceRequestCatalogAccessPackage" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackageCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackageCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/accessPackages/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogAccessPackageCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions/{param}","mismatch","Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions","mismatch","Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/environment","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" +"Cmdlets","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" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCount","GET","/identityGovernance/entitlementManagement/resourceRequests/$count","mismatch","Get-MgEntitlementManagementResourceRequestCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRequestResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceRequestResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRequestResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRequestResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRole","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRole","GET","/identityGovernance/entitlementManagement/resources/{param}/roles","mismatch","Get-MgEntitlementManagementResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleCount","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/$count","mismatch","Get-MgEntitlementManagementResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResource","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRoleResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRoleResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRoleResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRoleResourceScopeResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRoleResourceScopeResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes","mismatch","Get-MgEntitlementManagementResourceRoleScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource","mismatch","Get-MgEntitlementManagementResourceRoleScopeResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/environment","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role","mismatch","Get-MgEntitlementManagementResourceRoleScopeRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/environment","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScope","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScope","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes","mismatch","Get-MgEntitlementManagementResourceScope" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeCount","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/$count","mismatch","Get-MgEntitlementManagementResourceScopeCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResource","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceScopeResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceScopeResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceScopeResourceRole" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceScopeResourceRoleCount" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceScopeResourceRoleResource" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceScopeResourceRoleResourceEnvironment" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementSetting.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementSetting","GET","/identityGovernance/entitlementManagement/settings","mismatch","Get-MgEntitlementManagementSetting" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementSubject_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementSubject","GET","/identityGovernance/entitlementManagement/subjects/{param}","mismatch","Get-MgEntitlementManagementSubject" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementSubject_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementSubject","GET","/identityGovernance/entitlementManagement/subjects","mismatch","Get-MgEntitlementManagementSubject" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementSubject.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementSubject","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementSubjectConnectedOrganization.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementSubjectConnectedOrganization","GET","/identityGovernance/entitlementManagement/subjects/{param}/connectedOrganization","mismatch","Get-MgEntitlementManagementSubjectConnectedOrganization" +"Cmdlets","GetMgIdentityGovernanceEntitlementManagementSubjectCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementSubjectCount","GET","/identityGovernance/entitlementManagement/subjects/$count","mismatch","Get-MgEntitlementManagementSubjectCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflow_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflow","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflow" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflow_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflow","GET","/identityGovernance/lifecycleWorkflows/workflows","matched","Get-MgIdentityGovernanceLifecycleWorkflow" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflow.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflow","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/administrationScopeTargets/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/administrationScopeTargets","matched","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowAdministrationScopeTargetCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTargetCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/administrationScopeTargets/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTargetCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCount","GET","/identityGovernance/lifecycleWorkflows/workflows/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCreatedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCreatedBy","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowCreatedBy" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtension_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtension_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtension.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItem.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItem","GET","/identityGovernance/lifecycleWorkflows/deletedItems","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItem" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/administrationScopeTargets/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/administrationScopeTargets","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTargetCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTargetCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/administrationScopeTargets/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/executionScope/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/executionScope","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScopeCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/executionScope/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewScope/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewScope","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScopeCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewScope/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRunCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunSummaryWithStartDateTimeWithEndDateTime","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/summary(startDateTime={startDateTime},endDateTime={endDateTime})","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRunCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/summary(startDateTime={startDateTime},endDateTime={endDateTime})","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/task","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskDefinition.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskDefinition","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskDefinition","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRunCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTargetCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTargetCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedBy","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedBy","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowExecutionScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/executionScope/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowExecutionScope_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/executionScope","matched","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowExecutionScope.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowExecutionScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScopeCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/executionScope/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScopeCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowInsight.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowInsight","GET","/identityGovernance/lifecycleWorkflows/insights","matched","Get-MgIdentityGovernanceLifecycleWorkflowInsight" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowInsightTopTasksProcessedSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowInsightTopTasksProcessedSummaryWithStartDateTimeWithEndDateTime","GET","/identityGovernance/lifecycleWorkflows/insights/topTasksProcessedSummary(startDateTime={startDateTime},endDateTime={endDateTime})","mismatch","Invoke-MgTopIdentityGovernanceLifecycleWorkflowInsightTaskProcessedSummary" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowInsightTopWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowInsightTopWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime","GET","/identityGovernance/lifecycleWorkflows/insights/topWorkflowsProcessedSummary(startDateTime={startDateTime},endDateTime={endDateTime})","mismatch","Invoke-MgTopIdentityGovernanceLifecycleWorkflowInsightWorkflowProcessedSummary" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowInsightWorkflowsProcessedByCategoryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowInsightWorkflowsProcessedByCategoryWithStartDateTimeWithEndDateTime","GET","/identityGovernance/lifecycleWorkflows/insights/workflowsProcessedByCategory(startDateTime={startDateTime},endDateTime={endDateTime})","mismatch","Invoke-MgGraphIdentityGovernanceLifecycleWorkflowInsight" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowInsightWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowInsightWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime","GET","/identityGovernance/lifecycleWorkflows/insights/workflowsProcessedSummary(startDateTime={startDateTime},endDateTime={endDateTime})","mismatch","Invoke-MgWorkflowIdentityGovernanceLifecycleWorkflowInsightProcessedSummary" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowLastModifiedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedBy","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedBy" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowPreviewScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewScope/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowPreviewScope_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewScope","matched","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowPreviewScope.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowPreviewScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScopeCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewScope/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScopeCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowRun" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs","matched","Get-MgIdentityGovernanceLifecycleWorkflowRun" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRun","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunReprocessedRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/reprocessedRuns/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunReprocessedRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/reprocessedRuns","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunReprocessedRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunReprocessedRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRunCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/reprocessedRuns/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRunCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunSummaryWithStartDateTimeWithEndDateTime","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/summary(startDateTime={startDateTime},endDateTime={endDateTime})","mismatch","Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowRun" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/task","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRunCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRunCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})","mismatch","Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowRunUserProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowSetting","GET","/identityGovernance/lifecycleWorkflows/settings","matched","Get-MgIdentityGovernanceLifecycleWorkflowSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTask_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTask_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks","matched","Get-MgIdentityGovernanceLifecycleWorkflowTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTask","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskDefinition_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition","GET","/identityGovernance/lifecycleWorkflows/taskDefinitions/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskDefinition_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition","GET","/identityGovernance/lifecycleWorkflows/taskDefinitions","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskDefinition.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskDefinitionCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinitionCount","GET","/identityGovernance/lifecycleWorkflows/taskDefinitions/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinitionCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/task","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReport_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReport","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReport" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReport_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReport","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReport" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReport.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReport","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/summary(startDateTime={startDateTime},endDateTime={endDateTime})","mismatch","Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowTaskReport" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/task","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskDefinition","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/task","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplate_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplate","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplate" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplate_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplate","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplate" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplate.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplate","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateCount","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTask_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTask_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskCount","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/task","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/reprocessedRuns","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRunCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRunCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})","mismatch","Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowUserProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersion_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersion","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersion" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersion_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersion","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersion" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersion.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersion","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/administrationScopeTargets/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/administrationScopeTargets","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTargetCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTargetCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/administrationScopeTargets/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTargetCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionCreatedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedBy","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedBy" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTask_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTask_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTask","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/task","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccess.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccess","GET","/identityGovernance/privilegedAccess","matched","Get-MgIdentityGovernancePrivilegedAccess" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroup","GET","/identityGovernance/privilegedAccess/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroup" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApproval_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApproval_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApproval.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalFilterByCurrentUserWithOn","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentApprovalByCurrentUser" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStageCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStageCount","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStageCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/activatedUsing","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleFilterByCurrentUserWithOn","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleByCurrentUser" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/group/serviceProvisioningErrors","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/activatedUsing","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceFilterByCurrentUserWithOn","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceByCurrentUser" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/group/serviceProvisioningErrors","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/principal","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/principal","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/activatedUsing","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestFilterByCurrentUserWithOn","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestByCurrentUser" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/group/serviceProvisioningErrors","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/principal","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/targetSchedule","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleFilterByCurrentUserWithOn","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleByCurrentUser" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}/group/serviceProvisioningErrors","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceFilterByCurrentUserWithOn","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceByCurrentUser" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}/group/serviceProvisioningErrors","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}/principal","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}/principal","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestFilterByCurrentUserWithOn","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestByCurrentUser" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/group/serviceProvisioningErrors","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/principal","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal" +"Cmdlets","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/targetSchedule","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule" +"Cmdlets","GetMgIdentityGovernanceTermOfUse.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUse","GET","/identityGovernance/termsOfUse","no-oracle","" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreement_Get.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreement","GET","/identityGovernance/termsOfUse/agreements/{param}","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreement" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreement_List.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreement","GET","/identityGovernance/termsOfUse/agreements","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreement" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreement.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreement","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementAcceptance_Get.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementAcceptance","GET","/identityGovernance/termsOfUse/agreementAcceptances/{param}","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementAcceptance_List.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementAcceptance","GET","/identityGovernance/termsOfUse/agreementAcceptances","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementAcceptance.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementAcceptance","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementAcceptanceCount.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementAcceptanceCount","GET","/identityGovernance/termsOfUse/agreementAcceptances/$count","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementAcceptanceCount" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementCount.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementCount","GET","/identityGovernance/termsOfUse/agreements/$count","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementCount" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFile.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFile","GET","/identityGovernance/termsOfUse/agreements/{param}/files","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFile" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileCount.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileCount","GET","/identityGovernance/termsOfUse/agreements/{param}/files/$count","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileCount" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileLocalization_Get.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization","GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileLocalization_List.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization","GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileLocalization.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileLocalizationCount.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationCount","GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/$count","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationCount" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion_Get.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions/{param}","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion_List.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersionCount.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersionCount","GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions/$count","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileVersion_Get.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileVersion","GET","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions/{param}","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileVersion_List.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileVersion","GET","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileVersion.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileVersion","","","dispatcher","" +"Cmdlets","GetMgIdentityGovernanceTermOfUseAgreementFileVersionCount.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileVersionCount","GET","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions/$count","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileVersionCount" +"Cmdlets","GetMgRoleManagementDirectory.g.cs","v1.0","Get-MgRoleManagementDirectory","GET","/roleManagement/directory","matched","Get-MgRoleManagementDirectory" +"Cmdlets","GetMgRoleManagementDirectoryResourceNamespace_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespace","GET","/roleManagement/directory/resourceNamespaces/{param}","matched","Get-MgRoleManagementDirectoryResourceNamespace" +"Cmdlets","GetMgRoleManagementDirectoryResourceNamespace_List.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespace","GET","/roleManagement/directory/resourceNamespaces","matched","Get-MgRoleManagementDirectoryResourceNamespace" +"Cmdlets","GetMgRoleManagementDirectoryResourceNamespace.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespace","","","dispatcher","" +"Cmdlets","GetMgRoleManagementDirectoryResourceNamespaceCount.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespaceCount","GET","/roleManagement/directory/resourceNamespaces/$count","matched","Get-MgRoleManagementDirectoryResourceNamespaceCount" +"Cmdlets","GetMgRoleManagementDirectoryResourceNamespaceResourceAction_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespaceResourceAction","GET","/roleManagement/directory/resourceNamespaces/{param}/resourceActions/{param}","matched","Get-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"Cmdlets","GetMgRoleManagementDirectoryResourceNamespaceResourceAction_List.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespaceResourceAction","GET","/roleManagement/directory/resourceNamespaces/{param}/resourceActions","matched","Get-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"Cmdlets","GetMgRoleManagementDirectoryResourceNamespaceResourceAction.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespaceResourceAction","","","dispatcher","" +"Cmdlets","GetMgRoleManagementDirectoryResourceNamespaceResourceActionCount.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespaceResourceActionCount","GET","/roleManagement/directory/resourceNamespaces/{param}/resourceActions/$count","matched","Get-MgRoleManagementDirectoryResourceNamespaceResourceActionCount" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignment_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignment","GET","/roleManagement/directory/roleAssignments/{param}","matched","Get-MgRoleManagementDirectoryRoleAssignment" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignment_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignment","GET","/roleManagement/directory/roleAssignments","matched","Get-MgRoleManagementDirectoryRoleAssignment" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignment.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentAppScope","GET","/roleManagement/directory/roleAssignments/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentAppScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentCount","GET","/roleManagement/directory/roleAssignments/$count","matched","Get-MgRoleManagementDirectoryRoleAssignmentCount" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScope","GET","/roleManagement/directory/roleAssignments/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentPrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentPrincipal","GET","/roleManagement/directory/roleAssignments/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleAssignmentPrincipal" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinition","GET","/roleManagement/directory/roleAssignments/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinition" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentSchedule_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentSchedule","GET","/roleManagement/directory/roleAssignmentSchedules/{param}","matched","Get-MgRoleManagementDirectoryRoleAssignmentSchedule" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentSchedule_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentSchedule","GET","/roleManagement/directory/roleAssignmentSchedules","matched","Get-MgRoleManagementDirectoryRoleAssignmentSchedule" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentSchedule.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentSchedule","","","dispatcher","" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing","GET","/roleManagement/directory/roleAssignmentSchedules/{param}/activatedUsing","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleAppScope","GET","/roleManagement/directory/roleAssignmentSchedules/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleAppScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleCount","GET","/roleManagement/directory/roleAssignmentSchedules/$count","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleCount" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope","GET","/roleManagement/directory/roleAssignmentSchedules/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleFilterByCurrentUserWithOn","GET","/roleManagement/directory/roleAssignmentSchedules/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleByCurrentUser" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstance_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstance_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","GET","/roleManagement/directory/roleAssignmentScheduleInstances","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstance.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","","","dispatcher","" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing","GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/activatedUsing","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope","GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstanceCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceCount","GET","/roleManagement/directory/roleAssignmentScheduleInstances/$count","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceCount" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope","GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceFilterByCurrentUserWithOn","GET","/roleManagement/directory/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleInstanceByCurrentUser" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal","GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition","GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentSchedulePrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentSchedulePrincipal","GET","/roleManagement/directory/roleAssignmentSchedules/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleAssignmentSchedulePrincipal" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequest_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequest_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","GET","/roleManagement/directory/roleAssignmentScheduleRequests","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequest.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","","","dispatcher","" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/activatedUsing","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCount","GET","/roleManagement/directory/roleAssignmentScheduleRequests/$count","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCount" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestFilterByCurrentUserWithOn","GET","/roleManagement/directory/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleRequestByCurrentUser" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/targetSchedule","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule" +"Cmdlets","GetMgRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition","GET","/roleManagement/directory/roleAssignmentSchedules/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition" +"Cmdlets","GetMgRoleManagementDirectoryRoleDefinition_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinition","GET","/roleManagement/directory/roleDefinitions/{param}","matched","Get-MgRoleManagementDirectoryRoleDefinition" +"Cmdlets","GetMgRoleManagementDirectoryRoleDefinition_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinition","GET","/roleManagement/directory/roleDefinitions","matched","Get-MgRoleManagementDirectoryRoleDefinition" +"Cmdlets","GetMgRoleManagementDirectoryRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinition","","","dispatcher","" +"Cmdlets","GetMgRoleManagementDirectoryRoleDefinitionCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinitionCount","GET","/roleManagement/directory/roleDefinitions/$count","matched","Get-MgRoleManagementDirectoryRoleDefinitionCount" +"Cmdlets","GetMgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","GET","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","matched","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"Cmdlets","GetMgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","GET","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom","matched","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"Cmdlets","GetMgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","","","dispatcher","" +"Cmdlets","GetMgRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount","GET","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom/$count","matched","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilitySchedule_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilitySchedule","GET","/roleManagement/directory/roleEligibilitySchedules/{param}","matched","Get-MgRoleManagementDirectoryRoleEligibilitySchedule" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilitySchedule_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilitySchedule","GET","/roleManagement/directory/roleEligibilitySchedules","matched","Get-MgRoleManagementDirectoryRoleEligibilitySchedule" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilitySchedule.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilitySchedule","","","dispatcher","" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleAppScope","GET","/roleManagement/directory/roleEligibilitySchedules/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleAppScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleCount","GET","/roleManagement/directory/roleEligibilitySchedules/$count","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleCount" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope","GET","/roleManagement/directory/roleEligibilitySchedules/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleFilterByCurrentUserWithOn","GET","/roleManagement/directory/roleEligibilitySchedules/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleByCurrentUser" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstance_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstance_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","GET","/roleManagement/directory/roleEligibilityScheduleInstances","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstance.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","","","dispatcher","" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope","GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstanceCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceCount","GET","/roleManagement/directory/roleEligibilityScheduleInstances/$count","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceCount" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope","GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceFilterByCurrentUserWithOn","GET","/roleManagement/directory/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleInstanceByCurrentUser" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal","GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition","GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilitySchedulePrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilitySchedulePrincipal","GET","/roleManagement/directory/roleEligibilitySchedules/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleEligibilitySchedulePrincipal" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequest_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequest_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","GET","/roleManagement/directory/roleEligibilityScheduleRequests","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequest.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","","","dispatcher","" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope","GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCount","GET","/roleManagement/directory/roleEligibilityScheduleRequests/$count","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCount" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope","GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestFilterByCurrentUserWithOn","GET","/roleManagement/directory/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleRequestByCurrentUser" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal","GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition","GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule","GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/targetSchedule","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule" +"Cmdlets","GetMgRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition","GET","/roleManagement/directory/roleEligibilitySchedules/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition" +"Cmdlets","GetMgRoleManagementEntitlementManagement.g.cs","v1.0","Get-MgRoleManagementEntitlementManagement","GET","/roleManagement/entitlementManagement","matched","Get-MgRoleManagementEntitlementManagement" +"Cmdlets","GetMgRoleManagementEntitlementManagementResourceNamespace_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespace","GET","/roleManagement/entitlementManagement/resourceNamespaces/{param}","matched","Get-MgRoleManagementEntitlementManagementResourceNamespace" +"Cmdlets","GetMgRoleManagementEntitlementManagementResourceNamespace_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespace","GET","/roleManagement/entitlementManagement/resourceNamespaces","matched","Get-MgRoleManagementEntitlementManagementResourceNamespace" +"Cmdlets","GetMgRoleManagementEntitlementManagementResourceNamespace.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespace","","","dispatcher","" +"Cmdlets","GetMgRoleManagementEntitlementManagementResourceNamespaceCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespaceCount","GET","/roleManagement/entitlementManagement/resourceNamespaces/$count","matched","Get-MgRoleManagementEntitlementManagementResourceNamespaceCount" +"Cmdlets","GetMgRoleManagementEntitlementManagementResourceNamespaceResourceAction_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","GET","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions/{param}","matched","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"Cmdlets","GetMgRoleManagementEntitlementManagementResourceNamespaceResourceAction_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","GET","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions","matched","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"Cmdlets","GetMgRoleManagementEntitlementManagementResourceNamespaceResourceAction.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","","","dispatcher","" +"Cmdlets","GetMgRoleManagementEntitlementManagementResourceNamespaceResourceActionCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionCount","GET","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions/$count","matched","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionCount" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignment_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignment","GET","/roleManagement/entitlementManagement/roleAssignments/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleAssignment" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignment_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignment","GET","/roleManagement/entitlementManagement/roleAssignments","matched","Get-MgRoleManagementEntitlementManagementRoleAssignment" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignment.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentAppScope","GET","/roleManagement/entitlementManagement/roleAssignments/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentAppScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentCount","GET","/roleManagement/entitlementManagement/roleAssignments/$count","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentCount" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope","GET","/roleManagement/entitlementManagement/roleAssignments/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentPrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipal","GET","/roleManagement/entitlementManagement/roleAssignments/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipal" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition","GET","/roleManagement/entitlementManagement/roleAssignments/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentSchedule_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentSchedule_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentSchedule.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","","","dispatcher","" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/activatedUsing","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleCount","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/$count","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleCount" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleFilterByCurrentUserWithOn","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleByCurrentUser" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","","","dispatcher","" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/activatedUsing","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/$count","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceFilterByCurrentUserWithOn","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceByCurrentUser" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","","","dispatcher","" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/activatedUsing","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/$count","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestFilterByCurrentUserWithOn","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleRequestByCurrentUser" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/targetSchedule","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleDefinition_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinition","GET","/roleManagement/entitlementManagement/roleDefinitions/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleDefinition" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleDefinition_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinition","GET","/roleManagement/entitlementManagement/roleDefinitions","matched","Get-MgRoleManagementEntitlementManagementRoleDefinition" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinition","","","dispatcher","" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleDefinitionCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinitionCount","GET","/roleManagement/entitlementManagement/roleDefinitions/$count","matched","Get-MgRoleManagementEntitlementManagementRoleDefinitionCount" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","GET","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","GET","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom","matched","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","","","dispatcher","" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount","GET","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom/$count","matched","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilitySchedule_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilitySchedule_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilitySchedule.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","","","dispatcher","" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleCount","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/$count","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleCount" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleFilterByCurrentUserWithOn","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleByCurrentUser" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","","","dispatcher","" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/$count","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceFilterByCurrentUserWithOn","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceByCurrentUser" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","","","dispatcher","" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/$count","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestFilterByCurrentUserWithOn","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')","mismatch","Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleRequestByCurrentUser" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/targetSchedule","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule" +"Cmdlets","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition" +"Cmdlets","GetMgUserAgreementAcceptance_Get.g.cs","v1.0","Get-MgUserAgreementAcceptance","GET","/users/{param}/agreementAcceptances/{param}","matched","Get-MgUserAgreementAcceptance" +"Cmdlets","GetMgUserAgreementAcceptance_List.g.cs","v1.0","Get-MgUserAgreementAcceptance","GET","/users/{param}/agreementAcceptances","matched","Get-MgUserAgreementAcceptance" +"Cmdlets","GetMgUserAgreementAcceptance.g.cs","v1.0","Get-MgUserAgreementAcceptance","","","dispatcher","" +"Cmdlets","GetMgUserAgreementAcceptanceCount.g.cs","v1.0","Get-MgUserAgreementAcceptanceCount","GET","/users/{param}/agreementAcceptances/$count","matched","Get-MgUserAgreementAcceptanceCount" +"Cmdlets","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceAcceptRecommendations.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceAcceptRecommendations","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/acceptRecommendations","mismatch","Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation" +"Cmdlets","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceApplyDecisions.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceApplyDecisions","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/applyDecisions","mismatch","Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Cmdlets","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceBatchRecordDecisions.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceBatchRecordDecisions","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/batchRecordDecisions","mismatch","Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision" +"Cmdlets","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceResetDecisions.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceResetDecisions","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/resetDecisions","mismatch","Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Cmdlets","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceSendReminder.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceSendReminder","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/sendReminder","mismatch","Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder" +"Cmdlets","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceStageStop.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceStageStop","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/stop","mismatch","Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"Cmdlets","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceStop.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceStop","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stop","mismatch","Stop-MgIdentityGovernanceAccessReviewDefinitionInstance" +"Cmdlets","InvokeMgIdentityGovernanceAccessReviewDefinitionStop.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionStop","POST","/identityGovernance/accessReviews/definitions/{param}/stop","mismatch","Stop-MgIdentityGovernanceAccessReviewDefinition" +"Cmdlets","InvokeMgIdentityGovernanceAccessReviewHistoryDefinitionInstanceGenerateDownloadUri.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceGenerateDownloadUri","POST","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/{param}/generateDownloadUri","mismatch","New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementAccessPackageGetApplicablePolicyRequirements.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageGetApplicablePolicyRequirements","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/getApplicablePolicyRequirements","mismatch","Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/refresh","no-oracle","" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/refresh","no-oracle","" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/refresh","no-oracle","" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/refresh","no-oracle","" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementAssignmentReprocess.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAssignmentReprocess","POST","/identityGovernance/entitlementManagement/assignments/{param}/reprocess","mismatch","Update-MgEntitlementManagementAssignment" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementAssignmentRequestCancel.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestCancel","POST","/identityGovernance/entitlementManagement/assignmentRequests/{param}/cancel","mismatch","Stop-MgEntitlementManagementAssignmentRequest" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementAssignmentRequestReprocess.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestReprocess","POST","/identityGovernance/entitlementManagement/assignmentRequests/{param}/reprocess","mismatch","Update-MgEntitlementManagementAssignmentRequest" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementAssignmentRequestResume.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestResume","POST","/identityGovernance/entitlementManagement/assignmentRequests/{param}/resume","mismatch","Resume-MgEntitlementManagementAssignmentRequest" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRefresh","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/refresh","mismatch","Update-MgEntitlementManagementCatalogResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementCatalogResourceRoleResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementCatalogResourceScopeResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/refresh","mismatch","Update-MgEntitlementManagementResourceEnvironmentResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceRoleResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceScopeResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRefresh","POST","/identityGovernance/entitlementManagement/resources/{param}/refresh","mismatch","Update-MgEntitlementManagementResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/refresh","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" +"Cmdlets","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" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestResourceRoleResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestResourceScopeResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRoleResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRoleResourceScopeResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRoleScopeResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRoleScopeResourceRoleResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRoleScopeRoleResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceScopeResource" +"Cmdlets","InvokeMgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceScopeResourceRoleResource" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowActivate.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowActivate","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/activate","mismatch","Initialize-MgIdentityGovernanceLifecycleWorkflow" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowActivateWithScope.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowActivateWithScope","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/activateWithScope","mismatch","Initialize-MgIdentityGovernanceLifecycleWorkflowWithScope" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowCancelProcessing.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowCancelProcessing","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/cancelProcessing","mismatch","Stop-MgIdentityGovernanceLifecycleWorkflowProcessing" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowClearQuarantine.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowClearQuarantine","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/clearQuarantine","mismatch","Clear-MgIdentityGovernanceLifecycleWorkflowQuarantine" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowCreateNewVersion.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowCreateNewVersion","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/createNewVersion","mismatch","New-MgIdentityGovernanceLifecycleWorkflowNewVersion" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowActivate.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowActivate","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/activate","mismatch","Initialize-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowActivateWithScope.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowActivateWithScope","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/activateWithScope","mismatch","Initialize-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowWithScope" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCancelProcessing.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCancelProcessing","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/cancelProcessing","mismatch","Stop-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowProcessing" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowClearQuarantine.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowClearQuarantine","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/clearQuarantine","mismatch","Clear-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowQuarantine" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreateNewVersion.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreateNewVersion","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createNewVersion","mismatch","New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowNewVersion" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewTaskFailures.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewTaskFailures","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewTaskFailures","mismatch","Invoke-MgPreviewIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskFailure" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewWorkflow.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewWorkflow","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewWorkflow","mismatch","Invoke-MgPreviewIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRestore.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRestore","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/restore","mismatch","Restore-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/resume","no-oracle","" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume","no-oracle","" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/resume","no-oracle","" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/resume","no-oracle","" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume","no-oracle","" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/resume","no-oracle","" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowPreviewTaskFailures.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowPreviewTaskFailures","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewTaskFailures","mismatch","Invoke-MgPreviewIdentityGovernanceLifecycleWorkflowTaskFailure" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowPreviewWorkflow.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowPreviewWorkflow","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewWorkflow","mismatch","Invoke-MgPreviewIdentityGovernanceLifecycleWorkflow" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowRestore.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowRestore","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/restore","mismatch","Restore-MgIdentityGovernanceLifecycleWorkflow" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/resume","mismatch","Resume-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume","no-oracle","" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/resume","mismatch","Resume-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/resume","mismatch","Resume-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/resume","mismatch","Resume-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume","no-oracle","" +"Cmdlets","InvokeMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultResume","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/resume","mismatch","Resume-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult" +"Cmdlets","InvokeMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCancel.g.cs","v1.0","Invoke-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCancel","POST","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/cancel","mismatch","Stop-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"Cmdlets","InvokeMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCancel.g.cs","v1.0","Invoke-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCancel","POST","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/cancel","mismatch","Stop-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"Cmdlets","InvokeMgRoleManagementDirectoryRoleAssignmentScheduleRequestCancel.g.cs","v1.0","Invoke-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCancel","POST","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/cancel","mismatch","Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"Cmdlets","InvokeMgRoleManagementDirectoryRoleEligibilityScheduleRequestCancel.g.cs","v1.0","Invoke-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCancel","POST","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/cancel","mismatch","Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"Cmdlets","InvokeMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCancel.g.cs","v1.0","Invoke-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCancel","POST","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/cancel","mismatch","Stop-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"Cmdlets","InvokeMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCancel.g.cs","v1.0","Invoke-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCancel","POST","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/cancel","mismatch","Stop-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"Cmdlets","NewMgAgreement.g.cs","v1.0","New-MgAgreement","POST","/agreements","matched","New-MgAgreement" +"Cmdlets","NewMgAgreementAcceptance.g.cs","v1.0","New-MgAgreementAcceptance","POST","/agreements/{param}/acceptances","matched","New-MgAgreementAcceptance" +"Cmdlets","NewMgAgreementFile.g.cs","v1.0","New-MgAgreementFile","POST","/agreements/{param}/files","matched","New-MgAgreementFile" +"Cmdlets","NewMgAgreementFileLocalization.g.cs","v1.0","New-MgAgreementFileLocalization","POST","/agreements/{param}/file/localizations","matched","New-MgAgreementFileLocalization" +"Cmdlets","NewMgAgreementFileLocalizationVersion.g.cs","v1.0","New-MgAgreementFileLocalizationVersion","POST","/agreements/{param}/file/localizations/{param}/versions","matched","New-MgAgreementFileLocalizationVersion" +"Cmdlets","NewMgAgreementFileVersion.g.cs","v1.0","New-MgAgreementFileVersion","POST","/agreements/{param}/files/{param}/versions","matched","New-MgAgreementFileVersion" +"Cmdlets","NewMgIdentityGovernanceAccessReviewDefinition.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinition","POST","/identityGovernance/accessReviews/definitions","matched","New-MgIdentityGovernanceAccessReviewDefinition" +"Cmdlets","NewMgIdentityGovernanceAccessReviewDefinitionInstance.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstance","POST","/identityGovernance/accessReviews/definitions/{param}/instances","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstance" +"Cmdlets","NewMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"Cmdlets","NewMgIdentityGovernanceAccessReviewDefinitionInstanceDecision.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Cmdlets","NewMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"Cmdlets","NewMgIdentityGovernanceAccessReviewDefinitionInstanceStage.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"Cmdlets","NewMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"Cmdlets","NewMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"Cmdlets","NewMgIdentityGovernanceAccessReviewHistoryDefinition.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewHistoryDefinition","POST","/identityGovernance/accessReviews/historyDefinitions","matched","New-MgIdentityGovernanceAccessReviewHistoryDefinition" +"Cmdlets","NewMgIdentityGovernanceAccessReviewHistoryDefinitionInstance.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","POST","/identityGovernance/accessReviews/historyDefinitions/{param}/instances","matched","New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"Cmdlets","NewMgIdentityGovernanceAppConsentAppConsentRequest.g.cs","v1.0","New-MgIdentityGovernanceAppConsentAppConsentRequest","POST","/identityGovernance/appConsent/appConsentRequests","mismatch","New-MgIdentityGovernanceAppConsentRequest" +"Cmdlets","NewMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest.g.cs","v1.0","New-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","POST","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests","mismatch","New-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"Cmdlets","NewMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage.g.cs","v1.0","New-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","POST","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages","mismatch","New-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackage.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackage","POST","/identityGovernance/entitlementManagement/accessPackages","mismatch","New-MgEntitlementManagementAccessPackage" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","POST","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","POST","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages","mismatch","New-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies","mismatch","New-MgEntitlementManagementAccessPackageAssignmentPolicy" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/$ref","mismatch","New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/$ref","mismatch","New-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes","mismatch","New-MgEntitlementManagementAccessPackageResourceRoleScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAccessPackageSuggestion.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","POST","/identityGovernance/entitlementManagement/accessPackageSuggestions","mismatch","New-MgEntitlementManagementAccessPackageSuggestion" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAssignment.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAssignment","POST","/identityGovernance/entitlementManagement/assignments","mismatch","New-MgEntitlementManagementAssignment" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAssignmentPolicy.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","POST","/identityGovernance/entitlementManagement/assignmentPolicies","mismatch","New-MgEntitlementManagementAssignmentPolicy" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","POST","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings","mismatch","New-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","POST","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions","mismatch","New-MgEntitlementManagementAssignmentPolicyQuestion" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAssignmentRequest.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAssignmentRequest","POST","/identityGovernance/entitlementManagement/assignmentRequests","mismatch","New-MgEntitlementManagementAssignmentRequest" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementAvailableAccessPackage.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","POST","/identityGovernance/entitlementManagement/availableAccessPackages","mismatch","New-MgEntitlementManagementAvailableAccessPackage" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementCatalog.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalog","POST","/identityGovernance/entitlementManagement/catalogs","mismatch","New-MgEntitlementManagementCatalog" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","POST","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions","mismatch","New-MgEntitlementManagementCatalogCustomWorkflowExtension" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementCatalogResource.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResource","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources","mismatch","New-MgEntitlementManagementCatalogResource" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles","mismatch","New-MgEntitlementManagementCatalogResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementCatalogResourceRoleResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementCatalogResourceScopeResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementConnectedOrganization.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementConnectedOrganization","POST","/identityGovernance/entitlementManagement/connectedOrganizations","mismatch","New-MgEntitlementManagementConnectedOrganization" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef","POST","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors/$ref","mismatch","New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef","POST","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors/$ref","mismatch","New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementControlConfiguration.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementControlConfiguration","POST","/identityGovernance/entitlementManagement/controlConfigurations","mismatch","New-MgEntitlementManagementControlConfiguration" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResource.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResource","POST","/identityGovernance/entitlementManagement/resources","mismatch","New-MgEntitlementManagementResource" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceEnvironment.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceEnvironment","POST","/identityGovernance/entitlementManagement/resourceEnvironments","mismatch","New-MgEntitlementManagementResourceEnvironment" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceEnvironmentResource.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources","mismatch","New-MgEntitlementManagementResourceEnvironmentResource" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles","mismatch","New-MgEntitlementManagementResourceEnvironmentResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes","mismatch","New-MgEntitlementManagementResourceEnvironmentResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequest.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequest","POST","/identityGovernance/entitlementManagement/resourceRequests","mismatch","New-MgEntitlementManagementResourceRequest" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions","mismatch","New-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources","mismatch","New-MgEntitlementManagementResourceRequestCatalogResource" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles","mismatch","New-MgEntitlementManagementResourceRequestCatalogResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceRequestResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceRequestResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRole","POST","/identityGovernance/entitlementManagement/resources/{param}/roles","mismatch","New-MgEntitlementManagementResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceRoleResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRoleScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScope","POST","/identityGovernance/entitlementManagement/resourceRoleScopes","mismatch","New-MgEntitlementManagementResourceRoleScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles","mismatch","New-MgEntitlementManagementResourceRoleScopeResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes","mismatch","New-MgEntitlementManagementResourceRoleScopeResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles","mismatch","New-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes","mismatch","New-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceScope","POST","/identityGovernance/entitlementManagement/resources/{param}/scopes","mismatch","New-MgEntitlementManagementResourceScope" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceScopeResourceRole" +"Cmdlets","NewMgIdentityGovernanceEntitlementManagementSubject.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementSubject","POST","/identityGovernance/entitlementManagement/subjects","mismatch","New-MgEntitlementManagementSubject" +"Cmdlets","NewMgIdentityGovernanceLifecycleWorkflow.g.cs","v1.0","New-MgIdentityGovernanceLifecycleWorkflow","POST","/identityGovernance/lifecycleWorkflows/workflows","matched","New-MgIdentityGovernanceLifecycleWorkflow" +"Cmdlets","NewMgIdentityGovernanceLifecycleWorkflowCustomTaskExtension.g.cs","v1.0","New-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","POST","/identityGovernance/lifecycleWorkflows/customTaskExtensions","matched","New-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"Cmdlets","NewMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask.g.cs","v1.0","New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks","matched","New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"Cmdlets","NewMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask.g.cs","v1.0","New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks","no-oracle","" +"Cmdlets","NewMgIdentityGovernanceLifecycleWorkflowTask.g.cs","v1.0","New-MgIdentityGovernanceLifecycleWorkflowTask","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks","matched","New-MgIdentityGovernanceLifecycleWorkflowTask" +"Cmdlets","NewMgIdentityGovernanceLifecycleWorkflowVersionTask.g.cs","v1.0","New-MgIdentityGovernanceLifecycleWorkflowVersionTask","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks","matched","New-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"Cmdlets","NewMgIdentityGovernancePrivilegedAccessGroupAssignmentApproval.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","POST","/identityGovernance/privilegedAccess/group/assignmentApprovals","matched","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"Cmdlets","NewMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","POST","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages","matched","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"Cmdlets","NewMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","POST","/identityGovernance/privilegedAccess/group/assignmentSchedules","matched","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"Cmdlets","NewMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","POST","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances","matched","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"Cmdlets","NewMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","POST","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests","matched","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"Cmdlets","NewMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","POST","/identityGovernance/privilegedAccess/group/eligibilitySchedules","matched","New-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"Cmdlets","NewMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","POST","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances","matched","New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"Cmdlets","NewMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","POST","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests","matched","New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"Cmdlets","NewMgIdentityGovernanceTermOfUseAgreement.g.cs","v1.0","New-MgIdentityGovernanceTermOfUseAgreement","POST","/identityGovernance/termsOfUse/agreements","mismatch","New-MgIdentityGovernanceTermsOfUseAgreement" +"Cmdlets","NewMgIdentityGovernanceTermOfUseAgreementAcceptance.g.cs","v1.0","New-MgIdentityGovernanceTermOfUseAgreementAcceptance","POST","/identityGovernance/termsOfUse/agreementAcceptances","mismatch","New-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"Cmdlets","NewMgIdentityGovernanceTermOfUseAgreementFile.g.cs","v1.0","New-MgIdentityGovernanceTermOfUseAgreementFile","POST","/identityGovernance/termsOfUse/agreements/{param}/files","mismatch","New-MgIdentityGovernanceTermsOfUseAgreementFile" +"Cmdlets","NewMgIdentityGovernanceTermOfUseAgreementFileLocalization.g.cs","v1.0","New-MgIdentityGovernanceTermOfUseAgreementFileLocalization","POST","/identityGovernance/termsOfUse/agreements/{param}/file/localizations","mismatch","New-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"Cmdlets","NewMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion.g.cs","v1.0","New-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","POST","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions","mismatch","New-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"Cmdlets","NewMgIdentityGovernanceTermOfUseAgreementFileVersion.g.cs","v1.0","New-MgIdentityGovernanceTermOfUseAgreementFileVersion","POST","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions","mismatch","New-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"Cmdlets","NewMgRoleManagementDirectoryResourceNamespace.g.cs","v1.0","New-MgRoleManagementDirectoryResourceNamespace","POST","/roleManagement/directory/resourceNamespaces","matched","New-MgRoleManagementDirectoryResourceNamespace" +"Cmdlets","NewMgRoleManagementDirectoryResourceNamespaceResourceAction.g.cs","v1.0","New-MgRoleManagementDirectoryResourceNamespaceResourceAction","POST","/roleManagement/directory/resourceNamespaces/{param}/resourceActions","matched","New-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"Cmdlets","NewMgRoleManagementDirectoryRoleAssignment.g.cs","v1.0","New-MgRoleManagementDirectoryRoleAssignment","POST","/roleManagement/directory/roleAssignments","matched","New-MgRoleManagementDirectoryRoleAssignment" +"Cmdlets","NewMgRoleManagementDirectoryRoleAssignmentSchedule.g.cs","v1.0","New-MgRoleManagementDirectoryRoleAssignmentSchedule","POST","/roleManagement/directory/roleAssignmentSchedules","matched","New-MgRoleManagementDirectoryRoleAssignmentSchedule" +"Cmdlets","NewMgRoleManagementDirectoryRoleAssignmentScheduleInstance.g.cs","v1.0","New-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","POST","/roleManagement/directory/roleAssignmentScheduleInstances","matched","New-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"Cmdlets","NewMgRoleManagementDirectoryRoleAssignmentScheduleRequest.g.cs","v1.0","New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","POST","/roleManagement/directory/roleAssignmentScheduleRequests","matched","New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"Cmdlets","NewMgRoleManagementDirectoryRoleDefinition.g.cs","v1.0","New-MgRoleManagementDirectoryRoleDefinition","POST","/roleManagement/directory/roleDefinitions","matched","New-MgRoleManagementDirectoryRoleDefinition" +"Cmdlets","NewMgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom.g.cs","v1.0","New-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","POST","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom","matched","New-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"Cmdlets","NewMgRoleManagementDirectoryRoleEligibilitySchedule.g.cs","v1.0","New-MgRoleManagementDirectoryRoleEligibilitySchedule","POST","/roleManagement/directory/roleEligibilitySchedules","matched","New-MgRoleManagementDirectoryRoleEligibilitySchedule" +"Cmdlets","NewMgRoleManagementDirectoryRoleEligibilityScheduleInstance.g.cs","v1.0","New-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","POST","/roleManagement/directory/roleEligibilityScheduleInstances","matched","New-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"Cmdlets","NewMgRoleManagementDirectoryRoleEligibilityScheduleRequest.g.cs","v1.0","New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","POST","/roleManagement/directory/roleEligibilityScheduleRequests","matched","New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"Cmdlets","NewMgRoleManagementEntitlementManagementResourceNamespace.g.cs","v1.0","New-MgRoleManagementEntitlementManagementResourceNamespace","POST","/roleManagement/entitlementManagement/resourceNamespaces","matched","New-MgRoleManagementEntitlementManagementResourceNamespace" +"Cmdlets","NewMgRoleManagementEntitlementManagementResourceNamespaceResourceAction.g.cs","v1.0","New-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","POST","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions","matched","New-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"Cmdlets","NewMgRoleManagementEntitlementManagementRoleAssignment.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleAssignment","POST","/roleManagement/entitlementManagement/roleAssignments","matched","New-MgRoleManagementEntitlementManagementRoleAssignment" +"Cmdlets","NewMgRoleManagementEntitlementManagementRoleAssignmentSchedule.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","POST","/roleManagement/entitlementManagement/roleAssignmentSchedules","matched","New-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"Cmdlets","NewMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","POST","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances","matched","New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"Cmdlets","NewMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","POST","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests","matched","New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"Cmdlets","NewMgRoleManagementEntitlementManagementRoleDefinition.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleDefinition","POST","/roleManagement/entitlementManagement/roleDefinitions","matched","New-MgRoleManagementEntitlementManagementRoleDefinition" +"Cmdlets","NewMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","POST","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom","matched","New-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"Cmdlets","NewMgRoleManagementEntitlementManagementRoleEligibilitySchedule.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","POST","/roleManagement/entitlementManagement/roleEligibilitySchedules","matched","New-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"Cmdlets","NewMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","POST","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances","matched","New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"Cmdlets","NewMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","POST","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests","matched","New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"Cmdlets","RemoveMgAgreement.g.cs","v1.0","Remove-MgAgreement","DELETE","/agreements/{param}","matched","Remove-MgAgreement" +"Cmdlets","RemoveMgAgreementAcceptance.g.cs","v1.0","Remove-MgAgreementAcceptance","DELETE","/agreements/{param}/acceptances/{param}","matched","Remove-MgAgreementAcceptance" +"Cmdlets","RemoveMgAgreementFile.g.cs","v1.0","Remove-MgAgreementFile","DELETE","/agreements/{param}/file","matched","Remove-MgAgreementFile" +"Cmdlets","RemoveMgAgreementFileLocalization.g.cs","v1.0","Remove-MgAgreementFileLocalization","DELETE","/agreements/{param}/file/localizations/{param}","matched","Remove-MgAgreementFileLocalization" +"Cmdlets","RemoveMgAgreementFileLocalizationVersion.g.cs","v1.0","Remove-MgAgreementFileLocalizationVersion","DELETE","/agreements/{param}/file/localizations/{param}/versions/{param}","matched","Remove-MgAgreementFileLocalizationVersion" +"Cmdlets","RemoveMgAgreementFileVersion.g.cs","v1.0","Remove-MgAgreementFileVersion","DELETE","/agreements/{param}/files/{param}/versions/{param}","matched","Remove-MgAgreementFileVersion" +"Cmdlets","RemoveMgIdentityGovernanceAccessReview.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReview","DELETE","/identityGovernance/accessReviews","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceAccessReviewDefinition.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinition","DELETE","/identityGovernance/accessReviews/definitions/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinition" +"Cmdlets","RemoveMgIdentityGovernanceAccessReviewDefinitionInstance.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstance","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstance" +"Cmdlets","RemoveMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"Cmdlets","RemoveMgIdentityGovernanceAccessReviewDefinitionInstanceDecision.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Cmdlets","RemoveMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"Cmdlets","RemoveMgIdentityGovernanceAccessReviewDefinitionInstanceStage.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"Cmdlets","RemoveMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"Cmdlets","RemoveMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"Cmdlets","RemoveMgIdentityGovernanceAccessReviewHistoryDefinition.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewHistoryDefinition","DELETE","/identityGovernance/accessReviews/historyDefinitions/{param}","matched","Remove-MgIdentityGovernanceAccessReviewHistoryDefinition" +"Cmdlets","RemoveMgIdentityGovernanceAccessReviewHistoryDefinitionInstance.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","DELETE","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/{param}","matched","Remove-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"Cmdlets","RemoveMgIdentityGovernanceAppConsent.g.cs","v1.0","Remove-MgIdentityGovernanceAppConsent","DELETE","/identityGovernance/appConsent","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceAppConsentAppConsentRequest.g.cs","v1.0","Remove-MgIdentityGovernanceAppConsentAppConsentRequest","DELETE","/identityGovernance/appConsent/appConsentRequests/{param}","mismatch","Remove-MgIdentityGovernanceAppConsentRequest" +"Cmdlets","RemoveMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest.g.cs","v1.0","Remove-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","DELETE","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}","mismatch","Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"Cmdlets","RemoveMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval.g.cs","v1.0","Remove-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval","DELETE","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval","mismatch","Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" +"Cmdlets","RemoveMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage.g.cs","v1.0","Remove-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","DELETE","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages/{param}","mismatch","Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagement.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagement","DELETE","/identityGovernance/entitlementManagement","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackage.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackage","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}","mismatch","Remove-MgEntitlementManagementAccessPackage" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","DELETE","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}","mismatch","Remove-MgEntitlementManagementAccessPackageAssignmentApproval" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","DELETE","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages/{param}","mismatch","Remove-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}","mismatch","Remove-MgEntitlementManagementAccessPackageAssignmentPolicy" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/{param}/$ref","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/$ref","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}","mismatch","Remove-MgEntitlementManagementAccessPackageResourceRoleScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageSuggestion.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","DELETE","/identityGovernance/entitlementManagement/accessPackageSuggestions/{param}","mismatch","Remove-MgEntitlementManagementAccessPackageSuggestion" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAssignment.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAssignment","DELETE","/identityGovernance/entitlementManagement/assignments/{param}","mismatch","Remove-MgEntitlementManagementAssignment" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAssignmentPolicy.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","DELETE","/identityGovernance/entitlementManagement/assignmentPolicies/{param}","mismatch","Remove-MgEntitlementManagementAssignmentPolicy" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","DELETE","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/{param}","mismatch","Remove-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","DELETE","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions/{param}","mismatch","Remove-MgEntitlementManagementAssignmentPolicyQuestion" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAssignmentRequest.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAssignmentRequest","DELETE","/identityGovernance/entitlementManagement/assignmentRequests/{param}","mismatch","Remove-MgEntitlementManagementAssignmentRequest" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementAvailableAccessPackage.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","DELETE","/identityGovernance/entitlementManagement/availableAccessPackages/{param}","mismatch","Remove-MgEntitlementManagementAvailableAccessPackage" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalog.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalog","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}","mismatch","Remove-MgEntitlementManagementCatalog" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions/{param}","mismatch","Remove-MgEntitlementManagementCatalogCustomWorkflowExtension" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResource","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}","mismatch","Remove-MgEntitlementManagementCatalogResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}","mismatch","Remove-MgEntitlementManagementCatalogResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource","mismatch","Remove-MgEntitlementManagementCatalogResourceRoleResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementCatalogResourceRoleResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementCatalogResourceScopeResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementCatalogResourceScopeResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementConnectedOrganization.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganization","DELETE","/identityGovernance/entitlementManagement/connectedOrganizations/{param}","mismatch","Remove-MgEntitlementManagementConnectedOrganization" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef","DELETE","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors/{param}/$ref","mismatch","Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef","DELETE","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors/{param}/$ref","mismatch","Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementControlConfiguration.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementControlConfiguration","DELETE","/identityGovernance/entitlementManagement/controlConfigurations/{param}","mismatch","Remove-MgEntitlementManagementControlConfiguration" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResource","DELETE","/identityGovernance/entitlementManagement/resources/{param}","mismatch","Remove-MgEntitlementManagementResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironment.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironment","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}","mismatch","Remove-MgEntitlementManagementResourceEnvironment" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequest.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequest","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}","mismatch","Remove-MgEntitlementManagementResourceRequest" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalog.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog","mismatch","Remove-MgEntitlementManagementResourceRequestCatalog" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestResourceRoleResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestResourceScopeResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRole","DELETE","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRoleResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRoleResourceScopeResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScope","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource","mismatch","Remove-MgEntitlementManagementResourceRoleScopeResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScopeResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRoleScopeResourceRoleResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScopeResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role","mismatch","Remove-MgEntitlementManagementResourceRoleScopeRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource","mismatch","Remove-MgEntitlementManagementResourceRoleScopeRoleResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceScope","DELETE","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceScope" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceScopeResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceScopeResourceRole" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceScopeResourceRoleResource" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementSetting.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementSetting","DELETE","/identityGovernance/entitlementManagement/settings","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceEntitlementManagementSubject.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementSubject","DELETE","/identityGovernance/entitlementManagement/subjects/{param}","mismatch","Remove-MgEntitlementManagementSubject" +"Cmdlets","RemoveMgIdentityGovernanceLifecycleWorkflow.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflow","DELETE","/identityGovernance/lifecycleWorkflows/workflows/{param}","matched","Remove-MgIdentityGovernanceLifecycleWorkflow" +"Cmdlets","RemoveMgIdentityGovernanceLifecycleWorkflowCustomTaskExtension.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","DELETE","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}","matched","Remove-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"Cmdlets","RemoveMgIdentityGovernanceLifecycleWorkflowDeletedItem.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItem","DELETE","/identityGovernance/lifecycleWorkflows/deletedItems","matched","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItem" +"Cmdlets","RemoveMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","DELETE","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}","matched","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"Cmdlets","RemoveMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","DELETE","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}","matched","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"Cmdlets","RemoveMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","DELETE","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceLifecycleWorkflowInsight.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowInsight","DELETE","/identityGovernance/lifecycleWorkflows/insights","matched","Remove-MgIdentityGovernanceLifecycleWorkflowInsight" +"Cmdlets","RemoveMgIdentityGovernanceLifecycleWorkflowTask.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowTask","DELETE","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}","matched","Remove-MgIdentityGovernanceLifecycleWorkflowTask" +"Cmdlets","RemoveMgIdentityGovernanceLifecycleWorkflowVersionTask.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowVersionTask","DELETE","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}","matched","Remove-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"Cmdlets","RemoveMgIdentityGovernancePrivilegedAccess.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccess","DELETE","/identityGovernance/privilegedAccess","matched","Remove-MgIdentityGovernancePrivilegedAccess" +"Cmdlets","RemoveMgIdentityGovernancePrivilegedAccessGroup.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroup","DELETE","/identityGovernance/privilegedAccess/group","matched","Remove-MgIdentityGovernancePrivilegedAccessGroup" +"Cmdlets","RemoveMgIdentityGovernancePrivilegedAccessGroupAssignmentApproval.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","DELETE","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"Cmdlets","RemoveMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","DELETE","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"Cmdlets","RemoveMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","DELETE","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"Cmdlets","RemoveMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","DELETE","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"Cmdlets","RemoveMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","DELETE","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"Cmdlets","RemoveMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","DELETE","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"Cmdlets","RemoveMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","DELETE","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"Cmdlets","RemoveMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","DELETE","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"Cmdlets","RemoveMgIdentityGovernanceTermOfUse.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUse","DELETE","/identityGovernance/termsOfUse","no-oracle","" +"Cmdlets","RemoveMgIdentityGovernanceTermOfUseAgreement.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUseAgreement","DELETE","/identityGovernance/termsOfUse/agreements/{param}","mismatch","Remove-MgIdentityGovernanceTermsOfUseAgreement" +"Cmdlets","RemoveMgIdentityGovernanceTermOfUseAgreementAcceptance.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUseAgreementAcceptance","DELETE","/identityGovernance/termsOfUse/agreementAcceptances/{param}","mismatch","Remove-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"Cmdlets","RemoveMgIdentityGovernanceTermOfUseAgreementFile.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUseAgreementFile","DELETE","/identityGovernance/termsOfUse/agreements/{param}/file","mismatch","Remove-MgIdentityGovernanceTermsOfUseAgreementFile" +"Cmdlets","RemoveMgIdentityGovernanceTermOfUseAgreementFileLocalization.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUseAgreementFileLocalization","DELETE","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}","mismatch","Remove-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"Cmdlets","RemoveMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","DELETE","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions/{param}","mismatch","Remove-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"Cmdlets","RemoveMgIdentityGovernanceTermOfUseAgreementFileVersion.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUseAgreementFileVersion","DELETE","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions/{param}","mismatch","Remove-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"Cmdlets","RemoveMgRoleManagementDirectory.g.cs","v1.0","Remove-MgRoleManagementDirectory","DELETE","/roleManagement/directory","matched","Remove-MgRoleManagementDirectory" +"Cmdlets","RemoveMgRoleManagementDirectoryResourceNamespace.g.cs","v1.0","Remove-MgRoleManagementDirectoryResourceNamespace","DELETE","/roleManagement/directory/resourceNamespaces/{param}","matched","Remove-MgRoleManagementDirectoryResourceNamespace" +"Cmdlets","RemoveMgRoleManagementDirectoryResourceNamespaceResourceAction.g.cs","v1.0","Remove-MgRoleManagementDirectoryResourceNamespaceResourceAction","DELETE","/roleManagement/directory/resourceNamespaces/{param}/resourceActions/{param}","matched","Remove-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"Cmdlets","RemoveMgRoleManagementDirectoryRoleAssignment.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleAssignment","DELETE","/roleManagement/directory/roleAssignments/{param}","matched","Remove-MgRoleManagementDirectoryRoleAssignment" +"Cmdlets","RemoveMgRoleManagementDirectoryRoleAssignmentAppScope.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleAssignmentAppScope","DELETE","/roleManagement/directory/roleAssignments/{param}/appScope","matched","Remove-MgRoleManagementDirectoryRoleAssignmentAppScope" +"Cmdlets","RemoveMgRoleManagementDirectoryRoleAssignmentSchedule.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleAssignmentSchedule","DELETE","/roleManagement/directory/roleAssignmentSchedules/{param}","matched","Remove-MgRoleManagementDirectoryRoleAssignmentSchedule" +"Cmdlets","RemoveMgRoleManagementDirectoryRoleAssignmentScheduleInstance.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","DELETE","/roleManagement/directory/roleAssignmentScheduleInstances/{param}","matched","Remove-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"Cmdlets","RemoveMgRoleManagementDirectoryRoleAssignmentScheduleRequest.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","DELETE","/roleManagement/directory/roleAssignmentScheduleRequests/{param}","matched","Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"Cmdlets","RemoveMgRoleManagementDirectoryRoleDefinition.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleDefinition","DELETE","/roleManagement/directory/roleDefinitions/{param}","matched","Remove-MgRoleManagementDirectoryRoleDefinition" +"Cmdlets","RemoveMgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","DELETE","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","matched","Remove-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"Cmdlets","RemoveMgRoleManagementDirectoryRoleEligibilitySchedule.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleEligibilitySchedule","DELETE","/roleManagement/directory/roleEligibilitySchedules/{param}","matched","Remove-MgRoleManagementDirectoryRoleEligibilitySchedule" +"Cmdlets","RemoveMgRoleManagementDirectoryRoleEligibilityScheduleInstance.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","DELETE","/roleManagement/directory/roleEligibilityScheduleInstances/{param}","matched","Remove-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"Cmdlets","RemoveMgRoleManagementDirectoryRoleEligibilityScheduleRequest.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","DELETE","/roleManagement/directory/roleEligibilityScheduleRequests/{param}","matched","Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"Cmdlets","RemoveMgRoleManagementEntitlementManagement.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagement","DELETE","/roleManagement/entitlementManagement","matched","Remove-MgRoleManagementEntitlementManagement" +"Cmdlets","RemoveMgRoleManagementEntitlementManagementResourceNamespace.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementResourceNamespace","DELETE","/roleManagement/entitlementManagement/resourceNamespaces/{param}","matched","Remove-MgRoleManagementEntitlementManagementResourceNamespace" +"Cmdlets","RemoveMgRoleManagementEntitlementManagementResourceNamespaceResourceAction.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","DELETE","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions/{param}","matched","Remove-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"Cmdlets","RemoveMgRoleManagementEntitlementManagementRoleAssignment.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleAssignment","DELETE","/roleManagement/entitlementManagement/roleAssignments/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleAssignment" +"Cmdlets","RemoveMgRoleManagementEntitlementManagementRoleAssignmentAppScope.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleAssignmentAppScope","DELETE","/roleManagement/entitlementManagement/roleAssignments/{param}/appScope","matched","Remove-MgRoleManagementEntitlementManagementRoleAssignmentAppScope" +"Cmdlets","RemoveMgRoleManagementEntitlementManagementRoleAssignmentSchedule.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","DELETE","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"Cmdlets","RemoveMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","DELETE","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"Cmdlets","RemoveMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","DELETE","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"Cmdlets","RemoveMgRoleManagementEntitlementManagementRoleDefinition.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleDefinition","DELETE","/roleManagement/entitlementManagement/roleDefinitions/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleDefinition" +"Cmdlets","RemoveMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","DELETE","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"Cmdlets","RemoveMgRoleManagementEntitlementManagementRoleEligibilitySchedule.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","DELETE","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"Cmdlets","RemoveMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","DELETE","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"Cmdlets","RemoveMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","DELETE","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"Cmdlets","SetMgIdentityGovernanceAccessReviewDefinition.g.cs","v1.0","Set-MgIdentityGovernanceAccessReviewDefinition","PUT","/identityGovernance/accessReviews/definitions/{param}","matched","Set-MgIdentityGovernanceAccessReviewDefinition" +"Cmdlets","SetMgIdentityGovernanceEntitlementManagementAssignmentPolicy.g.cs","v1.0","Set-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","PUT","/identityGovernance/entitlementManagement/assignmentPolicies/{param}","mismatch","Set-MgEntitlementManagementAssignmentPolicy" +"Cmdlets","SetMgIdentityGovernanceEntitlementManagementControlConfiguration.g.cs","v1.0","Set-MgIdentityGovernanceEntitlementManagementControlConfiguration","PUT","/identityGovernance/entitlementManagement/controlConfigurations/{param}","mismatch","Set-MgEntitlementManagementControlConfiguration" +"Cmdlets","UpdateMgAgreement.g.cs","v1.0","Update-MgAgreement","PATCH","/agreements/{param}","matched","Update-MgAgreement" +"Cmdlets","UpdateMgAgreementAcceptance.g.cs","v1.0","Update-MgAgreementAcceptance","PATCH","/agreements/{param}/acceptances/{param}","matched","Update-MgAgreementAcceptance" +"Cmdlets","UpdateMgAgreementFile.g.cs","v1.0","Update-MgAgreementFile","PATCH","/agreements/{param}/file","matched","Update-MgAgreementFile" +"Cmdlets","UpdateMgAgreementFileLocalization.g.cs","v1.0","Update-MgAgreementFileLocalization","PATCH","/agreements/{param}/file/localizations/{param}","matched","Update-MgAgreementFileLocalization" +"Cmdlets","UpdateMgAgreementFileLocalizationVersion.g.cs","v1.0","Update-MgAgreementFileLocalizationVersion","PATCH","/agreements/{param}/file/localizations/{param}/versions/{param}","matched","Update-MgAgreementFileLocalizationVersion" +"Cmdlets","UpdateMgAgreementFileVersion.g.cs","v1.0","Update-MgAgreementFileVersion","PATCH","/agreements/{param}/files/{param}/versions/{param}","matched","Update-MgAgreementFileVersion" +"Cmdlets","UpdateMgIdentityGovernance.g.cs","v1.0","Update-MgIdentityGovernance","PATCH","/identityGovernance","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceAccessReview.g.cs","v1.0","Update-MgIdentityGovernanceAccessReview","PATCH","/identityGovernance/accessReviews","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceAccessReviewDefinitionInstance.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstance","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstance" +"Cmdlets","UpdateMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"Cmdlets","UpdateMgIdentityGovernanceAccessReviewDefinitionInstanceDecision.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Cmdlets","UpdateMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"Cmdlets","UpdateMgIdentityGovernanceAccessReviewDefinitionInstanceStage.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"Cmdlets","UpdateMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"Cmdlets","UpdateMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"Cmdlets","UpdateMgIdentityGovernanceAccessReviewHistoryDefinition.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewHistoryDefinition","PATCH","/identityGovernance/accessReviews/historyDefinitions/{param}","matched","Update-MgIdentityGovernanceAccessReviewHistoryDefinition" +"Cmdlets","UpdateMgIdentityGovernanceAccessReviewHistoryDefinitionInstance.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","PATCH","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/{param}","matched","Update-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"Cmdlets","UpdateMgIdentityGovernanceAppConsent.g.cs","v1.0","Update-MgIdentityGovernanceAppConsent","PATCH","/identityGovernance/appConsent","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceAppConsentAppConsentRequest.g.cs","v1.0","Update-MgIdentityGovernanceAppConsentAppConsentRequest","PATCH","/identityGovernance/appConsent/appConsentRequests/{param}","mismatch","Update-MgIdentityGovernanceAppConsentRequest" +"Cmdlets","UpdateMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest.g.cs","v1.0","Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","PATCH","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}","mismatch","Update-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"Cmdlets","UpdateMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval.g.cs","v1.0","Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval","PATCH","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval","mismatch","Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" +"Cmdlets","UpdateMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage.g.cs","v1.0","Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","PATCH","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages/{param}","mismatch","Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagement.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagement","PATCH","/identityGovernance/entitlementManagement","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackage.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackage","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}","mismatch","Update-MgEntitlementManagementAccessPackage" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","PATCH","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}","mismatch","Update-MgEntitlementManagementAccessPackageAssignmentApproval" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","PATCH","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages/{param}","mismatch","Update-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}","mismatch","Update-MgEntitlementManagementAccessPackageAssignmentPolicy" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}","mismatch","Update-MgEntitlementManagementAccessPackageResourceRoleScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageSuggestion.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","PATCH","/identityGovernance/entitlementManagement/accessPackageSuggestions/{param}","mismatch","Update-MgEntitlementManagementAccessPackageSuggestion" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAssignment.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAssignment","PATCH","/identityGovernance/entitlementManagement/assignments/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","PATCH","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/{param}","mismatch","Update-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","PATCH","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions/{param}","mismatch","Update-MgEntitlementManagementAssignmentPolicyQuestion" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAssignmentRequest.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAssignmentRequest","PATCH","/identityGovernance/entitlementManagement/assignmentRequests/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementAvailableAccessPackage.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","PATCH","/identityGovernance/entitlementManagement/availableAccessPackages/{param}","mismatch","Update-MgEntitlementManagementAvailableAccessPackage" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalog.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalog","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}","mismatch","Update-MgEntitlementManagementCatalog" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions/{param}","mismatch","Update-MgEntitlementManagementCatalogCustomWorkflowExtension" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResource","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}","mismatch","Update-MgEntitlementManagementCatalogResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementCatalogResourceRoleResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementCatalogResourceScopeResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementConnectedOrganization.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementConnectedOrganization","PATCH","/identityGovernance/entitlementManagement/connectedOrganizations/{param}","mismatch","Update-MgEntitlementManagementConnectedOrganization" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResource","PATCH","/identityGovernance/entitlementManagement/resources/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironment.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironment","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}","mismatch","Update-MgEntitlementManagementResourceEnvironment" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequest.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequest","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}","mismatch","Update-MgEntitlementManagementResourceRequest" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalog.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog","mismatch","Update-MgEntitlementManagementResourceRequestCatalog" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions/{param}","mismatch","Update-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRequestResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRequestResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRole","PATCH","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRoleResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScope","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScopeResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScopeResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role","mismatch","Update-MgEntitlementManagementResourceRoleScopeRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceScope","PATCH","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceScope" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceScopeResourceRole" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementSetting.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementSetting","PATCH","/identityGovernance/entitlementManagement/settings","mismatch","Update-MgEntitlementManagementSetting" +"Cmdlets","UpdateMgIdentityGovernanceEntitlementManagementSubject.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementSubject","PATCH","/identityGovernance/entitlementManagement/subjects/{param}","mismatch","Update-MgEntitlementManagementSubject" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflow.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflow","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}","matched","Update-MgIdentityGovernanceLifecycleWorkflow" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowCustomTaskExtension.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","PATCH","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}","matched","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}","matched","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowInsight.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowInsight","PATCH","/identityGovernance/lifecycleWorkflows/insights","matched","Update-MgIdentityGovernanceLifecycleWorkflowInsight" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowSetting","PATCH","/identityGovernance/lifecycleWorkflows/settings","matched","Update-MgIdentityGovernanceLifecycleWorkflowSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowTask.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowTask","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}","matched","Update-MgIdentityGovernanceLifecycleWorkflowTask" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowVersionTask.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowVersionTask","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}","matched","Update-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"Cmdlets","UpdateMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting" +"Cmdlets","UpdateMgIdentityGovernancePrivilegedAccess.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccess","PATCH","/identityGovernance/privilegedAccess","matched","Update-MgIdentityGovernancePrivilegedAccess" +"Cmdlets","UpdateMgIdentityGovernancePrivilegedAccessGroup.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroup","PATCH","/identityGovernance/privilegedAccess/group","matched","Update-MgIdentityGovernancePrivilegedAccessGroup" +"Cmdlets","UpdateMgIdentityGovernancePrivilegedAccessGroupAssignmentApproval.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","PATCH","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"Cmdlets","UpdateMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","PATCH","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"Cmdlets","UpdateMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","PATCH","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"Cmdlets","UpdateMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","PATCH","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"Cmdlets","UpdateMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","PATCH","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"Cmdlets","UpdateMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","PATCH","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"Cmdlets","UpdateMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","PATCH","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"Cmdlets","UpdateMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","PATCH","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"Cmdlets","UpdateMgIdentityGovernanceTermOfUse.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUse","PATCH","/identityGovernance/termsOfUse","no-oracle","" +"Cmdlets","UpdateMgIdentityGovernanceTermOfUseAgreement.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUseAgreement","PATCH","/identityGovernance/termsOfUse/agreements/{param}","mismatch","Update-MgIdentityGovernanceTermsOfUseAgreement" +"Cmdlets","UpdateMgIdentityGovernanceTermOfUseAgreementAcceptance.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUseAgreementAcceptance","PATCH","/identityGovernance/termsOfUse/agreementAcceptances/{param}","mismatch","Update-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"Cmdlets","UpdateMgIdentityGovernanceTermOfUseAgreementFile.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUseAgreementFile","PATCH","/identityGovernance/termsOfUse/agreements/{param}/file","mismatch","Update-MgIdentityGovernanceTermsOfUseAgreementFile" +"Cmdlets","UpdateMgIdentityGovernanceTermOfUseAgreementFileLocalization.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUseAgreementFileLocalization","PATCH","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}","mismatch","Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"Cmdlets","UpdateMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","PATCH","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions/{param}","mismatch","Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"Cmdlets","UpdateMgIdentityGovernanceTermOfUseAgreementFileVersion.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUseAgreementFileVersion","PATCH","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions/{param}","mismatch","Update-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"Cmdlets","UpdateMgRoleManagementDirectory.g.cs","v1.0","Update-MgRoleManagementDirectory","PATCH","/roleManagement/directory","matched","Update-MgRoleManagementDirectory" +"Cmdlets","UpdateMgRoleManagementDirectoryResourceNamespace.g.cs","v1.0","Update-MgRoleManagementDirectoryResourceNamespace","PATCH","/roleManagement/directory/resourceNamespaces/{param}","matched","Update-MgRoleManagementDirectoryResourceNamespace" +"Cmdlets","UpdateMgRoleManagementDirectoryResourceNamespaceResourceAction.g.cs","v1.0","Update-MgRoleManagementDirectoryResourceNamespaceResourceAction","PATCH","/roleManagement/directory/resourceNamespaces/{param}/resourceActions/{param}","matched","Update-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"Cmdlets","UpdateMgRoleManagementDirectoryRoleAssignment.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleAssignment","PATCH","/roleManagement/directory/roleAssignments/{param}","matched","Update-MgRoleManagementDirectoryRoleAssignment" +"Cmdlets","UpdateMgRoleManagementDirectoryRoleAssignmentAppScope.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleAssignmentAppScope","PATCH","/roleManagement/directory/roleAssignments/{param}/appScope","matched","Update-MgRoleManagementDirectoryRoleAssignmentAppScope" +"Cmdlets","UpdateMgRoleManagementDirectoryRoleAssignmentSchedule.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleAssignmentSchedule","PATCH","/roleManagement/directory/roleAssignmentSchedules/{param}","matched","Update-MgRoleManagementDirectoryRoleAssignmentSchedule" +"Cmdlets","UpdateMgRoleManagementDirectoryRoleAssignmentScheduleInstance.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","PATCH","/roleManagement/directory/roleAssignmentScheduleInstances/{param}","matched","Update-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"Cmdlets","UpdateMgRoleManagementDirectoryRoleAssignmentScheduleRequest.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","PATCH","/roleManagement/directory/roleAssignmentScheduleRequests/{param}","matched","Update-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"Cmdlets","UpdateMgRoleManagementDirectoryRoleDefinition.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleDefinition","PATCH","/roleManagement/directory/roleDefinitions/{param}","matched","Update-MgRoleManagementDirectoryRoleDefinition" +"Cmdlets","UpdateMgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","PATCH","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","matched","Update-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"Cmdlets","UpdateMgRoleManagementDirectoryRoleEligibilitySchedule.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleEligibilitySchedule","PATCH","/roleManagement/directory/roleEligibilitySchedules/{param}","matched","Update-MgRoleManagementDirectoryRoleEligibilitySchedule" +"Cmdlets","UpdateMgRoleManagementDirectoryRoleEligibilityScheduleInstance.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","PATCH","/roleManagement/directory/roleEligibilityScheduleInstances/{param}","matched","Update-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"Cmdlets","UpdateMgRoleManagementDirectoryRoleEligibilityScheduleRequest.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","PATCH","/roleManagement/directory/roleEligibilityScheduleRequests/{param}","matched","Update-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"Cmdlets","UpdateMgRoleManagementEntitlementManagement.g.cs","v1.0","Update-MgRoleManagementEntitlementManagement","PATCH","/roleManagement/entitlementManagement","matched","Update-MgRoleManagementEntitlementManagement" +"Cmdlets","UpdateMgRoleManagementEntitlementManagementResourceNamespace.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementResourceNamespace","PATCH","/roleManagement/entitlementManagement/resourceNamespaces/{param}","matched","Update-MgRoleManagementEntitlementManagementResourceNamespace" +"Cmdlets","UpdateMgRoleManagementEntitlementManagementResourceNamespaceResourceAction.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","PATCH","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions/{param}","matched","Update-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"Cmdlets","UpdateMgRoleManagementEntitlementManagementRoleAssignment.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleAssignment","PATCH","/roleManagement/entitlementManagement/roleAssignments/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleAssignment" +"Cmdlets","UpdateMgRoleManagementEntitlementManagementRoleAssignmentAppScope.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleAssignmentAppScope","PATCH","/roleManagement/entitlementManagement/roleAssignments/{param}/appScope","matched","Update-MgRoleManagementEntitlementManagementRoleAssignmentAppScope" +"Cmdlets","UpdateMgRoleManagementEntitlementManagementRoleAssignmentSchedule.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","PATCH","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"Cmdlets","UpdateMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","PATCH","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"Cmdlets","UpdateMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","PATCH","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"Cmdlets","UpdateMgRoleManagementEntitlementManagementRoleDefinition.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleDefinition","PATCH","/roleManagement/entitlementManagement/roleDefinitions/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleDefinition" +"Cmdlets","UpdateMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","PATCH","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"Cmdlets","UpdateMgRoleManagementEntitlementManagementRoleEligibilitySchedule.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","PATCH","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"Cmdlets","UpdateMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","PATCH","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"Cmdlets","UpdateMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","PATCH","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminCustomer_Get.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomer","GET","/tenantRelationships/delegatedAdminCustomers/{param}","matched","Get-MgTenantRelationshipDelegatedAdminCustomer" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminCustomer_List.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomer","GET","/tenantRelationships/delegatedAdminCustomers","matched","Get-MgTenantRelationshipDelegatedAdminCustomer" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminCustomer.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomer","","","dispatcher","" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminCustomerCount.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomerCount","GET","/tenantRelationships/delegatedAdminCustomers/$count","matched","Get-MgTenantRelationshipDelegatedAdminCustomerCount" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail_Get.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","GET","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails/{param}","matched","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail_List.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","GET","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails","matched","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","","","dispatcher","" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount","GET","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails/$count","matched","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationship_Get.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationship","GET","/tenantRelationships/delegatedAdminRelationships/{param}","matched","Get-MgTenantRelationshipDelegatedAdminRelationship" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationship_List.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationship","GET","/tenantRelationships/delegatedAdminRelationships","matched","Get-MgTenantRelationshipDelegatedAdminRelationship" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationship.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationship","","","dispatcher","" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipAccessAssignment_Get.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","GET","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments/{param}","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipAccessAssignment_List.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","GET","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipAccessAssignment.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","","","dispatcher","" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount","GET","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments/$count","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipCount.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipCount","GET","/tenantRelationships/delegatedAdminRelationships/$count","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipCount" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipOperation_Get.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipOperation","GET","/tenantRelationships/delegatedAdminRelationships/{param}/operations/{param}","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipOperation_List.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipOperation","GET","/tenantRelationships/delegatedAdminRelationships/{param}/operations","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipOperation.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipOperation","","","dispatcher","" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipOperationCount.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipOperationCount","GET","/tenantRelationships/delegatedAdminRelationships/{param}/operations/$count","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipOperationCount" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipRequest_Get.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipRequest","GET","/tenantRelationships/delegatedAdminRelationships/{param}/requests/{param}","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipRequest_List.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipRequest","GET","/tenantRelationships/delegatedAdminRelationships/{param}/requests","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipRequest.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipRequest","","","dispatcher","" +"Cmdlets","GetMgTenantRelationshipDelegatedAdminRelationshipRequestCount.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipRequestCount","GET","/tenantRelationships/delegatedAdminRelationships/{param}/requests/$count","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipRequestCount" +"Cmdlets","NewMgTenantRelationshipDelegatedAdminCustomer.g.cs","v1.0","New-MgTenantRelationshipDelegatedAdminCustomer","POST","/tenantRelationships/delegatedAdminCustomers","matched","New-MgTenantRelationshipDelegatedAdminCustomer" +"Cmdlets","NewMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail.g.cs","v1.0","New-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","POST","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails","matched","New-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"Cmdlets","NewMgTenantRelationshipDelegatedAdminRelationship.g.cs","v1.0","New-MgTenantRelationshipDelegatedAdminRelationship","POST","/tenantRelationships/delegatedAdminRelationships","matched","New-MgTenantRelationshipDelegatedAdminRelationship" +"Cmdlets","NewMgTenantRelationshipDelegatedAdminRelationshipAccessAssignment.g.cs","v1.0","New-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","POST","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments","matched","New-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"Cmdlets","NewMgTenantRelationshipDelegatedAdminRelationshipOperation.g.cs","v1.0","New-MgTenantRelationshipDelegatedAdminRelationshipOperation","POST","/tenantRelationships/delegatedAdminRelationships/{param}/operations","matched","New-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"Cmdlets","NewMgTenantRelationshipDelegatedAdminRelationshipRequest.g.cs","v1.0","New-MgTenantRelationshipDelegatedAdminRelationshipRequest","POST","/tenantRelationships/delegatedAdminRelationships/{param}/requests","matched","New-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"Cmdlets","RemoveMgTenantRelationshipDelegatedAdminCustomer.g.cs","v1.0","Remove-MgTenantRelationshipDelegatedAdminCustomer","DELETE","/tenantRelationships/delegatedAdminCustomers/{param}","matched","Remove-MgTenantRelationshipDelegatedAdminCustomer" +"Cmdlets","RemoveMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail.g.cs","v1.0","Remove-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","DELETE","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails/{param}","matched","Remove-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"Cmdlets","RemoveMgTenantRelationshipDelegatedAdminRelationship.g.cs","v1.0","Remove-MgTenantRelationshipDelegatedAdminRelationship","DELETE","/tenantRelationships/delegatedAdminRelationships/{param}","matched","Remove-MgTenantRelationshipDelegatedAdminRelationship" +"Cmdlets","RemoveMgTenantRelationshipDelegatedAdminRelationshipAccessAssignment.g.cs","v1.0","Remove-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","DELETE","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments/{param}","matched","Remove-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"Cmdlets","RemoveMgTenantRelationshipDelegatedAdminRelationshipOperation.g.cs","v1.0","Remove-MgTenantRelationshipDelegatedAdminRelationshipOperation","DELETE","/tenantRelationships/delegatedAdminRelationships/{param}/operations/{param}","matched","Remove-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"Cmdlets","RemoveMgTenantRelationshipDelegatedAdminRelationshipRequest.g.cs","v1.0","Remove-MgTenantRelationshipDelegatedAdminRelationshipRequest","DELETE","/tenantRelationships/delegatedAdminRelationships/{param}/requests/{param}","matched","Remove-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"Cmdlets","UpdateMgTenantRelationshipDelegatedAdminCustomer.g.cs","v1.0","Update-MgTenantRelationshipDelegatedAdminCustomer","PATCH","/tenantRelationships/delegatedAdminCustomers/{param}","matched","Update-MgTenantRelationshipDelegatedAdminCustomer" +"Cmdlets","UpdateMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail.g.cs","v1.0","Update-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","PATCH","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails/{param}","matched","Update-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"Cmdlets","UpdateMgTenantRelationshipDelegatedAdminRelationship.g.cs","v1.0","Update-MgTenantRelationshipDelegatedAdminRelationship","PATCH","/tenantRelationships/delegatedAdminRelationships/{param}","matched","Update-MgTenantRelationshipDelegatedAdminRelationship" +"Cmdlets","UpdateMgTenantRelationshipDelegatedAdminRelationshipAccessAssignment.g.cs","v1.0","Update-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","PATCH","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments/{param}","matched","Update-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"Cmdlets","UpdateMgTenantRelationshipDelegatedAdminRelationshipOperation.g.cs","v1.0","Update-MgTenantRelationshipDelegatedAdminRelationshipOperation","PATCH","/tenantRelationships/delegatedAdminRelationships/{param}/operations/{param}","matched","Update-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"Cmdlets","UpdateMgTenantRelationshipDelegatedAdminRelationshipRequest.g.cs","v1.0","Update-MgTenantRelationshipDelegatedAdminRelationshipRequest","PATCH","/tenantRelationships/delegatedAdminRelationships/{param}/requests/{param}","matched","Update-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"Cmdlets","GetMgDataPolicyOperation_Get.g.cs","v1.0","Get-MgDataPolicyOperation","GET","/dataPolicyOperations/{param}","matched","Get-MgDataPolicyOperation" +"Cmdlets","GetMgDataPolicyOperation_List.g.cs","v1.0","Get-MgDataPolicyOperation","GET","/dataPolicyOperations","matched","Get-MgDataPolicyOperation" +"Cmdlets","GetMgDataPolicyOperation.g.cs","v1.0","Get-MgDataPolicyOperation","","","dispatcher","" +"Cmdlets","GetMgDataPolicyOperationCount.g.cs","v1.0","Get-MgDataPolicyOperationCount","GET","/dataPolicyOperations/$count","matched","Get-MgDataPolicyOperationCount" +"Cmdlets","GetMgIdentity.g.cs","v1.0","Get-MgIdentity","GET","/identity","no-oracle","" +"Cmdlets","GetMgIdentityApiConnector_Get.g.cs","v1.0","Get-MgIdentityApiConnector","GET","/identity/apiConnectors/{param}","matched","Get-MgIdentityApiConnector" +"Cmdlets","GetMgIdentityApiConnector_List.g.cs","v1.0","Get-MgIdentityApiConnector","GET","/identity/apiConnectors","matched","Get-MgIdentityApiConnector" +"Cmdlets","GetMgIdentityApiConnector.g.cs","v1.0","Get-MgIdentityApiConnector","","","dispatcher","" +"Cmdlets","GetMgIdentityApiConnectorCount.g.cs","v1.0","Get-MgIdentityApiConnectorCount","GET","/identity/apiConnectors/$count","matched","Get-MgIdentityApiConnectorCount" +"Cmdlets","GetMgIdentityAuthenticationEventFlow_Get.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlow","GET","/identity/authenticationEventsFlows/{param}","matched","Get-MgIdentityAuthenticationEventFlow" +"Cmdlets","GetMgIdentityAuthenticationEventFlow_List.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlow","GET","/identity/authenticationEventsFlows","matched","Get-MgIdentityAuthenticationEventFlow" +"Cmdlets","GetMgIdentityAuthenticationEventFlow.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlow","","","dispatcher","" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow_Get.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow","matched","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow_List.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow","GET","/identity/authenticationEventsFlows/externalUsersSelfServiceSignUpEventsFlow","matched","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow","","","dispatcher","" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCondition.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCondition","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions","matched","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCondition" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication_Get.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{param}","mismatch","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication_List.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications","mismatch","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","","","dispatcher","" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplicationCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplicationCount","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/$count","mismatch","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplicationCount" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollection.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollection","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection","matched","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollection" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp","mismatch","Get-MgIdentityAuthenticationEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes","mismatch","Get-MgIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$ref","mismatch","Get-MgIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$count","mismatch","Get-MgIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStart.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStart","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart","matched","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStart" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp","mismatch","Get-MgIdentityAuthenticationEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders","mismatch","Get-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$ref","mismatch","Get-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef" +"Cmdlets","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount","GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$count","mismatch","Get-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount" +"Cmdlets","GetMgIdentityAuthenticationEventFlowCondition.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowCondition","GET","/identity/authenticationEventsFlows/{param}/conditions","matched","Get-MgIdentityAuthenticationEventFlowCondition" +"Cmdlets","GetMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication_Get.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","GET","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications/{param}","mismatch","Get-MgIdentityAuthenticationEventFlowIncludeApplication" +"Cmdlets","GetMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication_List.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","GET","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications","mismatch","Get-MgIdentityAuthenticationEventFlowIncludeApplication" +"Cmdlets","GetMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","","","dispatcher","" +"Cmdlets","GetMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplicationCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplicationCount","GET","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications/$count","mismatch","Get-MgIdentityAuthenticationEventFlowIncludeApplicationCount" +"Cmdlets","GetMgIdentityAuthenticationEventFlowCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowCount","GET","/identity/authenticationEventsFlows/$count","matched","Get-MgIdentityAuthenticationEventFlowCount" +"Cmdlets","GetMgIdentityAuthenticationEventFlowCountAsExternalUserSelfServiceSignUpEventFlow.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowCountAsExternalUserSelfServiceSignUpEventFlow","GET","/identity/authenticationEventsFlows/externalUsersSelfServiceSignUpEventsFlow/$count","matched","Get-MgIdentityAuthenticationEventFlowCountAsExternalUserSelfServiceSignUpEventFlow" +"Cmdlets","GetMgIdentityAuthenticationEventListener_Get.g.cs","v1.0","Get-MgIdentityAuthenticationEventListener","GET","/identity/authenticationEventListeners/{param}","matched","Get-MgIdentityAuthenticationEventListener" +"Cmdlets","GetMgIdentityAuthenticationEventListener_List.g.cs","v1.0","Get-MgIdentityAuthenticationEventListener","GET","/identity/authenticationEventListeners","matched","Get-MgIdentityAuthenticationEventListener" +"Cmdlets","GetMgIdentityAuthenticationEventListener.g.cs","v1.0","Get-MgIdentityAuthenticationEventListener","","","dispatcher","" +"Cmdlets","GetMgIdentityAuthenticationEventListenerCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventListenerCount","GET","/identity/authenticationEventListeners/$count","matched","Get-MgIdentityAuthenticationEventListenerCount" +"Cmdlets","GetMgIdentityB2xUserFlow_Get.g.cs","v1.0","Get-MgIdentityB2xUserFlow","GET","/identity/b2xUserFlows/{param}","mismatch","Get-MgIdentityB2XUserFlow" +"Cmdlets","GetMgIdentityB2xUserFlow_List.g.cs","v1.0","Get-MgIdentityB2xUserFlow","GET","/identity/b2xUserFlows","mismatch","Get-MgIdentityB2XUserFlow" +"Cmdlets","GetMgIdentityB2xUserFlow.g.cs","v1.0","Get-MgIdentityB2xUserFlow","","","dispatcher","" +"Cmdlets","GetMgIdentityB2xUserFlowApiConnectorConfiguration.g.cs","v1.0","Get-MgIdentityB2xUserFlowApiConnectorConfiguration","GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration","mismatch","Get-MgIdentityB2XUserFlowApiConnectorConfiguration" +"Cmdlets","GetMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection.g.cs","v1.0","Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection","GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection","mismatch","Get-MgIdentityB2XUserFlowPostAttributeCollection" +"Cmdlets","GetMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef.g.cs","v1.0","Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef","GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection/$ref","mismatch","Get-MgIdentityB2XUserFlowPostAttributeCollectionByRef" +"Cmdlets","GetMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup.g.cs","v1.0","Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup","GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup","mismatch","Get-MgIdentityB2XUserFlowPostFederationSignup" +"Cmdlets","GetMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef.g.cs","v1.0","Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef","GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup/$ref","mismatch","Get-MgIdentityB2XUserFlowPostFederationSignupByRef" +"Cmdlets","GetMgIdentityB2xUserFlowCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowCount","GET","/identity/b2xUserFlows/$count","mismatch","Get-MgIdentityB2XUserFlowCount" +"Cmdlets","GetMgIdentityB2xUserFlowIdentityProvider_Get.g.cs","v1.0","Get-MgIdentityB2xUserFlowIdentityProvider","GET","/identity/b2xUserFlows/{param}/identityProviders/{param}","mismatch","Get-MgIdentityB2XUserFlowIdentityProvider" +"Cmdlets","GetMgIdentityB2xUserFlowIdentityProvider_List.g.cs","v1.0","Get-MgIdentityB2xUserFlowIdentityProvider","GET","/identity/b2xUserFlows/{param}/identityProviders","mismatch","Get-MgIdentityB2XUserFlowIdentityProvider" +"Cmdlets","GetMgIdentityB2xUserFlowIdentityProvider.g.cs","v1.0","Get-MgIdentityB2xUserFlowIdentityProvider","","","dispatcher","" +"Cmdlets","GetMgIdentityB2xUserFlowIdentityProviderCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowIdentityProviderCount","GET","/identity/b2xUserFlows/{param}/identityProviders/$count","mismatch","Get-MgIdentityB2XUserFlowIdentityProviderCount" +"Cmdlets","GetMgIdentityB2xUserFlowLanguage_Get.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguage","GET","/identity/b2xUserFlows/{param}/languages/{param}","mismatch","Get-MgIdentityB2XUserFlowLanguage" +"Cmdlets","GetMgIdentityB2xUserFlowLanguage_List.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguage","GET","/identity/b2xUserFlows/{param}/languages","mismatch","Get-MgIdentityB2XUserFlowLanguage" +"Cmdlets","GetMgIdentityB2xUserFlowLanguage.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguage","","","dispatcher","" +"Cmdlets","GetMgIdentityB2xUserFlowLanguageCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageCount","GET","/identity/b2xUserFlows/{param}/languages/$count","mismatch","Get-MgIdentityB2XUserFlowLanguageCount" +"Cmdlets","GetMgIdentityB2xUserFlowLanguageDefaultPage_Get.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageDefaultPage","GET","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}","mismatch","Get-MgIdentityB2XUserFlowLanguageDefaultPage" +"Cmdlets","GetMgIdentityB2xUserFlowLanguageDefaultPage_List.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageDefaultPage","GET","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages","mismatch","Get-MgIdentityB2XUserFlowLanguageDefaultPage" +"Cmdlets","GetMgIdentityB2xUserFlowLanguageDefaultPage.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageDefaultPage","","","dispatcher","" +"Cmdlets","GetMgIdentityB2xUserFlowLanguageDefaultPageContent.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageDefaultPageContent","GET","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}/$value","mismatch","Get-MgIdentityB2XUserFlowLanguageDefaultPageContent" +"Cmdlets","GetMgIdentityB2xUserFlowLanguageDefaultPageCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageDefaultPageCount","GET","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/$count","mismatch","Get-MgIdentityB2XUserFlowLanguageDefaultPageCount" +"Cmdlets","GetMgIdentityB2xUserFlowLanguageOverridePage_Get.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageOverridePage","GET","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}","mismatch","Get-MgIdentityB2XUserFlowLanguageOverridePage" +"Cmdlets","GetMgIdentityB2xUserFlowLanguageOverridePage_List.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageOverridePage","GET","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages","mismatch","Get-MgIdentityB2XUserFlowLanguageOverridePage" +"Cmdlets","GetMgIdentityB2xUserFlowLanguageOverridePage.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageOverridePage","","","dispatcher","" +"Cmdlets","GetMgIdentityB2xUserFlowLanguageOverridePageContent.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageOverridePageContent","GET","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}/$value","mismatch","Get-MgIdentityB2XUserFlowLanguageOverridePageContent" +"Cmdlets","GetMgIdentityB2xUserFlowLanguageOverridePageCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageOverridePageCount","GET","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/$count","mismatch","Get-MgIdentityB2XUserFlowLanguageOverridePageCount" +"Cmdlets","GetMgIdentityB2xUserFlowUserAttributeAssignment_Get.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserAttributeAssignment","GET","/identity/b2xUserFlows/{param}/userAttributeAssignments/{param}","mismatch","Get-MgIdentityB2XUserFlowUserAttributeAssignment" +"Cmdlets","GetMgIdentityB2xUserFlowUserAttributeAssignment_List.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserAttributeAssignment","GET","/identity/b2xUserFlows/{param}/userAttributeAssignments","mismatch","Get-MgIdentityB2XUserFlowUserAttributeAssignment" +"Cmdlets","GetMgIdentityB2xUserFlowUserAttributeAssignment.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserAttributeAssignment","","","dispatcher","" +"Cmdlets","GetMgIdentityB2xUserFlowUserAttributeAssignmentCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserAttributeAssignmentCount","GET","/identity/b2xUserFlows/{param}/userAttributeAssignments/$count","mismatch","Get-MgIdentityB2XUserFlowUserAttributeAssignmentCount" +"Cmdlets","GetMgIdentityB2xUserFlowUserAttributeAssignmentGetOrder.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserAttributeAssignmentGetOrder","GET","/identity/b2xUserFlows/{param}/userAttributeAssignments/getOrder","mismatch","Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder" +"Cmdlets","GetMgIdentityB2xUserFlowUserAttributeAssignmentUserAttribute.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserAttributeAssignmentUserAttribute","GET","/identity/b2xUserFlows/{param}/userAttributeAssignments/{param}/userAttribute","mismatch","Get-MgIdentityB2XUserFlowUserAttributeAssignmentUserAttribute" +"Cmdlets","GetMgIdentityB2xUserFlowUserFlowIdentityProvider.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserFlowIdentityProvider","GET","/identity/b2xUserFlows/{param}/userFlowIdentityProviders","no-oracle","" +"Cmdlets","GetMgIdentityB2xUserFlowUserFlowIdentityProviderByRef.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef","GET","/identity/b2xUserFlows/{param}/userFlowIdentityProviders/$ref","mismatch","Get-MgIdentityB2XUserFlowIdentityProviderByRef" +"Cmdlets","GetMgIdentityB2xUserFlowUserFlowIdentityProviderCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserFlowIdentityProviderCount","GET","/identity/b2xUserFlows/{param}/userFlowIdentityProviders/$count","no-oracle","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationContextClassReference_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationContextClassReference","GET","/identity/conditionalAccess/authenticationContextClassReferences/{param}","matched","Get-MgIdentityConditionalAccessAuthenticationContextClassReference" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationContextClassReference_List.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationContextClassReference","GET","/identity/conditionalAccess/authenticationContextClassReferences","matched","Get-MgIdentityConditionalAccessAuthenticationContextClassReference" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationContextClassReference.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationContextClassReference","","","dispatcher","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationContextClassReferenceCount.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationContextClassReferenceCount","GET","/identity/conditionalAccess/authenticationContextClassReferences/$count","matched","Get-MgIdentityConditionalAccessAuthenticationContextClassReferenceCount" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrength.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrength","GET","/identity/conditionalAccess/authenticationStrength","no-oracle","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","GET","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param}","no-oracle","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode_List.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","GET","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes","no-oracle","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","","","dispatcher","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodModeCount.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodModeCount","GET","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes/$count","no-oracle","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthPolicy_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy","GET","/identity/conditionalAccess/authenticationStrength/policies/{param}","no-oracle","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthPolicy_List.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy","GET","/identity/conditionalAccess/authenticationStrength/policies","no-oracle","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthPolicy.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy","","","dispatcher","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","GET","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param}","no-oracle","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration_List.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","GET","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations","no-oracle","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","","","dispatcher","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfigurationCount.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfigurationCount","GET","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/$count","no-oracle","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthPolicyCount.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCount","GET","/identity/conditionalAccess/authenticationStrength/policies/$count","no-oracle","" +"Cmdlets","GetMgIdentityConditionalAccessAuthenticationStrengthPolicyUsage.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyUsage","GET","/identity/conditionalAccess/authenticationStrength/policies/{param}/usage","mismatch","Invoke-MgUsageIdentityConditionalAccessAuthenticationStrengthPolicy" +"Cmdlets","GetMgIdentityConditionalAccessDeletedItem.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItem","GET","/identity/conditionalAccess/deletedItems","matched","Get-MgIdentityConditionalAccessDeletedItem" +"Cmdlets","GetMgIdentityConditionalAccessDeletedItemNamedLocation_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemNamedLocation","GET","/identity/conditionalAccess/deletedItems/namedLocations/{param}","matched","Get-MgIdentityConditionalAccessDeletedItemNamedLocation" +"Cmdlets","GetMgIdentityConditionalAccessDeletedItemNamedLocation_List.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemNamedLocation","GET","/identity/conditionalAccess/deletedItems/namedLocations","matched","Get-MgIdentityConditionalAccessDeletedItemNamedLocation" +"Cmdlets","GetMgIdentityConditionalAccessDeletedItemNamedLocation.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemNamedLocation","","","dispatcher","" +"Cmdlets","GetMgIdentityConditionalAccessDeletedItemNamedLocationCount.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemNamedLocationCount","GET","/identity/conditionalAccess/deletedItems/namedLocations/$count","matched","Get-MgIdentityConditionalAccessDeletedItemNamedLocationCount" +"Cmdlets","GetMgIdentityConditionalAccessDeletedItemPolicy_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemPolicy","GET","/identity/conditionalAccess/deletedItems/policies/{param}","matched","Get-MgIdentityConditionalAccessDeletedItemPolicy" +"Cmdlets","GetMgIdentityConditionalAccessDeletedItemPolicy_List.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemPolicy","GET","/identity/conditionalAccess/deletedItems/policies","matched","Get-MgIdentityConditionalAccessDeletedItemPolicy" +"Cmdlets","GetMgIdentityConditionalAccessDeletedItemPolicy.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemPolicy","","","dispatcher","" +"Cmdlets","GetMgIdentityConditionalAccessDeletedItemPolicyCount.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemPolicyCount","GET","/identity/conditionalAccess/deletedItems/policies/$count","matched","Get-MgIdentityConditionalAccessDeletedItemPolicyCount" +"Cmdlets","GetMgIdentityConditionalAccessNamedLocation_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessNamedLocation","GET","/identity/conditionalAccess/namedLocations/{param}","matched","Get-MgIdentityConditionalAccessNamedLocation" +"Cmdlets","GetMgIdentityConditionalAccessNamedLocation_List.g.cs","v1.0","Get-MgIdentityConditionalAccessNamedLocation","GET","/identity/conditionalAccess/namedLocations","matched","Get-MgIdentityConditionalAccessNamedLocation" +"Cmdlets","GetMgIdentityConditionalAccessNamedLocation.g.cs","v1.0","Get-MgIdentityConditionalAccessNamedLocation","","","dispatcher","" +"Cmdlets","GetMgIdentityConditionalAccessNamedLocationCount.g.cs","v1.0","Get-MgIdentityConditionalAccessNamedLocationCount","GET","/identity/conditionalAccess/namedLocations/$count","matched","Get-MgIdentityConditionalAccessNamedLocationCount" +"Cmdlets","GetMgIdentityConditionalAccessPolicy_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessPolicy","GET","/identity/conditionalAccess/policies/{param}","matched","Get-MgIdentityConditionalAccessPolicy" +"Cmdlets","GetMgIdentityConditionalAccessPolicy_List.g.cs","v1.0","Get-MgIdentityConditionalAccessPolicy","GET","/identity/conditionalAccess/policies","matched","Get-MgIdentityConditionalAccessPolicy" +"Cmdlets","GetMgIdentityConditionalAccessPolicy.g.cs","v1.0","Get-MgIdentityConditionalAccessPolicy","","","dispatcher","" +"Cmdlets","GetMgIdentityConditionalAccessPolicyCount.g.cs","v1.0","Get-MgIdentityConditionalAccessPolicyCount","GET","/identity/conditionalAccess/policies/$count","matched","Get-MgIdentityConditionalAccessPolicyCount" +"Cmdlets","GetMgIdentityConditionalAccessTemplate_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessTemplate","GET","/identity/conditionalAccess/templates/{param}","matched","Get-MgIdentityConditionalAccessTemplate" +"Cmdlets","GetMgIdentityConditionalAccessTemplate_List.g.cs","v1.0","Get-MgIdentityConditionalAccessTemplate","GET","/identity/conditionalAccess/templates","matched","Get-MgIdentityConditionalAccessTemplate" +"Cmdlets","GetMgIdentityConditionalAccessTemplate.g.cs","v1.0","Get-MgIdentityConditionalAccessTemplate","","","dispatcher","" +"Cmdlets","GetMgIdentityConditionalAccessTemplateCount.g.cs","v1.0","Get-MgIdentityConditionalAccessTemplateCount","GET","/identity/conditionalAccess/templates/$count","matched","Get-MgIdentityConditionalAccessTemplateCount" +"Cmdlets","GetMgIdentityCustomAuthenticationExtension_Get.g.cs","v1.0","Get-MgIdentityCustomAuthenticationExtension","GET","/identity/customAuthenticationExtensions/{param}","matched","Get-MgIdentityCustomAuthenticationExtension" +"Cmdlets","GetMgIdentityCustomAuthenticationExtension_List.g.cs","v1.0","Get-MgIdentityCustomAuthenticationExtension","GET","/identity/customAuthenticationExtensions","matched","Get-MgIdentityCustomAuthenticationExtension" +"Cmdlets","GetMgIdentityCustomAuthenticationExtension.g.cs","v1.0","Get-MgIdentityCustomAuthenticationExtension","","","dispatcher","" +"Cmdlets","GetMgIdentityCustomAuthenticationExtensionCount.g.cs","v1.0","Get-MgIdentityCustomAuthenticationExtensionCount","GET","/identity/customAuthenticationExtensions/$count","matched","Get-MgIdentityCustomAuthenticationExtensionCount" +"Cmdlets","GetMgIdentityProtection.g.cs","v1.0","Get-MgIdentityProtection","GET","/identityProtection","no-oracle","" +"Cmdlets","GetMgIdentityProtectionRiskDetection_Get.g.cs","v1.0","Get-MgIdentityProtectionRiskDetection","GET","/identityProtection/riskDetections/{param}","mismatch","Get-MgRiskDetection" +"Cmdlets","GetMgIdentityProtectionRiskDetection_List.g.cs","v1.0","Get-MgIdentityProtectionRiskDetection","GET","/identityProtection/riskDetections","mismatch","Get-MgRiskDetection" +"Cmdlets","GetMgIdentityProtectionRiskDetection.g.cs","v1.0","Get-MgIdentityProtectionRiskDetection","","","dispatcher","" +"Cmdlets","GetMgIdentityProtectionRiskDetectionCount.g.cs","v1.0","Get-MgIdentityProtectionRiskDetectionCount","GET","/identityProtection/riskDetections/$count","mismatch","Get-MgRiskDetectionCount" +"Cmdlets","GetMgIdentityProtectionRiskyServicePrincipal_Get.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipal","GET","/identityProtection/riskyServicePrincipals/{param}","mismatch","Get-MgRiskyServicePrincipal" +"Cmdlets","GetMgIdentityProtectionRiskyServicePrincipal_List.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipal","GET","/identityProtection/riskyServicePrincipals","mismatch","Get-MgRiskyServicePrincipal" +"Cmdlets","GetMgIdentityProtectionRiskyServicePrincipal.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgIdentityProtectionRiskyServicePrincipalCount.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipalCount","GET","/identityProtection/riskyServicePrincipals/$count","mismatch","Get-MgRiskyServicePrincipalCount" +"Cmdlets","GetMgIdentityProtectionRiskyServicePrincipalHistory_Get.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipalHistory","GET","/identityProtection/riskyServicePrincipals/{param}/history/{param}","mismatch","Get-MgRiskyServicePrincipalHistory" +"Cmdlets","GetMgIdentityProtectionRiskyServicePrincipalHistory_List.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipalHistory","GET","/identityProtection/riskyServicePrincipals/{param}/history","mismatch","Get-MgRiskyServicePrincipalHistory" +"Cmdlets","GetMgIdentityProtectionRiskyServicePrincipalHistory.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipalHistory","","","dispatcher","" +"Cmdlets","GetMgIdentityProtectionRiskyServicePrincipalHistoryCount.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipalHistoryCount","GET","/identityProtection/riskyServicePrincipals/{param}/history/$count","mismatch","Get-MgRiskyServicePrincipalHistoryCount" +"Cmdlets","GetMgIdentityProtectionRiskyUser_Get.g.cs","v1.0","Get-MgIdentityProtectionRiskyUser","GET","/identityProtection/riskyUsers/{param}","mismatch","Get-MgRiskyUser" +"Cmdlets","GetMgIdentityProtectionRiskyUser_List.g.cs","v1.0","Get-MgIdentityProtectionRiskyUser","GET","/identityProtection/riskyUsers","mismatch","Get-MgRiskyUser" +"Cmdlets","GetMgIdentityProtectionRiskyUser.g.cs","v1.0","Get-MgIdentityProtectionRiskyUser","","","dispatcher","" +"Cmdlets","GetMgIdentityProtectionRiskyUserCount.g.cs","v1.0","Get-MgIdentityProtectionRiskyUserCount","GET","/identityProtection/riskyUsers/$count","mismatch","Get-MgRiskyUserCount" +"Cmdlets","GetMgIdentityProtectionRiskyUserHistory_Get.g.cs","v1.0","Get-MgIdentityProtectionRiskyUserHistory","GET","/identityProtection/riskyUsers/{param}/history/{param}","mismatch","Get-MgRiskyUserHistory" +"Cmdlets","GetMgIdentityProtectionRiskyUserHistory_List.g.cs","v1.0","Get-MgIdentityProtectionRiskyUserHistory","GET","/identityProtection/riskyUsers/{param}/history","mismatch","Get-MgRiskyUserHistory" +"Cmdlets","GetMgIdentityProtectionRiskyUserHistory.g.cs","v1.0","Get-MgIdentityProtectionRiskyUserHistory","","","dispatcher","" +"Cmdlets","GetMgIdentityProtectionRiskyUserHistoryCount.g.cs","v1.0","Get-MgIdentityProtectionRiskyUserHistoryCount","GET","/identityProtection/riskyUsers/{param}/history/$count","mismatch","Get-MgRiskyUserHistoryCount" +"Cmdlets","GetMgIdentityProtectionServicePrincipalRiskDetection_Get.g.cs","v1.0","Get-MgIdentityProtectionServicePrincipalRiskDetection","GET","/identityProtection/servicePrincipalRiskDetections/{param}","mismatch","Get-MgServicePrincipalRiskDetection" +"Cmdlets","GetMgIdentityProtectionServicePrincipalRiskDetection_List.g.cs","v1.0","Get-MgIdentityProtectionServicePrincipalRiskDetection","GET","/identityProtection/servicePrincipalRiskDetections","mismatch","Get-MgServicePrincipalRiskDetection" +"Cmdlets","GetMgIdentityProtectionServicePrincipalRiskDetection.g.cs","v1.0","Get-MgIdentityProtectionServicePrincipalRiskDetection","","","dispatcher","" +"Cmdlets","GetMgIdentityProtectionServicePrincipalRiskDetectionCount.g.cs","v1.0","Get-MgIdentityProtectionServicePrincipalRiskDetectionCount","GET","/identityProtection/servicePrincipalRiskDetections/$count","mismatch","Get-MgServicePrincipalRiskDetectionCount" +"Cmdlets","GetMgIdentityProvider_Get.g.cs","v1.0","Get-MgIdentityProvider","GET","/identity/identityProviders/{param}","matched","Get-MgIdentityProvider" +"Cmdlets","GetMgIdentityProvider_List.g.cs","v1.0","Get-MgIdentityProvider","GET","/identity/identityProviders","matched","Get-MgIdentityProvider" +"Cmdlets","GetMgIdentityProvider.g.cs","v1.0","Get-MgIdentityProvider","","","dispatcher","" +"Cmdlets","GetMgIdentityProviderAvailableProviderTypes.g.cs","v1.0","Get-MgIdentityProviderAvailableProviderTypes","GET","/identity/identityProviders/availableProviderTypes","mismatch","Invoke-MgAvailableIdentityProviderType" +"Cmdlets","GetMgIdentityProviderCount.g.cs","v1.0","Get-MgIdentityProviderCount","GET","/identity/identityProviders/$count","matched","Get-MgIdentityProviderCount" +"Cmdlets","GetMgIdentityRiskPrevention.g.cs","v1.0","Get-MgIdentityRiskPrevention","GET","/identity/riskPrevention","matched","Get-MgIdentityRiskPrevention" +"Cmdlets","GetMgIdentityRiskPreventionFraudProtectionProvider_Get.g.cs","v1.0","Get-MgIdentityRiskPreventionFraudProtectionProvider","GET","/identity/riskPrevention/fraudProtectionProviders/{param}","matched","Get-MgIdentityRiskPreventionFraudProtectionProvider" +"Cmdlets","GetMgIdentityRiskPreventionFraudProtectionProvider_List.g.cs","v1.0","Get-MgIdentityRiskPreventionFraudProtectionProvider","GET","/identity/riskPrevention/fraudProtectionProviders","matched","Get-MgIdentityRiskPreventionFraudProtectionProvider" +"Cmdlets","GetMgIdentityRiskPreventionFraudProtectionProvider.g.cs","v1.0","Get-MgIdentityRiskPreventionFraudProtectionProvider","","","dispatcher","" +"Cmdlets","GetMgIdentityRiskPreventionFraudProtectionProviderCount.g.cs","v1.0","Get-MgIdentityRiskPreventionFraudProtectionProviderCount","GET","/identity/riskPrevention/fraudProtectionProviders/$count","matched","Get-MgIdentityRiskPreventionFraudProtectionProviderCount" +"Cmdlets","GetMgIdentityRiskPreventionWebApplicationFirewallProvider_Get.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallProvider","GET","/identity/riskPrevention/webApplicationFirewallProviders/{param}","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"Cmdlets","GetMgIdentityRiskPreventionWebApplicationFirewallProvider_List.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallProvider","GET","/identity/riskPrevention/webApplicationFirewallProviders","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"Cmdlets","GetMgIdentityRiskPreventionWebApplicationFirewallProvider.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallProvider","","","dispatcher","" +"Cmdlets","GetMgIdentityRiskPreventionWebApplicationFirewallProviderCount.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallProviderCount","GET","/identity/riskPrevention/webApplicationFirewallProviders/$count","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallProviderCount" +"Cmdlets","GetMgIdentityRiskPreventionWebApplicationFirewallVerification_Get.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallVerification","GET","/identity/riskPrevention/webApplicationFirewallVerifications/{param}","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"Cmdlets","GetMgIdentityRiskPreventionWebApplicationFirewallVerification_List.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallVerification","GET","/identity/riskPrevention/webApplicationFirewallVerifications","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"Cmdlets","GetMgIdentityRiskPreventionWebApplicationFirewallVerification.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallVerification","","","dispatcher","" +"Cmdlets","GetMgIdentityRiskPreventionWebApplicationFirewallVerificationCount.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallVerificationCount","GET","/identity/riskPrevention/webApplicationFirewallVerifications/$count","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallVerificationCount" +"Cmdlets","GetMgIdentityRiskPreventionWebApplicationFirewallVerificationProvider.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallVerificationProvider","GET","/identity/riskPrevention/webApplicationFirewallVerifications/{param}/provider","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallVerificationProvider" +"Cmdlets","GetMgIdentityUserFlowAttribute_Get.g.cs","v1.0","Get-MgIdentityUserFlowAttribute","GET","/identity/userFlowAttributes/{param}","matched","Get-MgIdentityUserFlowAttribute" +"Cmdlets","GetMgIdentityUserFlowAttribute_List.g.cs","v1.0","Get-MgIdentityUserFlowAttribute","GET","/identity/userFlowAttributes","matched","Get-MgIdentityUserFlowAttribute" +"Cmdlets","GetMgIdentityUserFlowAttribute.g.cs","v1.0","Get-MgIdentityUserFlowAttribute","","","dispatcher","" +"Cmdlets","GetMgIdentityUserFlowAttributeCount.g.cs","v1.0","Get-MgIdentityUserFlowAttributeCount","GET","/identity/userFlowAttributes/$count","matched","Get-MgIdentityUserFlowAttributeCount" +"Cmdlets","GetMgIdentityVerifiedId.g.cs","v1.0","Get-MgIdentityVerifiedId","GET","/identity/verifiedId","matched","Get-MgIdentityVerifiedId" +"Cmdlets","GetMgIdentityVerifiedIdProfile_Get.g.cs","v1.0","Get-MgIdentityVerifiedIdProfile","GET","/identity/verifiedId/profiles/{param}","matched","Get-MgIdentityVerifiedIdProfile" +"Cmdlets","GetMgIdentityVerifiedIdProfile_List.g.cs","v1.0","Get-MgIdentityVerifiedIdProfile","GET","/identity/verifiedId/profiles","matched","Get-MgIdentityVerifiedIdProfile" +"Cmdlets","GetMgIdentityVerifiedIdProfile.g.cs","v1.0","Get-MgIdentityVerifiedIdProfile","","","dispatcher","" +"Cmdlets","GetMgIdentityVerifiedIdProfileCount.g.cs","v1.0","Get-MgIdentityVerifiedIdProfileCount","GET","/identity/verifiedId/profiles/$count","matched","Get-MgIdentityVerifiedIdProfileCount" +"Cmdlets","GetMgInformationProtection.g.cs","v1.0","Get-MgInformationProtection","GET","/informationProtection","matched","Get-MgInformationProtection" +"Cmdlets","GetMgInformationProtectionBitlocker.g.cs","v1.0","Get-MgInformationProtectionBitlocker","GET","/informationProtection/bitlocker","matched","Get-MgInformationProtectionBitlocker" +"Cmdlets","GetMgInformationProtectionBitlockerRecoveryKey_Get.g.cs","v1.0","Get-MgInformationProtectionBitlockerRecoveryKey","GET","/informationProtection/bitlocker/recoveryKeys/{param}","matched","Get-MgInformationProtectionBitlockerRecoveryKey" +"Cmdlets","GetMgInformationProtectionBitlockerRecoveryKey_List.g.cs","v1.0","Get-MgInformationProtectionBitlockerRecoveryKey","GET","/informationProtection/bitlocker/recoveryKeys","matched","Get-MgInformationProtectionBitlockerRecoveryKey" +"Cmdlets","GetMgInformationProtectionBitlockerRecoveryKey.g.cs","v1.0","Get-MgInformationProtectionBitlockerRecoveryKey","","","dispatcher","" +"Cmdlets","GetMgInformationProtectionBitlockerRecoveryKeyCount.g.cs","v1.0","Get-MgInformationProtectionBitlockerRecoveryKeyCount","GET","/informationProtection/bitlocker/recoveryKeys/$count","matched","Get-MgInformationProtectionBitlockerRecoveryKeyCount" +"Cmdlets","GetMgInformationProtectionThreatAssessmentRequest_Get.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequest","GET","/informationProtection/threatAssessmentRequests/{param}","matched","Get-MgInformationProtectionThreatAssessmentRequest" +"Cmdlets","GetMgInformationProtectionThreatAssessmentRequest_List.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequest","GET","/informationProtection/threatAssessmentRequests","matched","Get-MgInformationProtectionThreatAssessmentRequest" +"Cmdlets","GetMgInformationProtectionThreatAssessmentRequest.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequest","","","dispatcher","" +"Cmdlets","GetMgInformationProtectionThreatAssessmentRequestCount.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequestCount","GET","/informationProtection/threatAssessmentRequests/$count","matched","Get-MgInformationProtectionThreatAssessmentRequestCount" +"Cmdlets","GetMgInformationProtectionThreatAssessmentRequestResult_Get.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequestResult","GET","/informationProtection/threatAssessmentRequests/{param}/results/{param}","matched","Get-MgInformationProtectionThreatAssessmentRequestResult" +"Cmdlets","GetMgInformationProtectionThreatAssessmentRequestResult_List.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequestResult","GET","/informationProtection/threatAssessmentRequests/{param}/results","matched","Get-MgInformationProtectionThreatAssessmentRequestResult" +"Cmdlets","GetMgInformationProtectionThreatAssessmentRequestResult.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequestResult","","","dispatcher","" +"Cmdlets","GetMgInformationProtectionThreatAssessmentRequestResultCount.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequestResultCount","GET","/informationProtection/threatAssessmentRequests/{param}/results/$count","matched","Get-MgInformationProtectionThreatAssessmentRequestResultCount" +"Cmdlets","GetMgInvitation.g.cs","v1.0","Get-MgInvitation","GET","/invitations","matched","Get-MgInvitation" +"Cmdlets","GetMgInvitationCount.g.cs","v1.0","Get-MgInvitationCount","GET","/invitations/$count","matched","Get-MgInvitationCount" +"Cmdlets","GetMgInvitationInvitedUser.g.cs","v1.0","Get-MgInvitationInvitedUser","GET","/invitations/invitedUser","no-oracle","" +"Cmdlets","GetMgInvitationInvitedUserMailboxSetting.g.cs","v1.0","Get-MgInvitationInvitedUserMailboxSetting","GET","/invitations/invitedUser/mailboxSettings","matched","Get-MgInvitationInvitedUserMailboxSetting" +"Cmdlets","GetMgInvitationInvitedUserServiceProvisioningError.g.cs","v1.0","Get-MgInvitationInvitedUserServiceProvisioningError","GET","/invitations/invitedUser/serviceProvisioningErrors","matched","Get-MgInvitationInvitedUserServiceProvisioningError" +"Cmdlets","GetMgInvitationInvitedUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgInvitationInvitedUserServiceProvisioningErrorCount","GET","/invitations/invitedUser/serviceProvisioningErrors/$count","matched","Get-MgInvitationInvitedUserServiceProvisioningErrorCount" +"Cmdlets","GetMgInvitationInvitedUserSponsor_Get.g.cs","v1.0","Get-MgInvitationInvitedUserSponsor","GET","/invitations/invitedUserSponsors/{param}","matched","Get-MgInvitationInvitedUserSponsor" +"Cmdlets","GetMgInvitationInvitedUserSponsor_List.g.cs","v1.0","Get-MgInvitationInvitedUserSponsor","GET","/invitations/invitedUserSponsors","matched","Get-MgInvitationInvitedUserSponsor" +"Cmdlets","GetMgInvitationInvitedUserSponsor.g.cs","v1.0","Get-MgInvitationInvitedUserSponsor","","","dispatcher","" +"Cmdlets","GetMgInvitationInvitedUserSponsorCount.g.cs","v1.0","Get-MgInvitationInvitedUserSponsorCount","GET","/invitations/invitedUserSponsors/$count","matched","Get-MgInvitationInvitedUserSponsorCount" +"Cmdlets","GetMgOauth2PermissionGrant_Get.g.cs","v1.0","Get-MgOauth2PermissionGrant","GET","/oauth2PermissionGrants/{param}","matched","Get-MgOauth2PermissionGrant" +"Cmdlets","GetMgOauth2PermissionGrant_List.g.cs","v1.0","Get-MgOauth2PermissionGrant","GET","/oauth2PermissionGrants","matched","Get-MgOauth2PermissionGrant" +"Cmdlets","GetMgOauth2PermissionGrant.g.cs","v1.0","Get-MgOauth2PermissionGrant","","","dispatcher","" +"Cmdlets","GetMgOauth2PermissionGrantCount.g.cs","v1.0","Get-MgOauth2PermissionGrantCount","GET","/oauth2PermissionGrants/$count","matched","Get-MgOauth2PermissionGrantCount" +"Cmdlets","GetMgOauth2PermissionGrantDelta.g.cs","v1.0","Get-MgOauth2PermissionGrantDelta","GET","/oauth2PermissionGrants/delta","matched","Get-MgOauth2PermissionGrantDelta" +"Cmdlets","GetMgOrganizationCertificateBasedAuthConfiguration_Get.g.cs","v1.0","Get-MgOrganizationCertificateBasedAuthConfiguration","GET","/organization/{param}/certificateBasedAuthConfiguration/{param}","matched","Get-MgOrganizationCertificateBasedAuthConfiguration" +"Cmdlets","GetMgOrganizationCertificateBasedAuthConfiguration_List.g.cs","v1.0","Get-MgOrganizationCertificateBasedAuthConfiguration","GET","/organization/{param}/certificateBasedAuthConfiguration","matched","Get-MgOrganizationCertificateBasedAuthConfiguration" +"Cmdlets","GetMgOrganizationCertificateBasedAuthConfiguration.g.cs","v1.0","Get-MgOrganizationCertificateBasedAuthConfiguration","","","dispatcher","" +"Cmdlets","GetMgOrganizationCertificateBasedAuthConfigurationCount.g.cs","v1.0","Get-MgOrganizationCertificateBasedAuthConfigurationCount","GET","/organization/{param}/certificateBasedAuthConfiguration/$count","matched","Get-MgOrganizationCertificateBasedAuthConfigurationCount" +"Cmdlets","GetMgPolicy.g.cs","v1.0","Get-MgPolicy","GET","/policies","no-oracle","" +"Cmdlets","GetMgPolicyActivityBasedTimeoutPolicy_Get.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicy","GET","/policies/activityBasedTimeoutPolicies/{param}","matched","Get-MgPolicyActivityBasedTimeoutPolicy" +"Cmdlets","GetMgPolicyActivityBasedTimeoutPolicy_List.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicy","GET","/policies/activityBasedTimeoutPolicies","matched","Get-MgPolicyActivityBasedTimeoutPolicy" +"Cmdlets","GetMgPolicyActivityBasedTimeoutPolicy.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicy","","","dispatcher","" +"Cmdlets","GetMgPolicyActivityBasedTimeoutPolicyApplyTo_Get.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicyApplyTo","GET","/policies/activityBasedTimeoutPolicies/{param}/appliesTo/{param}","matched","Get-MgPolicyActivityBasedTimeoutPolicyApplyTo" +"Cmdlets","GetMgPolicyActivityBasedTimeoutPolicyApplyTo_List.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicyApplyTo","GET","/policies/activityBasedTimeoutPolicies/{param}/appliesTo","matched","Get-MgPolicyActivityBasedTimeoutPolicyApplyTo" +"Cmdlets","GetMgPolicyActivityBasedTimeoutPolicyApplyTo.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicyApplyTo","","","dispatcher","" +"Cmdlets","GetMgPolicyActivityBasedTimeoutPolicyApplyToCount.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicyApplyToCount","GET","/policies/activityBasedTimeoutPolicies/{param}/appliesTo/$count","matched","Get-MgPolicyActivityBasedTimeoutPolicyApplyToCount" +"Cmdlets","GetMgPolicyActivityBasedTimeoutPolicyCount.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicyCount","GET","/policies/activityBasedTimeoutPolicies/$count","matched","Get-MgPolicyActivityBasedTimeoutPolicyCount" +"Cmdlets","GetMgPolicyAdminConsentRequestPolicy.g.cs","v1.0","Get-MgPolicyAdminConsentRequestPolicy","GET","/policies/adminConsentRequestPolicy","matched","Get-MgPolicyAdminConsentRequestPolicy" +"Cmdlets","GetMgPolicyAppManagementPolicy_Get.g.cs","v1.0","Get-MgPolicyAppManagementPolicy","GET","/policies/appManagementPolicies/{param}","matched","Get-MgPolicyAppManagementPolicy" +"Cmdlets","GetMgPolicyAppManagementPolicy_List.g.cs","v1.0","Get-MgPolicyAppManagementPolicy","GET","/policies/appManagementPolicies","matched","Get-MgPolicyAppManagementPolicy" +"Cmdlets","GetMgPolicyAppManagementPolicy.g.cs","v1.0","Get-MgPolicyAppManagementPolicy","","","dispatcher","" +"Cmdlets","GetMgPolicyAppManagementPolicyApplyTo_Get.g.cs","v1.0","Get-MgPolicyAppManagementPolicyApplyTo","GET","/policies/appManagementPolicies/{param}/appliesTo/{param}","matched","Get-MgPolicyAppManagementPolicyApplyTo" +"Cmdlets","GetMgPolicyAppManagementPolicyApplyTo_List.g.cs","v1.0","Get-MgPolicyAppManagementPolicyApplyTo","GET","/policies/appManagementPolicies/{param}/appliesTo","matched","Get-MgPolicyAppManagementPolicyApplyTo" +"Cmdlets","GetMgPolicyAppManagementPolicyApplyTo.g.cs","v1.0","Get-MgPolicyAppManagementPolicyApplyTo","","","dispatcher","" +"Cmdlets","GetMgPolicyAppManagementPolicyApplyToCount.g.cs","v1.0","Get-MgPolicyAppManagementPolicyApplyToCount","GET","/policies/appManagementPolicies/{param}/appliesTo/$count","matched","Get-MgPolicyAppManagementPolicyApplyToCount" +"Cmdlets","GetMgPolicyAppManagementPolicyCount.g.cs","v1.0","Get-MgPolicyAppManagementPolicyCount","GET","/policies/appManagementPolicies/$count","matched","Get-MgPolicyAppManagementPolicyCount" +"Cmdlets","GetMgPolicyAuthenticationFlowPolicy.g.cs","v1.0","Get-MgPolicyAuthenticationFlowPolicy","GET","/policies/authenticationFlowsPolicy","matched","Get-MgPolicyAuthenticationFlowPolicy" +"Cmdlets","GetMgPolicyAuthenticationMethodPolicy.g.cs","v1.0","Get-MgPolicyAuthenticationMethodPolicy","GET","/policies/authenticationMethodsPolicy","matched","Get-MgPolicyAuthenticationMethodPolicy" +"Cmdlets","GetMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration_Get.g.cs","v1.0","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","GET","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{param}","matched","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"Cmdlets","GetMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration_List.g.cs","v1.0","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","GET","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations","matched","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"Cmdlets","GetMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.g.cs","v1.0","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","","","dispatcher","" +"Cmdlets","GetMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount.g.cs","v1.0","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount","GET","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/$count","matched","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount" +"Cmdlets","GetMgPolicyAuthenticationStrengthPolicy_Get.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicy","GET","/policies/authenticationStrengthPolicies/{param}","matched","Get-MgPolicyAuthenticationStrengthPolicy" +"Cmdlets","GetMgPolicyAuthenticationStrengthPolicy_List.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicy","GET","/policies/authenticationStrengthPolicies","matched","Get-MgPolicyAuthenticationStrengthPolicy" +"Cmdlets","GetMgPolicyAuthenticationStrengthPolicy.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicy","","","dispatcher","" +"Cmdlets","GetMgPolicyAuthenticationStrengthPolicyCombinationConfiguration_Get.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","GET","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations/{param}","matched","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"Cmdlets","GetMgPolicyAuthenticationStrengthPolicyCombinationConfiguration_List.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","GET","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations","matched","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"Cmdlets","GetMgPolicyAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","","","dispatcher","" +"Cmdlets","GetMgPolicyAuthenticationStrengthPolicyCombinationConfigurationCount.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfigurationCount","GET","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations/$count","matched","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfigurationCount" +"Cmdlets","GetMgPolicyAuthenticationStrengthPolicyCount.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicyCount","GET","/policies/authenticationStrengthPolicies/$count","matched","Get-MgPolicyAuthenticationStrengthPolicyCount" +"Cmdlets","GetMgPolicyAuthenticationStrengthPolicyUsage.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicyUsage","GET","/policies/authenticationStrengthPolicies/{param}/usage","mismatch","Invoke-MgUsagePolicyAuthenticationStrengthPolicy" +"Cmdlets","GetMgPolicyAuthorizationPolicy.g.cs","v1.0","Get-MgPolicyAuthorizationPolicy","GET","/policies/authorizationPolicy","matched","Get-MgPolicyAuthorizationPolicy" +"Cmdlets","GetMgPolicyClaimMappingPolicy_Get.g.cs","v1.0","Get-MgPolicyClaimMappingPolicy","GET","/policies/claimsMappingPolicies/{param}","matched","Get-MgPolicyClaimMappingPolicy" +"Cmdlets","GetMgPolicyClaimMappingPolicy_List.g.cs","v1.0","Get-MgPolicyClaimMappingPolicy","GET","/policies/claimsMappingPolicies","matched","Get-MgPolicyClaimMappingPolicy" +"Cmdlets","GetMgPolicyClaimMappingPolicy.g.cs","v1.0","Get-MgPolicyClaimMappingPolicy","","","dispatcher","" +"Cmdlets","GetMgPolicyClaimMappingPolicyApplyTo_Get.g.cs","v1.0","Get-MgPolicyClaimMappingPolicyApplyTo","GET","/policies/claimsMappingPolicies/{param}/appliesTo/{param}","matched","Get-MgPolicyClaimMappingPolicyApplyTo" +"Cmdlets","GetMgPolicyClaimMappingPolicyApplyTo_List.g.cs","v1.0","Get-MgPolicyClaimMappingPolicyApplyTo","GET","/policies/claimsMappingPolicies/{param}/appliesTo","matched","Get-MgPolicyClaimMappingPolicyApplyTo" +"Cmdlets","GetMgPolicyClaimMappingPolicyApplyTo.g.cs","v1.0","Get-MgPolicyClaimMappingPolicyApplyTo","","","dispatcher","" +"Cmdlets","GetMgPolicyClaimMappingPolicyApplyToCount.g.cs","v1.0","Get-MgPolicyClaimMappingPolicyApplyToCount","GET","/policies/claimsMappingPolicies/{param}/appliesTo/$count","matched","Get-MgPolicyClaimMappingPolicyApplyToCount" +"Cmdlets","GetMgPolicyClaimMappingPolicyCount.g.cs","v1.0","Get-MgPolicyClaimMappingPolicyCount","GET","/policies/claimsMappingPolicies/$count","matched","Get-MgPolicyClaimMappingPolicyCount" +"Cmdlets","GetMgPolicyConditionalAccessPolicy_Get.g.cs","v1.0","Get-MgPolicyConditionalAccessPolicy","GET","/policies/conditionalAccessPolicies/{param}","no-oracle","" +"Cmdlets","GetMgPolicyConditionalAccessPolicy_List.g.cs","v1.0","Get-MgPolicyConditionalAccessPolicy","GET","/policies/conditionalAccessPolicies","no-oracle","" +"Cmdlets","GetMgPolicyConditionalAccessPolicy.g.cs","v1.0","Get-MgPolicyConditionalAccessPolicy","","","dispatcher","" +"Cmdlets","GetMgPolicyConditionalAccessPolicyCount.g.cs","v1.0","Get-MgPolicyConditionalAccessPolicyCount","GET","/policies/conditionalAccessPolicies/$count","matched","Get-MgPolicyConditionalAccessPolicyCount" +"Cmdlets","GetMgPolicyCrossTenantAccessPolicy.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicy","GET","/policies/crossTenantAccessPolicy","matched","Get-MgPolicyCrossTenantAccessPolicy" +"Cmdlets","GetMgPolicyCrossTenantAccessPolicyDefault.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyDefault","GET","/policies/crossTenantAccessPolicy/default","matched","Get-MgPolicyCrossTenantAccessPolicyDefault" +"Cmdlets","GetMgPolicyCrossTenantAccessPolicyPartner_Get.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyPartner","GET","/policies/crossTenantAccessPolicy/partners/{param}","matched","Get-MgPolicyCrossTenantAccessPolicyPartner" +"Cmdlets","GetMgPolicyCrossTenantAccessPolicyPartner_List.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyPartner","GET","/policies/crossTenantAccessPolicy/partners","matched","Get-MgPolicyCrossTenantAccessPolicyPartner" +"Cmdlets","GetMgPolicyCrossTenantAccessPolicyPartner.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyPartner","","","dispatcher","" +"Cmdlets","GetMgPolicyCrossTenantAccessPolicyPartnerCount.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyPartnerCount","GET","/policies/crossTenantAccessPolicy/partners/$count","matched","Get-MgPolicyCrossTenantAccessPolicyPartnerCount" +"Cmdlets","GetMgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization","GET","/policies/crossTenantAccessPolicy/partners/{param}/identitySynchronization","matched","Get-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization" +"Cmdlets","GetMgPolicyCrossTenantAccessPolicyTemplate.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyTemplate","GET","/policies/crossTenantAccessPolicy/templates","matched","Get-MgPolicyCrossTenantAccessPolicyTemplate" +"Cmdlets","GetMgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization","GET","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization","matched","Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization" +"Cmdlets","GetMgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration","GET","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration","matched","Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration" +"Cmdlets","GetMgPolicyDefaultAppManagementPolicy.g.cs","v1.0","Get-MgPolicyDefaultAppManagementPolicy","GET","/policies/defaultAppManagementPolicy","matched","Get-MgPolicyDefaultAppManagementPolicy" +"Cmdlets","GetMgPolicyDeviceRegistrationPolicy.g.cs","v1.0","Get-MgPolicyDeviceRegistrationPolicy","GET","/policies/deviceRegistrationPolicy","matched","Get-MgPolicyDeviceRegistrationPolicy" +"Cmdlets","GetMgPolicyFeatureRolloutPolicy_Get.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicy","GET","/policies/featureRolloutPolicies/{param}","matched","Get-MgPolicyFeatureRolloutPolicy" +"Cmdlets","GetMgPolicyFeatureRolloutPolicy_List.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicy","GET","/policies/featureRolloutPolicies","matched","Get-MgPolicyFeatureRolloutPolicy" +"Cmdlets","GetMgPolicyFeatureRolloutPolicy.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicy","","","dispatcher","" +"Cmdlets","GetMgPolicyFeatureRolloutPolicyApplyTo.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicyApplyTo","GET","/policies/featureRolloutPolicies/{param}/appliesTo","matched","Get-MgPolicyFeatureRolloutPolicyApplyTo" +"Cmdlets","GetMgPolicyFeatureRolloutPolicyApplyToByRef.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicyApplyToByRef","GET","/policies/featureRolloutPolicies/{param}/appliesTo/$ref","matched","Get-MgPolicyFeatureRolloutPolicyApplyToByRef" +"Cmdlets","GetMgPolicyFeatureRolloutPolicyApplyToCount.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicyApplyToCount","GET","/policies/featureRolloutPolicies/{param}/appliesTo/$count","matched","Get-MgPolicyFeatureRolloutPolicyApplyToCount" +"Cmdlets","GetMgPolicyFeatureRolloutPolicyCount.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicyCount","GET","/policies/featureRolloutPolicies/$count","matched","Get-MgPolicyFeatureRolloutPolicyCount" +"Cmdlets","GetMgPolicyFederatedTokenValidationPolicy.g.cs","v1.0","Get-MgPolicyFederatedTokenValidationPolicy","GET","/policies/federatedTokenValidationPolicy","matched","Get-MgPolicyFederatedTokenValidationPolicy" +"Cmdlets","GetMgPolicyHomeRealmDiscoveryPolicy_Get.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicy","GET","/policies/homeRealmDiscoveryPolicies/{param}","matched","Get-MgPolicyHomeRealmDiscoveryPolicy" +"Cmdlets","GetMgPolicyHomeRealmDiscoveryPolicy_List.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicy","GET","/policies/homeRealmDiscoveryPolicies","matched","Get-MgPolicyHomeRealmDiscoveryPolicy" +"Cmdlets","GetMgPolicyHomeRealmDiscoveryPolicy.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicy","","","dispatcher","" +"Cmdlets","GetMgPolicyHomeRealmDiscoveryPolicyApplyTo_Get.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo","GET","/policies/homeRealmDiscoveryPolicies/{param}/appliesTo/{param}","matched","Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo" +"Cmdlets","GetMgPolicyHomeRealmDiscoveryPolicyApplyTo_List.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo","GET","/policies/homeRealmDiscoveryPolicies/{param}/appliesTo","matched","Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo" +"Cmdlets","GetMgPolicyHomeRealmDiscoveryPolicyApplyTo.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo","","","dispatcher","" +"Cmdlets","GetMgPolicyHomeRealmDiscoveryPolicyApplyToCount.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicyApplyToCount","GET","/policies/homeRealmDiscoveryPolicies/{param}/appliesTo/$count","matched","Get-MgPolicyHomeRealmDiscoveryPolicyApplyToCount" +"Cmdlets","GetMgPolicyHomeRealmDiscoveryPolicyCount.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicyCount","GET","/policies/homeRealmDiscoveryPolicies/$count","matched","Get-MgPolicyHomeRealmDiscoveryPolicyCount" +"Cmdlets","GetMgPolicyIdentitySecurityDefaultEnforcementPolicy.g.cs","v1.0","Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy","GET","/policies/identitySecurityDefaultsEnforcementPolicy","matched","Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy" +"Cmdlets","GetMgPolicyOwnerlessGroupPolicy.g.cs","v1.0","Get-MgPolicyOwnerlessGroupPolicy","GET","/policies/ownerlessGroupPolicy","matched","Get-MgPolicyOwnerlessGroupPolicy" +"Cmdlets","GetMgPolicyPermissionGrantPolicy_Get.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicy","GET","/policies/permissionGrantPolicies/{param}","matched","Get-MgPolicyPermissionGrantPolicy" +"Cmdlets","GetMgPolicyPermissionGrantPolicy_List.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicy","GET","/policies/permissionGrantPolicies","matched","Get-MgPolicyPermissionGrantPolicy" +"Cmdlets","GetMgPolicyPermissionGrantPolicy.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicy","","","dispatcher","" +"Cmdlets","GetMgPolicyPermissionGrantPolicyCount.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyCount","GET","/policies/permissionGrantPolicies/$count","matched","Get-MgPolicyPermissionGrantPolicyCount" +"Cmdlets","GetMgPolicyPermissionGrantPolicyExclude_Get.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyExclude","GET","/policies/permissionGrantPolicies/{param}/excludes/{param}","matched","Get-MgPolicyPermissionGrantPolicyExclude" +"Cmdlets","GetMgPolicyPermissionGrantPolicyExclude_List.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyExclude","GET","/policies/permissionGrantPolicies/{param}/excludes","matched","Get-MgPolicyPermissionGrantPolicyExclude" +"Cmdlets","GetMgPolicyPermissionGrantPolicyExclude.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyExclude","","","dispatcher","" +"Cmdlets","GetMgPolicyPermissionGrantPolicyExcludeCount.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyExcludeCount","GET","/policies/permissionGrantPolicies/{param}/excludes/$count","matched","Get-MgPolicyPermissionGrantPolicyExcludeCount" +"Cmdlets","GetMgPolicyPermissionGrantPolicyInclude_Get.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyInclude","GET","/policies/permissionGrantPolicies/{param}/includes/{param}","matched","Get-MgPolicyPermissionGrantPolicyInclude" +"Cmdlets","GetMgPolicyPermissionGrantPolicyInclude_List.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyInclude","GET","/policies/permissionGrantPolicies/{param}/includes","matched","Get-MgPolicyPermissionGrantPolicyInclude" +"Cmdlets","GetMgPolicyPermissionGrantPolicyInclude.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyInclude","","","dispatcher","" +"Cmdlets","GetMgPolicyPermissionGrantPolicyIncludeCount.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyIncludeCount","GET","/policies/permissionGrantPolicies/{param}/includes/$count","matched","Get-MgPolicyPermissionGrantPolicyIncludeCount" +"Cmdlets","GetMgPolicyRoleManagementPolicy_Get.g.cs","v1.0","Get-MgPolicyRoleManagementPolicy","GET","/policies/roleManagementPolicies/{param}","matched","Get-MgPolicyRoleManagementPolicy" +"Cmdlets","GetMgPolicyRoleManagementPolicy_List.g.cs","v1.0","Get-MgPolicyRoleManagementPolicy","GET","/policies/roleManagementPolicies","matched","Get-MgPolicyRoleManagementPolicy" +"Cmdlets","GetMgPolicyRoleManagementPolicy.g.cs","v1.0","Get-MgPolicyRoleManagementPolicy","","","dispatcher","" +"Cmdlets","GetMgPolicyRoleManagementPolicyAssignment_Get.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyAssignment","GET","/policies/roleManagementPolicyAssignments/{param}","matched","Get-MgPolicyRoleManagementPolicyAssignment" +"Cmdlets","GetMgPolicyRoleManagementPolicyAssignment_List.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyAssignment","GET","/policies/roleManagementPolicyAssignments","matched","Get-MgPolicyRoleManagementPolicyAssignment" +"Cmdlets","GetMgPolicyRoleManagementPolicyAssignment.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyAssignment","","","dispatcher","" +"Cmdlets","GetMgPolicyRoleManagementPolicyAssignmentCount.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyAssignmentCount","GET","/policies/roleManagementPolicyAssignments/$count","matched","Get-MgPolicyRoleManagementPolicyAssignmentCount" +"Cmdlets","GetMgPolicyRoleManagementPolicyAssignmentPolicy.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyAssignmentPolicy","GET","/policies/roleManagementPolicyAssignments/{param}/policy","matched","Get-MgPolicyRoleManagementPolicyAssignmentPolicy" +"Cmdlets","GetMgPolicyRoleManagementPolicyCount.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyCount","GET","/policies/roleManagementPolicies/$count","matched","Get-MgPolicyRoleManagementPolicyCount" +"Cmdlets","GetMgPolicyRoleManagementPolicyEffectiveRule_Get.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyEffectiveRule","GET","/policies/roleManagementPolicies/{param}/effectiveRules/{param}","matched","Get-MgPolicyRoleManagementPolicyEffectiveRule" +"Cmdlets","GetMgPolicyRoleManagementPolicyEffectiveRule_List.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyEffectiveRule","GET","/policies/roleManagementPolicies/{param}/effectiveRules","matched","Get-MgPolicyRoleManagementPolicyEffectiveRule" +"Cmdlets","GetMgPolicyRoleManagementPolicyEffectiveRule.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyEffectiveRule","","","dispatcher","" +"Cmdlets","GetMgPolicyRoleManagementPolicyEffectiveRuleCount.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyEffectiveRuleCount","GET","/policies/roleManagementPolicies/{param}/effectiveRules/$count","matched","Get-MgPolicyRoleManagementPolicyEffectiveRuleCount" +"Cmdlets","GetMgPolicyRoleManagementPolicyRule_Get.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyRule","GET","/policies/roleManagementPolicies/{param}/rules/{param}","matched","Get-MgPolicyRoleManagementPolicyRule" +"Cmdlets","GetMgPolicyRoleManagementPolicyRule_List.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyRule","GET","/policies/roleManagementPolicies/{param}/rules","matched","Get-MgPolicyRoleManagementPolicyRule" +"Cmdlets","GetMgPolicyRoleManagementPolicyRule.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyRule","","","dispatcher","" +"Cmdlets","GetMgPolicyRoleManagementPolicyRuleCount.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyRuleCount","GET","/policies/roleManagementPolicies/{param}/rules/$count","matched","Get-MgPolicyRoleManagementPolicyRuleCount" +"Cmdlets","GetMgPolicyTokenIssuancePolicy_Get.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicy","GET","/policies/tokenIssuancePolicies/{param}","matched","Get-MgPolicyTokenIssuancePolicy" +"Cmdlets","GetMgPolicyTokenIssuancePolicy_List.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicy","GET","/policies/tokenIssuancePolicies","matched","Get-MgPolicyTokenIssuancePolicy" +"Cmdlets","GetMgPolicyTokenIssuancePolicy.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicy","","","dispatcher","" +"Cmdlets","GetMgPolicyTokenIssuancePolicyApplyTo_Get.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicyApplyTo","GET","/policies/tokenIssuancePolicies/{param}/appliesTo/{param}","matched","Get-MgPolicyTokenIssuancePolicyApplyTo" +"Cmdlets","GetMgPolicyTokenIssuancePolicyApplyTo_List.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicyApplyTo","GET","/policies/tokenIssuancePolicies/{param}/appliesTo","matched","Get-MgPolicyTokenIssuancePolicyApplyTo" +"Cmdlets","GetMgPolicyTokenIssuancePolicyApplyTo.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicyApplyTo","","","dispatcher","" +"Cmdlets","GetMgPolicyTokenIssuancePolicyApplyToCount.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicyApplyToCount","GET","/policies/tokenIssuancePolicies/{param}/appliesTo/$count","matched","Get-MgPolicyTokenIssuancePolicyApplyToCount" +"Cmdlets","GetMgPolicyTokenIssuancePolicyCount.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicyCount","GET","/policies/tokenIssuancePolicies/$count","matched","Get-MgPolicyTokenIssuancePolicyCount" +"Cmdlets","GetMgPolicyTokenLifetimePolicy_Get.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicy","GET","/policies/tokenLifetimePolicies/{param}","matched","Get-MgPolicyTokenLifetimePolicy" +"Cmdlets","GetMgPolicyTokenLifetimePolicy_List.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicy","GET","/policies/tokenLifetimePolicies","matched","Get-MgPolicyTokenLifetimePolicy" +"Cmdlets","GetMgPolicyTokenLifetimePolicy.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicy","","","dispatcher","" +"Cmdlets","GetMgPolicyTokenLifetimePolicyApplyTo_Get.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicyApplyTo","GET","/policies/tokenLifetimePolicies/{param}/appliesTo/{param}","matched","Get-MgPolicyTokenLifetimePolicyApplyTo" +"Cmdlets","GetMgPolicyTokenLifetimePolicyApplyTo_List.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicyApplyTo","GET","/policies/tokenLifetimePolicies/{param}/appliesTo","matched","Get-MgPolicyTokenLifetimePolicyApplyTo" +"Cmdlets","GetMgPolicyTokenLifetimePolicyApplyTo.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicyApplyTo","","","dispatcher","" +"Cmdlets","GetMgPolicyTokenLifetimePolicyApplyToCount.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicyApplyToCount","GET","/policies/tokenLifetimePolicies/{param}/appliesTo/$count","matched","Get-MgPolicyTokenLifetimePolicyApplyToCount" +"Cmdlets","GetMgPolicyTokenLifetimePolicyCount.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicyCount","GET","/policies/tokenLifetimePolicies/$count","matched","Get-MgPolicyTokenLifetimePolicyCount" +"Cmdlets","GetMgTenantRelationshipMultiTenantOrganization.g.cs","v1.0","Get-MgTenantRelationshipMultiTenantOrganization","GET","/tenantRelationships/multiTenantOrganization","matched","Get-MgTenantRelationshipMultiTenantOrganization" +"Cmdlets","GetMgTenantRelationshipMultiTenantOrganizationJoinRequest.g.cs","v1.0","Get-MgTenantRelationshipMultiTenantOrganizationJoinRequest","GET","/tenantRelationships/multiTenantOrganization/joinRequest","matched","Get-MgTenantRelationshipMultiTenantOrganizationJoinRequest" +"Cmdlets","GetMgTenantRelationshipMultiTenantOrganizationTenant_Get.g.cs","v1.0","Get-MgTenantRelationshipMultiTenantOrganizationTenant","GET","/tenantRelationships/multiTenantOrganization/tenants/{param}","matched","Get-MgTenantRelationshipMultiTenantOrganizationTenant" +"Cmdlets","GetMgTenantRelationshipMultiTenantOrganizationTenant_List.g.cs","v1.0","Get-MgTenantRelationshipMultiTenantOrganizationTenant","GET","/tenantRelationships/multiTenantOrganization/tenants","matched","Get-MgTenantRelationshipMultiTenantOrganizationTenant" +"Cmdlets","GetMgTenantRelationshipMultiTenantOrganizationTenant.g.cs","v1.0","Get-MgTenantRelationshipMultiTenantOrganizationTenant","","","dispatcher","" +"Cmdlets","GetMgTenantRelationshipMultiTenantOrganizationTenantCount.g.cs","v1.0","Get-MgTenantRelationshipMultiTenantOrganizationTenantCount","GET","/tenantRelationships/multiTenantOrganization/tenants/$count","matched","Get-MgTenantRelationshipMultiTenantOrganizationTenantCount" +"Cmdlets","GetMgUserAuthentication.g.cs","v1.0","Get-MgUserAuthentication","GET","/users/{param}/authentication","no-oracle","" +"Cmdlets","GetMgUserAuthenticationEmailMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationEmailMethod","GET","/users/{param}/authentication/emailMethods/{param}","matched","Get-MgUserAuthenticationEmailMethod" +"Cmdlets","GetMgUserAuthenticationEmailMethod_List.g.cs","v1.0","Get-MgUserAuthenticationEmailMethod","GET","/users/{param}/authentication/emailMethods","matched","Get-MgUserAuthenticationEmailMethod" +"Cmdlets","GetMgUserAuthenticationEmailMethod.g.cs","v1.0","Get-MgUserAuthenticationEmailMethod","","","dispatcher","" +"Cmdlets","GetMgUserAuthenticationEmailMethodCount.g.cs","v1.0","Get-MgUserAuthenticationEmailMethodCount","GET","/users/{param}/authentication/emailMethods/$count","matched","Get-MgUserAuthenticationEmailMethodCount" +"Cmdlets","GetMgUserAuthenticationExternalAuthenticationMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationExternalAuthenticationMethod","GET","/users/{param}/authentication/externalAuthenticationMethods/{param}","matched","Get-MgUserAuthenticationExternalAuthenticationMethod" +"Cmdlets","GetMgUserAuthenticationExternalAuthenticationMethod_List.g.cs","v1.0","Get-MgUserAuthenticationExternalAuthenticationMethod","GET","/users/{param}/authentication/externalAuthenticationMethods","matched","Get-MgUserAuthenticationExternalAuthenticationMethod" +"Cmdlets","GetMgUserAuthenticationExternalAuthenticationMethod.g.cs","v1.0","Get-MgUserAuthenticationExternalAuthenticationMethod","","","dispatcher","" +"Cmdlets","GetMgUserAuthenticationExternalAuthenticationMethodCount.g.cs","v1.0","Get-MgUserAuthenticationExternalAuthenticationMethodCount","GET","/users/{param}/authentication/externalAuthenticationMethods/$count","matched","Get-MgUserAuthenticationExternalAuthenticationMethodCount" +"Cmdlets","GetMgUserAuthenticationFido2Method_Get.g.cs","v1.0","Get-MgUserAuthenticationFido2Method","GET","/users/{param}/authentication/fido2Methods/{param}","matched","Get-MgUserAuthenticationFido2Method" +"Cmdlets","GetMgUserAuthenticationFido2Method_List.g.cs","v1.0","Get-MgUserAuthenticationFido2Method","GET","/users/{param}/authentication/fido2Methods","matched","Get-MgUserAuthenticationFido2Method" +"Cmdlets","GetMgUserAuthenticationFido2Method.g.cs","v1.0","Get-MgUserAuthenticationFido2Method","","","dispatcher","" +"Cmdlets","GetMgUserAuthenticationFido2MethodCount.g.cs","v1.0","Get-MgUserAuthenticationFido2MethodCount","GET","/users/{param}/authentication/fido2Methods/$count","matched","Get-MgUserAuthenticationFido2MethodCount" +"Cmdlets","GetMgUserAuthenticationFido2MethodCreationOptions.g.cs","v1.0","Get-MgUserAuthenticationFido2MethodCreationOptions","GET","/users/{param}/authentication/fido2Methods/creationOptions","mismatch","Invoke-MgCreationUserAuthenticationFido2MethodOption" +"Cmdlets","GetMgUserAuthenticationMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationMethod","GET","/users/{param}/authentication/methods/{param}","matched","Get-MgUserAuthenticationMethod" +"Cmdlets","GetMgUserAuthenticationMethod_List.g.cs","v1.0","Get-MgUserAuthenticationMethod","GET","/users/{param}/authentication/methods","matched","Get-MgUserAuthenticationMethod" +"Cmdlets","GetMgUserAuthenticationMethod.g.cs","v1.0","Get-MgUserAuthenticationMethod","","","dispatcher","" +"Cmdlets","GetMgUserAuthenticationMethodCount.g.cs","v1.0","Get-MgUserAuthenticationMethodCount","GET","/users/{param}/authentication/methods/$count","matched","Get-MgUserAuthenticationMethodCount" +"Cmdlets","GetMgUserAuthenticationMicrosoftAuthenticatorMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationMicrosoftAuthenticatorMethod","GET","/users/{param}/authentication/microsoftAuthenticatorMethods/{param}","matched","Get-MgUserAuthenticationMicrosoftAuthenticatorMethod" +"Cmdlets","GetMgUserAuthenticationMicrosoftAuthenticatorMethod_List.g.cs","v1.0","Get-MgUserAuthenticationMicrosoftAuthenticatorMethod","GET","/users/{param}/authentication/microsoftAuthenticatorMethods","matched","Get-MgUserAuthenticationMicrosoftAuthenticatorMethod" +"Cmdlets","GetMgUserAuthenticationMicrosoftAuthenticatorMethod.g.cs","v1.0","Get-MgUserAuthenticationMicrosoftAuthenticatorMethod","","","dispatcher","" +"Cmdlets","GetMgUserAuthenticationMicrosoftAuthenticatorMethodCount.g.cs","v1.0","Get-MgUserAuthenticationMicrosoftAuthenticatorMethodCount","GET","/users/{param}/authentication/microsoftAuthenticatorMethods/$count","matched","Get-MgUserAuthenticationMicrosoftAuthenticatorMethodCount" +"Cmdlets","GetMgUserAuthenticationMicrosoftAuthenticatorMethodDevice.g.cs","v1.0","Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice","GET","/users/{param}/authentication/microsoftAuthenticatorMethods/{param}/device","matched","Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice" +"Cmdlets","GetMgUserAuthenticationOperation_Get.g.cs","v1.0","Get-MgUserAuthenticationOperation","GET","/users/{param}/authentication/operations/{param}","matched","Get-MgUserAuthenticationOperation" +"Cmdlets","GetMgUserAuthenticationOperation_List.g.cs","v1.0","Get-MgUserAuthenticationOperation","GET","/users/{param}/authentication/operations","matched","Get-MgUserAuthenticationOperation" +"Cmdlets","GetMgUserAuthenticationOperation.g.cs","v1.0","Get-MgUserAuthenticationOperation","","","dispatcher","" +"Cmdlets","GetMgUserAuthenticationOperationCount.g.cs","v1.0","Get-MgUserAuthenticationOperationCount","GET","/users/{param}/authentication/operations/$count","matched","Get-MgUserAuthenticationOperationCount" +"Cmdlets","GetMgUserAuthenticationPasswordMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationPasswordMethod","GET","/users/{param}/authentication/passwordMethods/{param}","matched","Get-MgUserAuthenticationPasswordMethod" +"Cmdlets","GetMgUserAuthenticationPasswordMethod_List.g.cs","v1.0","Get-MgUserAuthenticationPasswordMethod","GET","/users/{param}/authentication/passwordMethods","matched","Get-MgUserAuthenticationPasswordMethod" +"Cmdlets","GetMgUserAuthenticationPasswordMethod.g.cs","v1.0","Get-MgUserAuthenticationPasswordMethod","","","dispatcher","" +"Cmdlets","GetMgUserAuthenticationPasswordMethodCount.g.cs","v1.0","Get-MgUserAuthenticationPasswordMethodCount","GET","/users/{param}/authentication/passwordMethods/$count","matched","Get-MgUserAuthenticationPasswordMethodCount" +"Cmdlets","GetMgUserAuthenticationPhoneMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationPhoneMethod","GET","/users/{param}/authentication/phoneMethods/{param}","matched","Get-MgUserAuthenticationPhoneMethod" +"Cmdlets","GetMgUserAuthenticationPhoneMethod_List.g.cs","v1.0","Get-MgUserAuthenticationPhoneMethod","GET","/users/{param}/authentication/phoneMethods","matched","Get-MgUserAuthenticationPhoneMethod" +"Cmdlets","GetMgUserAuthenticationPhoneMethod.g.cs","v1.0","Get-MgUserAuthenticationPhoneMethod","","","dispatcher","" +"Cmdlets","GetMgUserAuthenticationPhoneMethodCount.g.cs","v1.0","Get-MgUserAuthenticationPhoneMethodCount","GET","/users/{param}/authentication/phoneMethods/$count","matched","Get-MgUserAuthenticationPhoneMethodCount" +"Cmdlets","GetMgUserAuthenticationPlatformCredentialMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationPlatformCredentialMethod","GET","/users/{param}/authentication/platformCredentialMethods/{param}","matched","Get-MgUserAuthenticationPlatformCredentialMethod" +"Cmdlets","GetMgUserAuthenticationPlatformCredentialMethod_List.g.cs","v1.0","Get-MgUserAuthenticationPlatformCredentialMethod","GET","/users/{param}/authentication/platformCredentialMethods","matched","Get-MgUserAuthenticationPlatformCredentialMethod" +"Cmdlets","GetMgUserAuthenticationPlatformCredentialMethod.g.cs","v1.0","Get-MgUserAuthenticationPlatformCredentialMethod","","","dispatcher","" +"Cmdlets","GetMgUserAuthenticationPlatformCredentialMethodCount.g.cs","v1.0","Get-MgUserAuthenticationPlatformCredentialMethodCount","GET","/users/{param}/authentication/platformCredentialMethods/$count","matched","Get-MgUserAuthenticationPlatformCredentialMethodCount" +"Cmdlets","GetMgUserAuthenticationPlatformCredentialMethodDevice.g.cs","v1.0","Get-MgUserAuthenticationPlatformCredentialMethodDevice","GET","/users/{param}/authentication/platformCredentialMethods/{param}/device","matched","Get-MgUserAuthenticationPlatformCredentialMethodDevice" +"Cmdlets","GetMgUserAuthenticationSoftwareOathMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationSoftwareOathMethod","GET","/users/{param}/authentication/softwareOathMethods/{param}","matched","Get-MgUserAuthenticationSoftwareOathMethod" +"Cmdlets","GetMgUserAuthenticationSoftwareOathMethod_List.g.cs","v1.0","Get-MgUserAuthenticationSoftwareOathMethod","GET","/users/{param}/authentication/softwareOathMethods","matched","Get-MgUserAuthenticationSoftwareOathMethod" +"Cmdlets","GetMgUserAuthenticationSoftwareOathMethod.g.cs","v1.0","Get-MgUserAuthenticationSoftwareOathMethod","","","dispatcher","" +"Cmdlets","GetMgUserAuthenticationSoftwareOathMethodCount.g.cs","v1.0","Get-MgUserAuthenticationSoftwareOathMethodCount","GET","/users/{param}/authentication/softwareOathMethods/$count","matched","Get-MgUserAuthenticationSoftwareOathMethodCount" +"Cmdlets","GetMgUserAuthenticationTemporaryAccessPassMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationTemporaryAccessPassMethod","GET","/users/{param}/authentication/temporaryAccessPassMethods/{param}","matched","Get-MgUserAuthenticationTemporaryAccessPassMethod" +"Cmdlets","GetMgUserAuthenticationTemporaryAccessPassMethod_List.g.cs","v1.0","Get-MgUserAuthenticationTemporaryAccessPassMethod","GET","/users/{param}/authentication/temporaryAccessPassMethods","matched","Get-MgUserAuthenticationTemporaryAccessPassMethod" +"Cmdlets","GetMgUserAuthenticationTemporaryAccessPassMethod.g.cs","v1.0","Get-MgUserAuthenticationTemporaryAccessPassMethod","","","dispatcher","" +"Cmdlets","GetMgUserAuthenticationTemporaryAccessPassMethodCount.g.cs","v1.0","Get-MgUserAuthenticationTemporaryAccessPassMethodCount","GET","/users/{param}/authentication/temporaryAccessPassMethods/$count","matched","Get-MgUserAuthenticationTemporaryAccessPassMethodCount" +"Cmdlets","GetMgUserAuthenticationWindowsHelloForBusinessMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationWindowsHelloForBusinessMethod","GET","/users/{param}/authentication/windowsHelloForBusinessMethods/{param}","matched","Get-MgUserAuthenticationWindowsHelloForBusinessMethod" +"Cmdlets","GetMgUserAuthenticationWindowsHelloForBusinessMethod_List.g.cs","v1.0","Get-MgUserAuthenticationWindowsHelloForBusinessMethod","GET","/users/{param}/authentication/windowsHelloForBusinessMethods","matched","Get-MgUserAuthenticationWindowsHelloForBusinessMethod" +"Cmdlets","GetMgUserAuthenticationWindowsHelloForBusinessMethod.g.cs","v1.0","Get-MgUserAuthenticationWindowsHelloForBusinessMethod","","","dispatcher","" +"Cmdlets","GetMgUserAuthenticationWindowsHelloForBusinessMethodCount.g.cs","v1.0","Get-MgUserAuthenticationWindowsHelloForBusinessMethodCount","GET","/users/{param}/authentication/windowsHelloForBusinessMethods/$count","matched","Get-MgUserAuthenticationWindowsHelloForBusinessMethodCount" +"Cmdlets","GetMgUserAuthenticationWindowsHelloForBusinessMethodDevice.g.cs","v1.0","Get-MgUserAuthenticationWindowsHelloForBusinessMethodDevice","GET","/users/{param}/authentication/windowsHelloForBusinessMethods/{param}/device","matched","Get-MgUserAuthenticationWindowsHelloForBusinessMethodDevice" +"Cmdlets","InvokeMgIdentityApiConnectorUploadClientCertificate.g.cs","v1.0","Invoke-MgIdentityApiConnectorUploadClientCertificate","POST","/identity/apiConnectors/{param}/uploadClientCertificate","mismatch","Invoke-MgUploadIdentityApiConnectorClientCertificate" +"Cmdlets","InvokeMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionUploadClientCertificate.g.cs","v1.0","Invoke-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionUploadClientCertificate","POST","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection/uploadClientCertificate","mismatch","Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate" +"Cmdlets","InvokeMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupUploadClientCertificate.g.cs","v1.0","Invoke-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupUploadClientCertificate","POST","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup/uploadClientCertificate","mismatch","Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate" +"Cmdlets","InvokeMgIdentityB2xUserFlowUserAttributeAssignmentSetOrder.g.cs","v1.0","Invoke-MgIdentityB2xUserFlowUserAttributeAssignmentSetOrder","POST","/identity/b2xUserFlows/{param}/userAttributeAssignments/setOrder","mismatch","Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder" +"Cmdlets","InvokeMgIdentityConditionalAccessAuthenticationStrengthPolicyUpdateAllowedCombinations.g.cs","v1.0","Invoke-MgIdentityConditionalAccessAuthenticationStrengthPolicyUpdateAllowedCombinations","POST","/identity/conditionalAccess/authenticationStrength/policies/{param}/updateAllowedCombinations","no-oracle","" +"Cmdlets","InvokeMgIdentityConditionalAccessDeletedItemNamedLocationRestore.g.cs","v1.0","Invoke-MgIdentityConditionalAccessDeletedItemNamedLocationRestore","POST","/identity/conditionalAccess/deletedItems/namedLocations/{param}/restore","mismatch","Restore-MgIdentityConditionalAccessDeletedItemNamedLocation" +"Cmdlets","InvokeMgIdentityConditionalAccessDeletedItemPolicyRestore.g.cs","v1.0","Invoke-MgIdentityConditionalAccessDeletedItemPolicyRestore","POST","/identity/conditionalAccess/deletedItems/policies/{param}/restore","mismatch","Restore-MgIdentityConditionalAccessDeletedItemPolicy" +"Cmdlets","InvokeMgIdentityConditionalAccessEvaluate.g.cs","v1.0","Invoke-MgIdentityConditionalAccessEvaluate","POST","/identity/conditionalAccess/evaluate","mismatch","Test-MgIdentityConditionalAccess" +"Cmdlets","InvokeMgIdentityConditionalAccessNamedLocationRestore.g.cs","v1.0","Invoke-MgIdentityConditionalAccessNamedLocationRestore","POST","/identity/conditionalAccess/namedLocations/{param}/restore","mismatch","Restore-MgIdentityConditionalAccessNamedLocation" +"Cmdlets","InvokeMgIdentityConditionalAccessPolicyRestore.g.cs","v1.0","Invoke-MgIdentityConditionalAccessPolicyRestore","POST","/identity/conditionalAccess/policies/{param}/restore","mismatch","Restore-MgIdentityConditionalAccessPolicy" +"Cmdlets","InvokeMgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration.g.cs","v1.0","Invoke-MgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration","POST","/identity/customAuthenticationExtensions/{param}/validateAuthenticationConfiguration","mismatch","Test-MgIdentityCustomAuthenticationExtensionAuthenticationConfiguration" +"Cmdlets","InvokeMgIdentityProtectionRiskyServicePrincipalConfirmCompromised.g.cs","v1.0","Invoke-MgIdentityProtectionRiskyServicePrincipalConfirmCompromised","POST","/identityProtection/riskyServicePrincipals/confirmCompromised","mismatch","Confirm-MgRiskyServicePrincipalCompromised" +"Cmdlets","InvokeMgIdentityProtectionRiskyServicePrincipalDismiss.g.cs","v1.0","Invoke-MgIdentityProtectionRiskyServicePrincipalDismiss","POST","/identityProtection/riskyServicePrincipals/dismiss","mismatch","Invoke-MgDismissRiskyServicePrincipal" +"Cmdlets","InvokeMgIdentityProtectionRiskyUserConfirmCompromised.g.cs","v1.0","Invoke-MgIdentityProtectionRiskyUserConfirmCompromised","POST","/identityProtection/riskyUsers/confirmCompromised","mismatch","Confirm-MgRiskyUserCompromised" +"Cmdlets","InvokeMgIdentityProtectionRiskyUserConfirmSafe.g.cs","v1.0","Invoke-MgIdentityProtectionRiskyUserConfirmSafe","POST","/identityProtection/riskyUsers/confirmSafe","mismatch","Confirm-MgRiskyUserSafe" +"Cmdlets","InvokeMgIdentityProtectionRiskyUserDismiss.g.cs","v1.0","Invoke-MgIdentityProtectionRiskyUserDismiss","POST","/identityProtection/riskyUsers/dismiss","mismatch","Invoke-MgDismissRiskyUser" +"Cmdlets","InvokeMgIdentityRiskPreventionWebApplicationFirewallProviderVerify.g.cs","v1.0","Invoke-MgIdentityRiskPreventionWebApplicationFirewallProviderVerify","POST","/identity/riskPrevention/webApplicationFirewallProviders/{param}/verify","mismatch","Confirm-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"Cmdlets","InvokeMgPolicyAuthenticationStrengthPolicyUpdateAllowedCombinations.g.cs","v1.0","Invoke-MgPolicyAuthenticationStrengthPolicyUpdateAllowedCombinations","POST","/policies/authenticationStrengthPolicies/{param}/updateAllowedCombinations","mismatch","Update-MgPolicyAuthenticationStrengthPolicyAllowedCombination" +"Cmdlets","InvokeMgPolicyConditionalAccessPolicyRestore.g.cs","v1.0","Invoke-MgPolicyConditionalAccessPolicyRestore","POST","/policies/conditionalAccessPolicies/{param}/restore","mismatch","Restore-MgPolicyConditionalAccessPolicy" +"Cmdlets","InvokeMgPolicyCrossTenantAccessPolicyDefaultResetToSystemDefault.g.cs","v1.0","Invoke-MgPolicyCrossTenantAccessPolicyDefaultResetToSystemDefault","POST","/policies/crossTenantAccessPolicy/default/resetToSystemDefault","mismatch","Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault" +"Cmdlets","InvokeMgUserAuthenticationMethodResetPassword.g.cs","v1.0","Invoke-MgUserAuthenticationMethodResetPassword","POST","/users/{param}/authentication/methods/{param}/resetPassword","mismatch","Reset-MgUserAuthenticationMethodPassword" +"Cmdlets","InvokeMgUserAuthenticationPhoneMethodDisableSmsSignIn.g.cs","v1.0","Invoke-MgUserAuthenticationPhoneMethodDisableSmsSignIn","POST","/users/{param}/authentication/phoneMethods/{param}/disableSmsSignIn","mismatch","Disable-MgUserAuthenticationPhoneMethodSmsSignIn" +"Cmdlets","InvokeMgUserAuthenticationPhoneMethodEnableSmsSignIn.g.cs","v1.0","Invoke-MgUserAuthenticationPhoneMethodEnableSmsSignIn","POST","/users/{param}/authentication/phoneMethods/{param}/enableSmsSignIn","mismatch","Enable-MgUserAuthenticationPhoneMethodSmsSignIn" +"Cmdlets","NewMgDataPolicyOperation.g.cs","v1.0","New-MgDataPolicyOperation","POST","/dataPolicyOperations","matched","New-MgDataPolicyOperation" +"Cmdlets","NewMgIdentityApiConnector.g.cs","v1.0","New-MgIdentityApiConnector","POST","/identity/apiConnectors","matched","New-MgIdentityApiConnector" +"Cmdlets","NewMgIdentityAuthenticationEventFlow.g.cs","v1.0","New-MgIdentityAuthenticationEventFlow","POST","/identity/authenticationEventsFlows","matched","New-MgIdentityAuthenticationEventFlow" +"Cmdlets","NewMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","POST","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications","mismatch","New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" +"Cmdlets","NewMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef.g.cs","v1.0","New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef","POST","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$ref","mismatch","New-MgIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef" +"Cmdlets","NewMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef.g.cs","v1.0","New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","POST","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$ref","mismatch","New-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef" +"Cmdlets","NewMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","New-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","POST","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications","mismatch","New-MgIdentityAuthenticationEventFlowIncludeApplication" +"Cmdlets","NewMgIdentityAuthenticationEventListener.g.cs","v1.0","New-MgIdentityAuthenticationEventListener","POST","/identity/authenticationEventListeners","matched","New-MgIdentityAuthenticationEventListener" +"Cmdlets","NewMgIdentityB2xUserFlow.g.cs","v1.0","New-MgIdentityB2xUserFlow","POST","/identity/b2xUserFlows","mismatch","New-MgIdentityB2XUserFlow" +"Cmdlets","NewMgIdentityB2xUserFlowLanguage.g.cs","v1.0","New-MgIdentityB2xUserFlowLanguage","POST","/identity/b2xUserFlows/{param}/languages","mismatch","New-MgIdentityB2XUserFlowLanguage" +"Cmdlets","NewMgIdentityB2xUserFlowLanguageDefaultPage.g.cs","v1.0","New-MgIdentityB2xUserFlowLanguageDefaultPage","POST","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages","mismatch","New-MgIdentityB2XUserFlowLanguageDefaultPage" +"Cmdlets","NewMgIdentityB2xUserFlowLanguageOverridePage.g.cs","v1.0","New-MgIdentityB2xUserFlowLanguageOverridePage","POST","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages","mismatch","New-MgIdentityB2XUserFlowLanguageOverridePage" +"Cmdlets","NewMgIdentityB2xUserFlowUserAttributeAssignment.g.cs","v1.0","New-MgIdentityB2xUserFlowUserAttributeAssignment","POST","/identity/b2xUserFlows/{param}/userAttributeAssignments","mismatch","New-MgIdentityB2XUserFlowUserAttributeAssignment" +"Cmdlets","NewMgIdentityB2xUserFlowUserFlowIdentityProviderByRef.g.cs","v1.0","New-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef","POST","/identity/b2xUserFlows/{param}/userFlowIdentityProviders/$ref","mismatch","New-MgIdentityB2XUserFlowIdentityProviderByRef" +"Cmdlets","NewMgIdentityConditionalAccessAuthenticationContextClassReference.g.cs","v1.0","New-MgIdentityConditionalAccessAuthenticationContextClassReference","POST","/identity/conditionalAccess/authenticationContextClassReferences","matched","New-MgIdentityConditionalAccessAuthenticationContextClassReference" +"Cmdlets","NewMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode.g.cs","v1.0","New-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","POST","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes","no-oracle","" +"Cmdlets","NewMgIdentityConditionalAccessAuthenticationStrengthPolicy.g.cs","v1.0","New-MgIdentityConditionalAccessAuthenticationStrengthPolicy","POST","/identity/conditionalAccess/authenticationStrength/policies","no-oracle","" +"Cmdlets","NewMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","New-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","POST","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations","matched","New-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration" +"Cmdlets","NewMgIdentityConditionalAccessDeletedItemNamedLocation.g.cs","v1.0","New-MgIdentityConditionalAccessDeletedItemNamedLocation","POST","/identity/conditionalAccess/deletedItems/namedLocations","matched","New-MgIdentityConditionalAccessDeletedItemNamedLocation" +"Cmdlets","NewMgIdentityConditionalAccessDeletedItemPolicy.g.cs","v1.0","New-MgIdentityConditionalAccessDeletedItemPolicy","POST","/identity/conditionalAccess/deletedItems/policies","matched","New-MgIdentityConditionalAccessDeletedItemPolicy" +"Cmdlets","NewMgIdentityConditionalAccessNamedLocation.g.cs","v1.0","New-MgIdentityConditionalAccessNamedLocation","POST","/identity/conditionalAccess/namedLocations","matched","New-MgIdentityConditionalAccessNamedLocation" +"Cmdlets","NewMgIdentityConditionalAccessPolicy.g.cs","v1.0","New-MgIdentityConditionalAccessPolicy","POST","/identity/conditionalAccess/policies","matched","New-MgIdentityConditionalAccessPolicy" +"Cmdlets","NewMgIdentityCustomAuthenticationExtension.g.cs","v1.0","New-MgIdentityCustomAuthenticationExtension","POST","/identity/customAuthenticationExtensions","matched","New-MgIdentityCustomAuthenticationExtension" +"Cmdlets","NewMgIdentityProtectionRiskDetection.g.cs","v1.0","New-MgIdentityProtectionRiskDetection","POST","/identityProtection/riskDetections","mismatch","New-MgRiskDetection" +"Cmdlets","NewMgIdentityProtectionRiskyServicePrincipal.g.cs","v1.0","New-MgIdentityProtectionRiskyServicePrincipal","POST","/identityProtection/riskyServicePrincipals","mismatch","New-MgRiskyServicePrincipal" +"Cmdlets","NewMgIdentityProtectionRiskyServicePrincipalHistory.g.cs","v1.0","New-MgIdentityProtectionRiskyServicePrincipalHistory","POST","/identityProtection/riskyServicePrincipals/{param}/history","mismatch","New-MgRiskyServicePrincipalHistory" +"Cmdlets","NewMgIdentityProtectionRiskyUser.g.cs","v1.0","New-MgIdentityProtectionRiskyUser","POST","/identityProtection/riskyUsers","mismatch","New-MgRiskyUser" +"Cmdlets","NewMgIdentityProtectionRiskyUserHistory.g.cs","v1.0","New-MgIdentityProtectionRiskyUserHistory","POST","/identityProtection/riskyUsers/{param}/history","mismatch","New-MgRiskyUserHistory" +"Cmdlets","NewMgIdentityProtectionServicePrincipalRiskDetection.g.cs","v1.0","New-MgIdentityProtectionServicePrincipalRiskDetection","POST","/identityProtection/servicePrincipalRiskDetections","mismatch","New-MgServicePrincipalRiskDetection" +"Cmdlets","NewMgIdentityProvider.g.cs","v1.0","New-MgIdentityProvider","POST","/identity/identityProviders","matched","New-MgIdentityProvider" +"Cmdlets","NewMgIdentityRiskPreventionFraudProtectionProvider.g.cs","v1.0","New-MgIdentityRiskPreventionFraudProtectionProvider","POST","/identity/riskPrevention/fraudProtectionProviders","matched","New-MgIdentityRiskPreventionFraudProtectionProvider" +"Cmdlets","NewMgIdentityRiskPreventionWebApplicationFirewallProvider.g.cs","v1.0","New-MgIdentityRiskPreventionWebApplicationFirewallProvider","POST","/identity/riskPrevention/webApplicationFirewallProviders","matched","New-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"Cmdlets","NewMgIdentityRiskPreventionWebApplicationFirewallVerification.g.cs","v1.0","New-MgIdentityRiskPreventionWebApplicationFirewallVerification","POST","/identity/riskPrevention/webApplicationFirewallVerifications","matched","New-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"Cmdlets","NewMgIdentityUserFlowAttribute.g.cs","v1.0","New-MgIdentityUserFlowAttribute","POST","/identity/userFlowAttributes","matched","New-MgIdentityUserFlowAttribute" +"Cmdlets","NewMgIdentityVerifiedIdProfile.g.cs","v1.0","New-MgIdentityVerifiedIdProfile","POST","/identity/verifiedId/profiles","matched","New-MgIdentityVerifiedIdProfile" +"Cmdlets","NewMgInformationProtectionThreatAssessmentRequest.g.cs","v1.0","New-MgInformationProtectionThreatAssessmentRequest","POST","/informationProtection/threatAssessmentRequests","matched","New-MgInformationProtectionThreatAssessmentRequest" +"Cmdlets","NewMgInformationProtectionThreatAssessmentRequestResult.g.cs","v1.0","New-MgInformationProtectionThreatAssessmentRequestResult","POST","/informationProtection/threatAssessmentRequests/{param}/results","matched","New-MgInformationProtectionThreatAssessmentRequestResult" +"Cmdlets","NewMgInvitation.g.cs","v1.0","New-MgInvitation","POST","/invitations","matched","New-MgInvitation" +"Cmdlets","NewMgOauth2PermissionGrant.g.cs","v1.0","New-MgOauth2PermissionGrant","POST","/oauth2PermissionGrants","matched","New-MgOauth2PermissionGrant" +"Cmdlets","NewMgOrganizationCertificateBasedAuthConfiguration.g.cs","v1.0","New-MgOrganizationCertificateBasedAuthConfiguration","POST","/organization/{param}/certificateBasedAuthConfiguration","matched","New-MgOrganizationCertificateBasedAuthConfiguration" +"Cmdlets","NewMgPolicyActivityBasedTimeoutPolicy.g.cs","v1.0","New-MgPolicyActivityBasedTimeoutPolicy","POST","/policies/activityBasedTimeoutPolicies","matched","New-MgPolicyActivityBasedTimeoutPolicy" +"Cmdlets","NewMgPolicyAppManagementPolicy.g.cs","v1.0","New-MgPolicyAppManagementPolicy","POST","/policies/appManagementPolicies","matched","New-MgPolicyAppManagementPolicy" +"Cmdlets","NewMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.g.cs","v1.0","New-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","POST","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations","matched","New-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"Cmdlets","NewMgPolicyAuthenticationStrengthPolicy.g.cs","v1.0","New-MgPolicyAuthenticationStrengthPolicy","POST","/policies/authenticationStrengthPolicies","matched","New-MgPolicyAuthenticationStrengthPolicy" +"Cmdlets","NewMgPolicyAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","New-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","POST","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations","matched","New-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"Cmdlets","NewMgPolicyClaimMappingPolicy.g.cs","v1.0","New-MgPolicyClaimMappingPolicy","POST","/policies/claimsMappingPolicies","matched","New-MgPolicyClaimMappingPolicy" +"Cmdlets","NewMgPolicyConditionalAccessPolicy.g.cs","v1.0","New-MgPolicyConditionalAccessPolicy","POST","/policies/conditionalAccessPolicies","no-oracle","" +"Cmdlets","NewMgPolicyCrossTenantAccessPolicyPartner.g.cs","v1.0","New-MgPolicyCrossTenantAccessPolicyPartner","POST","/policies/crossTenantAccessPolicy/partners","matched","New-MgPolicyCrossTenantAccessPolicyPartner" +"Cmdlets","NewMgPolicyFeatureRolloutPolicy.g.cs","v1.0","New-MgPolicyFeatureRolloutPolicy","POST","/policies/featureRolloutPolicies","matched","New-MgPolicyFeatureRolloutPolicy" +"Cmdlets","NewMgPolicyFeatureRolloutPolicyApplyTo.g.cs","v1.0","New-MgPolicyFeatureRolloutPolicyApplyTo","POST","/policies/featureRolloutPolicies/{param}/appliesTo","matched","New-MgPolicyFeatureRolloutPolicyApplyTo" +"Cmdlets","NewMgPolicyFeatureRolloutPolicyApplyToByRef.g.cs","v1.0","New-MgPolicyFeatureRolloutPolicyApplyToByRef","POST","/policies/featureRolloutPolicies/{param}/appliesTo/$ref","matched","New-MgPolicyFeatureRolloutPolicyApplyToByRef" +"Cmdlets","NewMgPolicyHomeRealmDiscoveryPolicy.g.cs","v1.0","New-MgPolicyHomeRealmDiscoveryPolicy","POST","/policies/homeRealmDiscoveryPolicies","matched","New-MgPolicyHomeRealmDiscoveryPolicy" +"Cmdlets","NewMgPolicyPermissionGrantPolicy.g.cs","v1.0","New-MgPolicyPermissionGrantPolicy","POST","/policies/permissionGrantPolicies","matched","New-MgPolicyPermissionGrantPolicy" +"Cmdlets","NewMgPolicyPermissionGrantPolicyExclude.g.cs","v1.0","New-MgPolicyPermissionGrantPolicyExclude","POST","/policies/permissionGrantPolicies/{param}/excludes","matched","New-MgPolicyPermissionGrantPolicyExclude" +"Cmdlets","NewMgPolicyPermissionGrantPolicyInclude.g.cs","v1.0","New-MgPolicyPermissionGrantPolicyInclude","POST","/policies/permissionGrantPolicies/{param}/includes","matched","New-MgPolicyPermissionGrantPolicyInclude" +"Cmdlets","NewMgPolicyRoleManagementPolicy.g.cs","v1.0","New-MgPolicyRoleManagementPolicy","POST","/policies/roleManagementPolicies","matched","New-MgPolicyRoleManagementPolicy" +"Cmdlets","NewMgPolicyRoleManagementPolicyAssignment.g.cs","v1.0","New-MgPolicyRoleManagementPolicyAssignment","POST","/policies/roleManagementPolicyAssignments","matched","New-MgPolicyRoleManagementPolicyAssignment" +"Cmdlets","NewMgPolicyRoleManagementPolicyEffectiveRule.g.cs","v1.0","New-MgPolicyRoleManagementPolicyEffectiveRule","POST","/policies/roleManagementPolicies/{param}/effectiveRules","matched","New-MgPolicyRoleManagementPolicyEffectiveRule" +"Cmdlets","NewMgPolicyRoleManagementPolicyRule.g.cs","v1.0","New-MgPolicyRoleManagementPolicyRule","POST","/policies/roleManagementPolicies/{param}/rules","matched","New-MgPolicyRoleManagementPolicyRule" +"Cmdlets","NewMgPolicyTokenIssuancePolicy.g.cs","v1.0","New-MgPolicyTokenIssuancePolicy","POST","/policies/tokenIssuancePolicies","matched","New-MgPolicyTokenIssuancePolicy" +"Cmdlets","NewMgPolicyTokenLifetimePolicy.g.cs","v1.0","New-MgPolicyTokenLifetimePolicy","POST","/policies/tokenLifetimePolicies","matched","New-MgPolicyTokenLifetimePolicy" +"Cmdlets","NewMgTenantRelationshipMultiTenantOrganizationTenant.g.cs","v1.0","New-MgTenantRelationshipMultiTenantOrganizationTenant","POST","/tenantRelationships/multiTenantOrganization/tenants","matched","New-MgTenantRelationshipMultiTenantOrganizationTenant" +"Cmdlets","NewMgUserAuthenticationEmailMethod.g.cs","v1.0","New-MgUserAuthenticationEmailMethod","POST","/users/{param}/authentication/emailMethods","matched","New-MgUserAuthenticationEmailMethod" +"Cmdlets","NewMgUserAuthenticationExternalAuthenticationMethod.g.cs","v1.0","New-MgUserAuthenticationExternalAuthenticationMethod","POST","/users/{param}/authentication/externalAuthenticationMethods","matched","New-MgUserAuthenticationExternalAuthenticationMethod" +"Cmdlets","NewMgUserAuthenticationMethod.g.cs","v1.0","New-MgUserAuthenticationMethod","POST","/users/{param}/authentication/methods","matched","New-MgUserAuthenticationMethod" +"Cmdlets","NewMgUserAuthenticationOperation.g.cs","v1.0","New-MgUserAuthenticationOperation","POST","/users/{param}/authentication/operations","matched","New-MgUserAuthenticationOperation" +"Cmdlets","NewMgUserAuthenticationPasswordMethod.g.cs","v1.0","New-MgUserAuthenticationPasswordMethod","POST","/users/{param}/authentication/passwordMethods","no-oracle","" +"Cmdlets","NewMgUserAuthenticationPhoneMethod.g.cs","v1.0","New-MgUserAuthenticationPhoneMethod","POST","/users/{param}/authentication/phoneMethods","matched","New-MgUserAuthenticationPhoneMethod" +"Cmdlets","NewMgUserAuthenticationTemporaryAccessPassMethod.g.cs","v1.0","New-MgUserAuthenticationTemporaryAccessPassMethod","POST","/users/{param}/authentication/temporaryAccessPassMethods","matched","New-MgUserAuthenticationTemporaryAccessPassMethod" +"Cmdlets","RemoveMgDataPolicyOperation.g.cs","v1.0","Remove-MgDataPolicyOperation","DELETE","/dataPolicyOperations/{param}","matched","Remove-MgDataPolicyOperation" +"Cmdlets","RemoveMgIdentityApiConnector.g.cs","v1.0","Remove-MgIdentityApiConnector","DELETE","/identity/apiConnectors/{param}","matched","Remove-MgIdentityApiConnector" +"Cmdlets","RemoveMgIdentityAuthenticationEventFlow.g.cs","v1.0","Remove-MgIdentityAuthenticationEventFlow","DELETE","/identity/authenticationEventsFlows/{param}","matched","Remove-MgIdentityAuthenticationEventFlow" +"Cmdlets","RemoveMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","DELETE","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{param}","mismatch","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" +"Cmdlets","RemoveMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef.g.cs","v1.0","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef","DELETE","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/{param}/$ref","mismatch","Remove-MgIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeIdentityUserFlowAttributeByRef" +"Cmdlets","RemoveMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef.g.cs","v1.0","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","DELETE","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/{param}/$ref","mismatch","Remove-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderBaseByRef" +"Cmdlets","RemoveMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","Remove-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","DELETE","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications/{param}","mismatch","Remove-MgIdentityAuthenticationEventFlowIncludeApplication" +"Cmdlets","RemoveMgIdentityAuthenticationEventListener.g.cs","v1.0","Remove-MgIdentityAuthenticationEventListener","DELETE","/identity/authenticationEventListeners/{param}","matched","Remove-MgIdentityAuthenticationEventListener" +"Cmdlets","RemoveMgIdentityB2xUserFlow.g.cs","v1.0","Remove-MgIdentityB2xUserFlow","DELETE","/identity/b2xUserFlows/{param}","mismatch","Remove-MgIdentityB2XUserFlow" +"Cmdlets","RemoveMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection.g.cs","v1.0","Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection","DELETE","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection","mismatch","Remove-MgIdentityB2XUserFlowPostAttributeCollection" +"Cmdlets","RemoveMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef.g.cs","v1.0","Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef","DELETE","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection/$ref","mismatch","Remove-MgIdentityB2XUserFlowPostAttributeCollectionByRef" +"Cmdlets","RemoveMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup.g.cs","v1.0","Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup","DELETE","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup","mismatch","Remove-MgIdentityB2XUserFlowPostFederationSignup" +"Cmdlets","RemoveMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef.g.cs","v1.0","Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef","DELETE","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup/$ref","mismatch","Remove-MgIdentityB2XUserFlowPostFederationSignupByRef" +"Cmdlets","RemoveMgIdentityB2xUserFlowLanguage.g.cs","v1.0","Remove-MgIdentityB2xUserFlowLanguage","DELETE","/identity/b2xUserFlows/{param}/languages/{param}","mismatch","Remove-MgIdentityB2XUserFlowLanguage" +"Cmdlets","RemoveMgIdentityB2xUserFlowLanguageDefaultPage.g.cs","v1.0","Remove-MgIdentityB2xUserFlowLanguageDefaultPage","DELETE","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}","mismatch","Remove-MgIdentityB2XUserFlowLanguageDefaultPage" +"Cmdlets","RemoveMgIdentityB2xUserFlowLanguageDefaultPageContent.g.cs","v1.0","Remove-MgIdentityB2xUserFlowLanguageDefaultPageContent","DELETE","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}/$value","mismatch","Remove-MgIdentityB2XUserFlowLanguageDefaultPageContent" +"Cmdlets","RemoveMgIdentityB2xUserFlowLanguageOverridePage.g.cs","v1.0","Remove-MgIdentityB2xUserFlowLanguageOverridePage","DELETE","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}","mismatch","Remove-MgIdentityB2XUserFlowLanguageOverridePage" +"Cmdlets","RemoveMgIdentityB2xUserFlowLanguageOverridePageContent.g.cs","v1.0","Remove-MgIdentityB2xUserFlowLanguageOverridePageContent","DELETE","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}/$value","mismatch","Remove-MgIdentityB2XUserFlowLanguageOverridePageContent" +"Cmdlets","RemoveMgIdentityB2xUserFlowUserAttributeAssignment.g.cs","v1.0","Remove-MgIdentityB2xUserFlowUserAttributeAssignment","DELETE","/identity/b2xUserFlows/{param}/userAttributeAssignments/{param}","mismatch","Remove-MgIdentityB2XUserFlowUserAttributeAssignment" +"Cmdlets","RemoveMgIdentityB2xUserFlowUserFlowIdentityProviderByRef.g.cs","v1.0","Remove-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef","DELETE","/identity/b2xUserFlows/{param}/userFlowIdentityProviders/{param}/$ref","mismatch","Remove-MgIdentityB2XUserFlowIdentityProviderBaseByRef" +"Cmdlets","RemoveMgIdentityConditionalAccessAuthenticationContextClassReference.g.cs","v1.0","Remove-MgIdentityConditionalAccessAuthenticationContextClassReference","DELETE","/identity/conditionalAccess/authenticationContextClassReferences/{param}","matched","Remove-MgIdentityConditionalAccessAuthenticationContextClassReference" +"Cmdlets","RemoveMgIdentityConditionalAccessAuthenticationStrength.g.cs","v1.0","Remove-MgIdentityConditionalAccessAuthenticationStrength","DELETE","/identity/conditionalAccess/authenticationStrength","no-oracle","" +"Cmdlets","RemoveMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode.g.cs","v1.0","Remove-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","DELETE","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityConditionalAccessAuthenticationStrengthPolicy.g.cs","v1.0","Remove-MgIdentityConditionalAccessAuthenticationStrengthPolicy","DELETE","/identity/conditionalAccess/authenticationStrength/policies/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","Remove-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","DELETE","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param}","no-oracle","" +"Cmdlets","RemoveMgIdentityConditionalAccessDeletedItem.g.cs","v1.0","Remove-MgIdentityConditionalAccessDeletedItem","DELETE","/identity/conditionalAccess/deletedItems","matched","Remove-MgIdentityConditionalAccessDeletedItem" +"Cmdlets","RemoveMgIdentityConditionalAccessDeletedItemNamedLocation.g.cs","v1.0","Remove-MgIdentityConditionalAccessDeletedItemNamedLocation","DELETE","/identity/conditionalAccess/deletedItems/namedLocations/{param}","matched","Remove-MgIdentityConditionalAccessDeletedItemNamedLocation" +"Cmdlets","RemoveMgIdentityConditionalAccessDeletedItemPolicy.g.cs","v1.0","Remove-MgIdentityConditionalAccessDeletedItemPolicy","DELETE","/identity/conditionalAccess/deletedItems/policies/{param}","matched","Remove-MgIdentityConditionalAccessDeletedItemPolicy" +"Cmdlets","RemoveMgIdentityConditionalAccessNamedLocation.g.cs","v1.0","Remove-MgIdentityConditionalAccessNamedLocation","DELETE","/identity/conditionalAccess/namedLocations/{param}","matched","Remove-MgIdentityConditionalAccessNamedLocation" +"Cmdlets","RemoveMgIdentityConditionalAccessPolicy.g.cs","v1.0","Remove-MgIdentityConditionalAccessPolicy","DELETE","/identity/conditionalAccess/policies/{param}","matched","Remove-MgIdentityConditionalAccessPolicy" +"Cmdlets","RemoveMgIdentityCustomAuthenticationExtension.g.cs","v1.0","Remove-MgIdentityCustomAuthenticationExtension","DELETE","/identity/customAuthenticationExtensions/{param}","matched","Remove-MgIdentityCustomAuthenticationExtension" +"Cmdlets","RemoveMgIdentityProtectionRiskDetection.g.cs","v1.0","Remove-MgIdentityProtectionRiskDetection","DELETE","/identityProtection/riskDetections/{param}","mismatch","Remove-MgRiskDetection" +"Cmdlets","RemoveMgIdentityProtectionRiskyServicePrincipal.g.cs","v1.0","Remove-MgIdentityProtectionRiskyServicePrincipal","DELETE","/identityProtection/riskyServicePrincipals/{param}","mismatch","Remove-MgRiskyServicePrincipal" +"Cmdlets","RemoveMgIdentityProtectionRiskyServicePrincipalHistory.g.cs","v1.0","Remove-MgIdentityProtectionRiskyServicePrincipalHistory","DELETE","/identityProtection/riskyServicePrincipals/{param}/history/{param}","mismatch","Remove-MgRiskyServicePrincipalHistory" +"Cmdlets","RemoveMgIdentityProtectionRiskyUser.g.cs","v1.0","Remove-MgIdentityProtectionRiskyUser","DELETE","/identityProtection/riskyUsers/{param}","mismatch","Remove-MgRiskyUser" +"Cmdlets","RemoveMgIdentityProtectionRiskyUserHistory.g.cs","v1.0","Remove-MgIdentityProtectionRiskyUserHistory","DELETE","/identityProtection/riskyUsers/{param}/history/{param}","mismatch","Remove-MgRiskyUserHistory" +"Cmdlets","RemoveMgIdentityProtectionServicePrincipalRiskDetection.g.cs","v1.0","Remove-MgIdentityProtectionServicePrincipalRiskDetection","DELETE","/identityProtection/servicePrincipalRiskDetections/{param}","mismatch","Remove-MgServicePrincipalRiskDetection" +"Cmdlets","RemoveMgIdentityProvider.g.cs","v1.0","Remove-MgIdentityProvider","DELETE","/identity/identityProviders/{param}","matched","Remove-MgIdentityProvider" +"Cmdlets","RemoveMgIdentityRiskPrevention.g.cs","v1.0","Remove-MgIdentityRiskPrevention","DELETE","/identity/riskPrevention","matched","Remove-MgIdentityRiskPrevention" +"Cmdlets","RemoveMgIdentityRiskPreventionFraudProtectionProvider.g.cs","v1.0","Remove-MgIdentityRiskPreventionFraudProtectionProvider","DELETE","/identity/riskPrevention/fraudProtectionProviders/{param}","matched","Remove-MgIdentityRiskPreventionFraudProtectionProvider" +"Cmdlets","RemoveMgIdentityRiskPreventionWebApplicationFirewallProvider.g.cs","v1.0","Remove-MgIdentityRiskPreventionWebApplicationFirewallProvider","DELETE","/identity/riskPrevention/webApplicationFirewallProviders/{param}","matched","Remove-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"Cmdlets","RemoveMgIdentityRiskPreventionWebApplicationFirewallVerification.g.cs","v1.0","Remove-MgIdentityRiskPreventionWebApplicationFirewallVerification","DELETE","/identity/riskPrevention/webApplicationFirewallVerifications/{param}","matched","Remove-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"Cmdlets","RemoveMgIdentityUserFlowAttribute.g.cs","v1.0","Remove-MgIdentityUserFlowAttribute","DELETE","/identity/userFlowAttributes/{param}","matched","Remove-MgIdentityUserFlowAttribute" +"Cmdlets","RemoveMgIdentityVerifiedId.g.cs","v1.0","Remove-MgIdentityVerifiedId","DELETE","/identity/verifiedId","matched","Remove-MgIdentityVerifiedId" +"Cmdlets","RemoveMgIdentityVerifiedIdProfile.g.cs","v1.0","Remove-MgIdentityVerifiedIdProfile","DELETE","/identity/verifiedId/profiles/{param}","matched","Remove-MgIdentityVerifiedIdProfile" +"Cmdlets","RemoveMgInformationProtectionThreatAssessmentRequest.g.cs","v1.0","Remove-MgInformationProtectionThreatAssessmentRequest","DELETE","/informationProtection/threatAssessmentRequests/{param}","matched","Remove-MgInformationProtectionThreatAssessmentRequest" +"Cmdlets","RemoveMgInformationProtectionThreatAssessmentRequestResult.g.cs","v1.0","Remove-MgInformationProtectionThreatAssessmentRequestResult","DELETE","/informationProtection/threatAssessmentRequests/{param}/results/{param}","matched","Remove-MgInformationProtectionThreatAssessmentRequestResult" +"Cmdlets","RemoveMgOauth2PermissionGrant.g.cs","v1.0","Remove-MgOauth2PermissionGrant","DELETE","/oauth2PermissionGrants/{param}","matched","Remove-MgOauth2PermissionGrant" +"Cmdlets","RemoveMgOrganizationCertificateBasedAuthConfiguration.g.cs","v1.0","Remove-MgOrganizationCertificateBasedAuthConfiguration","DELETE","/organization/{param}/certificateBasedAuthConfiguration/{param}","matched","Remove-MgOrganizationCertificateBasedAuthConfiguration" +"Cmdlets","RemoveMgPolicyActivityBasedTimeoutPolicy.g.cs","v1.0","Remove-MgPolicyActivityBasedTimeoutPolicy","DELETE","/policies/activityBasedTimeoutPolicies/{param}","matched","Remove-MgPolicyActivityBasedTimeoutPolicy" +"Cmdlets","RemoveMgPolicyAdminConsentRequestPolicy.g.cs","v1.0","Remove-MgPolicyAdminConsentRequestPolicy","DELETE","/policies/adminConsentRequestPolicy","matched","Remove-MgPolicyAdminConsentRequestPolicy" +"Cmdlets","RemoveMgPolicyAppManagementPolicy.g.cs","v1.0","Remove-MgPolicyAppManagementPolicy","DELETE","/policies/appManagementPolicies/{param}","matched","Remove-MgPolicyAppManagementPolicy" +"Cmdlets","RemoveMgPolicyAuthenticationFlowPolicy.g.cs","v1.0","Remove-MgPolicyAuthenticationFlowPolicy","DELETE","/policies/authenticationFlowsPolicy","matched","Remove-MgPolicyAuthenticationFlowPolicy" +"Cmdlets","RemoveMgPolicyAuthenticationMethodPolicy.g.cs","v1.0","Remove-MgPolicyAuthenticationMethodPolicy","DELETE","/policies/authenticationMethodsPolicy","matched","Remove-MgPolicyAuthenticationMethodPolicy" +"Cmdlets","RemoveMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.g.cs","v1.0","Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","DELETE","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{param}","matched","Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"Cmdlets","RemoveMgPolicyAuthenticationStrengthPolicy.g.cs","v1.0","Remove-MgPolicyAuthenticationStrengthPolicy","DELETE","/policies/authenticationStrengthPolicies/{param}","matched","Remove-MgPolicyAuthenticationStrengthPolicy" +"Cmdlets","RemoveMgPolicyAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","Remove-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","DELETE","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations/{param}","matched","Remove-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"Cmdlets","RemoveMgPolicyAuthorizationPolicy.g.cs","v1.0","Remove-MgPolicyAuthorizationPolicy","DELETE","/policies/authorizationPolicy","matched","Remove-MgPolicyAuthorizationPolicy" +"Cmdlets","RemoveMgPolicyClaimMappingPolicy.g.cs","v1.0","Remove-MgPolicyClaimMappingPolicy","DELETE","/policies/claimsMappingPolicies/{param}","matched","Remove-MgPolicyClaimMappingPolicy" +"Cmdlets","RemoveMgPolicyConditionalAccessPolicy.g.cs","v1.0","Remove-MgPolicyConditionalAccessPolicy","DELETE","/policies/conditionalAccessPolicies/{param}","no-oracle","" +"Cmdlets","RemoveMgPolicyCrossTenantAccessPolicy.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicy","DELETE","/policies/crossTenantAccessPolicy","matched","Remove-MgPolicyCrossTenantAccessPolicy" +"Cmdlets","RemoveMgPolicyCrossTenantAccessPolicyDefault.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicyDefault","DELETE","/policies/crossTenantAccessPolicy/default","matched","Remove-MgPolicyCrossTenantAccessPolicyDefault" +"Cmdlets","RemoveMgPolicyCrossTenantAccessPolicyPartner.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicyPartner","DELETE","/policies/crossTenantAccessPolicy/partners/{param}","matched","Remove-MgPolicyCrossTenantAccessPolicyPartner" +"Cmdlets","RemoveMgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization","DELETE","/policies/crossTenantAccessPolicy/partners/{param}/identitySynchronization","matched","Remove-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization" +"Cmdlets","RemoveMgPolicyCrossTenantAccessPolicyTemplate.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicyTemplate","DELETE","/policies/crossTenantAccessPolicy/templates","matched","Remove-MgPolicyCrossTenantAccessPolicyTemplate" +"Cmdlets","RemoveMgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization","DELETE","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization","matched","Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization" +"Cmdlets","RemoveMgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration","DELETE","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration","matched","Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration" +"Cmdlets","RemoveMgPolicyDefaultAppManagementPolicy.g.cs","v1.0","Remove-MgPolicyDefaultAppManagementPolicy","DELETE","/policies/defaultAppManagementPolicy","matched","Remove-MgPolicyDefaultAppManagementPolicy" +"Cmdlets","RemoveMgPolicyFeatureRolloutPolicy.g.cs","v1.0","Remove-MgPolicyFeatureRolloutPolicy","DELETE","/policies/featureRolloutPolicies/{param}","matched","Remove-MgPolicyFeatureRolloutPolicy" +"Cmdlets","RemoveMgPolicyFeatureRolloutPolicyApplyToByRef.g.cs","v1.0","Remove-MgPolicyFeatureRolloutPolicyApplyToByRef","DELETE","/policies/featureRolloutPolicies/{param}/appliesTo/{param}/$ref","mismatch","Remove-MgPolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef" +"Cmdlets","RemoveMgPolicyFederatedTokenValidationPolicy.g.cs","v1.0","Remove-MgPolicyFederatedTokenValidationPolicy","DELETE","/policies/federatedTokenValidationPolicy","matched","Remove-MgPolicyFederatedTokenValidationPolicy" +"Cmdlets","RemoveMgPolicyHomeRealmDiscoveryPolicy.g.cs","v1.0","Remove-MgPolicyHomeRealmDiscoveryPolicy","DELETE","/policies/homeRealmDiscoveryPolicies/{param}","matched","Remove-MgPolicyHomeRealmDiscoveryPolicy" +"Cmdlets","RemoveMgPolicyIdentitySecurityDefaultEnforcementPolicy.g.cs","v1.0","Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy","DELETE","/policies/identitySecurityDefaultsEnforcementPolicy","matched","Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy" +"Cmdlets","RemoveMgPolicyPermissionGrantPolicy.g.cs","v1.0","Remove-MgPolicyPermissionGrantPolicy","DELETE","/policies/permissionGrantPolicies/{param}","matched","Remove-MgPolicyPermissionGrantPolicy" +"Cmdlets","RemoveMgPolicyPermissionGrantPolicyExclude.g.cs","v1.0","Remove-MgPolicyPermissionGrantPolicyExclude","DELETE","/policies/permissionGrantPolicies/{param}/excludes/{param}","matched","Remove-MgPolicyPermissionGrantPolicyExclude" +"Cmdlets","RemoveMgPolicyPermissionGrantPolicyInclude.g.cs","v1.0","Remove-MgPolicyPermissionGrantPolicyInclude","DELETE","/policies/permissionGrantPolicies/{param}/includes/{param}","matched","Remove-MgPolicyPermissionGrantPolicyInclude" +"Cmdlets","RemoveMgPolicyRoleManagementPolicy.g.cs","v1.0","Remove-MgPolicyRoleManagementPolicy","DELETE","/policies/roleManagementPolicies/{param}","matched","Remove-MgPolicyRoleManagementPolicy" +"Cmdlets","RemoveMgPolicyRoleManagementPolicyAssignment.g.cs","v1.0","Remove-MgPolicyRoleManagementPolicyAssignment","DELETE","/policies/roleManagementPolicyAssignments/{param}","matched","Remove-MgPolicyRoleManagementPolicyAssignment" +"Cmdlets","RemoveMgPolicyRoleManagementPolicyEffectiveRule.g.cs","v1.0","Remove-MgPolicyRoleManagementPolicyEffectiveRule","DELETE","/policies/roleManagementPolicies/{param}/effectiveRules/{param}","matched","Remove-MgPolicyRoleManagementPolicyEffectiveRule" +"Cmdlets","RemoveMgPolicyRoleManagementPolicyRule.g.cs","v1.0","Remove-MgPolicyRoleManagementPolicyRule","DELETE","/policies/roleManagementPolicies/{param}/rules/{param}","matched","Remove-MgPolicyRoleManagementPolicyRule" +"Cmdlets","RemoveMgPolicyTokenIssuancePolicy.g.cs","v1.0","Remove-MgPolicyTokenIssuancePolicy","DELETE","/policies/tokenIssuancePolicies/{param}","matched","Remove-MgPolicyTokenIssuancePolicy" +"Cmdlets","RemoveMgPolicyTokenLifetimePolicy.g.cs","v1.0","Remove-MgPolicyTokenLifetimePolicy","DELETE","/policies/tokenLifetimePolicies/{param}","matched","Remove-MgPolicyTokenLifetimePolicy" +"Cmdlets","RemoveMgTenantRelationshipMultiTenantOrganizationTenant.g.cs","v1.0","Remove-MgTenantRelationshipMultiTenantOrganizationTenant","DELETE","/tenantRelationships/multiTenantOrganization/tenants/{param}","matched","Remove-MgTenantRelationshipMultiTenantOrganizationTenant" +"Cmdlets","RemoveMgUserAuthentication.g.cs","v1.0","Remove-MgUserAuthentication","DELETE","/users/{param}/authentication","no-oracle","" +"Cmdlets","RemoveMgUserAuthenticationEmailMethod.g.cs","v1.0","Remove-MgUserAuthenticationEmailMethod","DELETE","/users/{param}/authentication/emailMethods/{param}","matched","Remove-MgUserAuthenticationEmailMethod" +"Cmdlets","RemoveMgUserAuthenticationExternalAuthenticationMethod.g.cs","v1.0","Remove-MgUserAuthenticationExternalAuthenticationMethod","DELETE","/users/{param}/authentication/externalAuthenticationMethods/{param}","matched","Remove-MgUserAuthenticationExternalAuthenticationMethod" +"Cmdlets","RemoveMgUserAuthenticationFido2Method.g.cs","v1.0","Remove-MgUserAuthenticationFido2Method","DELETE","/users/{param}/authentication/fido2Methods/{param}","matched","Remove-MgUserAuthenticationFido2Method" +"Cmdlets","RemoveMgUserAuthenticationMicrosoftAuthenticatorMethod.g.cs","v1.0","Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod","DELETE","/users/{param}/authentication/microsoftAuthenticatorMethods/{param}","matched","Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod" +"Cmdlets","RemoveMgUserAuthenticationOperation.g.cs","v1.0","Remove-MgUserAuthenticationOperation","DELETE","/users/{param}/authentication/operations/{param}","matched","Remove-MgUserAuthenticationOperation" +"Cmdlets","RemoveMgUserAuthenticationPhoneMethod.g.cs","v1.0","Remove-MgUserAuthenticationPhoneMethod","DELETE","/users/{param}/authentication/phoneMethods/{param}","matched","Remove-MgUserAuthenticationPhoneMethod" +"Cmdlets","RemoveMgUserAuthenticationPlatformCredentialMethod.g.cs","v1.0","Remove-MgUserAuthenticationPlatformCredentialMethod","DELETE","/users/{param}/authentication/platformCredentialMethods/{param}","matched","Remove-MgUserAuthenticationPlatformCredentialMethod" +"Cmdlets","RemoveMgUserAuthenticationSoftwareOathMethod.g.cs","v1.0","Remove-MgUserAuthenticationSoftwareOathMethod","DELETE","/users/{param}/authentication/softwareOathMethods/{param}","matched","Remove-MgUserAuthenticationSoftwareOathMethod" +"Cmdlets","RemoveMgUserAuthenticationTemporaryAccessPassMethod.g.cs","v1.0","Remove-MgUserAuthenticationTemporaryAccessPassMethod","DELETE","/users/{param}/authentication/temporaryAccessPassMethods/{param}","matched","Remove-MgUserAuthenticationTemporaryAccessPassMethod" +"Cmdlets","RemoveMgUserAuthenticationWindowsHelloForBusinessMethod.g.cs","v1.0","Remove-MgUserAuthenticationWindowsHelloForBusinessMethod","DELETE","/users/{param}/authentication/windowsHelloForBusinessMethods/{param}","matched","Remove-MgUserAuthenticationWindowsHelloForBusinessMethod" +"Cmdlets","SetMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef.g.cs","v1.0","Set-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef","PUT","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection/$ref","mismatch","Set-MgIdentityB2XUserFlowPostAttributeCollectionByRef" +"Cmdlets","SetMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef.g.cs","v1.0","Set-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef","PUT","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup/$ref","mismatch","Set-MgIdentityB2XUserFlowPostFederationSignupByRef" +"Cmdlets","SetMgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization.g.cs","v1.0","Set-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization","PUT","/policies/crossTenantAccessPolicy/partners/{param}/identitySynchronization","matched","Set-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization" +"Cmdlets","UpdateMgDataPolicyOperation.g.cs","v1.0","Update-MgDataPolicyOperation","PATCH","/dataPolicyOperations/{param}","matched","Update-MgDataPolicyOperation" +"Cmdlets","UpdateMgIdentity.g.cs","v1.0","Update-MgIdentity","PATCH","/identity","no-oracle","" +"Cmdlets","UpdateMgIdentityApiConnector.g.cs","v1.0","Update-MgIdentityApiConnector","PATCH","/identity/apiConnectors/{param}","matched","Update-MgIdentityApiConnector" +"Cmdlets","UpdateMgIdentityAuthenticationEventFlow.g.cs","v1.0","Update-MgIdentityAuthenticationEventFlow","PATCH","/identity/authenticationEventsFlows/{param}","matched","Update-MgIdentityAuthenticationEventFlow" +"Cmdlets","UpdateMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","Update-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","PATCH","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{param}","mismatch","Update-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" +"Cmdlets","UpdateMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","Update-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","PATCH","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications/{param}","mismatch","Update-MgIdentityAuthenticationEventFlowIncludeApplication" +"Cmdlets","UpdateMgIdentityAuthenticationEventListener.g.cs","v1.0","Update-MgIdentityAuthenticationEventListener","PATCH","/identity/authenticationEventListeners/{param}","matched","Update-MgIdentityAuthenticationEventListener" +"Cmdlets","UpdateMgIdentityB2xUserFlow.g.cs","v1.0","Update-MgIdentityB2xUserFlow","PATCH","/identity/b2xUserFlows/{param}","mismatch","Update-MgIdentityB2XUserFlow" +"Cmdlets","UpdateMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection.g.cs","v1.0","Update-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection","PATCH","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection","mismatch","Update-MgIdentityB2XUserFlowPostAttributeCollection" +"Cmdlets","UpdateMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup.g.cs","v1.0","Update-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup","PATCH","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup","mismatch","Update-MgIdentityB2XUserFlowPostFederationSignup" +"Cmdlets","UpdateMgIdentityB2xUserFlowLanguage.g.cs","v1.0","Update-MgIdentityB2xUserFlowLanguage","PATCH","/identity/b2xUserFlows/{param}/languages/{param}","mismatch","Update-MgIdentityB2XUserFlowLanguage" +"Cmdlets","UpdateMgIdentityB2xUserFlowLanguageDefaultPage.g.cs","v1.0","Update-MgIdentityB2xUserFlowLanguageDefaultPage","PATCH","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}","mismatch","Update-MgIdentityB2XUserFlowLanguageDefaultPage" +"Cmdlets","UpdateMgIdentityB2xUserFlowLanguageOverridePage.g.cs","v1.0","Update-MgIdentityB2xUserFlowLanguageOverridePage","PATCH","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}","mismatch","Update-MgIdentityB2XUserFlowLanguageOverridePage" +"Cmdlets","UpdateMgIdentityB2xUserFlowUserAttributeAssignment.g.cs","v1.0","Update-MgIdentityB2xUserFlowUserAttributeAssignment","PATCH","/identity/b2xUserFlows/{param}/userAttributeAssignments/{param}","mismatch","Update-MgIdentityB2XUserFlowUserAttributeAssignment" +"Cmdlets","UpdateMgIdentityConditionalAccessAuthenticationContextClassReference.g.cs","v1.0","Update-MgIdentityConditionalAccessAuthenticationContextClassReference","PATCH","/identity/conditionalAccess/authenticationContextClassReferences/{param}","matched","Update-MgIdentityConditionalAccessAuthenticationContextClassReference" +"Cmdlets","UpdateMgIdentityConditionalAccessAuthenticationStrength.g.cs","v1.0","Update-MgIdentityConditionalAccessAuthenticationStrength","PATCH","/identity/conditionalAccess/authenticationStrength","no-oracle","" +"Cmdlets","UpdateMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode.g.cs","v1.0","Update-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","PATCH","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityConditionalAccessAuthenticationStrengthPolicy.g.cs","v1.0","Update-MgIdentityConditionalAccessAuthenticationStrengthPolicy","PATCH","/identity/conditionalAccess/authenticationStrength/policies/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","Update-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","PATCH","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param}","no-oracle","" +"Cmdlets","UpdateMgIdentityConditionalAccessDeletedItem.g.cs","v1.0","Update-MgIdentityConditionalAccessDeletedItem","PATCH","/identity/conditionalAccess/deletedItems","matched","Update-MgIdentityConditionalAccessDeletedItem" +"Cmdlets","UpdateMgIdentityConditionalAccessDeletedItemNamedLocation.g.cs","v1.0","Update-MgIdentityConditionalAccessDeletedItemNamedLocation","PATCH","/identity/conditionalAccess/deletedItems/namedLocations/{param}","matched","Update-MgIdentityConditionalAccessDeletedItemNamedLocation" +"Cmdlets","UpdateMgIdentityConditionalAccessDeletedItemPolicy.g.cs","v1.0","Update-MgIdentityConditionalAccessDeletedItemPolicy","PATCH","/identity/conditionalAccess/deletedItems/policies/{param}","matched","Update-MgIdentityConditionalAccessDeletedItemPolicy" +"Cmdlets","UpdateMgIdentityConditionalAccessNamedLocation.g.cs","v1.0","Update-MgIdentityConditionalAccessNamedLocation","PATCH","/identity/conditionalAccess/namedLocations/{param}","matched","Update-MgIdentityConditionalAccessNamedLocation" +"Cmdlets","UpdateMgIdentityConditionalAccessPolicy.g.cs","v1.0","Update-MgIdentityConditionalAccessPolicy","PATCH","/identity/conditionalAccess/policies/{param}","matched","Update-MgIdentityConditionalAccessPolicy" +"Cmdlets","UpdateMgIdentityCustomAuthenticationExtension.g.cs","v1.0","Update-MgIdentityCustomAuthenticationExtension","PATCH","/identity/customAuthenticationExtensions/{param}","matched","Update-MgIdentityCustomAuthenticationExtension" +"Cmdlets","UpdateMgIdentityProtection.g.cs","v1.0","Update-MgIdentityProtection","PATCH","/identityProtection","no-oracle","" +"Cmdlets","UpdateMgIdentityProtectionRiskDetection.g.cs","v1.0","Update-MgIdentityProtectionRiskDetection","PATCH","/identityProtection/riskDetections/{param}","mismatch","Update-MgRiskDetection" +"Cmdlets","UpdateMgIdentityProtectionRiskyServicePrincipal.g.cs","v1.0","Update-MgIdentityProtectionRiskyServicePrincipal","PATCH","/identityProtection/riskyServicePrincipals/{param}","mismatch","Update-MgRiskyServicePrincipal" +"Cmdlets","UpdateMgIdentityProtectionRiskyServicePrincipalHistory.g.cs","v1.0","Update-MgIdentityProtectionRiskyServicePrincipalHistory","PATCH","/identityProtection/riskyServicePrincipals/{param}/history/{param}","mismatch","Update-MgRiskyServicePrincipalHistory" +"Cmdlets","UpdateMgIdentityProtectionRiskyUser.g.cs","v1.0","Update-MgIdentityProtectionRiskyUser","PATCH","/identityProtection/riskyUsers/{param}","mismatch","Update-MgRiskyUser" +"Cmdlets","UpdateMgIdentityProtectionRiskyUserHistory.g.cs","v1.0","Update-MgIdentityProtectionRiskyUserHistory","PATCH","/identityProtection/riskyUsers/{param}/history/{param}","mismatch","Update-MgRiskyUserHistory" +"Cmdlets","UpdateMgIdentityProtectionServicePrincipalRiskDetection.g.cs","v1.0","Update-MgIdentityProtectionServicePrincipalRiskDetection","PATCH","/identityProtection/servicePrincipalRiskDetections/{param}","mismatch","Update-MgServicePrincipalRiskDetection" +"Cmdlets","UpdateMgIdentityProvider.g.cs","v1.0","Update-MgIdentityProvider","PATCH","/identity/identityProviders/{param}","matched","Update-MgIdentityProvider" +"Cmdlets","UpdateMgIdentityRiskPrevention.g.cs","v1.0","Update-MgIdentityRiskPrevention","PATCH","/identity/riskPrevention","matched","Update-MgIdentityRiskPrevention" +"Cmdlets","UpdateMgIdentityRiskPreventionFraudProtectionProvider.g.cs","v1.0","Update-MgIdentityRiskPreventionFraudProtectionProvider","PATCH","/identity/riskPrevention/fraudProtectionProviders/{param}","matched","Update-MgIdentityRiskPreventionFraudProtectionProvider" +"Cmdlets","UpdateMgIdentityRiskPreventionWebApplicationFirewallProvider.g.cs","v1.0","Update-MgIdentityRiskPreventionWebApplicationFirewallProvider","PATCH","/identity/riskPrevention/webApplicationFirewallProviders/{param}","matched","Update-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"Cmdlets","UpdateMgIdentityRiskPreventionWebApplicationFirewallVerification.g.cs","v1.0","Update-MgIdentityRiskPreventionWebApplicationFirewallVerification","PATCH","/identity/riskPrevention/webApplicationFirewallVerifications/{param}","matched","Update-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"Cmdlets","UpdateMgIdentityUserFlowAttribute.g.cs","v1.0","Update-MgIdentityUserFlowAttribute","PATCH","/identity/userFlowAttributes/{param}","matched","Update-MgIdentityUserFlowAttribute" +"Cmdlets","UpdateMgIdentityVerifiedId.g.cs","v1.0","Update-MgIdentityVerifiedId","PATCH","/identity/verifiedId","matched","Update-MgIdentityVerifiedId" +"Cmdlets","UpdateMgIdentityVerifiedIdProfile.g.cs","v1.0","Update-MgIdentityVerifiedIdProfile","PATCH","/identity/verifiedId/profiles/{param}","matched","Update-MgIdentityVerifiedIdProfile" +"Cmdlets","UpdateMgInformationProtection.g.cs","v1.0","Update-MgInformationProtection","PATCH","/informationProtection","matched","Update-MgInformationProtection" +"Cmdlets","UpdateMgInformationProtectionThreatAssessmentRequest.g.cs","v1.0","Update-MgInformationProtectionThreatAssessmentRequest","PATCH","/informationProtection/threatAssessmentRequests/{param}","matched","Update-MgInformationProtectionThreatAssessmentRequest" +"Cmdlets","UpdateMgInformationProtectionThreatAssessmentRequestResult.g.cs","v1.0","Update-MgInformationProtectionThreatAssessmentRequestResult","PATCH","/informationProtection/threatAssessmentRequests/{param}/results/{param}","matched","Update-MgInformationProtectionThreatAssessmentRequestResult" +"Cmdlets","UpdateMgInvitationInvitedUserMailboxSetting.g.cs","v1.0","Update-MgInvitationInvitedUserMailboxSetting","PATCH","/invitations/invitedUser/mailboxSettings","matched","Update-MgInvitationInvitedUserMailboxSetting" +"Cmdlets","UpdateMgOauth2PermissionGrant.g.cs","v1.0","Update-MgOauth2PermissionGrant","PATCH","/oauth2PermissionGrants/{param}","matched","Update-MgOauth2PermissionGrant" +"Cmdlets","UpdateMgPolicy.g.cs","v1.0","Update-MgPolicy","PATCH","/policies","no-oracle","" +"Cmdlets","UpdateMgPolicyActivityBasedTimeoutPolicy.g.cs","v1.0","Update-MgPolicyActivityBasedTimeoutPolicy","PATCH","/policies/activityBasedTimeoutPolicies/{param}","matched","Update-MgPolicyActivityBasedTimeoutPolicy" +"Cmdlets","UpdateMgPolicyAdminConsentRequestPolicy.g.cs","v1.0","Update-MgPolicyAdminConsentRequestPolicy","PATCH","/policies/adminConsentRequestPolicy","matched","Update-MgPolicyAdminConsentRequestPolicy" +"Cmdlets","UpdateMgPolicyAppManagementPolicy.g.cs","v1.0","Update-MgPolicyAppManagementPolicy","PATCH","/policies/appManagementPolicies/{param}","matched","Update-MgPolicyAppManagementPolicy" +"Cmdlets","UpdateMgPolicyAuthenticationFlowPolicy.g.cs","v1.0","Update-MgPolicyAuthenticationFlowPolicy","PATCH","/policies/authenticationFlowsPolicy","matched","Update-MgPolicyAuthenticationFlowPolicy" +"Cmdlets","UpdateMgPolicyAuthenticationMethodPolicy.g.cs","v1.0","Update-MgPolicyAuthenticationMethodPolicy","PATCH","/policies/authenticationMethodsPolicy","matched","Update-MgPolicyAuthenticationMethodPolicy" +"Cmdlets","UpdateMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.g.cs","v1.0","Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","PATCH","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{param}","matched","Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"Cmdlets","UpdateMgPolicyAuthenticationStrengthPolicy.g.cs","v1.0","Update-MgPolicyAuthenticationStrengthPolicy","PATCH","/policies/authenticationStrengthPolicies/{param}","matched","Update-MgPolicyAuthenticationStrengthPolicy" +"Cmdlets","UpdateMgPolicyAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","Update-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","PATCH","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations/{param}","matched","Update-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"Cmdlets","UpdateMgPolicyAuthorizationPolicy.g.cs","v1.0","Update-MgPolicyAuthorizationPolicy","PATCH","/policies/authorizationPolicy","matched","Update-MgPolicyAuthorizationPolicy" +"Cmdlets","UpdateMgPolicyClaimMappingPolicy.g.cs","v1.0","Update-MgPolicyClaimMappingPolicy","PATCH","/policies/claimsMappingPolicies/{param}","matched","Update-MgPolicyClaimMappingPolicy" +"Cmdlets","UpdateMgPolicyConditionalAccessPolicy.g.cs","v1.0","Update-MgPolicyConditionalAccessPolicy","PATCH","/policies/conditionalAccessPolicies/{param}","no-oracle","" +"Cmdlets","UpdateMgPolicyCrossTenantAccessPolicy.g.cs","v1.0","Update-MgPolicyCrossTenantAccessPolicy","PATCH","/policies/crossTenantAccessPolicy","matched","Update-MgPolicyCrossTenantAccessPolicy" +"Cmdlets","UpdateMgPolicyCrossTenantAccessPolicyDefault.g.cs","v1.0","Update-MgPolicyCrossTenantAccessPolicyDefault","PATCH","/policies/crossTenantAccessPolicy/default","matched","Update-MgPolicyCrossTenantAccessPolicyDefault" +"Cmdlets","UpdateMgPolicyCrossTenantAccessPolicyPartner.g.cs","v1.0","Update-MgPolicyCrossTenantAccessPolicyPartner","PATCH","/policies/crossTenantAccessPolicy/partners/{param}","matched","Update-MgPolicyCrossTenantAccessPolicyPartner" +"Cmdlets","UpdateMgPolicyCrossTenantAccessPolicyTemplate.g.cs","v1.0","Update-MgPolicyCrossTenantAccessPolicyTemplate","PATCH","/policies/crossTenantAccessPolicy/templates","matched","Update-MgPolicyCrossTenantAccessPolicyTemplate" +"Cmdlets","UpdateMgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization.g.cs","v1.0","Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization","PATCH","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization","matched","Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization" +"Cmdlets","UpdateMgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration.g.cs","v1.0","Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration","PATCH","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration","matched","Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration" +"Cmdlets","UpdateMgPolicyDefaultAppManagementPolicy.g.cs","v1.0","Update-MgPolicyDefaultAppManagementPolicy","PATCH","/policies/defaultAppManagementPolicy","matched","Update-MgPolicyDefaultAppManagementPolicy" +"Cmdlets","UpdateMgPolicyFeatureRolloutPolicy.g.cs","v1.0","Update-MgPolicyFeatureRolloutPolicy","PATCH","/policies/featureRolloutPolicies/{param}","matched","Update-MgPolicyFeatureRolloutPolicy" +"Cmdlets","UpdateMgPolicyFederatedTokenValidationPolicy.g.cs","v1.0","Update-MgPolicyFederatedTokenValidationPolicy","PATCH","/policies/federatedTokenValidationPolicy","matched","Update-MgPolicyFederatedTokenValidationPolicy" +"Cmdlets","UpdateMgPolicyHomeRealmDiscoveryPolicy.g.cs","v1.0","Update-MgPolicyHomeRealmDiscoveryPolicy","PATCH","/policies/homeRealmDiscoveryPolicies/{param}","matched","Update-MgPolicyHomeRealmDiscoveryPolicy" +"Cmdlets","UpdateMgPolicyIdentitySecurityDefaultEnforcementPolicy.g.cs","v1.0","Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy","PATCH","/policies/identitySecurityDefaultsEnforcementPolicy","matched","Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy" +"Cmdlets","UpdateMgPolicyOwnerlessGroupPolicy.g.cs","v1.0","Update-MgPolicyOwnerlessGroupPolicy","PATCH","/policies/ownerlessGroupPolicy","matched","Update-MgPolicyOwnerlessGroupPolicy" +"Cmdlets","UpdateMgPolicyPermissionGrantPolicy.g.cs","v1.0","Update-MgPolicyPermissionGrantPolicy","PATCH","/policies/permissionGrantPolicies/{param}","matched","Update-MgPolicyPermissionGrantPolicy" +"Cmdlets","UpdateMgPolicyPermissionGrantPolicyExclude.g.cs","v1.0","Update-MgPolicyPermissionGrantPolicyExclude","PATCH","/policies/permissionGrantPolicies/{param}/excludes/{param}","matched","Update-MgPolicyPermissionGrantPolicyExclude" +"Cmdlets","UpdateMgPolicyPermissionGrantPolicyInclude.g.cs","v1.0","Update-MgPolicyPermissionGrantPolicyInclude","PATCH","/policies/permissionGrantPolicies/{param}/includes/{param}","matched","Update-MgPolicyPermissionGrantPolicyInclude" +"Cmdlets","UpdateMgPolicyRoleManagementPolicy.g.cs","v1.0","Update-MgPolicyRoleManagementPolicy","PATCH","/policies/roleManagementPolicies/{param}","matched","Update-MgPolicyRoleManagementPolicy" +"Cmdlets","UpdateMgPolicyRoleManagementPolicyAssignment.g.cs","v1.0","Update-MgPolicyRoleManagementPolicyAssignment","PATCH","/policies/roleManagementPolicyAssignments/{param}","matched","Update-MgPolicyRoleManagementPolicyAssignment" +"Cmdlets","UpdateMgPolicyRoleManagementPolicyEffectiveRule.g.cs","v1.0","Update-MgPolicyRoleManagementPolicyEffectiveRule","PATCH","/policies/roleManagementPolicies/{param}/effectiveRules/{param}","matched","Update-MgPolicyRoleManagementPolicyEffectiveRule" +"Cmdlets","UpdateMgPolicyRoleManagementPolicyRule.g.cs","v1.0","Update-MgPolicyRoleManagementPolicyRule","PATCH","/policies/roleManagementPolicies/{param}/rules/{param}","matched","Update-MgPolicyRoleManagementPolicyRule" +"Cmdlets","UpdateMgPolicyTokenIssuancePolicy.g.cs","v1.0","Update-MgPolicyTokenIssuancePolicy","PATCH","/policies/tokenIssuancePolicies/{param}","matched","Update-MgPolicyTokenIssuancePolicy" +"Cmdlets","UpdateMgPolicyTokenLifetimePolicy.g.cs","v1.0","Update-MgPolicyTokenLifetimePolicy","PATCH","/policies/tokenLifetimePolicies/{param}","matched","Update-MgPolicyTokenLifetimePolicy" +"Cmdlets","UpdateMgTenantRelationshipMultiTenantOrganization.g.cs","v1.0","Update-MgTenantRelationshipMultiTenantOrganization","PATCH","/tenantRelationships/multiTenantOrganization","matched","Update-MgTenantRelationshipMultiTenantOrganization" +"Cmdlets","UpdateMgTenantRelationshipMultiTenantOrganizationJoinRequest.g.cs","v1.0","Update-MgTenantRelationshipMultiTenantOrganizationJoinRequest","PATCH","/tenantRelationships/multiTenantOrganization/joinRequest","matched","Update-MgTenantRelationshipMultiTenantOrganizationJoinRequest" +"Cmdlets","UpdateMgTenantRelationshipMultiTenantOrganizationTenant.g.cs","v1.0","Update-MgTenantRelationshipMultiTenantOrganizationTenant","PATCH","/tenantRelationships/multiTenantOrganization/tenants/{param}","matched","Update-MgTenantRelationshipMultiTenantOrganizationTenant" +"Cmdlets","UpdateMgUserAuthentication.g.cs","v1.0","Update-MgUserAuthentication","PATCH","/users/{param}/authentication","no-oracle","" +"Cmdlets","UpdateMgUserAuthenticationEmailMethod.g.cs","v1.0","Update-MgUserAuthenticationEmailMethod","PATCH","/users/{param}/authentication/emailMethods/{param}","matched","Update-MgUserAuthenticationEmailMethod" +"Cmdlets","UpdateMgUserAuthenticationExternalAuthenticationMethod.g.cs","v1.0","Update-MgUserAuthenticationExternalAuthenticationMethod","PATCH","/users/{param}/authentication/externalAuthenticationMethods/{param}","matched","Update-MgUserAuthenticationExternalAuthenticationMethod" +"Cmdlets","UpdateMgUserAuthenticationMethod.g.cs","v1.0","Update-MgUserAuthenticationMethod","PATCH","/users/{param}/authentication/methods/{param}","matched","Update-MgUserAuthenticationMethod" +"Cmdlets","UpdateMgUserAuthenticationOperation.g.cs","v1.0","Update-MgUserAuthenticationOperation","PATCH","/users/{param}/authentication/operations/{param}","matched","Update-MgUserAuthenticationOperation" +"Cmdlets","UpdateMgUserAuthenticationPhoneMethod.g.cs","v1.0","Update-MgUserAuthenticationPhoneMethod","PATCH","/users/{param}/authentication/phoneMethods/{param}","matched","Update-MgUserAuthenticationPhoneMethod" +"Cmdlets","GetMgUserInferenceClassification.g.cs","v1.0","Get-MgUserInferenceClassification","GET","/users/{param}/inferenceClassification","matched","Get-MgUserInferenceClassification" +"Cmdlets","GetMgUserInferenceClassificationOverride_Get.g.cs","v1.0","Get-MgUserInferenceClassificationOverride","GET","/users/{param}/inferenceClassification/overrides/{param}","matched","Get-MgUserInferenceClassificationOverride" +"Cmdlets","GetMgUserInferenceClassificationOverride_List.g.cs","v1.0","Get-MgUserInferenceClassificationOverride","GET","/users/{param}/inferenceClassification/overrides","matched","Get-MgUserInferenceClassificationOverride" +"Cmdlets","GetMgUserInferenceClassificationOverride.g.cs","v1.0","Get-MgUserInferenceClassificationOverride","","","dispatcher","" +"Cmdlets","GetMgUserInferenceClassificationOverrideCount.g.cs","v1.0","Get-MgUserInferenceClassificationOverrideCount","GET","/users/{param}/inferenceClassification/overrides/$count","matched","Get-MgUserInferenceClassificationOverrideCount" +"Cmdlets","GetMgUserMailFolder_Get.g.cs","v1.0","Get-MgUserMailFolder","GET","/users/{param}/mailFolders/{param}","matched","Get-MgUserMailFolder" +"Cmdlets","GetMgUserMailFolder_List.g.cs","v1.0","Get-MgUserMailFolder","GET","/users/{param}/mailFolders","matched","Get-MgUserMailFolder" +"Cmdlets","GetMgUserMailFolder.g.cs","v1.0","Get-MgUserMailFolder","","","dispatcher","" +"Cmdlets","GetMgUserMailFolderChildFolder_Get.g.cs","v1.0","Get-MgUserMailFolderChildFolder","GET","/users/{param}/mailFolders/{param}/childFolders/{param}","matched","Get-MgUserMailFolderChildFolder" +"Cmdlets","GetMgUserMailFolderChildFolder_List.g.cs","v1.0","Get-MgUserMailFolderChildFolder","GET","/users/{param}/mailFolders/{param}/childFolders","matched","Get-MgUserMailFolderChildFolder" +"Cmdlets","GetMgUserMailFolderChildFolder.g.cs","v1.0","Get-MgUserMailFolderChildFolder","","","dispatcher","" +"Cmdlets","GetMgUserMailFolderChildFolderCount.g.cs","v1.0","Get-MgUserMailFolderChildFolderCount","GET","/users/{param}/mailFolders/{param}/childFolders/$count","matched","Get-MgUserMailFolderChildFolderCount" +"Cmdlets","GetMgUserMailFolderChildFolderDelta.g.cs","v1.0","Get-MgUserMailFolderChildFolderDelta","GET","/users/{param}/mailFolders/{param}/childFolders/delta","matched","Get-MgUserMailFolderChildFolderDelta" +"Cmdlets","GetMgUserMailFolderChildFolderMessage_Get.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessage","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}","matched","Get-MgUserMailFolderChildFolderMessage" +"Cmdlets","GetMgUserMailFolderChildFolderMessage_List.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessage","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages","matched","Get-MgUserMailFolderChildFolderMessage" +"Cmdlets","GetMgUserMailFolderChildFolderMessage.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessage","","","dispatcher","" +"Cmdlets","GetMgUserMailFolderChildFolderMessageAttachment_Get.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageAttachment","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments/{param}","matched","Get-MgUserMailFolderChildFolderMessageAttachment" +"Cmdlets","GetMgUserMailFolderChildFolderMessageAttachment_List.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageAttachment","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments","matched","Get-MgUserMailFolderChildFolderMessageAttachment" +"Cmdlets","GetMgUserMailFolderChildFolderMessageAttachment.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageAttachment","","","dispatcher","" +"Cmdlets","GetMgUserMailFolderChildFolderMessageAttachmentCount.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageAttachmentCount","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments/$count","matched","Get-MgUserMailFolderChildFolderMessageAttachmentCount" +"Cmdlets","GetMgUserMailFolderChildFolderMessageContent.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageContent","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/$value","matched","Get-MgUserMailFolderChildFolderMessageContent" +"Cmdlets","GetMgUserMailFolderChildFolderMessageCount.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageCount","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/$count","matched","Get-MgUserMailFolderChildFolderMessageCount" +"Cmdlets","GetMgUserMailFolderChildFolderMessageDelta.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageDelta","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/delta","matched","Get-MgUserMailFolderChildFolderMessageDelta" +"Cmdlets","GetMgUserMailFolderChildFolderMessageExtension_Get.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageExtension","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions/{param}","matched","Get-MgUserMailFolderChildFolderMessageExtension" +"Cmdlets","GetMgUserMailFolderChildFolderMessageExtension_List.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageExtension","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions","matched","Get-MgUserMailFolderChildFolderMessageExtension" +"Cmdlets","GetMgUserMailFolderChildFolderMessageExtension.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageExtension","","","dispatcher","" +"Cmdlets","GetMgUserMailFolderChildFolderMessageExtensionCount.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageExtensionCount","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions/$count","matched","Get-MgUserMailFolderChildFolderMessageExtensionCount" +"Cmdlets","GetMgUserMailFolderChildFolderMessageRule_Get.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageRule","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules/{param}","matched","Get-MgUserMailFolderChildFolderMessageRule" +"Cmdlets","GetMgUserMailFolderChildFolderMessageRule_List.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageRule","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules","matched","Get-MgUserMailFolderChildFolderMessageRule" +"Cmdlets","GetMgUserMailFolderChildFolderMessageRule.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageRule","","","dispatcher","" +"Cmdlets","GetMgUserMailFolderChildFolderMessageRuleCount.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageRuleCount","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules/$count","matched","Get-MgUserMailFolderChildFolderMessageRuleCount" +"Cmdlets","GetMgUserMailFolderCount.g.cs","v1.0","Get-MgUserMailFolderCount","GET","/users/{param}/mailFolders/$count","matched","Get-MgUserMailFolderCount" +"Cmdlets","GetMgUserMailFolderDelta.g.cs","v1.0","Get-MgUserMailFolderDelta","GET","/users/{param}/mailFolders/delta","matched","Get-MgUserMailFolderDelta" +"Cmdlets","GetMgUserMailFolderMessage_Get.g.cs","v1.0","Get-MgUserMailFolderMessage","GET","/users/{param}/mailFolders/{param}/messages/{param}","matched","Get-MgUserMailFolderMessage" +"Cmdlets","GetMgUserMailFolderMessage_List.g.cs","v1.0","Get-MgUserMailFolderMessage","GET","/users/{param}/mailFolders/{param}/messages","matched","Get-MgUserMailFolderMessage" +"Cmdlets","GetMgUserMailFolderMessage.g.cs","v1.0","Get-MgUserMailFolderMessage","","","dispatcher","" +"Cmdlets","GetMgUserMailFolderMessageAttachment_Get.g.cs","v1.0","Get-MgUserMailFolderMessageAttachment","GET","/users/{param}/mailFolders/{param}/messages/{param}/attachments/{param}","matched","Get-MgUserMailFolderMessageAttachment" +"Cmdlets","GetMgUserMailFolderMessageAttachment_List.g.cs","v1.0","Get-MgUserMailFolderMessageAttachment","GET","/users/{param}/mailFolders/{param}/messages/{param}/attachments","matched","Get-MgUserMailFolderMessageAttachment" +"Cmdlets","GetMgUserMailFolderMessageAttachment.g.cs","v1.0","Get-MgUserMailFolderMessageAttachment","","","dispatcher","" +"Cmdlets","GetMgUserMailFolderMessageAttachmentCount.g.cs","v1.0","Get-MgUserMailFolderMessageAttachmentCount","GET","/users/{param}/mailFolders/{param}/messages/{param}/attachments/$count","matched","Get-MgUserMailFolderMessageAttachmentCount" +"Cmdlets","GetMgUserMailFolderMessageContent.g.cs","v1.0","Get-MgUserMailFolderMessageContent","GET","/users/{param}/mailFolders/{param}/messages/{param}/$value","no-oracle","" +"Cmdlets","GetMgUserMailFolderMessageCount.g.cs","v1.0","Get-MgUserMailFolderMessageCount","GET","/users/{param}/mailFolders/{param}/messages/$count","matched","Get-MgUserMailFolderMessageCount" +"Cmdlets","GetMgUserMailFolderMessageDelta.g.cs","v1.0","Get-MgUserMailFolderMessageDelta","GET","/users/{param}/mailFolders/{param}/messages/delta","matched","Get-MgUserMailFolderMessageDelta" +"Cmdlets","GetMgUserMailFolderMessageExtension_Get.g.cs","v1.0","Get-MgUserMailFolderMessageExtension","GET","/users/{param}/mailFolders/{param}/messages/{param}/extensions/{param}","matched","Get-MgUserMailFolderMessageExtension" +"Cmdlets","GetMgUserMailFolderMessageExtension_List.g.cs","v1.0","Get-MgUserMailFolderMessageExtension","GET","/users/{param}/mailFolders/{param}/messages/{param}/extensions","matched","Get-MgUserMailFolderMessageExtension" +"Cmdlets","GetMgUserMailFolderMessageExtension.g.cs","v1.0","Get-MgUserMailFolderMessageExtension","","","dispatcher","" +"Cmdlets","GetMgUserMailFolderMessageExtensionCount.g.cs","v1.0","Get-MgUserMailFolderMessageExtensionCount","GET","/users/{param}/mailFolders/{param}/messages/{param}/extensions/$count","matched","Get-MgUserMailFolderMessageExtensionCount" +"Cmdlets","GetMgUserMailFolderMessageRule_Get.g.cs","v1.0","Get-MgUserMailFolderMessageRule","GET","/users/{param}/mailFolders/{param}/messageRules/{param}","matched","Get-MgUserMailFolderMessageRule" +"Cmdlets","GetMgUserMailFolderMessageRule_List.g.cs","v1.0","Get-MgUserMailFolderMessageRule","GET","/users/{param}/mailFolders/{param}/messageRules","matched","Get-MgUserMailFolderMessageRule" +"Cmdlets","GetMgUserMailFolderMessageRule.g.cs","v1.0","Get-MgUserMailFolderMessageRule","","","dispatcher","" +"Cmdlets","GetMgUserMailFolderMessageRuleCount.g.cs","v1.0","Get-MgUserMailFolderMessageRuleCount","GET","/users/{param}/mailFolders/{param}/messageRules/$count","matched","Get-MgUserMailFolderMessageRuleCount" +"Cmdlets","GetMgUserMessage_Get.g.cs","v1.0","Get-MgUserMessage","GET","/users/{param}/messages/{param}","matched","Get-MgUserMessage" +"Cmdlets","GetMgUserMessage_List.g.cs","v1.0","Get-MgUserMessage","GET","/users/{param}/messages","matched","Get-MgUserMessage" +"Cmdlets","GetMgUserMessage.g.cs","v1.0","Get-MgUserMessage","","","dispatcher","" +"Cmdlets","GetMgUserMessageAttachment_Get.g.cs","v1.0","Get-MgUserMessageAttachment","GET","/users/{param}/messages/{param}/attachments/{param}","matched","Get-MgUserMessageAttachment" +"Cmdlets","GetMgUserMessageAttachment_List.g.cs","v1.0","Get-MgUserMessageAttachment","GET","/users/{param}/messages/{param}/attachments","matched","Get-MgUserMessageAttachment" +"Cmdlets","GetMgUserMessageAttachment.g.cs","v1.0","Get-MgUserMessageAttachment","","","dispatcher","" +"Cmdlets","GetMgUserMessageAttachmentCount.g.cs","v1.0","Get-MgUserMessageAttachmentCount","GET","/users/{param}/messages/{param}/attachments/$count","matched","Get-MgUserMessageAttachmentCount" +"Cmdlets","GetMgUserMessageContent.g.cs","v1.0","Get-MgUserMessageContent","GET","/users/{param}/messages/{param}/$value","matched","Get-MgUserMessageContent" +"Cmdlets","GetMgUserMessageCount.g.cs","v1.0","Get-MgUserMessageCount","GET","/users/{param}/messages/$count","matched","Get-MgUserMessageCount" +"Cmdlets","GetMgUserMessageDelta.g.cs","v1.0","Get-MgUserMessageDelta","GET","/users/{param}/messages/delta","matched","Get-MgUserMessageDelta" +"Cmdlets","GetMgUserMessageExtension_Get.g.cs","v1.0","Get-MgUserMessageExtension","GET","/users/{param}/messages/{param}/extensions/{param}","matched","Get-MgUserMessageExtension" +"Cmdlets","GetMgUserMessageExtension_List.g.cs","v1.0","Get-MgUserMessageExtension","GET","/users/{param}/messages/{param}/extensions","matched","Get-MgUserMessageExtension" +"Cmdlets","GetMgUserMessageExtension.g.cs","v1.0","Get-MgUserMessageExtension","","","dispatcher","" +"Cmdlets","GetMgUserMessageExtensionCount.g.cs","v1.0","Get-MgUserMessageExtensionCount","GET","/users/{param}/messages/{param}/extensions/$count","matched","Get-MgUserMessageExtensionCount" +"Cmdlets","InvokeMgUserMailFolderChildFolderCopy.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderCopy","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/copy","mismatch","Copy-MgUserMailFolderChildFolder" +"Cmdlets","InvokeMgUserMailFolderChildFolderMessageAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageAttachmentCreateUploadSession","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments/createUploadSession","mismatch","New-MgUserMailFolderChildFolderMessageAttachmentUploadSession" +"Cmdlets","InvokeMgUserMailFolderChildFolderMessageCopy.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageCopy","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/copy","mismatch","Copy-MgUserMailFolderChildFolderMessage" +"Cmdlets","InvokeMgUserMailFolderChildFolderMessageCreateForward.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageCreateForward","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/createForward","mismatch","New-MgUserMailFolderChildFolderMessageForward" +"Cmdlets","InvokeMgUserMailFolderChildFolderMessageCreateReply.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageCreateReply","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/createReply","mismatch","New-MgUserMailFolderChildFolderMessageReply" +"Cmdlets","InvokeMgUserMailFolderChildFolderMessageCreateReplyAll.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageCreateReplyAll","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/createReplyAll","mismatch","New-MgUserMailFolderChildFolderMessageReplyAll" +"Cmdlets","InvokeMgUserMailFolderChildFolderMessageForward.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageForward","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/forward","mismatch","Invoke-MgForwardUserMailFolderChildFolderMessage" +"Cmdlets","InvokeMgUserMailFolderChildFolderMessageMove.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageMove","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/move","mismatch","Move-MgUserMailFolderChildFolderMessage" +"Cmdlets","InvokeMgUserMailFolderChildFolderMessagePermanentDelete.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessagePermanentDelete","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/permanentDelete","mismatch","Remove-MgUserMailFolderChildFolderMessagePermanent" +"Cmdlets","InvokeMgUserMailFolderChildFolderMessageReply.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageReply","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/reply","mismatch","Invoke-MgReplyUserMailFolderChildFolderMessage" +"Cmdlets","InvokeMgUserMailFolderChildFolderMessageReplyAll.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageReplyAll","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/replyAll","mismatch","Invoke-MgReplyAllUserMailFolderChildFolderMessage" +"Cmdlets","InvokeMgUserMailFolderChildFolderMessageSend.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageSend","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/send","mismatch","Send-MgUserMailFolderChildFolderMessage" +"Cmdlets","InvokeMgUserMailFolderChildFolderMove.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMove","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/move","mismatch","Move-MgUserMailFolderChildFolder" +"Cmdlets","InvokeMgUserMailFolderChildFolderPermanentDelete.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderPermanentDelete","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/permanentDelete","mismatch","Remove-MgUserMailFolderChildFolderPermanent" +"Cmdlets","InvokeMgUserMailFolderCopy.g.cs","v1.0","Invoke-MgUserMailFolderCopy","POST","/users/{param}/mailFolders/{param}/copy","mismatch","Copy-MgUserMailFolder" +"Cmdlets","InvokeMgUserMailFolderMessageAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgUserMailFolderMessageAttachmentCreateUploadSession","POST","/users/{param}/mailFolders/{param}/messages/{param}/attachments/createUploadSession","mismatch","New-MgUserMailFolderMessageAttachmentUploadSession" +"Cmdlets","InvokeMgUserMailFolderMessageCopy.g.cs","v1.0","Invoke-MgUserMailFolderMessageCopy","POST","/users/{param}/mailFolders/{param}/messages/{param}/copy","mismatch","Copy-MgUserMailFolderMessage" +"Cmdlets","InvokeMgUserMailFolderMessageCreateForward.g.cs","v1.0","Invoke-MgUserMailFolderMessageCreateForward","POST","/users/{param}/mailFolders/{param}/messages/{param}/createForward","mismatch","New-MgUserMailFolderMessageForward" +"Cmdlets","InvokeMgUserMailFolderMessageCreateReply.g.cs","v1.0","Invoke-MgUserMailFolderMessageCreateReply","POST","/users/{param}/mailFolders/{param}/messages/{param}/createReply","mismatch","New-MgUserMailFolderMessageReply" +"Cmdlets","InvokeMgUserMailFolderMessageCreateReplyAll.g.cs","v1.0","Invoke-MgUserMailFolderMessageCreateReplyAll","POST","/users/{param}/mailFolders/{param}/messages/{param}/createReplyAll","mismatch","New-MgUserMailFolderMessageReplyAll" +"Cmdlets","InvokeMgUserMailFolderMessageForward.g.cs","v1.0","Invoke-MgUserMailFolderMessageForward","POST","/users/{param}/mailFolders/{param}/messages/{param}/forward","mismatch","Invoke-MgForwardUserMailFolderMessage" +"Cmdlets","InvokeMgUserMailFolderMessageMove.g.cs","v1.0","Invoke-MgUserMailFolderMessageMove","POST","/users/{param}/mailFolders/{param}/messages/{param}/move","mismatch","Move-MgUserMailFolderMessage" +"Cmdlets","InvokeMgUserMailFolderMessagePermanentDelete.g.cs","v1.0","Invoke-MgUserMailFolderMessagePermanentDelete","POST","/users/{param}/mailFolders/{param}/messages/{param}/permanentDelete","mismatch","Remove-MgUserMailFolderMessagePermanent" +"Cmdlets","InvokeMgUserMailFolderMessageReply.g.cs","v1.0","Invoke-MgUserMailFolderMessageReply","POST","/users/{param}/mailFolders/{param}/messages/{param}/reply","mismatch","Invoke-MgReplyUserMailFolderMessage" +"Cmdlets","InvokeMgUserMailFolderMessageReplyAll.g.cs","v1.0","Invoke-MgUserMailFolderMessageReplyAll","POST","/users/{param}/mailFolders/{param}/messages/{param}/replyAll","mismatch","Invoke-MgReplyAllUserMailFolderMessage" +"Cmdlets","InvokeMgUserMailFolderMessageSend.g.cs","v1.0","Invoke-MgUserMailFolderMessageSend","POST","/users/{param}/mailFolders/{param}/messages/{param}/send","mismatch","Send-MgUserMailFolderMessage" +"Cmdlets","InvokeMgUserMailFolderMove.g.cs","v1.0","Invoke-MgUserMailFolderMove","POST","/users/{param}/mailFolders/{param}/move","mismatch","Move-MgUserMailFolder" +"Cmdlets","InvokeMgUserMailFolderPermanentDelete.g.cs","v1.0","Invoke-MgUserMailFolderPermanentDelete","POST","/users/{param}/mailFolders/{param}/permanentDelete","mismatch","Remove-MgUserMailFolderPermanent" +"Cmdlets","InvokeMgUserMessageAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgUserMessageAttachmentCreateUploadSession","POST","/users/{param}/messages/{param}/attachments/createUploadSession","mismatch","New-MgUserMessageAttachmentUploadSession" +"Cmdlets","InvokeMgUserMessageCopy.g.cs","v1.0","Invoke-MgUserMessageCopy","POST","/users/{param}/messages/{param}/copy","mismatch","Copy-MgUserMessage" +"Cmdlets","InvokeMgUserMessageCreateForward.g.cs","v1.0","Invoke-MgUserMessageCreateForward","POST","/users/{param}/messages/{param}/createForward","mismatch","New-MgUserMessageForward" +"Cmdlets","InvokeMgUserMessageCreateReply.g.cs","v1.0","Invoke-MgUserMessageCreateReply","POST","/users/{param}/messages/{param}/createReply","mismatch","New-MgUserMessageReply" +"Cmdlets","InvokeMgUserMessageCreateReplyAll.g.cs","v1.0","Invoke-MgUserMessageCreateReplyAll","POST","/users/{param}/messages/{param}/createReplyAll","mismatch","New-MgUserMessageReplyAll" +"Cmdlets","InvokeMgUserMessageForward.g.cs","v1.0","Invoke-MgUserMessageForward","POST","/users/{param}/messages/{param}/forward","mismatch","Invoke-MgForwardUserMessage" +"Cmdlets","InvokeMgUserMessageMove.g.cs","v1.0","Invoke-MgUserMessageMove","POST","/users/{param}/messages/{param}/move","mismatch","Move-MgUserMessage" +"Cmdlets","InvokeMgUserMessagePermanentDelete.g.cs","v1.0","Invoke-MgUserMessagePermanentDelete","POST","/users/{param}/messages/{param}/permanentDelete","mismatch","Remove-MgUserMessagePermanent" +"Cmdlets","InvokeMgUserMessageReply.g.cs","v1.0","Invoke-MgUserMessageReply","POST","/users/{param}/messages/{param}/reply","mismatch","Invoke-MgReplyUserMessage" +"Cmdlets","InvokeMgUserMessageReplyAll.g.cs","v1.0","Invoke-MgUserMessageReplyAll","POST","/users/{param}/messages/{param}/replyAll","mismatch","Invoke-MgReplyAllUserMessage" +"Cmdlets","InvokeMgUserMessageSend.g.cs","v1.0","Invoke-MgUserMessageSend","POST","/users/{param}/messages/{param}/send","mismatch","Send-MgUserMessage" +"Cmdlets","NewMgUserInferenceClassificationOverride.g.cs","v1.0","New-MgUserInferenceClassificationOverride","POST","/users/{param}/inferenceClassification/overrides","matched","New-MgUserInferenceClassificationOverride" +"Cmdlets","NewMgUserMailFolder.g.cs","v1.0","New-MgUserMailFolder","POST","/users/{param}/mailFolders","matched","New-MgUserMailFolder" +"Cmdlets","NewMgUserMailFolderChildFolder.g.cs","v1.0","New-MgUserMailFolderChildFolder","POST","/users/{param}/mailFolders/{param}/childFolders","matched","New-MgUserMailFolderChildFolder" +"Cmdlets","NewMgUserMailFolderChildFolderMessage.g.cs","v1.0","New-MgUserMailFolderChildFolderMessage","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages","matched","New-MgUserMailFolderChildFolderMessage" +"Cmdlets","NewMgUserMailFolderChildFolderMessageAttachment.g.cs","v1.0","New-MgUserMailFolderChildFolderMessageAttachment","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments","matched","New-MgUserMailFolderChildFolderMessageAttachment" +"Cmdlets","NewMgUserMailFolderChildFolderMessageExtension.g.cs","v1.0","New-MgUserMailFolderChildFolderMessageExtension","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions","matched","New-MgUserMailFolderChildFolderMessageExtension" +"Cmdlets","NewMgUserMailFolderChildFolderMessageRule.g.cs","v1.0","New-MgUserMailFolderChildFolderMessageRule","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules","matched","New-MgUserMailFolderChildFolderMessageRule" +"Cmdlets","NewMgUserMailFolderMessage.g.cs","v1.0","New-MgUserMailFolderMessage","POST","/users/{param}/mailFolders/{param}/messages","matched","New-MgUserMailFolderMessage" +"Cmdlets","NewMgUserMailFolderMessageAttachment.g.cs","v1.0","New-MgUserMailFolderMessageAttachment","POST","/users/{param}/mailFolders/{param}/messages/{param}/attachments","matched","New-MgUserMailFolderMessageAttachment" +"Cmdlets","NewMgUserMailFolderMessageExtension.g.cs","v1.0","New-MgUserMailFolderMessageExtension","POST","/users/{param}/mailFolders/{param}/messages/{param}/extensions","matched","New-MgUserMailFolderMessageExtension" +"Cmdlets","NewMgUserMailFolderMessageRule.g.cs","v1.0","New-MgUserMailFolderMessageRule","POST","/users/{param}/mailFolders/{param}/messageRules","matched","New-MgUserMailFolderMessageRule" +"Cmdlets","NewMgUserMessage.g.cs","v1.0","New-MgUserMessage","POST","/users/{param}/messages","matched","New-MgUserMessage" +"Cmdlets","NewMgUserMessageAttachment.g.cs","v1.0","New-MgUserMessageAttachment","POST","/users/{param}/messages/{param}/attachments","matched","New-MgUserMessageAttachment" +"Cmdlets","NewMgUserMessageExtension.g.cs","v1.0","New-MgUserMessageExtension","POST","/users/{param}/messages/{param}/extensions","matched","New-MgUserMessageExtension" +"Cmdlets","RemoveMgUserInferenceClassificationOverride.g.cs","v1.0","Remove-MgUserInferenceClassificationOverride","DELETE","/users/{param}/inferenceClassification/overrides/{param}","matched","Remove-MgUserInferenceClassificationOverride" +"Cmdlets","RemoveMgUserMailFolder.g.cs","v1.0","Remove-MgUserMailFolder","DELETE","/users/{param}/mailFolders/{param}","matched","Remove-MgUserMailFolder" +"Cmdlets","RemoveMgUserMailFolderChildFolder.g.cs","v1.0","Remove-MgUserMailFolderChildFolder","DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}","matched","Remove-MgUserMailFolderChildFolder" +"Cmdlets","RemoveMgUserMailFolderChildFolderMessage.g.cs","v1.0","Remove-MgUserMailFolderChildFolderMessage","DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}","matched","Remove-MgUserMailFolderChildFolderMessage" +"Cmdlets","RemoveMgUserMailFolderChildFolderMessageAttachment.g.cs","v1.0","Remove-MgUserMailFolderChildFolderMessageAttachment","DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments/{param}","matched","Remove-MgUserMailFolderChildFolderMessageAttachment" +"Cmdlets","RemoveMgUserMailFolderChildFolderMessageContent.g.cs","v1.0","Remove-MgUserMailFolderChildFolderMessageContent","DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/$value","matched","Remove-MgUserMailFolderChildFolderMessageContent" +"Cmdlets","RemoveMgUserMailFolderChildFolderMessageExtension.g.cs","v1.0","Remove-MgUserMailFolderChildFolderMessageExtension","DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions/{param}","matched","Remove-MgUserMailFolderChildFolderMessageExtension" +"Cmdlets","RemoveMgUserMailFolderChildFolderMessageRule.g.cs","v1.0","Remove-MgUserMailFolderChildFolderMessageRule","DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules/{param}","matched","Remove-MgUserMailFolderChildFolderMessageRule" +"Cmdlets","RemoveMgUserMailFolderMessage.g.cs","v1.0","Remove-MgUserMailFolderMessage","DELETE","/users/{param}/mailFolders/{param}/messages/{param}","matched","Remove-MgUserMailFolderMessage" +"Cmdlets","RemoveMgUserMailFolderMessageAttachment.g.cs","v1.0","Remove-MgUserMailFolderMessageAttachment","DELETE","/users/{param}/mailFolders/{param}/messages/{param}/attachments/{param}","matched","Remove-MgUserMailFolderMessageAttachment" +"Cmdlets","RemoveMgUserMailFolderMessageContent.g.cs","v1.0","Remove-MgUserMailFolderMessageContent","DELETE","/users/{param}/mailFolders/{param}/messages/{param}/$value","matched","Remove-MgUserMailFolderMessageContent" +"Cmdlets","RemoveMgUserMailFolderMessageExtension.g.cs","v1.0","Remove-MgUserMailFolderMessageExtension","DELETE","/users/{param}/mailFolders/{param}/messages/{param}/extensions/{param}","matched","Remove-MgUserMailFolderMessageExtension" +"Cmdlets","RemoveMgUserMailFolderMessageRule.g.cs","v1.0","Remove-MgUserMailFolderMessageRule","DELETE","/users/{param}/mailFolders/{param}/messageRules/{param}","matched","Remove-MgUserMailFolderMessageRule" +"Cmdlets","RemoveMgUserMessage.g.cs","v1.0","Remove-MgUserMessage","DELETE","/users/{param}/messages/{param}","matched","Remove-MgUserMessage" +"Cmdlets","RemoveMgUserMessageAttachment.g.cs","v1.0","Remove-MgUserMessageAttachment","DELETE","/users/{param}/messages/{param}/attachments/{param}","matched","Remove-MgUserMessageAttachment" +"Cmdlets","RemoveMgUserMessageContent.g.cs","v1.0","Remove-MgUserMessageContent","DELETE","/users/{param}/messages/{param}/$value","matched","Remove-MgUserMessageContent" +"Cmdlets","RemoveMgUserMessageExtension.g.cs","v1.0","Remove-MgUserMessageExtension","DELETE","/users/{param}/messages/{param}/extensions/{param}","matched","Remove-MgUserMessageExtension" +"Cmdlets","UpdateMgUserInferenceClassification.g.cs","v1.0","Update-MgUserInferenceClassification","PATCH","/users/{param}/inferenceClassification","matched","Update-MgUserInferenceClassification" +"Cmdlets","UpdateMgUserInferenceClassificationOverride.g.cs","v1.0","Update-MgUserInferenceClassificationOverride","PATCH","/users/{param}/inferenceClassification/overrides/{param}","matched","Update-MgUserInferenceClassificationOverride" +"Cmdlets","UpdateMgUserMailFolder.g.cs","v1.0","Update-MgUserMailFolder","PATCH","/users/{param}/mailFolders/{param}","matched","Update-MgUserMailFolder" +"Cmdlets","UpdateMgUserMailFolderChildFolder.g.cs","v1.0","Update-MgUserMailFolderChildFolder","PATCH","/users/{param}/mailFolders/{param}/childFolders/{param}","matched","Update-MgUserMailFolderChildFolder" +"Cmdlets","UpdateMgUserMailFolderChildFolderMessage.g.cs","v1.0","Update-MgUserMailFolderChildFolderMessage","PATCH","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}","matched","Update-MgUserMailFolderChildFolderMessage" +"Cmdlets","UpdateMgUserMailFolderChildFolderMessageExtension.g.cs","v1.0","Update-MgUserMailFolderChildFolderMessageExtension","PATCH","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions/{param}","matched","Update-MgUserMailFolderChildFolderMessageExtension" +"Cmdlets","UpdateMgUserMailFolderChildFolderMessageRule.g.cs","v1.0","Update-MgUserMailFolderChildFolderMessageRule","PATCH","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules/{param}","matched","Update-MgUserMailFolderChildFolderMessageRule" +"Cmdlets","UpdateMgUserMailFolderMessage.g.cs","v1.0","Update-MgUserMailFolderMessage","PATCH","/users/{param}/mailFolders/{param}/messages/{param}","matched","Update-MgUserMailFolderMessage" +"Cmdlets","UpdateMgUserMailFolderMessageExtension.g.cs","v1.0","Update-MgUserMailFolderMessageExtension","PATCH","/users/{param}/mailFolders/{param}/messages/{param}/extensions/{param}","matched","Update-MgUserMailFolderMessageExtension" +"Cmdlets","UpdateMgUserMailFolderMessageRule.g.cs","v1.0","Update-MgUserMailFolderMessageRule","PATCH","/users/{param}/mailFolders/{param}/messageRules/{param}","matched","Update-MgUserMailFolderMessageRule" +"Cmdlets","UpdateMgUserMessage.g.cs","v1.0","Update-MgUserMessage","PATCH","/users/{param}/messages/{param}","matched","Update-MgUserMessage" +"Cmdlets","UpdateMgUserMessageExtension.g.cs","v1.0","Update-MgUserMessageExtension","PATCH","/users/{param}/messages/{param}/extensions/{param}","matched","Update-MgUserMessageExtension" +"Cmdlets","GetMgGroupOnenote.g.cs","v1.0","Get-MgGroupOnenote","GET","/groups/{param}/onenote","matched","Get-MgGroupOnenote" +"Cmdlets","GetMgGroupOnenoteNotebook_Get.g.cs","v1.0","Get-MgGroupOnenoteNotebook","GET","/groups/{param}/onenote/notebooks/{param}","matched","Get-MgGroupOnenoteNotebook" +"Cmdlets","GetMgGroupOnenoteNotebook_List.g.cs","v1.0","Get-MgGroupOnenoteNotebook","GET","/groups/{param}/onenote/notebooks","matched","Get-MgGroupOnenoteNotebook" +"Cmdlets","GetMgGroupOnenoteNotebook.g.cs","v1.0","Get-MgGroupOnenoteNotebook","","","dispatcher","" +"Cmdlets","GetMgGroupOnenoteNotebookCount.g.cs","v1.0","Get-MgGroupOnenoteNotebookCount","GET","/groups/{param}/onenote/notebooks/$count","matched","Get-MgGroupOnenoteNotebookCount" +"Cmdlets","GetMgGroupOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks.g.cs","v1.0","Get-MgGroupOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks","GET","/groups/{param}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})","mismatch","Get-MgGroupOnenoteRecentNotebook" +"Cmdlets","GetMgGroupOnenoteNotebookSection_Get.g.cs","v1.0","Get-MgGroupOnenoteNotebookSection","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}","matched","Get-MgGroupOnenoteNotebookSection" +"Cmdlets","GetMgGroupOnenoteNotebookSection_List.g.cs","v1.0","Get-MgGroupOnenoteNotebookSection","GET","/groups/{param}/onenote/notebooks/{param}/sections","matched","Get-MgGroupOnenoteNotebookSection" +"Cmdlets","GetMgGroupOnenoteNotebookSection.g.cs","v1.0","Get-MgGroupOnenoteNotebookSection","","","dispatcher","" +"Cmdlets","GetMgGroupOnenoteNotebookSectionCount.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionCount","GET","/groups/{param}/onenote/notebooks/{param}/sections/$count","matched","Get-MgGroupOnenoteNotebookSectionCount" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroup","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups","matched","Get-MgGroupOnenoteNotebookSectionGroup" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupCount.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupCount","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgGroupOnenoteNotebookSectionGroupCount" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupParentNotebook","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentNotebook","matched","Get-MgGroupOnenoteNotebookSectionGroupParentNotebook" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupParentSectionGroup","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentSectionGroup","matched","Get-MgGroupOnenoteNotebookSectionGroupParentSectionGroup" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSection_Get.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSection","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Get-MgGroupOnenoteNotebookSectionGroupSection" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSection_List.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSection","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","Get-MgGroupOnenoteNotebookSectionGroupSection" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSection.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSection","","","dispatcher","" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSectionCount.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionCount","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/$count","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionCount" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPage","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSectionPage_List.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPage","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPage","","","dispatcher","" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPageContent","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSectionPageCount.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPageCount","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionPageCount" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPageParentNotebook","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionPageParentNotebook" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPageParentSection","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionPageParentSection" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPagePreview","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionParentNotebook","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionParentNotebook" +"Cmdlets","GetMgGroupOnenoteNotebookSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionParentSectionGroup","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionParentSectionGroup" +"Cmdlets","GetMgGroupOnenoteNotebookSectionPage_Get.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPage","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Get-MgGroupOnenoteNotebookSectionPage" +"Cmdlets","GetMgGroupOnenoteNotebookSectionPage_List.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPage","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","Get-MgGroupOnenoteNotebookSectionPage" +"Cmdlets","GetMgGroupOnenoteNotebookSectionPage.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPage","","","dispatcher","" +"Cmdlets","GetMgGroupOnenoteNotebookSectionPageContent.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPageContent","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","matched","Get-MgGroupOnenoteNotebookSectionPageContent" +"Cmdlets","GetMgGroupOnenoteNotebookSectionPageCount.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPageCount","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/$count","matched","Get-MgGroupOnenoteNotebookSectionPageCount" +"Cmdlets","GetMgGroupOnenoteNotebookSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPageParentNotebook","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupOnenoteNotebookSectionPageParentNotebook" +"Cmdlets","GetMgGroupOnenoteNotebookSectionPageParentSection.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPageParentSection","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupOnenoteNotebookSectionPageParentSection" +"Cmdlets","GetMgGroupOnenoteNotebookSectionPagePreview.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPagePreview","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupOnenoteNotebookSectionPage" +"Cmdlets","GetMgGroupOnenoteNotebookSectionParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionParentNotebook","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/parentNotebook","matched","Get-MgGroupOnenoteNotebookSectionParentNotebook" +"Cmdlets","GetMgGroupOnenoteNotebookSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionParentSectionGroup","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/parentSectionGroup","matched","Get-MgGroupOnenoteNotebookSectionParentSectionGroup" +"Cmdlets","GetMgGroupOnenoteOperation_Get.g.cs","v1.0","Get-MgGroupOnenoteOperation","GET","/groups/{param}/onenote/operations/{param}","matched","Get-MgGroupOnenoteOperation" +"Cmdlets","GetMgGroupOnenoteOperation_List.g.cs","v1.0","Get-MgGroupOnenoteOperation","GET","/groups/{param}/onenote/operations","matched","Get-MgGroupOnenoteOperation" +"Cmdlets","GetMgGroupOnenoteOperation.g.cs","v1.0","Get-MgGroupOnenoteOperation","","","dispatcher","" +"Cmdlets","GetMgGroupOnenoteOperationCount.g.cs","v1.0","Get-MgGroupOnenoteOperationCount","GET","/groups/{param}/onenote/operations/$count","matched","Get-MgGroupOnenoteOperationCount" +"Cmdlets","GetMgGroupOnenotePage_Get.g.cs","v1.0","Get-MgGroupOnenotePage","GET","/groups/{param}/onenote/pages/{param}","matched","Get-MgGroupOnenotePage" +"Cmdlets","GetMgGroupOnenotePage_List.g.cs","v1.0","Get-MgGroupOnenotePage","GET","/groups/{param}/onenote/pages","matched","Get-MgGroupOnenotePage" +"Cmdlets","GetMgGroupOnenotePage.g.cs","v1.0","Get-MgGroupOnenotePage","","","dispatcher","" +"Cmdlets","GetMgGroupOnenotePageContent.g.cs","v1.0","Get-MgGroupOnenotePageContent","GET","/groups/{param}/onenote/pages/{param}/content","matched","Get-MgGroupOnenotePageContent" +"Cmdlets","GetMgGroupOnenotePageCount.g.cs","v1.0","Get-MgGroupOnenotePageCount","GET","/groups/{param}/onenote/pages/$count","matched","Get-MgGroupOnenotePageCount" +"Cmdlets","GetMgGroupOnenotePageParentNotebook.g.cs","v1.0","Get-MgGroupOnenotePageParentNotebook","GET","/groups/{param}/onenote/pages/{param}/parentNotebook","matched","Get-MgGroupOnenotePageParentNotebook" +"Cmdlets","GetMgGroupOnenotePageParentSection.g.cs","v1.0","Get-MgGroupOnenotePageParentSection","GET","/groups/{param}/onenote/pages/{param}/parentSection","matched","Get-MgGroupOnenotePageParentSection" +"Cmdlets","GetMgGroupOnenotePagePreview.g.cs","v1.0","Get-MgGroupOnenotePagePreview","GET","/groups/{param}/onenote/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupOnenotePage" +"Cmdlets","GetMgGroupOnenoteResource_Get.g.cs","v1.0","Get-MgGroupOnenoteResource","GET","/groups/{param}/onenote/resources/{param}","matched","Get-MgGroupOnenoteResource" +"Cmdlets","GetMgGroupOnenoteResource_List.g.cs","v1.0","Get-MgGroupOnenoteResource","GET","/groups/{param}/onenote/resources","matched","Get-MgGroupOnenoteResource" +"Cmdlets","GetMgGroupOnenoteResource.g.cs","v1.0","Get-MgGroupOnenoteResource","","","dispatcher","" +"Cmdlets","GetMgGroupOnenoteResourceContent.g.cs","v1.0","Get-MgGroupOnenoteResourceContent","GET","/groups/{param}/onenote/resources/{param}/content","matched","Get-MgGroupOnenoteResourceContent" +"Cmdlets","GetMgGroupOnenoteResourceCount.g.cs","v1.0","Get-MgGroupOnenoteResourceCount","GET","/groups/{param}/onenote/resources/$count","matched","Get-MgGroupOnenoteResourceCount" +"Cmdlets","GetMgGroupOnenoteSection_Get.g.cs","v1.0","Get-MgGroupOnenoteSection","GET","/groups/{param}/onenote/sections/{param}","matched","Get-MgGroupOnenoteSection" +"Cmdlets","GetMgGroupOnenoteSection_List.g.cs","v1.0","Get-MgGroupOnenoteSection","GET","/groups/{param}/onenote/sections","matched","Get-MgGroupOnenoteSection" +"Cmdlets","GetMgGroupOnenoteSection.g.cs","v1.0","Get-MgGroupOnenoteSection","","","dispatcher","" +"Cmdlets","GetMgGroupOnenoteSectionCount.g.cs","v1.0","Get-MgGroupOnenoteSectionCount","GET","/groups/{param}/onenote/sections/$count","matched","Get-MgGroupOnenoteSectionCount" +"Cmdlets","GetMgGroupOnenoteSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteSectionGroup","GET","/groups/{param}/onenote/sectionGroups","matched","Get-MgGroupOnenoteSectionGroup" +"Cmdlets","GetMgGroupOnenoteSectionGroupCount.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupCount","GET","/groups/{param}/onenote/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgGroupOnenoteSectionGroupCount" +"Cmdlets","GetMgGroupOnenoteSectionGroupParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupParentNotebook","GET","/groups/{param}/onenote/sectionGroups/{param}/parentNotebook","matched","Get-MgGroupOnenoteSectionGroupParentNotebook" +"Cmdlets","GetMgGroupOnenoteSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupParentSectionGroup","GET","/groups/{param}/onenote/sectionGroups/{param}/parentSectionGroup","matched","Get-MgGroupOnenoteSectionGroupParentSectionGroup" +"Cmdlets","GetMgGroupOnenoteSectionGroupSection_Get.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSection","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Get-MgGroupOnenoteSectionGroupSection" +"Cmdlets","GetMgGroupOnenoteSectionGroupSection_List.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSection","GET","/groups/{param}/onenote/sectionGroups/{param}/sections","matched","Get-MgGroupOnenoteSectionGroupSection" +"Cmdlets","GetMgGroupOnenoteSectionGroupSection.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSection","","","dispatcher","" +"Cmdlets","GetMgGroupOnenoteSectionGroupSectionCount.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionCount","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/$count","matched","Get-MgGroupOnenoteSectionGroupSectionCount" +"Cmdlets","GetMgGroupOnenoteSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPage","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgGroupOnenoteSectionGroupSectionPage" +"Cmdlets","GetMgGroupOnenoteSectionGroupSectionPage_List.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPage","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgGroupOnenoteSectionGroupSectionPage" +"Cmdlets","GetMgGroupOnenoteSectionGroupSectionPage.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPage","","","dispatcher","" +"Cmdlets","GetMgGroupOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPageContent","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Get-MgGroupOnenoteSectionGroupSectionPageContent" +"Cmdlets","GetMgGroupOnenoteSectionGroupSectionPageCount.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPageCount","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgGroupOnenoteSectionGroupSectionPageCount" +"Cmdlets","GetMgGroupOnenoteSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPageParentNotebook","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupOnenoteSectionGroupSectionPageParentNotebook" +"Cmdlets","GetMgGroupOnenoteSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPageParentSection","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupOnenoteSectionGroupSectionPageParentSection" +"Cmdlets","GetMgGroupOnenoteSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPagePreview","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupOnenoteSectionGroupSectionPage" +"Cmdlets","GetMgGroupOnenoteSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionParentNotebook","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgGroupOnenoteSectionGroupSectionParentNotebook" +"Cmdlets","GetMgGroupOnenoteSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionParentSectionGroup","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgGroupOnenoteSectionGroupSectionParentSectionGroup" +"Cmdlets","GetMgGroupOnenoteSectionPage_Get.g.cs","v1.0","Get-MgGroupOnenoteSectionPage","GET","/groups/{param}/onenote/sections/{param}/pages/{param}","matched","Get-MgGroupOnenoteSectionPage" +"Cmdlets","GetMgGroupOnenoteSectionPage_List.g.cs","v1.0","Get-MgGroupOnenoteSectionPage","GET","/groups/{param}/onenote/sections/{param}/pages","matched","Get-MgGroupOnenoteSectionPage" +"Cmdlets","GetMgGroupOnenoteSectionPage.g.cs","v1.0","Get-MgGroupOnenoteSectionPage","","","dispatcher","" +"Cmdlets","GetMgGroupOnenoteSectionPageContent.g.cs","v1.0","Get-MgGroupOnenoteSectionPageContent","GET","/groups/{param}/onenote/sections/{param}/pages/{param}/content","matched","Get-MgGroupOnenoteSectionPageContent" +"Cmdlets","GetMgGroupOnenoteSectionPageCount.g.cs","v1.0","Get-MgGroupOnenoteSectionPageCount","GET","/groups/{param}/onenote/sections/{param}/pages/$count","matched","Get-MgGroupOnenoteSectionPageCount" +"Cmdlets","GetMgGroupOnenoteSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteSectionPageParentNotebook","GET","/groups/{param}/onenote/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupOnenoteSectionPageParentNotebook" +"Cmdlets","GetMgGroupOnenoteSectionPageParentSection.g.cs","v1.0","Get-MgGroupOnenoteSectionPageParentSection","GET","/groups/{param}/onenote/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupOnenoteSectionPageParentSection" +"Cmdlets","GetMgGroupOnenoteSectionPagePreview.g.cs","v1.0","Get-MgGroupOnenoteSectionPagePreview","GET","/groups/{param}/onenote/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupOnenoteSectionPage" +"Cmdlets","GetMgGroupOnenoteSectionParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteSectionParentNotebook","GET","/groups/{param}/onenote/sections/{param}/parentNotebook","matched","Get-MgGroupOnenoteSectionParentNotebook" +"Cmdlets","GetMgGroupOnenoteSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteSectionParentSectionGroup","GET","/groups/{param}/onenote/sections/{param}/parentSectionGroup","matched","Get-MgGroupOnenoteSectionParentSectionGroup" +"Cmdlets","GetMgSiteOnenote.g.cs","v1.0","Get-MgSiteOnenote","GET","/sites/{param}/onenote","matched","Get-MgSiteOnenote" +"Cmdlets","GetMgSiteOnenoteNotebook_Get.g.cs","v1.0","Get-MgSiteOnenoteNotebook","GET","/sites/{param}/onenote/notebooks/{param}","matched","Get-MgSiteOnenoteNotebook" +"Cmdlets","GetMgSiteOnenoteNotebook_List.g.cs","v1.0","Get-MgSiteOnenoteNotebook","GET","/sites/{param}/onenote/notebooks","matched","Get-MgSiteOnenoteNotebook" +"Cmdlets","GetMgSiteOnenoteNotebook.g.cs","v1.0","Get-MgSiteOnenoteNotebook","","","dispatcher","" +"Cmdlets","GetMgSiteOnenoteNotebookCount.g.cs","v1.0","Get-MgSiteOnenoteNotebookCount","GET","/sites/{param}/onenote/notebooks/$count","matched","Get-MgSiteOnenoteNotebookCount" +"Cmdlets","GetMgSiteOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks.g.cs","v1.0","Get-MgSiteOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks","GET","/sites/{param}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})","mismatch","Get-MgSiteOnenoteNotebookRecentNotebook" +"Cmdlets","GetMgSiteOnenoteNotebookSection_Get.g.cs","v1.0","Get-MgSiteOnenoteNotebookSection","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}","matched","Get-MgSiteOnenoteNotebookSection" +"Cmdlets","GetMgSiteOnenoteNotebookSection_List.g.cs","v1.0","Get-MgSiteOnenoteNotebookSection","GET","/sites/{param}/onenote/notebooks/{param}/sections","matched","Get-MgSiteOnenoteNotebookSection" +"Cmdlets","GetMgSiteOnenoteNotebookSection.g.cs","v1.0","Get-MgSiteOnenoteNotebookSection","","","dispatcher","" +"Cmdlets","GetMgSiteOnenoteNotebookSectionCount.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionCount","GET","/sites/{param}/onenote/notebooks/{param}/sections/$count","matched","Get-MgSiteOnenoteNotebookSectionCount" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroup","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups","matched","Get-MgSiteOnenoteNotebookSectionGroup" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupCount.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupCount","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgSiteOnenoteNotebookSectionGroupCount" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupParentNotebook","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentNotebook","matched","Get-MgSiteOnenoteNotebookSectionGroupParentNotebook" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupParentSectionGroup","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentSectionGroup","matched","Get-MgSiteOnenoteNotebookSectionGroupParentSectionGroup" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSection_Get.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSection","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Get-MgSiteOnenoteNotebookSectionGroupSection" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSection_List.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSection","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","Get-MgSiteOnenoteNotebookSectionGroupSection" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSection","","","dispatcher","" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSectionCount.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionCount","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/$count","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionCount" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPage","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSectionPage_List.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPage","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPage","","","dispatcher","" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPageContent","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSectionPageCount.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPageCount","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionPageCount" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPageParentNotebook","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionPageParentNotebook" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPageParentSection","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionPageParentSection" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPagePreview","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewSiteOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionParentNotebook","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionParentNotebook" +"Cmdlets","GetMgSiteOnenoteNotebookSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionParentSectionGroup","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionParentSectionGroup" +"Cmdlets","GetMgSiteOnenoteNotebookSectionPage_Get.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPage","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Get-MgSiteOnenoteNotebookSectionPage" +"Cmdlets","GetMgSiteOnenoteNotebookSectionPage_List.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPage","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","Get-MgSiteOnenoteNotebookSectionPage" +"Cmdlets","GetMgSiteOnenoteNotebookSectionPage.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPage","","","dispatcher","" +"Cmdlets","GetMgSiteOnenoteNotebookSectionPageContent.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPageContent","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","matched","Get-MgSiteOnenoteNotebookSectionPageContent" +"Cmdlets","GetMgSiteOnenoteNotebookSectionPageCount.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPageCount","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/$count","matched","Get-MgSiteOnenoteNotebookSectionPageCount" +"Cmdlets","GetMgSiteOnenoteNotebookSectionPageParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPageParentNotebook","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgSiteOnenoteNotebookSectionPageParentNotebook" +"Cmdlets","GetMgSiteOnenoteNotebookSectionPageParentSection.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPageParentSection","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgSiteOnenoteNotebookSectionPageParentSection" +"Cmdlets","GetMgSiteOnenoteNotebookSectionPagePreview.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPagePreview","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewSiteOnenoteNotebookSectionPage" +"Cmdlets","GetMgSiteOnenoteNotebookSectionParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionParentNotebook","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/parentNotebook","matched","Get-MgSiteOnenoteNotebookSectionParentNotebook" +"Cmdlets","GetMgSiteOnenoteNotebookSectionParentSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionParentSectionGroup","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/parentSectionGroup","matched","Get-MgSiteOnenoteNotebookSectionParentSectionGroup" +"Cmdlets","GetMgSiteOnenoteOperation_Get.g.cs","v1.0","Get-MgSiteOnenoteOperation","GET","/sites/{param}/onenote/operations/{param}","matched","Get-MgSiteOnenoteOperation" +"Cmdlets","GetMgSiteOnenoteOperation_List.g.cs","v1.0","Get-MgSiteOnenoteOperation","GET","/sites/{param}/onenote/operations","matched","Get-MgSiteOnenoteOperation" +"Cmdlets","GetMgSiteOnenoteOperation.g.cs","v1.0","Get-MgSiteOnenoteOperation","","","dispatcher","" +"Cmdlets","GetMgSiteOnenoteOperationCount.g.cs","v1.0","Get-MgSiteOnenoteOperationCount","GET","/sites/{param}/onenote/operations/$count","matched","Get-MgSiteOnenoteOperationCount" +"Cmdlets","GetMgSiteOnenotePage_Get.g.cs","v1.0","Get-MgSiteOnenotePage","GET","/sites/{param}/onenote/pages/{param}","matched","Get-MgSiteOnenotePage" +"Cmdlets","GetMgSiteOnenotePage_List.g.cs","v1.0","Get-MgSiteOnenotePage","GET","/sites/{param}/onenote/pages","matched","Get-MgSiteOnenotePage" +"Cmdlets","GetMgSiteOnenotePage.g.cs","v1.0","Get-MgSiteOnenotePage","","","dispatcher","" +"Cmdlets","GetMgSiteOnenotePageContent.g.cs","v1.0","Get-MgSiteOnenotePageContent","GET","/sites/{param}/onenote/pages/{param}/content","matched","Get-MgSiteOnenotePageContent" +"Cmdlets","GetMgSiteOnenotePageCount.g.cs","v1.0","Get-MgSiteOnenotePageCount","GET","/sites/{param}/onenote/pages/$count","matched","Get-MgSiteOnenotePageCount" +"Cmdlets","GetMgSiteOnenotePageParentNotebook.g.cs","v1.0","Get-MgSiteOnenotePageParentNotebook","GET","/sites/{param}/onenote/pages/{param}/parentNotebook","matched","Get-MgSiteOnenotePageParentNotebook" +"Cmdlets","GetMgSiteOnenotePageParentSection.g.cs","v1.0","Get-MgSiteOnenotePageParentSection","GET","/sites/{param}/onenote/pages/{param}/parentSection","matched","Get-MgSiteOnenotePageParentSection" +"Cmdlets","GetMgSiteOnenotePagePreview.g.cs","v1.0","Get-MgSiteOnenotePagePreview","GET","/sites/{param}/onenote/pages/{param}/preview","mismatch","Invoke-MgPreviewSiteOnenotePage" +"Cmdlets","GetMgSiteOnenoteResource_Get.g.cs","v1.0","Get-MgSiteOnenoteResource","GET","/sites/{param}/onenote/resources/{param}","matched","Get-MgSiteOnenoteResource" +"Cmdlets","GetMgSiteOnenoteResource_List.g.cs","v1.0","Get-MgSiteOnenoteResource","GET","/sites/{param}/onenote/resources","matched","Get-MgSiteOnenoteResource" +"Cmdlets","GetMgSiteOnenoteResource.g.cs","v1.0","Get-MgSiteOnenoteResource","","","dispatcher","" +"Cmdlets","GetMgSiteOnenoteResourceContent.g.cs","v1.0","Get-MgSiteOnenoteResourceContent","GET","/sites/{param}/onenote/resources/{param}/content","matched","Get-MgSiteOnenoteResourceContent" +"Cmdlets","GetMgSiteOnenoteResourceCount.g.cs","v1.0","Get-MgSiteOnenoteResourceCount","GET","/sites/{param}/onenote/resources/$count","matched","Get-MgSiteOnenoteResourceCount" +"Cmdlets","GetMgSiteOnenoteSection_Get.g.cs","v1.0","Get-MgSiteOnenoteSection","GET","/sites/{param}/onenote/sections/{param}","matched","Get-MgSiteOnenoteSection" +"Cmdlets","GetMgSiteOnenoteSection_List.g.cs","v1.0","Get-MgSiteOnenoteSection","GET","/sites/{param}/onenote/sections","matched","Get-MgSiteOnenoteSection" +"Cmdlets","GetMgSiteOnenoteSection.g.cs","v1.0","Get-MgSiteOnenoteSection","","","dispatcher","" +"Cmdlets","GetMgSiteOnenoteSectionCount.g.cs","v1.0","Get-MgSiteOnenoteSectionCount","GET","/sites/{param}/onenote/sections/$count","matched","Get-MgSiteOnenoteSectionCount" +"Cmdlets","GetMgSiteOnenoteSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteSectionGroup","GET","/sites/{param}/onenote/sectionGroups","matched","Get-MgSiteOnenoteSectionGroup" +"Cmdlets","GetMgSiteOnenoteSectionGroupCount.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupCount","GET","/sites/{param}/onenote/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgSiteOnenoteSectionGroupCount" +"Cmdlets","GetMgSiteOnenoteSectionGroupParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupParentNotebook","GET","/sites/{param}/onenote/sectionGroups/{param}/parentNotebook","matched","Get-MgSiteOnenoteSectionGroupParentNotebook" +"Cmdlets","GetMgSiteOnenoteSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupParentSectionGroup","GET","/sites/{param}/onenote/sectionGroups/{param}/parentSectionGroup","matched","Get-MgSiteOnenoteSectionGroupParentSectionGroup" +"Cmdlets","GetMgSiteOnenoteSectionGroupSection_Get.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSection","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Get-MgSiteOnenoteSectionGroupSection" +"Cmdlets","GetMgSiteOnenoteSectionGroupSection_List.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSection","GET","/sites/{param}/onenote/sectionGroups/{param}/sections","matched","Get-MgSiteOnenoteSectionGroupSection" +"Cmdlets","GetMgSiteOnenoteSectionGroupSection.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSection","","","dispatcher","" +"Cmdlets","GetMgSiteOnenoteSectionGroupSectionCount.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionCount","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/$count","matched","Get-MgSiteOnenoteSectionGroupSectionCount" +"Cmdlets","GetMgSiteOnenoteSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPage","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgSiteOnenoteSectionGroupSectionPage" +"Cmdlets","GetMgSiteOnenoteSectionGroupSectionPage_List.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPage","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgSiteOnenoteSectionGroupSectionPage" +"Cmdlets","GetMgSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPage","","","dispatcher","" +"Cmdlets","GetMgSiteOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPageContent","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Get-MgSiteOnenoteSectionGroupSectionPageContent" +"Cmdlets","GetMgSiteOnenoteSectionGroupSectionPageCount.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPageCount","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgSiteOnenoteSectionGroupSectionPageCount" +"Cmdlets","GetMgSiteOnenoteSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPageParentNotebook","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgSiteOnenoteSectionGroupSectionPageParentNotebook" +"Cmdlets","GetMgSiteOnenoteSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPageParentSection","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgSiteOnenoteSectionGroupSectionPageParentSection" +"Cmdlets","GetMgSiteOnenoteSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPagePreview","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewSiteOnenoteSectionGroupSectionPage" +"Cmdlets","GetMgSiteOnenoteSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionParentNotebook","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgSiteOnenoteSectionGroupSectionParentNotebook" +"Cmdlets","GetMgSiteOnenoteSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionParentSectionGroup","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgSiteOnenoteSectionGroupSectionParentSectionGroup" +"Cmdlets","GetMgSiteOnenoteSectionPage_Get.g.cs","v1.0","Get-MgSiteOnenoteSectionPage","GET","/sites/{param}/onenote/sections/{param}/pages/{param}","matched","Get-MgSiteOnenoteSectionPage" +"Cmdlets","GetMgSiteOnenoteSectionPage_List.g.cs","v1.0","Get-MgSiteOnenoteSectionPage","GET","/sites/{param}/onenote/sections/{param}/pages","matched","Get-MgSiteOnenoteSectionPage" +"Cmdlets","GetMgSiteOnenoteSectionPage.g.cs","v1.0","Get-MgSiteOnenoteSectionPage","","","dispatcher","" +"Cmdlets","GetMgSiteOnenoteSectionPageContent.g.cs","v1.0","Get-MgSiteOnenoteSectionPageContent","GET","/sites/{param}/onenote/sections/{param}/pages/{param}/content","matched","Get-MgSiteOnenoteSectionPageContent" +"Cmdlets","GetMgSiteOnenoteSectionPageCount.g.cs","v1.0","Get-MgSiteOnenoteSectionPageCount","GET","/sites/{param}/onenote/sections/{param}/pages/$count","matched","Get-MgSiteOnenoteSectionPageCount" +"Cmdlets","GetMgSiteOnenoteSectionPageParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteSectionPageParentNotebook","GET","/sites/{param}/onenote/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgSiteOnenoteSectionPageParentNotebook" +"Cmdlets","GetMgSiteOnenoteSectionPageParentSection.g.cs","v1.0","Get-MgSiteOnenoteSectionPageParentSection","GET","/sites/{param}/onenote/sections/{param}/pages/{param}/parentSection","matched","Get-MgSiteOnenoteSectionPageParentSection" +"Cmdlets","GetMgSiteOnenoteSectionPagePreview.g.cs","v1.0","Get-MgSiteOnenoteSectionPagePreview","GET","/sites/{param}/onenote/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewSiteOnenoteSectionPage" +"Cmdlets","GetMgSiteOnenoteSectionParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteSectionParentNotebook","GET","/sites/{param}/onenote/sections/{param}/parentNotebook","matched","Get-MgSiteOnenoteSectionParentNotebook" +"Cmdlets","GetMgSiteOnenoteSectionParentSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteSectionParentSectionGroup","GET","/sites/{param}/onenote/sections/{param}/parentSectionGroup","matched","Get-MgSiteOnenoteSectionParentSectionGroup" +"Cmdlets","GetMgUserOnenote.g.cs","v1.0","Get-MgUserOnenote","GET","/users/{param}/onenote","matched","Get-MgUserOnenote" +"Cmdlets","GetMgUserOnenoteNotebook_Get.g.cs","v1.0","Get-MgUserOnenoteNotebook","GET","/users/{param}/onenote/notebooks/{param}","matched","Get-MgUserOnenoteNotebook" +"Cmdlets","GetMgUserOnenoteNotebook_List.g.cs","v1.0","Get-MgUserOnenoteNotebook","GET","/users/{param}/onenote/notebooks","matched","Get-MgUserOnenoteNotebook" +"Cmdlets","GetMgUserOnenoteNotebook.g.cs","v1.0","Get-MgUserOnenoteNotebook","","","dispatcher","" +"Cmdlets","GetMgUserOnenoteNotebookCount.g.cs","v1.0","Get-MgUserOnenoteNotebookCount","GET","/users/{param}/onenote/notebooks/$count","matched","Get-MgUserOnenoteNotebookCount" +"Cmdlets","GetMgUserOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks.g.cs","v1.0","Get-MgUserOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks","GET","/users/{param}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})","mismatch","Get-MgUserOnenoteNotebookRecentNotebook" +"Cmdlets","GetMgUserOnenoteNotebookSection_Get.g.cs","v1.0","Get-MgUserOnenoteNotebookSection","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}","matched","Get-MgUserOnenoteNotebookSection" +"Cmdlets","GetMgUserOnenoteNotebookSection_List.g.cs","v1.0","Get-MgUserOnenoteNotebookSection","GET","/users/{param}/onenote/notebooks/{param}/sections","matched","Get-MgUserOnenoteNotebookSection" +"Cmdlets","GetMgUserOnenoteNotebookSection.g.cs","v1.0","Get-MgUserOnenoteNotebookSection","","","dispatcher","" +"Cmdlets","GetMgUserOnenoteNotebookSectionCount.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionCount","GET","/users/{param}/onenote/notebooks/{param}/sections/$count","matched","Get-MgUserOnenoteNotebookSectionCount" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroup.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroup","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups","matched","Get-MgUserOnenoteNotebookSectionGroup" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupCount.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupCount","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgUserOnenoteNotebookSectionGroupCount" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupParentNotebook.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupParentNotebook","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentNotebook","matched","Get-MgUserOnenoteNotebookSectionGroupParentNotebook" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupParentSectionGroup","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentSectionGroup","matched","Get-MgUserOnenoteNotebookSectionGroupParentSectionGroup" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSection_Get.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSection","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Get-MgUserOnenoteNotebookSectionGroupSection" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSection_List.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSection","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","Get-MgUserOnenoteNotebookSectionGroupSection" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSection.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSection","","","dispatcher","" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSectionCount.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionCount","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/$count","matched","Get-MgUserOnenoteNotebookSectionGroupSectionCount" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPage","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgUserOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSectionPage_List.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPage","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgUserOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPage","","","dispatcher","" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPageContent","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Get-MgUserOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSectionPageCount.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPageCount","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgUserOnenoteNotebookSectionGroupSectionPageCount" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPageParentNotebook","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgUserOnenoteNotebookSectionGroupSectionPageParentNotebook" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPageParentSection","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgUserOnenoteNotebookSectionGroupSectionPageParentSection" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPagePreview","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewUserOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionParentNotebook","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgUserOnenoteNotebookSectionGroupSectionParentNotebook" +"Cmdlets","GetMgUserOnenoteNotebookSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionParentSectionGroup","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgUserOnenoteNotebookSectionGroupSectionParentSectionGroup" +"Cmdlets","GetMgUserOnenoteNotebookSectionPage_Get.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPage","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Get-MgUserOnenoteNotebookSectionPage" +"Cmdlets","GetMgUserOnenoteNotebookSectionPage_List.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPage","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","Get-MgUserOnenoteNotebookSectionPage" +"Cmdlets","GetMgUserOnenoteNotebookSectionPage.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPage","","","dispatcher","" +"Cmdlets","GetMgUserOnenoteNotebookSectionPageContent.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPageContent","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","matched","Get-MgUserOnenoteNotebookSectionPageContent" +"Cmdlets","GetMgUserOnenoteNotebookSectionPageCount.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPageCount","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/$count","matched","Get-MgUserOnenoteNotebookSectionPageCount" +"Cmdlets","GetMgUserOnenoteNotebookSectionPageParentNotebook.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPageParentNotebook","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgUserOnenoteNotebookSectionPageParentNotebook" +"Cmdlets","GetMgUserOnenoteNotebookSectionPageParentSection.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPageParentSection","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgUserOnenoteNotebookSectionPageParentSection" +"Cmdlets","GetMgUserOnenoteNotebookSectionPagePreview.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPagePreview","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewUserOnenoteNotebookSectionPage" +"Cmdlets","GetMgUserOnenoteNotebookSectionParentNotebook.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionParentNotebook","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/parentNotebook","matched","Get-MgUserOnenoteNotebookSectionParentNotebook" +"Cmdlets","GetMgUserOnenoteNotebookSectionParentSectionGroup.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionParentSectionGroup","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/parentSectionGroup","matched","Get-MgUserOnenoteNotebookSectionParentSectionGroup" +"Cmdlets","GetMgUserOnenoteOperation_Get.g.cs","v1.0","Get-MgUserOnenoteOperation","GET","/users/{param}/onenote/operations/{param}","matched","Get-MgUserOnenoteOperation" +"Cmdlets","GetMgUserOnenoteOperation_List.g.cs","v1.0","Get-MgUserOnenoteOperation","GET","/users/{param}/onenote/operations","matched","Get-MgUserOnenoteOperation" +"Cmdlets","GetMgUserOnenoteOperation.g.cs","v1.0","Get-MgUserOnenoteOperation","","","dispatcher","" +"Cmdlets","GetMgUserOnenoteOperationCount.g.cs","v1.0","Get-MgUserOnenoteOperationCount","GET","/users/{param}/onenote/operations/$count","matched","Get-MgUserOnenoteOperationCount" +"Cmdlets","GetMgUserOnenotePage_Get.g.cs","v1.0","Get-MgUserOnenotePage","GET","/users/{param}/onenote/pages/{param}","matched","Get-MgUserOnenotePage" +"Cmdlets","GetMgUserOnenotePage_List.g.cs","v1.0","Get-MgUserOnenotePage","GET","/users/{param}/onenote/pages","matched","Get-MgUserOnenotePage" +"Cmdlets","GetMgUserOnenotePage.g.cs","v1.0","Get-MgUserOnenotePage","","","dispatcher","" +"Cmdlets","GetMgUserOnenotePageContent.g.cs","v1.0","Get-MgUserOnenotePageContent","GET","/users/{param}/onenote/pages/{param}/content","matched","Get-MgUserOnenotePageContent" +"Cmdlets","GetMgUserOnenotePageCount.g.cs","v1.0","Get-MgUserOnenotePageCount","GET","/users/{param}/onenote/pages/$count","matched","Get-MgUserOnenotePageCount" +"Cmdlets","GetMgUserOnenotePageParentNotebook.g.cs","v1.0","Get-MgUserOnenotePageParentNotebook","GET","/users/{param}/onenote/pages/{param}/parentNotebook","matched","Get-MgUserOnenotePageParentNotebook" +"Cmdlets","GetMgUserOnenotePageParentSection.g.cs","v1.0","Get-MgUserOnenotePageParentSection","GET","/users/{param}/onenote/pages/{param}/parentSection","matched","Get-MgUserOnenotePageParentSection" +"Cmdlets","GetMgUserOnenotePagePreview.g.cs","v1.0","Get-MgUserOnenotePagePreview","GET","/users/{param}/onenote/pages/{param}/preview","mismatch","Invoke-MgPreviewUserOnenotePage" +"Cmdlets","GetMgUserOnenoteResource_Get.g.cs","v1.0","Get-MgUserOnenoteResource","GET","/users/{param}/onenote/resources/{param}","matched","Get-MgUserOnenoteResource" +"Cmdlets","GetMgUserOnenoteResource_List.g.cs","v1.0","Get-MgUserOnenoteResource","GET","/users/{param}/onenote/resources","matched","Get-MgUserOnenoteResource" +"Cmdlets","GetMgUserOnenoteResource.g.cs","v1.0","Get-MgUserOnenoteResource","","","dispatcher","" +"Cmdlets","GetMgUserOnenoteResourceContent.g.cs","v1.0","Get-MgUserOnenoteResourceContent","GET","/users/{param}/onenote/resources/{param}/content","matched","Get-MgUserOnenoteResourceContent" +"Cmdlets","GetMgUserOnenoteResourceCount.g.cs","v1.0","Get-MgUserOnenoteResourceCount","GET","/users/{param}/onenote/resources/$count","matched","Get-MgUserOnenoteResourceCount" +"Cmdlets","GetMgUserOnenoteSection_Get.g.cs","v1.0","Get-MgUserOnenoteSection","GET","/users/{param}/onenote/sections/{param}","matched","Get-MgUserOnenoteSection" +"Cmdlets","GetMgUserOnenoteSection_List.g.cs","v1.0","Get-MgUserOnenoteSection","GET","/users/{param}/onenote/sections","matched","Get-MgUserOnenoteSection" +"Cmdlets","GetMgUserOnenoteSection.g.cs","v1.0","Get-MgUserOnenoteSection","","","dispatcher","" +"Cmdlets","GetMgUserOnenoteSectionCount.g.cs","v1.0","Get-MgUserOnenoteSectionCount","GET","/users/{param}/onenote/sections/$count","matched","Get-MgUserOnenoteSectionCount" +"Cmdlets","GetMgUserOnenoteSectionGroup.g.cs","v1.0","Get-MgUserOnenoteSectionGroup","GET","/users/{param}/onenote/sectionGroups","matched","Get-MgUserOnenoteSectionGroup" +"Cmdlets","GetMgUserOnenoteSectionGroupCount.g.cs","v1.0","Get-MgUserOnenoteSectionGroupCount","GET","/users/{param}/onenote/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgUserOnenoteSectionGroupCount" +"Cmdlets","GetMgUserOnenoteSectionGroupParentNotebook.g.cs","v1.0","Get-MgUserOnenoteSectionGroupParentNotebook","GET","/users/{param}/onenote/sectionGroups/{param}/parentNotebook","matched","Get-MgUserOnenoteSectionGroupParentNotebook" +"Cmdlets","GetMgUserOnenoteSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgUserOnenoteSectionGroupParentSectionGroup","GET","/users/{param}/onenote/sectionGroups/{param}/parentSectionGroup","matched","Get-MgUserOnenoteSectionGroupParentSectionGroup" +"Cmdlets","GetMgUserOnenoteSectionGroupSection_Get.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSection","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Get-MgUserOnenoteSectionGroupSection" +"Cmdlets","GetMgUserOnenoteSectionGroupSection_List.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSection","GET","/users/{param}/onenote/sectionGroups/{param}/sections","matched","Get-MgUserOnenoteSectionGroupSection" +"Cmdlets","GetMgUserOnenoteSectionGroupSection.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSection","","","dispatcher","" +"Cmdlets","GetMgUserOnenoteSectionGroupSectionCount.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionCount","GET","/users/{param}/onenote/sectionGroups/{param}/sections/$count","matched","Get-MgUserOnenoteSectionGroupSectionCount" +"Cmdlets","GetMgUserOnenoteSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPage","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgUserOnenoteSectionGroupSectionPage" +"Cmdlets","GetMgUserOnenoteSectionGroupSectionPage_List.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPage","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgUserOnenoteSectionGroupSectionPage" +"Cmdlets","GetMgUserOnenoteSectionGroupSectionPage.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPage","","","dispatcher","" +"Cmdlets","GetMgUserOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPageContent","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Get-MgUserOnenoteSectionGroupSectionPageContent" +"Cmdlets","GetMgUserOnenoteSectionGroupSectionPageCount.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPageCount","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgUserOnenoteSectionGroupSectionPageCount" +"Cmdlets","GetMgUserOnenoteSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPageParentNotebook","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgUserOnenoteSectionGroupSectionPageParentNotebook" +"Cmdlets","GetMgUserOnenoteSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPageParentSection","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgUserOnenoteSectionGroupSectionPageParentSection" +"Cmdlets","GetMgUserOnenoteSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPagePreview","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewUserOnenoteSectionGroupSectionPage" +"Cmdlets","GetMgUserOnenoteSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionParentNotebook","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgUserOnenoteSectionGroupSectionParentNotebook" +"Cmdlets","GetMgUserOnenoteSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionParentSectionGroup","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgUserOnenoteSectionGroupSectionParentSectionGroup" +"Cmdlets","GetMgUserOnenoteSectionPage_Get.g.cs","v1.0","Get-MgUserOnenoteSectionPage","GET","/users/{param}/onenote/sections/{param}/pages/{param}","matched","Get-MgUserOnenoteSectionPage" +"Cmdlets","GetMgUserOnenoteSectionPage_List.g.cs","v1.0","Get-MgUserOnenoteSectionPage","GET","/users/{param}/onenote/sections/{param}/pages","matched","Get-MgUserOnenoteSectionPage" +"Cmdlets","GetMgUserOnenoteSectionPage.g.cs","v1.0","Get-MgUserOnenoteSectionPage","","","dispatcher","" +"Cmdlets","GetMgUserOnenoteSectionPageContent.g.cs","v1.0","Get-MgUserOnenoteSectionPageContent","GET","/users/{param}/onenote/sections/{param}/pages/{param}/content","matched","Get-MgUserOnenoteSectionPageContent" +"Cmdlets","GetMgUserOnenoteSectionPageCount.g.cs","v1.0","Get-MgUserOnenoteSectionPageCount","GET","/users/{param}/onenote/sections/{param}/pages/$count","matched","Get-MgUserOnenoteSectionPageCount" +"Cmdlets","GetMgUserOnenoteSectionPageParentNotebook.g.cs","v1.0","Get-MgUserOnenoteSectionPageParentNotebook","GET","/users/{param}/onenote/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgUserOnenoteSectionPageParentNotebook" +"Cmdlets","GetMgUserOnenoteSectionPageParentSection.g.cs","v1.0","Get-MgUserOnenoteSectionPageParentSection","GET","/users/{param}/onenote/sections/{param}/pages/{param}/parentSection","matched","Get-MgUserOnenoteSectionPageParentSection" +"Cmdlets","GetMgUserOnenoteSectionPagePreview.g.cs","v1.0","Get-MgUserOnenoteSectionPagePreview","GET","/users/{param}/onenote/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewUserOnenoteSectionPage" +"Cmdlets","GetMgUserOnenoteSectionParentNotebook.g.cs","v1.0","Get-MgUserOnenoteSectionParentNotebook","GET","/users/{param}/onenote/sections/{param}/parentNotebook","matched","Get-MgUserOnenoteSectionParentNotebook" +"Cmdlets","GetMgUserOnenoteSectionParentSectionGroup.g.cs","v1.0","Get-MgUserOnenoteSectionParentSectionGroup","GET","/users/{param}/onenote/sections/{param}/parentSectionGroup","matched","Get-MgUserOnenoteSectionParentSectionGroup" +"Cmdlets","InvokeMgGroupOnenoteNotebookCopyNotebook.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookCopyNotebook","POST","/groups/{param}/onenote/notebooks/{param}/copyNotebook","mismatch","Copy-MgGroupOnenoteNotebook" +"Cmdlets","InvokeMgGroupOnenoteNotebookGetNotebookFromWebUrl.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookGetNotebookFromWebUrl","POST","/groups/{param}/onenote/notebooks/getNotebookFromWebUrl","mismatch","Get-MgGroupOnenoteNotebookFromWebUrl" +"Cmdlets","InvokeMgGroupOnenoteNotebookSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionCopyToNotebook","POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupOnenoteNotebookSectionToNotebook" +"Cmdlets","InvokeMgGroupOnenoteNotebookSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionCopyToSectionGroup","POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupOnenoteNotebookSectionToSectionGroup" +"Cmdlets","InvokeMgGroupOnenoteNotebookSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionGroupSectionCopyToNotebook","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupOnenoteNotebookSectionGroupSectionToNotebook" +"Cmdlets","InvokeMgGroupOnenoteNotebookSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionGroupSectionCopyToSectionGroup","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupOnenoteNotebookSectionGroupSectionToSectionGroup" +"Cmdlets","InvokeMgGroupOnenoteNotebookSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionGroupSectionPageCopyToSection","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupOnenoteNotebookSectionGroupSectionPageToSection" +"Cmdlets","InvokeMgGroupOnenoteNotebookSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionGroupSectionPageOnenotePatchContent","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgGroupOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","InvokeMgGroupOnenoteNotebookSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionPageCopyToSection","POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupOnenoteNotebookSectionPageToSection" +"Cmdlets","InvokeMgGroupOnenoteNotebookSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionPageOnenotePatchContent","POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgGroupOnenoteNotebookSectionPageContent" +"Cmdlets","InvokeMgGroupOnenotePageCopyToSection.g.cs","v1.0","Invoke-MgGroupOnenotePageCopyToSection","POST","/groups/{param}/onenote/pages/{param}/copyToSection","mismatch","Copy-MgGroupOnenotePageToSection" +"Cmdlets","InvokeMgGroupOnenotePageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupOnenotePageOnenotePatchContent","POST","/groups/{param}/onenote/pages/{param}/onenotePatchContent","mismatch","Update-MgGroupOnenotePageContent" +"Cmdlets","InvokeMgGroupOnenoteSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupOnenoteSectionCopyToNotebook","POST","/groups/{param}/onenote/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupOnenoteSectionToNotebook" +"Cmdlets","InvokeMgGroupOnenoteSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupOnenoteSectionCopyToSectionGroup","POST","/groups/{param}/onenote/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupOnenoteSectionToSectionGroup" +"Cmdlets","InvokeMgGroupOnenoteSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupOnenoteSectionGroupSectionCopyToNotebook","POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupOnenoteSectionGroupSectionToNotebook" +"Cmdlets","InvokeMgGroupOnenoteSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupOnenoteSectionGroupSectionCopyToSectionGroup","POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupOnenoteSectionGroupSectionToSectionGroup" +"Cmdlets","InvokeMgGroupOnenoteSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupOnenoteSectionGroupSectionPageCopyToSection","POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupOnenoteSectionGroupSectionPageToSection" +"Cmdlets","InvokeMgGroupOnenoteSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupOnenoteSectionGroupSectionPageOnenotePatchContent","POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgGroupOnenoteSectionGroupSectionPageContent" +"Cmdlets","InvokeMgGroupOnenoteSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupOnenoteSectionPageCopyToSection","POST","/groups/{param}/onenote/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupOnenoteSectionPageToSection" +"Cmdlets","InvokeMgGroupOnenoteSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupOnenoteSectionPageOnenotePatchContent","POST","/groups/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgGroupOnenoteSectionPageContent" +"Cmdlets","InvokeMgSiteOnenoteNotebookCopyNotebook.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookCopyNotebook","POST","/sites/{param}/onenote/notebooks/{param}/copyNotebook","mismatch","Copy-MgSiteOnenoteNotebook" +"Cmdlets","InvokeMgSiteOnenoteNotebookGetNotebookFromWebUrl.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookGetNotebookFromWebUrl","POST","/sites/{param}/onenote/notebooks/getNotebookFromWebUrl","mismatch","Get-MgSiteOnenoteNotebookFromWebUrl" +"Cmdlets","InvokeMgSiteOnenoteNotebookSectionCopyToNotebook.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionCopyToNotebook","POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgSiteOnenoteNotebookSectionToNotebook" +"Cmdlets","InvokeMgSiteOnenoteNotebookSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionCopyToSectionGroup","POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgSiteOnenoteNotebookSectionToSectionGroup" +"Cmdlets","InvokeMgSiteOnenoteNotebookSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionGroupSectionCopyToNotebook","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgSiteOnenoteNotebookSectionGroupSectionToNotebook" +"Cmdlets","InvokeMgSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgSiteOnenoteNotebookSectionGroupSectionToSectionGroup" +"Cmdlets","InvokeMgSiteOnenoteNotebookSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionGroupSectionPageCopyToSection","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgSiteOnenoteNotebookSectionGroupSectionPageToSection" +"Cmdlets","InvokeMgSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgSiteOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","InvokeMgSiteOnenoteNotebookSectionPageCopyToSection.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionPageCopyToSection","POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgSiteOnenoteNotebookSectionPageToSection" +"Cmdlets","InvokeMgSiteOnenoteNotebookSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionPageOnenotePatchContent","POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgSiteOnenoteNotebookSectionPageContent" +"Cmdlets","InvokeMgSiteOnenotePageCopyToSection.g.cs","v1.0","Invoke-MgSiteOnenotePageCopyToSection","POST","/sites/{param}/onenote/pages/{param}/copyToSection","mismatch","Copy-MgSiteOnenotePageToSection" +"Cmdlets","InvokeMgSiteOnenotePageOnenotePatchContent.g.cs","v1.0","Invoke-MgSiteOnenotePageOnenotePatchContent","POST","/sites/{param}/onenote/pages/{param}/onenotePatchContent","mismatch","Update-MgSiteOnenotePageContent" +"Cmdlets","InvokeMgSiteOnenoteSectionCopyToNotebook.g.cs","v1.0","Invoke-MgSiteOnenoteSectionCopyToNotebook","POST","/sites/{param}/onenote/sections/{param}/copyToNotebook","mismatch","Copy-MgSiteOnenoteSectionToNotebook" +"Cmdlets","InvokeMgSiteOnenoteSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgSiteOnenoteSectionCopyToSectionGroup","POST","/sites/{param}/onenote/sections/{param}/copyToSectionGroup","mismatch","Copy-MgSiteOnenoteSectionToSectionGroup" +"Cmdlets","InvokeMgSiteOnenoteSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgSiteOnenoteSectionGroupSectionCopyToNotebook","POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgSiteOnenoteSectionGroupSectionToNotebook" +"Cmdlets","InvokeMgSiteOnenoteSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgSiteOnenoteSectionGroupSectionCopyToSectionGroup","POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgSiteOnenoteSectionGroupSectionToSectionGroup" +"Cmdlets","InvokeMgSiteOnenoteSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgSiteOnenoteSectionGroupSectionPageCopyToSection","POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgSiteOnenoteSectionGroupSectionPageToSection" +"Cmdlets","InvokeMgSiteOnenoteSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgSiteOnenoteSectionGroupSectionPageOnenotePatchContent","POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgSiteOnenoteSectionGroupSectionPageContent" +"Cmdlets","InvokeMgSiteOnenoteSectionPageCopyToSection.g.cs","v1.0","Invoke-MgSiteOnenoteSectionPageCopyToSection","POST","/sites/{param}/onenote/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgSiteOnenoteSectionPageToSection" +"Cmdlets","InvokeMgSiteOnenoteSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgSiteOnenoteSectionPageOnenotePatchContent","POST","/sites/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgSiteOnenoteSectionPageContent" +"Cmdlets","InvokeMgUserOnenoteNotebookCopyNotebook.g.cs","v1.0","Invoke-MgUserOnenoteNotebookCopyNotebook","POST","/users/{param}/onenote/notebooks/{param}/copyNotebook","mismatch","Copy-MgUserOnenoteNotebook" +"Cmdlets","InvokeMgUserOnenoteNotebookGetNotebookFromWebUrl.g.cs","v1.0","Invoke-MgUserOnenoteNotebookGetNotebookFromWebUrl","POST","/users/{param}/onenote/notebooks/getNotebookFromWebUrl","mismatch","Get-MgUserOnenoteNotebookFromWebUrl" +"Cmdlets","InvokeMgUserOnenoteNotebookSectionCopyToNotebook.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionCopyToNotebook","POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgUserOnenoteNotebookSectionToNotebook" +"Cmdlets","InvokeMgUserOnenoteNotebookSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionCopyToSectionGroup","POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgUserOnenoteNotebookSectionToSectionGroup" +"Cmdlets","InvokeMgUserOnenoteNotebookSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionGroupSectionCopyToNotebook","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgUserOnenoteNotebookSectionGroupSectionToNotebook" +"Cmdlets","InvokeMgUserOnenoteNotebookSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionGroupSectionCopyToSectionGroup","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgUserOnenoteNotebookSectionGroupSectionToSectionGroup" +"Cmdlets","InvokeMgUserOnenoteNotebookSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionGroupSectionPageCopyToSection","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgUserOnenoteNotebookSectionGroupSectionPageToSection" +"Cmdlets","InvokeMgUserOnenoteNotebookSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionGroupSectionPageOnenotePatchContent","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgUserOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","InvokeMgUserOnenoteNotebookSectionPageCopyToSection.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionPageCopyToSection","POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgUserOnenoteNotebookSectionPageToSection" +"Cmdlets","InvokeMgUserOnenoteNotebookSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionPageOnenotePatchContent","POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgUserOnenoteNotebookSectionPage" +"Cmdlets","InvokeMgUserOnenotePageCopyToSection.g.cs","v1.0","Invoke-MgUserOnenotePageCopyToSection","POST","/users/{param}/onenote/pages/{param}/copyToSection","mismatch","Copy-MgUserOnenotePageToSection" +"Cmdlets","InvokeMgUserOnenotePageOnenotePatchContent.g.cs","v1.0","Invoke-MgUserOnenotePageOnenotePatchContent","POST","/users/{param}/onenote/pages/{param}/onenotePatchContent","mismatch","Update-MgUserOnenotePage" +"Cmdlets","InvokeMgUserOnenoteSectionCopyToNotebook.g.cs","v1.0","Invoke-MgUserOnenoteSectionCopyToNotebook","POST","/users/{param}/onenote/sections/{param}/copyToNotebook","mismatch","Copy-MgUserOnenoteSectionToNotebook" +"Cmdlets","InvokeMgUserOnenoteSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgUserOnenoteSectionCopyToSectionGroup","POST","/users/{param}/onenote/sections/{param}/copyToSectionGroup","mismatch","Copy-MgUserOnenoteSectionToSectionGroup" +"Cmdlets","InvokeMgUserOnenoteSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgUserOnenoteSectionGroupSectionCopyToNotebook","POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgUserOnenoteSectionGroupSectionToNotebook" +"Cmdlets","InvokeMgUserOnenoteSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgUserOnenoteSectionGroupSectionCopyToSectionGroup","POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgUserOnenoteSectionGroupSectionToSectionGroup" +"Cmdlets","InvokeMgUserOnenoteSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgUserOnenoteSectionGroupSectionPageCopyToSection","POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgUserOnenoteSectionGroupSectionPageToSection" +"Cmdlets","InvokeMgUserOnenoteSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgUserOnenoteSectionGroupSectionPageOnenotePatchContent","POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgUserOnenoteSectionGroupSectionPage" +"Cmdlets","InvokeMgUserOnenoteSectionPageCopyToSection.g.cs","v1.0","Invoke-MgUserOnenoteSectionPageCopyToSection","POST","/users/{param}/onenote/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgUserOnenoteSectionPageToSection" +"Cmdlets","InvokeMgUserOnenoteSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgUserOnenoteSectionPageOnenotePatchContent","POST","/users/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgUserOnenoteSectionPage" +"Cmdlets","NewMgGroupOnenoteNotebook.g.cs","v1.0","New-MgGroupOnenoteNotebook","POST","/groups/{param}/onenote/notebooks","matched","New-MgGroupOnenoteNotebook" +"Cmdlets","NewMgGroupOnenoteNotebookSection.g.cs","v1.0","New-MgGroupOnenoteNotebookSection","POST","/groups/{param}/onenote/notebooks/{param}/sections","matched","New-MgGroupOnenoteNotebookSection" +"Cmdlets","NewMgGroupOnenoteNotebookSectionGroup.g.cs","v1.0","New-MgGroupOnenoteNotebookSectionGroup","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups","matched","New-MgGroupOnenoteNotebookSectionGroup" +"Cmdlets","NewMgGroupOnenoteNotebookSectionGroupSection.g.cs","v1.0","New-MgGroupOnenoteNotebookSectionGroupSection","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","New-MgGroupOnenoteNotebookSectionGroupSection" +"Cmdlets","NewMgGroupOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","New-MgGroupOnenoteNotebookSectionGroupSectionPage","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","New-MgGroupOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","NewMgGroupOnenoteNotebookSectionPage.g.cs","v1.0","New-MgGroupOnenoteNotebookSectionPage","POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","New-MgGroupOnenoteNotebookSectionPage" +"Cmdlets","NewMgGroupOnenoteOperation.g.cs","v1.0","New-MgGroupOnenoteOperation","POST","/groups/{param}/onenote/operations","matched","New-MgGroupOnenoteOperation" +"Cmdlets","NewMgGroupOnenotePage.g.cs","v1.0","New-MgGroupOnenotePage","POST","/groups/{param}/onenote/pages","matched","New-MgGroupOnenotePage" +"Cmdlets","NewMgGroupOnenoteResource.g.cs","v1.0","New-MgGroupOnenoteResource","POST","/groups/{param}/onenote/resources","matched","New-MgGroupOnenoteResource" +"Cmdlets","NewMgGroupOnenoteSection.g.cs","v1.0","New-MgGroupOnenoteSection","POST","/groups/{param}/onenote/sections","matched","New-MgGroupOnenoteSection" +"Cmdlets","NewMgGroupOnenoteSectionGroup.g.cs","v1.0","New-MgGroupOnenoteSectionGroup","POST","/groups/{param}/onenote/sectionGroups","matched","New-MgGroupOnenoteSectionGroup" +"Cmdlets","NewMgGroupOnenoteSectionGroupSection.g.cs","v1.0","New-MgGroupOnenoteSectionGroupSection","POST","/groups/{param}/onenote/sectionGroups/{param}/sections","matched","New-MgGroupOnenoteSectionGroupSection" +"Cmdlets","NewMgGroupOnenoteSectionGroupSectionPage.g.cs","v1.0","New-MgGroupOnenoteSectionGroupSectionPage","POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","New-MgGroupOnenoteSectionGroupSectionPage" +"Cmdlets","NewMgGroupOnenoteSectionPage.g.cs","v1.0","New-MgGroupOnenoteSectionPage","POST","/groups/{param}/onenote/sections/{param}/pages","matched","New-MgGroupOnenoteSectionPage" +"Cmdlets","NewMgSiteOnenoteNotebook.g.cs","v1.0","New-MgSiteOnenoteNotebook","POST","/sites/{param}/onenote/notebooks","matched","New-MgSiteOnenoteNotebook" +"Cmdlets","NewMgSiteOnenoteNotebookSection.g.cs","v1.0","New-MgSiteOnenoteNotebookSection","POST","/sites/{param}/onenote/notebooks/{param}/sections","matched","New-MgSiteOnenoteNotebookSection" +"Cmdlets","NewMgSiteOnenoteNotebookSectionGroup.g.cs","v1.0","New-MgSiteOnenoteNotebookSectionGroup","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups","matched","New-MgSiteOnenoteNotebookSectionGroup" +"Cmdlets","NewMgSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","New-MgSiteOnenoteNotebookSectionGroupSection","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","New-MgSiteOnenoteNotebookSectionGroupSection" +"Cmdlets","NewMgSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","New-MgSiteOnenoteNotebookSectionGroupSectionPage","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","New-MgSiteOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","NewMgSiteOnenoteNotebookSectionPage.g.cs","v1.0","New-MgSiteOnenoteNotebookSectionPage","POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","New-MgSiteOnenoteNotebookSectionPage" +"Cmdlets","NewMgSiteOnenoteOperation.g.cs","v1.0","New-MgSiteOnenoteOperation","POST","/sites/{param}/onenote/operations","matched","New-MgSiteOnenoteOperation" +"Cmdlets","NewMgSiteOnenotePage.g.cs","v1.0","New-MgSiteOnenotePage","POST","/sites/{param}/onenote/pages","matched","New-MgSiteOnenotePage" +"Cmdlets","NewMgSiteOnenoteResource.g.cs","v1.0","New-MgSiteOnenoteResource","POST","/sites/{param}/onenote/resources","matched","New-MgSiteOnenoteResource" +"Cmdlets","NewMgSiteOnenoteSection.g.cs","v1.0","New-MgSiteOnenoteSection","POST","/sites/{param}/onenote/sections","matched","New-MgSiteOnenoteSection" +"Cmdlets","NewMgSiteOnenoteSectionGroup.g.cs","v1.0","New-MgSiteOnenoteSectionGroup","POST","/sites/{param}/onenote/sectionGroups","matched","New-MgSiteOnenoteSectionGroup" +"Cmdlets","NewMgSiteOnenoteSectionGroupSection.g.cs","v1.0","New-MgSiteOnenoteSectionGroupSection","POST","/sites/{param}/onenote/sectionGroups/{param}/sections","matched","New-MgSiteOnenoteSectionGroupSection" +"Cmdlets","NewMgSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","New-MgSiteOnenoteSectionGroupSectionPage","POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","New-MgSiteOnenoteSectionGroupSectionPage" +"Cmdlets","NewMgSiteOnenoteSectionPage.g.cs","v1.0","New-MgSiteOnenoteSectionPage","POST","/sites/{param}/onenote/sections/{param}/pages","matched","New-MgSiteOnenoteSectionPage" +"Cmdlets","NewMgUserOnenoteNotebook.g.cs","v1.0","New-MgUserOnenoteNotebook","POST","/users/{param}/onenote/notebooks","matched","New-MgUserOnenoteNotebook" +"Cmdlets","NewMgUserOnenoteNotebookSection.g.cs","v1.0","New-MgUserOnenoteNotebookSection","POST","/users/{param}/onenote/notebooks/{param}/sections","matched","New-MgUserOnenoteNotebookSection" +"Cmdlets","NewMgUserOnenoteNotebookSectionGroup.g.cs","v1.0","New-MgUserOnenoteNotebookSectionGroup","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups","matched","New-MgUserOnenoteNotebookSectionGroup" +"Cmdlets","NewMgUserOnenoteNotebookSectionGroupSection.g.cs","v1.0","New-MgUserOnenoteNotebookSectionGroupSection","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","New-MgUserOnenoteNotebookSectionGroupSection" +"Cmdlets","NewMgUserOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","New-MgUserOnenoteNotebookSectionGroupSectionPage","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","New-MgUserOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","NewMgUserOnenoteNotebookSectionPage.g.cs","v1.0","New-MgUserOnenoteNotebookSectionPage","POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","New-MgUserOnenoteNotebookSectionPage" +"Cmdlets","NewMgUserOnenoteOperation.g.cs","v1.0","New-MgUserOnenoteOperation","POST","/users/{param}/onenote/operations","matched","New-MgUserOnenoteOperation" +"Cmdlets","NewMgUserOnenotePage.g.cs","v1.0","New-MgUserOnenotePage","POST","/users/{param}/onenote/pages","matched","New-MgUserOnenotePage" +"Cmdlets","NewMgUserOnenoteResource.g.cs","v1.0","New-MgUserOnenoteResource","POST","/users/{param}/onenote/resources","matched","New-MgUserOnenoteResource" +"Cmdlets","NewMgUserOnenoteSection.g.cs","v1.0","New-MgUserOnenoteSection","POST","/users/{param}/onenote/sections","matched","New-MgUserOnenoteSection" +"Cmdlets","NewMgUserOnenoteSectionGroup.g.cs","v1.0","New-MgUserOnenoteSectionGroup","POST","/users/{param}/onenote/sectionGroups","matched","New-MgUserOnenoteSectionGroup" +"Cmdlets","NewMgUserOnenoteSectionGroupSection.g.cs","v1.0","New-MgUserOnenoteSectionGroupSection","POST","/users/{param}/onenote/sectionGroups/{param}/sections","matched","New-MgUserOnenoteSectionGroupSection" +"Cmdlets","NewMgUserOnenoteSectionGroupSectionPage.g.cs","v1.0","New-MgUserOnenoteSectionGroupSectionPage","POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","New-MgUserOnenoteSectionGroupSectionPage" +"Cmdlets","NewMgUserOnenoteSectionPage.g.cs","v1.0","New-MgUserOnenoteSectionPage","POST","/users/{param}/onenote/sections/{param}/pages","matched","New-MgUserOnenoteSectionPage" +"Cmdlets","RemoveMgGroupOnenote.g.cs","v1.0","Remove-MgGroupOnenote","DELETE","/groups/{param}/onenote","matched","Remove-MgGroupOnenote" +"Cmdlets","RemoveMgGroupOnenoteNotebook.g.cs","v1.0","Remove-MgGroupOnenoteNotebook","DELETE","/groups/{param}/onenote/notebooks/{param}","matched","Remove-MgGroupOnenoteNotebook" +"Cmdlets","RemoveMgGroupOnenoteNotebookSection.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSection","DELETE","/groups/{param}/onenote/notebooks/{param}/sections/{param}","matched","Remove-MgGroupOnenoteNotebookSection" +"Cmdlets","RemoveMgGroupOnenoteNotebookSectionGroup.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSectionGroup","DELETE","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Remove-MgGroupOnenoteNotebookSectionGroup" +"Cmdlets","RemoveMgGroupOnenoteNotebookSectionGroupSection.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSectionGroupSection","DELETE","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Remove-MgGroupOnenoteNotebookSectionGroupSection" +"Cmdlets","RemoveMgGroupOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSectionGroupSectionPage","DELETE","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgGroupOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","RemoveMgGroupOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSectionGroupSectionPageContent","DELETE","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Remove-MgGroupOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","RemoveMgGroupOnenoteNotebookSectionPage.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSectionPage","DELETE","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Remove-MgGroupOnenoteNotebookSectionPage" +"Cmdlets","RemoveMgGroupOnenoteNotebookSectionPageContent.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSectionPageContent","DELETE","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","matched","Remove-MgGroupOnenoteNotebookSectionPageContent" +"Cmdlets","RemoveMgGroupOnenoteOperation.g.cs","v1.0","Remove-MgGroupOnenoteOperation","DELETE","/groups/{param}/onenote/operations/{param}","matched","Remove-MgGroupOnenoteOperation" +"Cmdlets","RemoveMgGroupOnenotePage.g.cs","v1.0","Remove-MgGroupOnenotePage","DELETE","/groups/{param}/onenote/pages/{param}","matched","Remove-MgGroupOnenotePage" +"Cmdlets","RemoveMgGroupOnenotePageContent.g.cs","v1.0","Remove-MgGroupOnenotePageContent","DELETE","/groups/{param}/onenote/pages/{param}/content","matched","Remove-MgGroupOnenotePageContent" +"Cmdlets","RemoveMgGroupOnenoteResource.g.cs","v1.0","Remove-MgGroupOnenoteResource","DELETE","/groups/{param}/onenote/resources/{param}","matched","Remove-MgGroupOnenoteResource" +"Cmdlets","RemoveMgGroupOnenoteResourceContent.g.cs","v1.0","Remove-MgGroupOnenoteResourceContent","DELETE","/groups/{param}/onenote/resources/{param}/content","matched","Remove-MgGroupOnenoteResourceContent" +"Cmdlets","RemoveMgGroupOnenoteSection.g.cs","v1.0","Remove-MgGroupOnenoteSection","DELETE","/groups/{param}/onenote/sections/{param}","matched","Remove-MgGroupOnenoteSection" +"Cmdlets","RemoveMgGroupOnenoteSectionGroup.g.cs","v1.0","Remove-MgGroupOnenoteSectionGroup","DELETE","/groups/{param}/onenote/sectionGroups/{param}","matched","Remove-MgGroupOnenoteSectionGroup" +"Cmdlets","RemoveMgGroupOnenoteSectionGroupSection.g.cs","v1.0","Remove-MgGroupOnenoteSectionGroupSection","DELETE","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Remove-MgGroupOnenoteSectionGroupSection" +"Cmdlets","RemoveMgGroupOnenoteSectionGroupSectionPage.g.cs","v1.0","Remove-MgGroupOnenoteSectionGroupSectionPage","DELETE","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgGroupOnenoteSectionGroupSectionPage" +"Cmdlets","RemoveMgGroupOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Remove-MgGroupOnenoteSectionGroupSectionPageContent","DELETE","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Remove-MgGroupOnenoteSectionGroupSectionPageContent" +"Cmdlets","RemoveMgGroupOnenoteSectionPage.g.cs","v1.0","Remove-MgGroupOnenoteSectionPage","DELETE","/groups/{param}/onenote/sections/{param}/pages/{param}","matched","Remove-MgGroupOnenoteSectionPage" +"Cmdlets","RemoveMgGroupOnenoteSectionPageContent.g.cs","v1.0","Remove-MgGroupOnenoteSectionPageContent","DELETE","/groups/{param}/onenote/sections/{param}/pages/{param}/content","matched","Remove-MgGroupOnenoteSectionPageContent" +"Cmdlets","RemoveMgSiteOnenote.g.cs","v1.0","Remove-MgSiteOnenote","DELETE","/sites/{param}/onenote","matched","Remove-MgSiteOnenote" +"Cmdlets","RemoveMgSiteOnenoteNotebook.g.cs","v1.0","Remove-MgSiteOnenoteNotebook","DELETE","/sites/{param}/onenote/notebooks/{param}","matched","Remove-MgSiteOnenoteNotebook" +"Cmdlets","RemoveMgSiteOnenoteNotebookSection.g.cs","v1.0","Remove-MgSiteOnenoteNotebookSection","DELETE","/sites/{param}/onenote/notebooks/{param}/sections/{param}","matched","Remove-MgSiteOnenoteNotebookSection" +"Cmdlets","RemoveMgSiteOnenoteNotebookSectionGroup.g.cs","v1.0","Remove-MgSiteOnenoteNotebookSectionGroup","DELETE","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Remove-MgSiteOnenoteNotebookSectionGroup" +"Cmdlets","RemoveMgSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","Remove-MgSiteOnenoteNotebookSectionGroupSection","DELETE","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Remove-MgSiteOnenoteNotebookSectionGroupSection" +"Cmdlets","RemoveMgSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Remove-MgSiteOnenoteNotebookSectionGroupSectionPage","DELETE","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgSiteOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","RemoveMgSiteOnenoteNotebookSectionPage.g.cs","v1.0","Remove-MgSiteOnenoteNotebookSectionPage","DELETE","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Remove-MgSiteOnenoteNotebookSectionPage" +"Cmdlets","RemoveMgSiteOnenoteOperation.g.cs","v1.0","Remove-MgSiteOnenoteOperation","DELETE","/sites/{param}/onenote/operations/{param}","matched","Remove-MgSiteOnenoteOperation" +"Cmdlets","RemoveMgSiteOnenotePage.g.cs","v1.0","Remove-MgSiteOnenotePage","DELETE","/sites/{param}/onenote/pages/{param}","matched","Remove-MgSiteOnenotePage" +"Cmdlets","RemoveMgSiteOnenoteResource.g.cs","v1.0","Remove-MgSiteOnenoteResource","DELETE","/sites/{param}/onenote/resources/{param}","matched","Remove-MgSiteOnenoteResource" +"Cmdlets","RemoveMgSiteOnenoteSection.g.cs","v1.0","Remove-MgSiteOnenoteSection","DELETE","/sites/{param}/onenote/sections/{param}","matched","Remove-MgSiteOnenoteSection" +"Cmdlets","RemoveMgSiteOnenoteSectionGroup.g.cs","v1.0","Remove-MgSiteOnenoteSectionGroup","DELETE","/sites/{param}/onenote/sectionGroups/{param}","matched","Remove-MgSiteOnenoteSectionGroup" +"Cmdlets","RemoveMgSiteOnenoteSectionGroupSection.g.cs","v1.0","Remove-MgSiteOnenoteSectionGroupSection","DELETE","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Remove-MgSiteOnenoteSectionGroupSection" +"Cmdlets","RemoveMgSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","Remove-MgSiteOnenoteSectionGroupSectionPage","DELETE","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgSiteOnenoteSectionGroupSectionPage" +"Cmdlets","RemoveMgSiteOnenoteSectionPage.g.cs","v1.0","Remove-MgSiteOnenoteSectionPage","DELETE","/sites/{param}/onenote/sections/{param}/pages/{param}","matched","Remove-MgSiteOnenoteSectionPage" +"Cmdlets","RemoveMgUserOnenote.g.cs","v1.0","Remove-MgUserOnenote","DELETE","/users/{param}/onenote","matched","Remove-MgUserOnenote" +"Cmdlets","RemoveMgUserOnenoteNotebook.g.cs","v1.0","Remove-MgUserOnenoteNotebook","DELETE","/users/{param}/onenote/notebooks/{param}","matched","Remove-MgUserOnenoteNotebook" +"Cmdlets","RemoveMgUserOnenoteNotebookSection.g.cs","v1.0","Remove-MgUserOnenoteNotebookSection","DELETE","/users/{param}/onenote/notebooks/{param}/sections/{param}","matched","Remove-MgUserOnenoteNotebookSection" +"Cmdlets","RemoveMgUserOnenoteNotebookSectionGroup.g.cs","v1.0","Remove-MgUserOnenoteNotebookSectionGroup","DELETE","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Remove-MgUserOnenoteNotebookSectionGroup" +"Cmdlets","RemoveMgUserOnenoteNotebookSectionGroupSection.g.cs","v1.0","Remove-MgUserOnenoteNotebookSectionGroupSection","DELETE","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Remove-MgUserOnenoteNotebookSectionGroupSection" +"Cmdlets","RemoveMgUserOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Remove-MgUserOnenoteNotebookSectionGroupSectionPage","DELETE","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgUserOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","RemoveMgUserOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Remove-MgUserOnenoteNotebookSectionGroupSectionPageContent","DELETE","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Remove-MgUserOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","RemoveMgUserOnenoteNotebookSectionPage.g.cs","v1.0","Remove-MgUserOnenoteNotebookSectionPage","DELETE","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Remove-MgUserOnenoteNotebookSectionPage" +"Cmdlets","RemoveMgUserOnenoteNotebookSectionPageContent.g.cs","v1.0","Remove-MgUserOnenoteNotebookSectionPageContent","DELETE","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","matched","Remove-MgUserOnenoteNotebookSectionPageContent" +"Cmdlets","RemoveMgUserOnenoteOperation.g.cs","v1.0","Remove-MgUserOnenoteOperation","DELETE","/users/{param}/onenote/operations/{param}","matched","Remove-MgUserOnenoteOperation" +"Cmdlets","RemoveMgUserOnenotePage.g.cs","v1.0","Remove-MgUserOnenotePage","DELETE","/users/{param}/onenote/pages/{param}","matched","Remove-MgUserOnenotePage" +"Cmdlets","RemoveMgUserOnenotePageContent.g.cs","v1.0","Remove-MgUserOnenotePageContent","DELETE","/users/{param}/onenote/pages/{param}/content","matched","Remove-MgUserOnenotePageContent" +"Cmdlets","RemoveMgUserOnenoteResource.g.cs","v1.0","Remove-MgUserOnenoteResource","DELETE","/users/{param}/onenote/resources/{param}","matched","Remove-MgUserOnenoteResource" +"Cmdlets","RemoveMgUserOnenoteResourceContent.g.cs","v1.0","Remove-MgUserOnenoteResourceContent","DELETE","/users/{param}/onenote/resources/{param}/content","matched","Remove-MgUserOnenoteResourceContent" +"Cmdlets","RemoveMgUserOnenoteSection.g.cs","v1.0","Remove-MgUserOnenoteSection","DELETE","/users/{param}/onenote/sections/{param}","matched","Remove-MgUserOnenoteSection" +"Cmdlets","RemoveMgUserOnenoteSectionGroup.g.cs","v1.0","Remove-MgUserOnenoteSectionGroup","DELETE","/users/{param}/onenote/sectionGroups/{param}","matched","Remove-MgUserOnenoteSectionGroup" +"Cmdlets","RemoveMgUserOnenoteSectionGroupSection.g.cs","v1.0","Remove-MgUserOnenoteSectionGroupSection","DELETE","/users/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Remove-MgUserOnenoteSectionGroupSection" +"Cmdlets","RemoveMgUserOnenoteSectionGroupSectionPage.g.cs","v1.0","Remove-MgUserOnenoteSectionGroupSectionPage","DELETE","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgUserOnenoteSectionGroupSectionPage" +"Cmdlets","RemoveMgUserOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Remove-MgUserOnenoteSectionGroupSectionPageContent","DELETE","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Remove-MgUserOnenoteSectionGroupSectionPageContent" +"Cmdlets","RemoveMgUserOnenoteSectionPage.g.cs","v1.0","Remove-MgUserOnenoteSectionPage","DELETE","/users/{param}/onenote/sections/{param}/pages/{param}","matched","Remove-MgUserOnenoteSectionPage" +"Cmdlets","RemoveMgUserOnenoteSectionPageContent.g.cs","v1.0","Remove-MgUserOnenoteSectionPageContent","DELETE","/users/{param}/onenote/sections/{param}/pages/{param}/content","matched","Remove-MgUserOnenoteSectionPageContent" +"Cmdlets","SetMgGroupOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Set-MgGroupOnenoteNotebookSectionGroupSectionPageContent","PUT","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Set-MgGroupOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","SetMgGroupOnenoteNotebookSectionPageContent.g.cs","v1.0","Set-MgGroupOnenoteNotebookSectionPageContent","PUT","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","matched","Set-MgGroupOnenoteNotebookSectionPageContent" +"Cmdlets","SetMgGroupOnenotePageContent.g.cs","v1.0","Set-MgGroupOnenotePageContent","PUT","/groups/{param}/onenote/pages/{param}/content","matched","Set-MgGroupOnenotePageContent" +"Cmdlets","SetMgGroupOnenoteResourceContent.g.cs","v1.0","Set-MgGroupOnenoteResourceContent","PUT","/groups/{param}/onenote/resources/{param}/content","matched","Set-MgGroupOnenoteResourceContent" +"Cmdlets","SetMgGroupOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Set-MgGroupOnenoteSectionGroupSectionPageContent","PUT","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Set-MgGroupOnenoteSectionGroupSectionPageContent" +"Cmdlets","SetMgGroupOnenoteSectionPageContent.g.cs","v1.0","Set-MgGroupOnenoteSectionPageContent","PUT","/groups/{param}/onenote/sections/{param}/pages/{param}/content","matched","Set-MgGroupOnenoteSectionPageContent" +"Cmdlets","SetMgSiteOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Set-MgSiteOnenoteNotebookSectionGroupSectionPageContent","PUT","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Set-MgSiteOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","SetMgSiteOnenoteNotebookSectionPageContent.g.cs","v1.0","Set-MgSiteOnenoteNotebookSectionPageContent","PUT","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","matched","Set-MgSiteOnenoteNotebookSectionPageContent" +"Cmdlets","SetMgSiteOnenotePageContent.g.cs","v1.0","Set-MgSiteOnenotePageContent","PUT","/sites/{param}/onenote/pages/{param}/content","matched","Set-MgSiteOnenotePageContent" +"Cmdlets","SetMgSiteOnenoteResourceContent.g.cs","v1.0","Set-MgSiteOnenoteResourceContent","PUT","/sites/{param}/onenote/resources/{param}/content","matched","Set-MgSiteOnenoteResourceContent" +"Cmdlets","SetMgSiteOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Set-MgSiteOnenoteSectionGroupSectionPageContent","PUT","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Set-MgSiteOnenoteSectionGroupSectionPageContent" +"Cmdlets","SetMgSiteOnenoteSectionPageContent.g.cs","v1.0","Set-MgSiteOnenoteSectionPageContent","PUT","/sites/{param}/onenote/sections/{param}/pages/{param}/content","matched","Set-MgSiteOnenoteSectionPageContent" +"Cmdlets","SetMgUserOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Set-MgUserOnenoteNotebookSectionGroupSectionPageContent","PUT","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Set-MgUserOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","SetMgUserOnenoteNotebookSectionPageContent.g.cs","v1.0","Set-MgUserOnenoteNotebookSectionPageContent","PUT","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","matched","Set-MgUserOnenoteNotebookSectionPageContent" +"Cmdlets","SetMgUserOnenotePageContent.g.cs","v1.0","Set-MgUserOnenotePageContent","PUT","/users/{param}/onenote/pages/{param}/content","matched","Set-MgUserOnenotePageContent" +"Cmdlets","SetMgUserOnenoteResourceContent.g.cs","v1.0","Set-MgUserOnenoteResourceContent","PUT","/users/{param}/onenote/resources/{param}/content","matched","Set-MgUserOnenoteResourceContent" +"Cmdlets","SetMgUserOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Set-MgUserOnenoteSectionGroupSectionPageContent","PUT","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Set-MgUserOnenoteSectionGroupSectionPageContent" +"Cmdlets","SetMgUserOnenoteSectionPageContent.g.cs","v1.0","Set-MgUserOnenoteSectionPageContent","PUT","/users/{param}/onenote/sections/{param}/pages/{param}/content","matched","Set-MgUserOnenoteSectionPageContent" +"Cmdlets","UpdateMgGroupOnenote.g.cs","v1.0","Update-MgGroupOnenote","PATCH","/groups/{param}/onenote","matched","Update-MgGroupOnenote" +"Cmdlets","UpdateMgGroupOnenoteNotebook.g.cs","v1.0","Update-MgGroupOnenoteNotebook","PATCH","/groups/{param}/onenote/notebooks/{param}","matched","Update-MgGroupOnenoteNotebook" +"Cmdlets","UpdateMgGroupOnenoteNotebookSection.g.cs","v1.0","Update-MgGroupOnenoteNotebookSection","PATCH","/groups/{param}/onenote/notebooks/{param}/sections/{param}","matched","Update-MgGroupOnenoteNotebookSection" +"Cmdlets","UpdateMgGroupOnenoteNotebookSectionGroup.g.cs","v1.0","Update-MgGroupOnenoteNotebookSectionGroup","PATCH","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Update-MgGroupOnenoteNotebookSectionGroup" +"Cmdlets","UpdateMgGroupOnenoteNotebookSectionGroupSection.g.cs","v1.0","Update-MgGroupOnenoteNotebookSectionGroupSection","PATCH","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Update-MgGroupOnenoteNotebookSectionGroupSection" +"Cmdlets","UpdateMgGroupOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Update-MgGroupOnenoteNotebookSectionGroupSectionPage","PATCH","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgGroupOnenoteNotebookSectionPage.g.cs","v1.0","Update-MgGroupOnenoteNotebookSectionPage","PATCH","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgGroupOnenoteOperation.g.cs","v1.0","Update-MgGroupOnenoteOperation","PATCH","/groups/{param}/onenote/operations/{param}","matched","Update-MgGroupOnenoteOperation" +"Cmdlets","UpdateMgGroupOnenotePage.g.cs","v1.0","Update-MgGroupOnenotePage","PATCH","/groups/{param}/onenote/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgGroupOnenoteResource.g.cs","v1.0","Update-MgGroupOnenoteResource","PATCH","/groups/{param}/onenote/resources/{param}","matched","Update-MgGroupOnenoteResource" +"Cmdlets","UpdateMgGroupOnenoteSection.g.cs","v1.0","Update-MgGroupOnenoteSection","PATCH","/groups/{param}/onenote/sections/{param}","matched","Update-MgGroupOnenoteSection" +"Cmdlets","UpdateMgGroupOnenoteSectionGroup.g.cs","v1.0","Update-MgGroupOnenoteSectionGroup","PATCH","/groups/{param}/onenote/sectionGroups/{param}","matched","Update-MgGroupOnenoteSectionGroup" +"Cmdlets","UpdateMgGroupOnenoteSectionGroupSection.g.cs","v1.0","Update-MgGroupOnenoteSectionGroupSection","PATCH","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Update-MgGroupOnenoteSectionGroupSection" +"Cmdlets","UpdateMgGroupOnenoteSectionGroupSectionPage.g.cs","v1.0","Update-MgGroupOnenoteSectionGroupSectionPage","PATCH","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgGroupOnenoteSectionPage.g.cs","v1.0","Update-MgGroupOnenoteSectionPage","PATCH","/groups/{param}/onenote/sections/{param}/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgSiteOnenote.g.cs","v1.0","Update-MgSiteOnenote","PATCH","/sites/{param}/onenote","matched","Update-MgSiteOnenoteContent" +"Cmdlets","UpdateMgSiteOnenoteNotebook.g.cs","v1.0","Update-MgSiteOnenoteNotebook","PATCH","/sites/{param}/onenote/notebooks/{param}","matched","Update-MgSiteOnenoteNotebookContent" +"Cmdlets","UpdateMgSiteOnenoteNotebookSection.g.cs","v1.0","Update-MgSiteOnenoteNotebookSection","PATCH","/sites/{param}/onenote/notebooks/{param}/sections/{param}","matched","Update-MgSiteOnenoteNotebookSectionContent" +"Cmdlets","UpdateMgSiteOnenoteNotebookSectionGroup.g.cs","v1.0","Update-MgSiteOnenoteNotebookSectionGroup","PATCH","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Update-MgSiteOnenoteNotebookSectionGroupContent" +"Cmdlets","UpdateMgSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","Update-MgSiteOnenoteNotebookSectionGroupSection","PATCH","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Update-MgSiteOnenoteNotebookSectionGroupSectionContent" +"Cmdlets","UpdateMgSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Update-MgSiteOnenoteNotebookSectionGroupSectionPage","PATCH","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgSiteOnenoteNotebookSectionPage.g.cs","v1.0","Update-MgSiteOnenoteNotebookSectionPage","PATCH","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgSiteOnenoteOperation.g.cs","v1.0","Update-MgSiteOnenoteOperation","PATCH","/sites/{param}/onenote/operations/{param}","matched","Update-MgSiteOnenoteOperationContent" +"Cmdlets","UpdateMgSiteOnenotePage.g.cs","v1.0","Update-MgSiteOnenotePage","PATCH","/sites/{param}/onenote/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgSiteOnenoteResource.g.cs","v1.0","Update-MgSiteOnenoteResource","PATCH","/sites/{param}/onenote/resources/{param}","matched","Update-MgSiteOnenoteResourceContent" +"Cmdlets","UpdateMgSiteOnenoteSection.g.cs","v1.0","Update-MgSiteOnenoteSection","PATCH","/sites/{param}/onenote/sections/{param}","matched","Update-MgSiteOnenoteSectionContent" +"Cmdlets","UpdateMgSiteOnenoteSectionGroup.g.cs","v1.0","Update-MgSiteOnenoteSectionGroup","PATCH","/sites/{param}/onenote/sectionGroups/{param}","matched","Update-MgSiteOnenoteSectionGroupContent" +"Cmdlets","UpdateMgSiteOnenoteSectionGroupSection.g.cs","v1.0","Update-MgSiteOnenoteSectionGroupSection","PATCH","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Update-MgSiteOnenoteSectionGroupSectionContent" +"Cmdlets","UpdateMgSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","Update-MgSiteOnenoteSectionGroupSectionPage","PATCH","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgSiteOnenoteSectionPage.g.cs","v1.0","Update-MgSiteOnenoteSectionPage","PATCH","/sites/{param}/onenote/sections/{param}/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgUserOnenote.g.cs","v1.0","Update-MgUserOnenote","PATCH","/users/{param}/onenote","matched","Update-MgUserOnenote" +"Cmdlets","UpdateMgUserOnenoteNotebook.g.cs","v1.0","Update-MgUserOnenoteNotebook","PATCH","/users/{param}/onenote/notebooks/{param}","matched","Update-MgUserOnenoteNotebook" +"Cmdlets","UpdateMgUserOnenoteNotebookSection.g.cs","v1.0","Update-MgUserOnenoteNotebookSection","PATCH","/users/{param}/onenote/notebooks/{param}/sections/{param}","matched","Update-MgUserOnenoteNotebookSection" +"Cmdlets","UpdateMgUserOnenoteNotebookSectionGroup.g.cs","v1.0","Update-MgUserOnenoteNotebookSectionGroup","PATCH","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Update-MgUserOnenoteNotebookSectionGroup" +"Cmdlets","UpdateMgUserOnenoteNotebookSectionGroupSection.g.cs","v1.0","Update-MgUserOnenoteNotebookSectionGroupSection","PATCH","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Update-MgUserOnenoteNotebookSectionGroupSection" +"Cmdlets","UpdateMgUserOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Update-MgUserOnenoteNotebookSectionGroupSectionPage","PATCH","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgUserOnenoteNotebookSectionPage.g.cs","v1.0","Update-MgUserOnenoteNotebookSectionPage","PATCH","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgUserOnenoteOperation.g.cs","v1.0","Update-MgUserOnenoteOperation","PATCH","/users/{param}/onenote/operations/{param}","matched","Update-MgUserOnenoteOperation" +"Cmdlets","UpdateMgUserOnenotePage.g.cs","v1.0","Update-MgUserOnenotePage","PATCH","/users/{param}/onenote/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgUserOnenoteResource.g.cs","v1.0","Update-MgUserOnenoteResource","PATCH","/users/{param}/onenote/resources/{param}","matched","Update-MgUserOnenoteResource" +"Cmdlets","UpdateMgUserOnenoteSection.g.cs","v1.0","Update-MgUserOnenoteSection","PATCH","/users/{param}/onenote/sections/{param}","matched","Update-MgUserOnenoteSection" +"Cmdlets","UpdateMgUserOnenoteSectionGroup.g.cs","v1.0","Update-MgUserOnenoteSectionGroup","PATCH","/users/{param}/onenote/sectionGroups/{param}","matched","Update-MgUserOnenoteSectionGroup" +"Cmdlets","UpdateMgUserOnenoteSectionGroupSection.g.cs","v1.0","Update-MgUserOnenoteSectionGroupSection","PATCH","/users/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Update-MgUserOnenoteSectionGroupSection" +"Cmdlets","UpdateMgUserOnenoteSectionGroupSectionPage.g.cs","v1.0","Update-MgUserOnenoteSectionGroupSectionPage","PATCH","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","no-oracle","" +"Cmdlets","UpdateMgUserOnenoteSectionPage.g.cs","v1.0","Update-MgUserOnenoteSectionPage","PATCH","/users/{param}/onenote/sections/{param}/pages/{param}","no-oracle","" +"Cmdlets","GetMgUserPerson_Get.g.cs","v1.0","Get-MgUserPerson","GET","/users/{param}/people/{param}","matched","Get-MgUserPerson" +"Cmdlets","GetMgUserPerson_List.g.cs","v1.0","Get-MgUserPerson","GET","/users/{param}/people","matched","Get-MgUserPerson" +"Cmdlets","GetMgUserPerson.g.cs","v1.0","Get-MgUserPerson","","","dispatcher","" +"Cmdlets","GetMgUserPersonCount.g.cs","v1.0","Get-MgUserPersonCount","GET","/users/{param}/people/$count","matched","Get-MgUserPersonCount" +"Cmdlets","GetMgUserContact_Get.g.cs","v1.0","Get-MgUserContact","GET","/users/{param}/contacts/{param}","matched","Get-MgUserContact" +"Cmdlets","GetMgUserContact_List.g.cs","v1.0","Get-MgUserContact","GET","/users/{param}/contacts","matched","Get-MgUserContact" +"Cmdlets","GetMgUserContact.g.cs","v1.0","Get-MgUserContact","","","dispatcher","" +"Cmdlets","GetMgUserContactCount.g.cs","v1.0","Get-MgUserContactCount","GET","/users/{param}/contacts/$count","matched","Get-MgUserContactCount" +"Cmdlets","GetMgUserContactDelta.g.cs","v1.0","Get-MgUserContactDelta","GET","/users/{param}/contacts/delta","matched","Get-MgUserContactDelta" +"Cmdlets","GetMgUserContactExtension_Get.g.cs","v1.0","Get-MgUserContactExtension","GET","/users/{param}/contacts/{param}/extensions/{param}","matched","Get-MgUserContactExtension" +"Cmdlets","GetMgUserContactExtension_List.g.cs","v1.0","Get-MgUserContactExtension","GET","/users/{param}/contacts/{param}/extensions","matched","Get-MgUserContactExtension" +"Cmdlets","GetMgUserContactExtension.g.cs","v1.0","Get-MgUserContactExtension","","","dispatcher","" +"Cmdlets","GetMgUserContactExtensionCount.g.cs","v1.0","Get-MgUserContactExtensionCount","GET","/users/{param}/contacts/{param}/extensions/$count","matched","Get-MgUserContactExtensionCount" +"Cmdlets","GetMgUserContactFolder_Get.g.cs","v1.0","Get-MgUserContactFolder","GET","/users/{param}/contactFolders/{param}","matched","Get-MgUserContactFolder" +"Cmdlets","GetMgUserContactFolder_List.g.cs","v1.0","Get-MgUserContactFolder","GET","/users/{param}/contactFolders","matched","Get-MgUserContactFolder" +"Cmdlets","GetMgUserContactFolder.g.cs","v1.0","Get-MgUserContactFolder","","","dispatcher","" +"Cmdlets","GetMgUserContactFolderChildFolder_Get.g.cs","v1.0","Get-MgUserContactFolderChildFolder","GET","/users/{param}/contactFolders/{param}/childFolders/{param}","matched","Get-MgUserContactFolderChildFolder" +"Cmdlets","GetMgUserContactFolderChildFolder_List.g.cs","v1.0","Get-MgUserContactFolderChildFolder","GET","/users/{param}/contactFolders/{param}/childFolders","matched","Get-MgUserContactFolderChildFolder" +"Cmdlets","GetMgUserContactFolderChildFolder.g.cs","v1.0","Get-MgUserContactFolderChildFolder","","","dispatcher","" +"Cmdlets","GetMgUserContactFolderChildFolderContact_Get.g.cs","v1.0","Get-MgUserContactFolderChildFolderContact","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}","matched","Get-MgUserContactFolderChildFolderContact" +"Cmdlets","GetMgUserContactFolderChildFolderContact_List.g.cs","v1.0","Get-MgUserContactFolderChildFolderContact","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts","matched","Get-MgUserContactFolderChildFolderContact" +"Cmdlets","GetMgUserContactFolderChildFolderContact.g.cs","v1.0","Get-MgUserContactFolderChildFolderContact","","","dispatcher","" +"Cmdlets","GetMgUserContactFolderChildFolderContactCount.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactCount","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/$count","matched","Get-MgUserContactFolderChildFolderContactCount" +"Cmdlets","GetMgUserContactFolderChildFolderContactDelta.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactDelta","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/delta","matched","Get-MgUserContactFolderChildFolderContactDelta" +"Cmdlets","GetMgUserContactFolderChildFolderContactExtension_Get.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactExtension","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions/{param}","matched","Get-MgUserContactFolderChildFolderContactExtension" +"Cmdlets","GetMgUserContactFolderChildFolderContactExtension_List.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactExtension","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions","matched","Get-MgUserContactFolderChildFolderContactExtension" +"Cmdlets","GetMgUserContactFolderChildFolderContactExtension.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactExtension","","","dispatcher","" +"Cmdlets","GetMgUserContactFolderChildFolderContactExtensionCount.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactExtensionCount","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions/$count","matched","Get-MgUserContactFolderChildFolderContactExtensionCount" +"Cmdlets","GetMgUserContactFolderChildFolderContactPhoto.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactPhoto","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/photo","matched","Get-MgUserContactFolderChildFolderContactPhoto" +"Cmdlets","GetMgUserContactFolderChildFolderContactPhotoContent.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactPhotoContent","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/photo/$value","matched","Get-MgUserContactFolderChildFolderContactPhotoContent" +"Cmdlets","GetMgUserContactFolderChildFolderCount.g.cs","v1.0","Get-MgUserContactFolderChildFolderCount","GET","/users/{param}/contactFolders/{param}/childFolders/$count","matched","Get-MgUserContactFolderChildFolderCount" +"Cmdlets","GetMgUserContactFolderChildFolderDelta.g.cs","v1.0","Get-MgUserContactFolderChildFolderDelta","GET","/users/{param}/contactFolders/{param}/childFolders/delta","matched","Get-MgUserContactFolderChildFolderDelta" +"Cmdlets","GetMgUserContactFolderContact_Get.g.cs","v1.0","Get-MgUserContactFolderContact","GET","/users/{param}/contactFolders/{param}/contacts/{param}","matched","Get-MgUserContactFolderContact" +"Cmdlets","GetMgUserContactFolderContact_List.g.cs","v1.0","Get-MgUserContactFolderContact","GET","/users/{param}/contactFolders/{param}/contacts","matched","Get-MgUserContactFolderContact" +"Cmdlets","GetMgUserContactFolderContact.g.cs","v1.0","Get-MgUserContactFolderContact","","","dispatcher","" +"Cmdlets","GetMgUserContactFolderContactCount.g.cs","v1.0","Get-MgUserContactFolderContactCount","GET","/users/{param}/contactFolders/{param}/contacts/$count","matched","Get-MgUserContactFolderContactCount" +"Cmdlets","GetMgUserContactFolderContactDelta.g.cs","v1.0","Get-MgUserContactFolderContactDelta","GET","/users/{param}/contactFolders/{param}/contacts/delta","matched","Get-MgUserContactFolderContactDelta" +"Cmdlets","GetMgUserContactFolderContactExtension_Get.g.cs","v1.0","Get-MgUserContactFolderContactExtension","GET","/users/{param}/contactFolders/{param}/contacts/{param}/extensions/{param}","matched","Get-MgUserContactFolderContactExtension" +"Cmdlets","GetMgUserContactFolderContactExtension_List.g.cs","v1.0","Get-MgUserContactFolderContactExtension","GET","/users/{param}/contactFolders/{param}/contacts/{param}/extensions","matched","Get-MgUserContactFolderContactExtension" +"Cmdlets","GetMgUserContactFolderContactExtension.g.cs","v1.0","Get-MgUserContactFolderContactExtension","","","dispatcher","" +"Cmdlets","GetMgUserContactFolderContactExtensionCount.g.cs","v1.0","Get-MgUserContactFolderContactExtensionCount","GET","/users/{param}/contactFolders/{param}/contacts/{param}/extensions/$count","matched","Get-MgUserContactFolderContactExtensionCount" +"Cmdlets","GetMgUserContactFolderContactPhoto.g.cs","v1.0","Get-MgUserContactFolderContactPhoto","GET","/users/{param}/contactFolders/{param}/contacts/{param}/photo","matched","Get-MgUserContactFolderContactPhoto" +"Cmdlets","GetMgUserContactFolderContactPhotoContent.g.cs","v1.0","Get-MgUserContactFolderContactPhotoContent","GET","/users/{param}/contactFolders/{param}/contacts/{param}/photo/$value","matched","Get-MgUserContactFolderContactPhotoContent" +"Cmdlets","GetMgUserContactFolderCount.g.cs","v1.0","Get-MgUserContactFolderCount","GET","/users/{param}/contactFolders/$count","matched","Get-MgUserContactFolderCount" +"Cmdlets","GetMgUserContactFolderDelta.g.cs","v1.0","Get-MgUserContactFolderDelta","GET","/users/{param}/contactFolders/delta","matched","Get-MgUserContactFolderDelta" +"Cmdlets","GetMgUserContactPhoto.g.cs","v1.0","Get-MgUserContactPhoto","GET","/users/{param}/contacts/{param}/photo","matched","Get-MgUserContactPhoto" +"Cmdlets","GetMgUserContactPhotoContent.g.cs","v1.0","Get-MgUserContactPhotoContent","GET","/users/{param}/contacts/{param}/photo/$value","matched","Get-MgUserContactPhotoContent" +"Cmdlets","InvokeMgUserContactFolderChildFolderContactPermanentDelete.g.cs","v1.0","Invoke-MgUserContactFolderChildFolderContactPermanentDelete","POST","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/permanentDelete","mismatch","Remove-MgUserContactFolderChildFolderContactPermanent" +"Cmdlets","InvokeMgUserContactFolderChildFolderPermanentDelete.g.cs","v1.0","Invoke-MgUserContactFolderChildFolderPermanentDelete","POST","/users/{param}/contactFolders/{param}/childFolders/{param}/permanentDelete","mismatch","Remove-MgUserContactFolderChildFolderPermanent" +"Cmdlets","InvokeMgUserContactFolderContactPermanentDelete.g.cs","v1.0","Invoke-MgUserContactFolderContactPermanentDelete","POST","/users/{param}/contactFolders/{param}/contacts/{param}/permanentDelete","mismatch","Remove-MgUserContactFolderContactPermanent" +"Cmdlets","InvokeMgUserContactFolderPermanentDelete.g.cs","v1.0","Invoke-MgUserContactFolderPermanentDelete","POST","/users/{param}/contactFolders/{param}/permanentDelete","mismatch","Remove-MgUserContactFolderPermanent" +"Cmdlets","InvokeMgUserContactPermanentDelete.g.cs","v1.0","Invoke-MgUserContactPermanentDelete","POST","/users/{param}/contacts/{param}/permanentDelete","mismatch","Remove-MgUserContactPermanent" +"Cmdlets","NewMgUserContact.g.cs","v1.0","New-MgUserContact","POST","/users/{param}/contacts","matched","New-MgUserContact" +"Cmdlets","NewMgUserContactExtension.g.cs","v1.0","New-MgUserContactExtension","POST","/users/{param}/contacts/{param}/extensions","matched","New-MgUserContactExtension" +"Cmdlets","NewMgUserContactFolder.g.cs","v1.0","New-MgUserContactFolder","POST","/users/{param}/contactFolders","matched","New-MgUserContactFolder" +"Cmdlets","NewMgUserContactFolderChildFolder.g.cs","v1.0","New-MgUserContactFolderChildFolder","POST","/users/{param}/contactFolders/{param}/childFolders","matched","New-MgUserContactFolderChildFolder" +"Cmdlets","NewMgUserContactFolderChildFolderContact.g.cs","v1.0","New-MgUserContactFolderChildFolderContact","POST","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts","matched","New-MgUserContactFolderChildFolderContact" +"Cmdlets","NewMgUserContactFolderChildFolderContactExtension.g.cs","v1.0","New-MgUserContactFolderChildFolderContactExtension","POST","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions","matched","New-MgUserContactFolderChildFolderContactExtension" +"Cmdlets","NewMgUserContactFolderContact.g.cs","v1.0","New-MgUserContactFolderContact","POST","/users/{param}/contactFolders/{param}/contacts","matched","New-MgUserContactFolderContact" +"Cmdlets","NewMgUserContactFolderContactExtension.g.cs","v1.0","New-MgUserContactFolderContactExtension","POST","/users/{param}/contactFolders/{param}/contacts/{param}/extensions","matched","New-MgUserContactFolderContactExtension" +"Cmdlets","RemoveMgUserContact.g.cs","v1.0","Remove-MgUserContact","DELETE","/users/{param}/contacts/{param}","matched","Remove-MgUserContact" +"Cmdlets","RemoveMgUserContactExtension.g.cs","v1.0","Remove-MgUserContactExtension","DELETE","/users/{param}/contacts/{param}/extensions/{param}","matched","Remove-MgUserContactExtension" +"Cmdlets","RemoveMgUserContactFolder.g.cs","v1.0","Remove-MgUserContactFolder","DELETE","/users/{param}/contactFolders/{param}","matched","Remove-MgUserContactFolder" +"Cmdlets","RemoveMgUserContactFolderChildFolder.g.cs","v1.0","Remove-MgUserContactFolderChildFolder","DELETE","/users/{param}/contactFolders/{param}/childFolders/{param}","matched","Remove-MgUserContactFolderChildFolder" +"Cmdlets","RemoveMgUserContactFolderChildFolderContact.g.cs","v1.0","Remove-MgUserContactFolderChildFolderContact","DELETE","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}","matched","Remove-MgUserContactFolderChildFolderContact" +"Cmdlets","RemoveMgUserContactFolderChildFolderContactExtension.g.cs","v1.0","Remove-MgUserContactFolderChildFolderContactExtension","DELETE","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions/{param}","matched","Remove-MgUserContactFolderChildFolderContactExtension" +"Cmdlets","RemoveMgUserContactFolderChildFolderContactPhotoContent.g.cs","v1.0","Remove-MgUserContactFolderChildFolderContactPhotoContent","DELETE","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/photo/$value","matched","Remove-MgUserContactFolderChildFolderContactPhotoContent" +"Cmdlets","RemoveMgUserContactFolderContact.g.cs","v1.0","Remove-MgUserContactFolderContact","DELETE","/users/{param}/contactFolders/{param}/contacts/{param}","matched","Remove-MgUserContactFolderContact" +"Cmdlets","RemoveMgUserContactFolderContactExtension.g.cs","v1.0","Remove-MgUserContactFolderContactExtension","DELETE","/users/{param}/contactFolders/{param}/contacts/{param}/extensions/{param}","matched","Remove-MgUserContactFolderContactExtension" +"Cmdlets","RemoveMgUserContactFolderContactPhotoContent.g.cs","v1.0","Remove-MgUserContactFolderContactPhotoContent","DELETE","/users/{param}/contactFolders/{param}/contacts/{param}/photo/$value","matched","Remove-MgUserContactFolderContactPhotoContent" +"Cmdlets","RemoveMgUserContactPhotoContent.g.cs","v1.0","Remove-MgUserContactPhotoContent","DELETE","/users/{param}/contacts/{param}/photo/$value","matched","Remove-MgUserContactPhotoContent" +"Cmdlets","UpdateMgUserContact.g.cs","v1.0","Update-MgUserContact","PATCH","/users/{param}/contacts/{param}","matched","Update-MgUserContact" +"Cmdlets","UpdateMgUserContactExtension.g.cs","v1.0","Update-MgUserContactExtension","PATCH","/users/{param}/contacts/{param}/extensions/{param}","matched","Update-MgUserContactExtension" +"Cmdlets","UpdateMgUserContactFolder.g.cs","v1.0","Update-MgUserContactFolder","PATCH","/users/{param}/contactFolders/{param}","matched","Update-MgUserContactFolder" +"Cmdlets","UpdateMgUserContactFolderChildFolder.g.cs","v1.0","Update-MgUserContactFolderChildFolder","PATCH","/users/{param}/contactFolders/{param}/childFolders/{param}","matched","Update-MgUserContactFolderChildFolder" +"Cmdlets","UpdateMgUserContactFolderChildFolderContact.g.cs","v1.0","Update-MgUserContactFolderChildFolderContact","PATCH","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}","matched","Update-MgUserContactFolderChildFolderContact" +"Cmdlets","UpdateMgUserContactFolderChildFolderContactExtension.g.cs","v1.0","Update-MgUserContactFolderChildFolderContactExtension","PATCH","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions/{param}","matched","Update-MgUserContactFolderChildFolderContactExtension" +"Cmdlets","UpdateMgUserContactFolderChildFolderContactPhoto.g.cs","v1.0","Update-MgUserContactFolderChildFolderContactPhoto","PATCH","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/photo","matched","Update-MgUserContactFolderChildFolderContactPhoto" +"Cmdlets","UpdateMgUserContactFolderContact.g.cs","v1.0","Update-MgUserContactFolderContact","PATCH","/users/{param}/contactFolders/{param}/contacts/{param}","matched","Update-MgUserContactFolderContact" +"Cmdlets","UpdateMgUserContactFolderContactExtension.g.cs","v1.0","Update-MgUserContactFolderContactExtension","PATCH","/users/{param}/contactFolders/{param}/contacts/{param}/extensions/{param}","matched","Update-MgUserContactFolderContactExtension" +"Cmdlets","UpdateMgUserContactFolderContactPhoto.g.cs","v1.0","Update-MgUserContactFolderContactPhoto","PATCH","/users/{param}/contactFolders/{param}/contacts/{param}/photo","matched","Update-MgUserContactFolderContactPhoto" +"Cmdlets","UpdateMgUserContactPhoto.g.cs","v1.0","Update-MgUserContactPhoto","PATCH","/users/{param}/contacts/{param}/photo","matched","Update-MgUserContactPhoto" +"Cmdlets","GetMgGroupPlanner.g.cs","v1.0","Get-MgGroupPlanner","GET","/groups/{param}/planner","matched","Get-MgGroupPlanner" +"Cmdlets","GetMgGroupPlannerPlan_Get.g.cs","v1.0","Get-MgGroupPlannerPlan","GET","/groups/{param}/planner/plans/{param}","matched","Get-MgGroupPlannerPlan" +"Cmdlets","GetMgGroupPlannerPlan_List.g.cs","v1.0","Get-MgGroupPlannerPlan","GET","/groups/{param}/planner/plans","matched","Get-MgGroupPlannerPlan" +"Cmdlets","GetMgGroupPlannerPlan.g.cs","v1.0","Get-MgGroupPlannerPlan","","","dispatcher","" +"Cmdlets","GetMgGroupPlannerPlanBucket_Get.g.cs","v1.0","Get-MgGroupPlannerPlanBucket","GET","/groups/{param}/planner/plans/{param}/buckets/{param}","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanBucket_List.g.cs","v1.0","Get-MgGroupPlannerPlanBucket","GET","/groups/{param}/planner/plans/{param}/buckets","matched","Get-MgGroupPlannerPlanBucket" +"Cmdlets","GetMgGroupPlannerPlanBucket.g.cs","v1.0","Get-MgGroupPlannerPlanBucket","","","dispatcher","" +"Cmdlets","GetMgGroupPlannerPlanBucketCount.g.cs","v1.0","Get-MgGroupPlannerPlanBucketCount","GET","/groups/{param}/planner/plans/{param}/buckets/$count","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanBucketTask_Get.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTask","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanBucketTask_List.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTask","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanBucketTask.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTask","","","dispatcher","" +"Cmdlets","GetMgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanBucketTaskCount.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTaskCount","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/$count","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanBucketTaskDetail.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTaskDetail","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanCount.g.cs","v1.0","Get-MgGroupPlannerPlanCount","GET","/groups/{param}/planner/plans/$count","matched","Get-MgGroupPlannerPlanCount" +"Cmdlets","GetMgGroupPlannerPlanDetail.g.cs","v1.0","Get-MgGroupPlannerPlanDetail","GET","/groups/{param}/planner/plans/{param}/details","matched","Get-MgGroupPlannerPlanDetail" +"Cmdlets","GetMgGroupPlannerPlanTask_Get.g.cs","v1.0","Get-MgGroupPlannerPlanTask","GET","/groups/{param}/planner/plans/{param}/tasks/{param}","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanTask_List.g.cs","v1.0","Get-MgGroupPlannerPlanTask","GET","/groups/{param}/planner/plans/{param}/tasks","matched","Get-MgGroupPlannerPlanTask" +"Cmdlets","GetMgGroupPlannerPlanTask.g.cs","v1.0","Get-MgGroupPlannerPlanTask","","","dispatcher","" +"Cmdlets","GetMgGroupPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat","GET","/groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgGroupPlannerPlanTaskBucketTaskBoardFormat","GET","/groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanTaskCount.g.cs","v1.0","Get-MgGroupPlannerPlanTaskCount","GET","/groups/{param}/planner/plans/{param}/tasks/$count","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanTaskDetail.g.cs","v1.0","Get-MgGroupPlannerPlanTaskDetail","GET","/groups/{param}/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","GetMgGroupPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgGroupPlannerPlanTaskProgressTaskBoardFormat","GET","/groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgPlanner.g.cs","v1.0","Get-MgPlanner","GET","/planner","matched","Get-MgPlanner" +"Cmdlets","GetMgPlannerBucket_Get.g.cs","v1.0","Get-MgPlannerBucket","GET","/planner/buckets/{param}","matched","Get-MgPlannerBucket" +"Cmdlets","GetMgPlannerBucket_List.g.cs","v1.0","Get-MgPlannerBucket","GET","/planner/buckets","matched","Get-MgPlannerBucket" +"Cmdlets","GetMgPlannerBucket.g.cs","v1.0","Get-MgPlannerBucket","","","dispatcher","" +"Cmdlets","GetMgPlannerBucketCount.g.cs","v1.0","Get-MgPlannerBucketCount","GET","/planner/buckets/$count","matched","Get-MgPlannerBucketCount" +"Cmdlets","GetMgPlannerBucketTask_Get.g.cs","v1.0","Get-MgPlannerBucketTask","GET","/planner/buckets/{param}/tasks/{param}","no-oracle","" +"Cmdlets","GetMgPlannerBucketTask_List.g.cs","v1.0","Get-MgPlannerBucketTask","GET","/planner/buckets/{param}/tasks","matched","Get-MgPlannerBucketTask" +"Cmdlets","GetMgPlannerBucketTask.g.cs","v1.0","Get-MgPlannerBucketTask","","","dispatcher","" +"Cmdlets","GetMgPlannerBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgPlannerBucketTaskAssignedToTaskBoardFormat","GET","/planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgPlannerBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgPlannerBucketTaskBucketTaskBoardFormat","GET","/planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgPlannerBucketTaskCount.g.cs","v1.0","Get-MgPlannerBucketTaskCount","GET","/planner/buckets/{param}/tasks/$count","no-oracle","" +"Cmdlets","GetMgPlannerBucketTaskDetail.g.cs","v1.0","Get-MgPlannerBucketTaskDetail","GET","/planner/buckets/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","GetMgPlannerBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgPlannerBucketTaskProgressTaskBoardFormat","GET","/planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgPlannerPlan_Get.g.cs","v1.0","Get-MgPlannerPlan","GET","/planner/plans/{param}","matched","Get-MgPlannerPlan" +"Cmdlets","GetMgPlannerPlan_List.g.cs","v1.0","Get-MgPlannerPlan","GET","/planner/plans","matched","Get-MgPlannerPlan" +"Cmdlets","GetMgPlannerPlan.g.cs","v1.0","Get-MgPlannerPlan","","","dispatcher","" +"Cmdlets","GetMgPlannerPlanBucket_Get.g.cs","v1.0","Get-MgPlannerPlanBucket","GET","/planner/plans/{param}/buckets/{param}","no-oracle","" +"Cmdlets","GetMgPlannerPlanBucket_List.g.cs","v1.0","Get-MgPlannerPlanBucket","GET","/planner/plans/{param}/buckets","matched","Get-MgPlannerPlanBucket" +"Cmdlets","GetMgPlannerPlanBucket.g.cs","v1.0","Get-MgPlannerPlanBucket","","","dispatcher","" +"Cmdlets","GetMgPlannerPlanBucketCount.g.cs","v1.0","Get-MgPlannerPlanBucketCount","GET","/planner/plans/{param}/buckets/$count","no-oracle","" +"Cmdlets","GetMgPlannerPlanBucketTask_Get.g.cs","v1.0","Get-MgPlannerPlanBucketTask","GET","/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Cmdlets","GetMgPlannerPlanBucketTask_List.g.cs","v1.0","Get-MgPlannerPlanBucketTask","GET","/planner/plans/{param}/buckets/{param}/tasks","no-oracle","" +"Cmdlets","GetMgPlannerPlanBucketTask.g.cs","v1.0","Get-MgPlannerPlanBucketTask","","","dispatcher","" +"Cmdlets","GetMgPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat","GET","/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgPlannerPlanBucketTaskBucketTaskBoardFormat","GET","/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgPlannerPlanBucketTaskCount.g.cs","v1.0","Get-MgPlannerPlanBucketTaskCount","GET","/planner/plans/{param}/buckets/{param}/tasks/$count","no-oracle","" +"Cmdlets","GetMgPlannerPlanBucketTaskDetail.g.cs","v1.0","Get-MgPlannerPlanBucketTaskDetail","GET","/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","GetMgPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgPlannerPlanBucketTaskProgressTaskBoardFormat","GET","/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgPlannerPlanCount.g.cs","v1.0","Get-MgPlannerPlanCount","GET","/planner/plans/$count","matched","Get-MgPlannerPlanCount" +"Cmdlets","GetMgPlannerPlanDetail.g.cs","v1.0","Get-MgPlannerPlanDetail","GET","/planner/plans/{param}/details","matched","Get-MgPlannerPlanDetail" +"Cmdlets","GetMgPlannerPlanTask_Get.g.cs","v1.0","Get-MgPlannerPlanTask","GET","/planner/plans/{param}/tasks/{param}","no-oracle","" +"Cmdlets","GetMgPlannerPlanTask_List.g.cs","v1.0","Get-MgPlannerPlanTask","GET","/planner/plans/{param}/tasks","matched","Get-MgPlannerPlanTask" +"Cmdlets","GetMgPlannerPlanTask.g.cs","v1.0","Get-MgPlannerPlanTask","","","dispatcher","" +"Cmdlets","GetMgPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgPlannerPlanTaskAssignedToTaskBoardFormat","GET","/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgPlannerPlanTaskBucketTaskBoardFormat","GET","/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgPlannerPlanTaskCount.g.cs","v1.0","Get-MgPlannerPlanTaskCount","GET","/planner/plans/{param}/tasks/$count","no-oracle","" +"Cmdlets","GetMgPlannerPlanTaskDetail.g.cs","v1.0","Get-MgPlannerPlanTaskDetail","GET","/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","GetMgPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgPlannerPlanTaskProgressTaskBoardFormat","GET","/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgPlannerTask_Get.g.cs","v1.0","Get-MgPlannerTask","GET","/planner/tasks/{param}","matched","Get-MgPlannerTask" +"Cmdlets","GetMgPlannerTask_List.g.cs","v1.0","Get-MgPlannerTask","GET","/planner/tasks","matched","Get-MgPlannerTask" +"Cmdlets","GetMgPlannerTask.g.cs","v1.0","Get-MgPlannerTask","","","dispatcher","" +"Cmdlets","GetMgPlannerTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgPlannerTaskAssignedToTaskBoardFormat","GET","/planner/tasks/{param}/assignedToTaskBoardFormat","matched","Get-MgPlannerTaskAssignedToTaskBoardFormat" +"Cmdlets","GetMgPlannerTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgPlannerTaskBucketTaskBoardFormat","GET","/planner/tasks/{param}/bucketTaskBoardFormat","matched","Get-MgPlannerTaskBucketTaskBoardFormat" +"Cmdlets","GetMgPlannerTaskCount.g.cs","v1.0","Get-MgPlannerTaskCount","GET","/planner/tasks/$count","matched","Get-MgPlannerTaskCount" +"Cmdlets","GetMgPlannerTaskDetail.g.cs","v1.0","Get-MgPlannerTaskDetail","GET","/planner/tasks/{param}/details","matched","Get-MgPlannerTaskDetail" +"Cmdlets","GetMgPlannerTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgPlannerTaskProgressTaskBoardFormat","GET","/planner/tasks/{param}/progressTaskBoardFormat","matched","Get-MgPlannerTaskProgressTaskBoardFormat" +"Cmdlets","GetMgUserPlanner.g.cs","v1.0","Get-MgUserPlanner","GET","/users/{param}/planner","matched","Get-MgUserPlanner" +"Cmdlets","GetMgUserPlannerPlan_Get.g.cs","v1.0","Get-MgUserPlannerPlan","GET","/users/{param}/planner/plans/{param}","no-oracle","" +"Cmdlets","GetMgUserPlannerPlan_List.g.cs","v1.0","Get-MgUserPlannerPlan","GET","/users/{param}/planner/plans","matched","Get-MgUserPlannerPlan" +"Cmdlets","GetMgUserPlannerPlan.g.cs","v1.0","Get-MgUserPlannerPlan","","","dispatcher","" +"Cmdlets","GetMgUserPlannerPlanBucket_Get.g.cs","v1.0","Get-MgUserPlannerPlanBucket","GET","/users/{param}/planner/plans/{param}/buckets/{param}","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanBucket_List.g.cs","v1.0","Get-MgUserPlannerPlanBucket","GET","/users/{param}/planner/plans/{param}/buckets","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanBucket.g.cs","v1.0","Get-MgUserPlannerPlanBucket","","","dispatcher","" +"Cmdlets","GetMgUserPlannerPlanBucketCount.g.cs","v1.0","Get-MgUserPlannerPlanBucketCount","GET","/users/{param}/planner/plans/{param}/buckets/$count","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanBucketTask_Get.g.cs","v1.0","Get-MgUserPlannerPlanBucketTask","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanBucketTask_List.g.cs","v1.0","Get-MgUserPlannerPlanBucketTask","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanBucketTask.g.cs","v1.0","Get-MgUserPlannerPlanBucketTask","","","dispatcher","" +"Cmdlets","GetMgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanBucketTaskCount.g.cs","v1.0","Get-MgUserPlannerPlanBucketTaskCount","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/$count","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanBucketTaskDetail.g.cs","v1.0","Get-MgUserPlannerPlanBucketTaskDetail","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanCount.g.cs","v1.0","Get-MgUserPlannerPlanCount","GET","/users/{param}/planner/plans/$count","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanDetail.g.cs","v1.0","Get-MgUserPlannerPlanDetail","GET","/users/{param}/planner/plans/{param}/details","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanTask_Get.g.cs","v1.0","Get-MgUserPlannerPlanTask","GET","/users/{param}/planner/plans/{param}/tasks/{param}","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanTask_List.g.cs","v1.0","Get-MgUserPlannerPlanTask","GET","/users/{param}/planner/plans/{param}/tasks","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanTask.g.cs","v1.0","Get-MgUserPlannerPlanTask","","","dispatcher","" +"Cmdlets","GetMgUserPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerPlanTaskAssignedToTaskBoardFormat","GET","/users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerPlanTaskBucketTaskBoardFormat","GET","/users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanTaskCount.g.cs","v1.0","Get-MgUserPlannerPlanTaskCount","GET","/users/{param}/planner/plans/{param}/tasks/$count","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanTaskDetail.g.cs","v1.0","Get-MgUserPlannerPlanTaskDetail","GET","/users/{param}/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","GetMgUserPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerPlanTaskProgressTaskBoardFormat","GET","/users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgUserPlannerTask_Get.g.cs","v1.0","Get-MgUserPlannerTask","GET","/users/{param}/planner/tasks/{param}","no-oracle","" +"Cmdlets","GetMgUserPlannerTask_List.g.cs","v1.0","Get-MgUserPlannerTask","GET","/users/{param}/planner/tasks","matched","Get-MgUserPlannerTask" +"Cmdlets","GetMgUserPlannerTask.g.cs","v1.0","Get-MgUserPlannerTask","","","dispatcher","" +"Cmdlets","GetMgUserPlannerTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerTaskAssignedToTaskBoardFormat","GET","/users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgUserPlannerTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerTaskBucketTaskBoardFormat","GET","/users/{param}/planner/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgUserPlannerTaskCount.g.cs","v1.0","Get-MgUserPlannerTaskCount","GET","/users/{param}/planner/tasks/$count","no-oracle","" +"Cmdlets","GetMgUserPlannerTaskDetail.g.cs","v1.0","Get-MgUserPlannerTaskDetail","GET","/users/{param}/planner/tasks/{param}/details","no-oracle","" +"Cmdlets","GetMgUserPlannerTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerTaskProgressTaskBoardFormat","GET","/users/{param}/planner/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","NewMgGroupPlannerPlan.g.cs","v1.0","New-MgGroupPlannerPlan","POST","/groups/{param}/planner/plans","no-oracle","" +"Cmdlets","NewMgGroupPlannerPlanBucket.g.cs","v1.0","New-MgGroupPlannerPlanBucket","POST","/groups/{param}/planner/plans/{param}/buckets","no-oracle","" +"Cmdlets","NewMgGroupPlannerPlanBucketTask.g.cs","v1.0","New-MgGroupPlannerPlanBucketTask","POST","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks","no-oracle","" +"Cmdlets","NewMgGroupPlannerPlanTask.g.cs","v1.0","New-MgGroupPlannerPlanTask","POST","/groups/{param}/planner/plans/{param}/tasks","no-oracle","" +"Cmdlets","NewMgPlannerBucket.g.cs","v1.0","New-MgPlannerBucket","POST","/planner/buckets","matched","New-MgPlannerBucket" +"Cmdlets","NewMgPlannerBucketTask.g.cs","v1.0","New-MgPlannerBucketTask","POST","/planner/buckets/{param}/tasks","no-oracle","" +"Cmdlets","NewMgPlannerPlan.g.cs","v1.0","New-MgPlannerPlan","POST","/planner/plans","matched","New-MgPlannerPlan" +"Cmdlets","NewMgPlannerPlanBucket.g.cs","v1.0","New-MgPlannerPlanBucket","POST","/planner/plans/{param}/buckets","no-oracle","" +"Cmdlets","NewMgPlannerPlanBucketTask.g.cs","v1.0","New-MgPlannerPlanBucketTask","POST","/planner/plans/{param}/buckets/{param}/tasks","no-oracle","" +"Cmdlets","NewMgPlannerPlanTask.g.cs","v1.0","New-MgPlannerPlanTask","POST","/planner/plans/{param}/tasks","no-oracle","" +"Cmdlets","NewMgPlannerTask.g.cs","v1.0","New-MgPlannerTask","POST","/planner/tasks","matched","New-MgPlannerTask" +"Cmdlets","NewMgUserPlannerPlan.g.cs","v1.0","New-MgUserPlannerPlan","POST","/users/{param}/planner/plans","no-oracle","" +"Cmdlets","NewMgUserPlannerPlanBucket.g.cs","v1.0","New-MgUserPlannerPlanBucket","POST","/users/{param}/planner/plans/{param}/buckets","no-oracle","" +"Cmdlets","NewMgUserPlannerPlanBucketTask.g.cs","v1.0","New-MgUserPlannerPlanBucketTask","POST","/users/{param}/planner/plans/{param}/buckets/{param}/tasks","no-oracle","" +"Cmdlets","NewMgUserPlannerPlanTask.g.cs","v1.0","New-MgUserPlannerPlanTask","POST","/users/{param}/planner/plans/{param}/tasks","no-oracle","" +"Cmdlets","NewMgUserPlannerTask.g.cs","v1.0","New-MgUserPlannerTask","POST","/users/{param}/planner/tasks","no-oracle","" +"Cmdlets","RemoveMgGroupPlanner.g.cs","v1.0","Remove-MgGroupPlanner","DELETE","/groups/{param}/planner","no-oracle","" +"Cmdlets","RemoveMgGroupPlannerPlan.g.cs","v1.0","Remove-MgGroupPlannerPlan","DELETE","/groups/{param}/planner/plans/{param}","no-oracle","" +"Cmdlets","RemoveMgGroupPlannerPlanBucket.g.cs","v1.0","Remove-MgGroupPlannerPlanBucket","DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}","no-oracle","" +"Cmdlets","RemoveMgGroupPlannerPlanBucketTask.g.cs","v1.0","Remove-MgGroupPlannerPlanBucketTask","DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Cmdlets","RemoveMgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat","DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgGroupPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat","DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgGroupPlannerPlanBucketTaskDetail.g.cs","v1.0","Remove-MgGroupPlannerPlanBucketTaskDetail","DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","RemoveMgGroupPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat","DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgGroupPlannerPlanDetail.g.cs","v1.0","Remove-MgGroupPlannerPlanDetail","DELETE","/groups/{param}/planner/plans/{param}/details","matched","Remove-MgGroupPlannerPlanDetail" +"Cmdlets","RemoveMgGroupPlannerPlanTask.g.cs","v1.0","Remove-MgGroupPlannerPlanTask","DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}","no-oracle","" +"Cmdlets","RemoveMgGroupPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat","DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgGroupPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgGroupPlannerPlanTaskBucketTaskBoardFormat","DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgGroupPlannerPlanTaskDetail.g.cs","v1.0","Remove-MgGroupPlannerPlanTaskDetail","DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","RemoveMgGroupPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgGroupPlannerPlanTaskProgressTaskBoardFormat","DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgPlannerBucket.g.cs","v1.0","Remove-MgPlannerBucket","DELETE","/planner/buckets/{param}","matched","Remove-MgPlannerBucket" +"Cmdlets","RemoveMgPlannerBucketTask.g.cs","v1.0","Remove-MgPlannerBucketTask","DELETE","/planner/buckets/{param}/tasks/{param}","no-oracle","" +"Cmdlets","RemoveMgPlannerBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerBucketTaskAssignedToTaskBoardFormat","DELETE","/planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgPlannerBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerBucketTaskBucketTaskBoardFormat","DELETE","/planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgPlannerBucketTaskDetail.g.cs","v1.0","Remove-MgPlannerBucketTaskDetail","DELETE","/planner/buckets/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","RemoveMgPlannerBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerBucketTaskProgressTaskBoardFormat","DELETE","/planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgPlannerPlan.g.cs","v1.0","Remove-MgPlannerPlan","DELETE","/planner/plans/{param}","matched","Remove-MgPlannerPlan" +"Cmdlets","RemoveMgPlannerPlanBucket.g.cs","v1.0","Remove-MgPlannerPlanBucket","DELETE","/planner/plans/{param}/buckets/{param}","no-oracle","" +"Cmdlets","RemoveMgPlannerPlanBucketTask.g.cs","v1.0","Remove-MgPlannerPlanBucketTask","DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Cmdlets","RemoveMgPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat","DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerPlanBucketTaskBucketTaskBoardFormat","DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgPlannerPlanBucketTaskDetail.g.cs","v1.0","Remove-MgPlannerPlanBucketTaskDetail","DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","RemoveMgPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerPlanBucketTaskProgressTaskBoardFormat","DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgPlannerPlanDetail.g.cs","v1.0","Remove-MgPlannerPlanDetail","DELETE","/planner/plans/{param}/details","no-oracle","" +"Cmdlets","RemoveMgPlannerPlanTask.g.cs","v1.0","Remove-MgPlannerPlanTask","DELETE","/planner/plans/{param}/tasks/{param}","no-oracle","" +"Cmdlets","RemoveMgPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerPlanTaskAssignedToTaskBoardFormat","DELETE","/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerPlanTaskBucketTaskBoardFormat","DELETE","/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgPlannerPlanTaskDetail.g.cs","v1.0","Remove-MgPlannerPlanTaskDetail","DELETE","/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","RemoveMgPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerPlanTaskProgressTaskBoardFormat","DELETE","/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgPlannerTask.g.cs","v1.0","Remove-MgPlannerTask","DELETE","/planner/tasks/{param}","matched","Remove-MgPlannerTask" +"Cmdlets","RemoveMgPlannerTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerTaskAssignedToTaskBoardFormat","DELETE","/planner/tasks/{param}/assignedToTaskBoardFormat","matched","Remove-MgPlannerTaskAssignedToTaskBoardFormat" +"Cmdlets","RemoveMgPlannerTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerTaskBucketTaskBoardFormat","DELETE","/planner/tasks/{param}/bucketTaskBoardFormat","matched","Remove-MgPlannerTaskBucketTaskBoardFormat" +"Cmdlets","RemoveMgPlannerTaskDetail.g.cs","v1.0","Remove-MgPlannerTaskDetail","DELETE","/planner/tasks/{param}/details","no-oracle","" +"Cmdlets","RemoveMgPlannerTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerTaskProgressTaskBoardFormat","DELETE","/planner/tasks/{param}/progressTaskBoardFormat","matched","Remove-MgPlannerTaskProgressTaskBoardFormat" +"Cmdlets","RemoveMgUserPlanner.g.cs","v1.0","Remove-MgUserPlanner","DELETE","/users/{param}/planner","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlan.g.cs","v1.0","Remove-MgUserPlannerPlan","DELETE","/users/{param}/planner/plans/{param}","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlanBucket.g.cs","v1.0","Remove-MgUserPlannerPlanBucket","DELETE","/users/{param}/planner/plans/{param}/buckets/{param}","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlanBucketTask.g.cs","v1.0","Remove-MgUserPlannerPlanBucketTask","DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat","DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat","DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlanBucketTaskDetail.g.cs","v1.0","Remove-MgUserPlannerPlanBucketTaskDetail","DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat","DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlanDetail.g.cs","v1.0","Remove-MgUserPlannerPlanDetail","DELETE","/users/{param}/planner/plans/{param}/details","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlanTask.g.cs","v1.0","Remove-MgUserPlannerPlanTask","DELETE","/users/{param}/planner/plans/{param}/tasks/{param}","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerPlanTaskAssignedToTaskBoardFormat","DELETE","/users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerPlanTaskBucketTaskBoardFormat","DELETE","/users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlanTaskDetail.g.cs","v1.0","Remove-MgUserPlannerPlanTaskDetail","DELETE","/users/{param}/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","RemoveMgUserPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerPlanTaskProgressTaskBoardFormat","DELETE","/users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgUserPlannerTask.g.cs","v1.0","Remove-MgUserPlannerTask","DELETE","/users/{param}/planner/tasks/{param}","no-oracle","" +"Cmdlets","RemoveMgUserPlannerTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerTaskAssignedToTaskBoardFormat","DELETE","/users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgUserPlannerTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerTaskBucketTaskBoardFormat","DELETE","/users/{param}/planner/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","RemoveMgUserPlannerTaskDetail.g.cs","v1.0","Remove-MgUserPlannerTaskDetail","DELETE","/users/{param}/planner/tasks/{param}/details","no-oracle","" +"Cmdlets","RemoveMgUserPlannerTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerTaskProgressTaskBoardFormat","DELETE","/users/{param}/planner/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgGroupPlanner.g.cs","v1.0","Update-MgGroupPlanner","PATCH","/groups/{param}/planner","matched","Update-MgGroupPlanner" +"Cmdlets","UpdateMgGroupPlannerPlan.g.cs","v1.0","Update-MgGroupPlannerPlan","PATCH","/groups/{param}/planner/plans/{param}","no-oracle","" +"Cmdlets","UpdateMgGroupPlannerPlanBucket.g.cs","v1.0","Update-MgGroupPlannerPlanBucket","PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}","no-oracle","" +"Cmdlets","UpdateMgGroupPlannerPlanBucketTask.g.cs","v1.0","Update-MgGroupPlannerPlanBucketTask","PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Cmdlets","UpdateMgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat","PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgGroupPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat","PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgGroupPlannerPlanBucketTaskDetail.g.cs","v1.0","Update-MgGroupPlannerPlanBucketTaskDetail","PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","UpdateMgGroupPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat","PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgGroupPlannerPlanDetail.g.cs","v1.0","Update-MgGroupPlannerPlanDetail","PATCH","/groups/{param}/planner/plans/{param}/details","matched","Update-MgGroupPlannerPlanDetail" +"Cmdlets","UpdateMgGroupPlannerPlanTask.g.cs","v1.0","Update-MgGroupPlannerPlanTask","PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}","no-oracle","" +"Cmdlets","UpdateMgGroupPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat","PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgGroupPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgGroupPlannerPlanTaskBucketTaskBoardFormat","PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgGroupPlannerPlanTaskDetail.g.cs","v1.0","Update-MgGroupPlannerPlanTaskDetail","PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","UpdateMgGroupPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgGroupPlannerPlanTaskProgressTaskBoardFormat","PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgPlanner.g.cs","v1.0","Update-MgPlanner","PATCH","/planner","matched","Update-MgPlanner" +"Cmdlets","UpdateMgPlannerBucket.g.cs","v1.0","Update-MgPlannerBucket","PATCH","/planner/buckets/{param}","matched","Update-MgPlannerBucket" +"Cmdlets","UpdateMgPlannerBucketTask.g.cs","v1.0","Update-MgPlannerBucketTask","PATCH","/planner/buckets/{param}/tasks/{param}","no-oracle","" +"Cmdlets","UpdateMgPlannerBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgPlannerBucketTaskAssignedToTaskBoardFormat","PATCH","/planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgPlannerBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgPlannerBucketTaskBucketTaskBoardFormat","PATCH","/planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgPlannerBucketTaskDetail.g.cs","v1.0","Update-MgPlannerBucketTaskDetail","PATCH","/planner/buckets/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","UpdateMgPlannerBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgPlannerBucketTaskProgressTaskBoardFormat","PATCH","/planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgPlannerPlan.g.cs","v1.0","Update-MgPlannerPlan","PATCH","/planner/plans/{param}","matched","Update-MgPlannerPlan" +"Cmdlets","UpdateMgPlannerPlanBucket.g.cs","v1.0","Update-MgPlannerPlanBucket","PATCH","/planner/plans/{param}/buckets/{param}","no-oracle","" +"Cmdlets","UpdateMgPlannerPlanBucketTask.g.cs","v1.0","Update-MgPlannerPlanBucketTask","PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Cmdlets","UpdateMgPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat","PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgPlannerPlanBucketTaskBucketTaskBoardFormat","PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgPlannerPlanBucketTaskDetail.g.cs","v1.0","Update-MgPlannerPlanBucketTaskDetail","PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","UpdateMgPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgPlannerPlanBucketTaskProgressTaskBoardFormat","PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgPlannerPlanDetail.g.cs","v1.0","Update-MgPlannerPlanDetail","PATCH","/planner/plans/{param}/details","matched","Update-MgPlannerPlanDetail" +"Cmdlets","UpdateMgPlannerPlanTask.g.cs","v1.0","Update-MgPlannerPlanTask","PATCH","/planner/plans/{param}/tasks/{param}","no-oracle","" +"Cmdlets","UpdateMgPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgPlannerPlanTaskAssignedToTaskBoardFormat","PATCH","/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgPlannerPlanTaskBucketTaskBoardFormat","PATCH","/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgPlannerPlanTaskDetail.g.cs","v1.0","Update-MgPlannerPlanTaskDetail","PATCH","/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","UpdateMgPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgPlannerPlanTaskProgressTaskBoardFormat","PATCH","/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgPlannerTask.g.cs","v1.0","Update-MgPlannerTask","PATCH","/planner/tasks/{param}","matched","Update-MgPlannerTask" +"Cmdlets","UpdateMgPlannerTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgPlannerTaskAssignedToTaskBoardFormat","PATCH","/planner/tasks/{param}/assignedToTaskBoardFormat","matched","Update-MgPlannerTaskAssignedToTaskBoardFormat" +"Cmdlets","UpdateMgPlannerTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgPlannerTaskBucketTaskBoardFormat","PATCH","/planner/tasks/{param}/bucketTaskBoardFormat","matched","Update-MgPlannerTaskBucketTaskBoardFormat" +"Cmdlets","UpdateMgPlannerTaskDetail.g.cs","v1.0","Update-MgPlannerTaskDetail","PATCH","/planner/tasks/{param}/details","matched","Update-MgPlannerTaskDetail" +"Cmdlets","UpdateMgPlannerTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgPlannerTaskProgressTaskBoardFormat","PATCH","/planner/tasks/{param}/progressTaskBoardFormat","matched","Update-MgPlannerTaskProgressTaskBoardFormat" +"Cmdlets","UpdateMgUserPlanner.g.cs","v1.0","Update-MgUserPlanner","PATCH","/users/{param}/planner","matched","Update-MgUserPlanner" +"Cmdlets","UpdateMgUserPlannerPlan.g.cs","v1.0","Update-MgUserPlannerPlan","PATCH","/users/{param}/planner/plans/{param}","no-oracle","" +"Cmdlets","UpdateMgUserPlannerPlanBucket.g.cs","v1.0","Update-MgUserPlannerPlanBucket","PATCH","/users/{param}/planner/plans/{param}/buckets/{param}","no-oracle","" +"Cmdlets","UpdateMgUserPlannerPlanBucketTask.g.cs","v1.0","Update-MgUserPlannerPlanBucketTask","PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Cmdlets","UpdateMgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat","PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgUserPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat","PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgUserPlannerPlanBucketTaskDetail.g.cs","v1.0","Update-MgUserPlannerPlanBucketTaskDetail","PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","UpdateMgUserPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat","PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgUserPlannerPlanDetail.g.cs","v1.0","Update-MgUserPlannerPlanDetail","PATCH","/users/{param}/planner/plans/{param}/details","no-oracle","" +"Cmdlets","UpdateMgUserPlannerPlanTask.g.cs","v1.0","Update-MgUserPlannerPlanTask","PATCH","/users/{param}/planner/plans/{param}/tasks/{param}","no-oracle","" +"Cmdlets","UpdateMgUserPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerPlanTaskAssignedToTaskBoardFormat","PATCH","/users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgUserPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerPlanTaskBucketTaskBoardFormat","PATCH","/users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgUserPlannerPlanTaskDetail.g.cs","v1.0","Update-MgUserPlannerPlanTaskDetail","PATCH","/users/{param}/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Cmdlets","UpdateMgUserPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerPlanTaskProgressTaskBoardFormat","PATCH","/users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgUserPlannerTask.g.cs","v1.0","Update-MgUserPlannerTask","PATCH","/users/{param}/planner/tasks/{param}","no-oracle","" +"Cmdlets","UpdateMgUserPlannerTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerTaskAssignedToTaskBoardFormat","PATCH","/users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgUserPlannerTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerTaskBucketTaskBoardFormat","PATCH","/users/{param}/planner/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Cmdlets","UpdateMgUserPlannerTaskDetail.g.cs","v1.0","Update-MgUserPlannerTaskDetail","PATCH","/users/{param}/planner/tasks/{param}/details","no-oracle","" +"Cmdlets","UpdateMgUserPlannerTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerTaskProgressTaskBoardFormat","PATCH","/users/{param}/planner/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Cmdlets","GetMgAdminReportSetting.g.cs","v1.0","Get-MgAdminReportSetting","GET","/admin/reportSettings","matched","Get-MgAdminReportSetting" +"Cmdlets","GetMgAuditLog.g.cs","v1.0","Get-MgAuditLog","GET","/auditLogs","no-oracle","" +"Cmdlets","GetMgAuditLogDirectoryAudit_Get.g.cs","v1.0","Get-MgAuditLogDirectoryAudit","GET","/auditLogs/directoryAudits/{param}","matched","Get-MgAuditLogDirectoryAudit" +"Cmdlets","GetMgAuditLogDirectoryAudit_List.g.cs","v1.0","Get-MgAuditLogDirectoryAudit","GET","/auditLogs/directoryAudits","matched","Get-MgAuditLogDirectoryAudit" +"Cmdlets","GetMgAuditLogDirectoryAudit.g.cs","v1.0","Get-MgAuditLogDirectoryAudit","","","dispatcher","" +"Cmdlets","GetMgAuditLogDirectoryAuditCount.g.cs","v1.0","Get-MgAuditLogDirectoryAuditCount","GET","/auditLogs/directoryAudits/$count","matched","Get-MgAuditLogDirectoryAuditCount" +"Cmdlets","GetMgAuditLogProvisioning_Get.g.cs","v1.0","Get-MgAuditLogProvisioning","GET","/auditLogs/provisioning/{param}","matched","Get-MgAuditLogProvisioning" +"Cmdlets","GetMgAuditLogProvisioning_List.g.cs","v1.0","Get-MgAuditLogProvisioning","GET","/auditLogs/provisioning","matched","Get-MgAuditLogProvisioning" +"Cmdlets","GetMgAuditLogProvisioning.g.cs","v1.0","Get-MgAuditLogProvisioning","","","dispatcher","" +"Cmdlets","GetMgAuditLogProvisioningCount.g.cs","v1.0","Get-MgAuditLogProvisioningCount","GET","/auditLogs/provisioning/$count","matched","Get-MgAuditLogProvisioningCount" +"Cmdlets","GetMgAuditLogSignIn_Get.g.cs","v1.0","Get-MgAuditLogSignIn","GET","/auditLogs/signIns/{param}","matched","Get-MgAuditLogSignIn" +"Cmdlets","GetMgAuditLogSignIn_List.g.cs","v1.0","Get-MgAuditLogSignIn","GET","/auditLogs/signIns","matched","Get-MgAuditLogSignIn" +"Cmdlets","GetMgAuditLogSignIn.g.cs","v1.0","Get-MgAuditLogSignIn","","","dispatcher","" +"Cmdlets","GetMgAuditLogSignInCount.g.cs","v1.0","Get-MgAuditLogSignInCount","GET","/auditLogs/signIns/$count","matched","Get-MgAuditLogSignInCount" +"Cmdlets","GetMgDeviceManagementReport.g.cs","v1.0","Get-MgDeviceManagementReport","GET","/deviceManagement/reports","matched","Get-MgDeviceManagementReport" +"Cmdlets","GetMgDeviceManagementReportExportJob_Get.g.cs","v1.0","Get-MgDeviceManagementReportExportJob","GET","/deviceManagement/reports/exportJobs/{param}","matched","Get-MgDeviceManagementReportExportJob" +"Cmdlets","GetMgDeviceManagementReportExportJob_List.g.cs","v1.0","Get-MgDeviceManagementReportExportJob","GET","/deviceManagement/reports/exportJobs","matched","Get-MgDeviceManagementReportExportJob" +"Cmdlets","GetMgDeviceManagementReportExportJob.g.cs","v1.0","Get-MgDeviceManagementReportExportJob","","","dispatcher","" +"Cmdlets","GetMgDeviceManagementReportExportJobCount.g.cs","v1.0","Get-MgDeviceManagementReportExportJobCount","GET","/deviceManagement/reports/exportJobs/$count","matched","Get-MgDeviceManagementReportExportJobCount" +"Cmdlets","GetMgReport.g.cs","v1.0","Get-MgReport","GET","/reports","no-oracle","" +"Cmdlets","GetMgReportAuthenticationMethod.g.cs","v1.0","Get-MgReportAuthenticationMethod","GET","/reports/authenticationMethods","matched","Get-MgReportAuthenticationMethod" +"Cmdlets","GetMgReportAuthenticationMethodUserRegistrationDetail_Get.g.cs","v1.0","Get-MgReportAuthenticationMethodUserRegistrationDetail","GET","/reports/authenticationMethods/userRegistrationDetails/{param}","matched","Get-MgReportAuthenticationMethodUserRegistrationDetail" +"Cmdlets","GetMgReportAuthenticationMethodUserRegistrationDetail_List.g.cs","v1.0","Get-MgReportAuthenticationMethodUserRegistrationDetail","GET","/reports/authenticationMethods/userRegistrationDetails","matched","Get-MgReportAuthenticationMethodUserRegistrationDetail" +"Cmdlets","GetMgReportAuthenticationMethodUserRegistrationDetail.g.cs","v1.0","Get-MgReportAuthenticationMethodUserRegistrationDetail","","","dispatcher","" +"Cmdlets","GetMgReportAuthenticationMethodUserRegistrationDetailCount.g.cs","v1.0","Get-MgReportAuthenticationMethodUserRegistrationDetailCount","GET","/reports/authenticationMethods/userRegistrationDetails/$count","matched","Get-MgReportAuthenticationMethodUserRegistrationDetailCount" +"Cmdlets","GetMgReportAuthenticationMethodUsersRegisteredByFeature.g.cs","v1.0","Get-MgReportAuthenticationMethodUsersRegisteredByFeature","GET","/reports/authenticationMethods/usersRegisteredByFeature","mismatch","Invoke-MgGraphReportAuthenticationMethod" +"Cmdlets","GetMgReportAuthenticationMethodUsersRegisteredByFeatureWithIncludedUserTypesWithIncludedUserRoles.g.cs","v1.0","Get-MgReportAuthenticationMethodUsersRegisteredByFeatureWithIncludedUserTypesWithIncludedUserRoles","GET","/reports/authenticationMethods/usersRegisteredByFeature(includedUserTypes='{includedUserTypes}',includedUserRoles='{includedUserRoles}')","no-oracle","" +"Cmdlets","GetMgReportAuthenticationMethodUsersRegisteredByMethod.g.cs","v1.0","Get-MgReportAuthenticationMethodUsersRegisteredByMethod","GET","/reports/authenticationMethods/usersRegisteredByMethod","no-oracle","" +"Cmdlets","GetMgReportAuthenticationMethodUsersRegisteredByMethodWithIncludedUserTypesWithIncludedUserRoles.g.cs","v1.0","Get-MgReportAuthenticationMethodUsersRegisteredByMethodWithIncludedUserTypesWithIncludedUserRoles","GET","/reports/authenticationMethods/usersRegisteredByMethod(includedUserTypes='{includedUserTypes}',includedUserRoles='{includedUserRoles}')","no-oracle","" +"Cmdlets","GetMgReportDailyPrintUsageByPrinter_Get.g.cs","v1.0","Get-MgReportDailyPrintUsageByPrinter","GET","/reports/dailyPrintUsageByPrinter/{param}","matched","Get-MgReportDailyPrintUsageByPrinter" +"Cmdlets","GetMgReportDailyPrintUsageByPrinter_List.g.cs","v1.0","Get-MgReportDailyPrintUsageByPrinter","GET","/reports/dailyPrintUsageByPrinter","matched","Get-MgReportDailyPrintUsageByPrinter" +"Cmdlets","GetMgReportDailyPrintUsageByPrinter.g.cs","v1.0","Get-MgReportDailyPrintUsageByPrinter","","","dispatcher","" +"Cmdlets","GetMgReportDailyPrintUsageByPrinterCount.g.cs","v1.0","Get-MgReportDailyPrintUsageByPrinterCount","GET","/reports/dailyPrintUsageByPrinter/$count","matched","Get-MgReportDailyPrintUsageByPrinterCount" +"Cmdlets","GetMgReportDailyPrintUsageByUser_Get.g.cs","v1.0","Get-MgReportDailyPrintUsageByUser","GET","/reports/dailyPrintUsageByUser/{param}","matched","Get-MgReportDailyPrintUsageByUser" +"Cmdlets","GetMgReportDailyPrintUsageByUser_List.g.cs","v1.0","Get-MgReportDailyPrintUsageByUser","GET","/reports/dailyPrintUsageByUser","matched","Get-MgReportDailyPrintUsageByUser" +"Cmdlets","GetMgReportDailyPrintUsageByUser.g.cs","v1.0","Get-MgReportDailyPrintUsageByUser","","","dispatcher","" +"Cmdlets","GetMgReportDailyPrintUsageByUserCount.g.cs","v1.0","Get-MgReportDailyPrintUsageByUserCount","GET","/reports/dailyPrintUsageByUser/$count","matched","Get-MgReportDailyPrintUsageByUserCount" +"Cmdlets","GetMgReportDeviceConfigurationDeviceActivity.g.cs","v1.0","Get-MgReportDeviceConfigurationDeviceActivity","GET","/reports/deviceConfigurationDeviceActivity","matched","Get-MgReportDeviceConfigurationDeviceActivity" +"Cmdlets","GetMgReportDeviceConfigurationUserActivity.g.cs","v1.0","Get-MgReportDeviceConfigurationUserActivity","GET","/reports/deviceConfigurationUserActivity","matched","Get-MgReportDeviceConfigurationUserActivity" +"Cmdlets","GetMgReportGetEmailActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetEmailActivityCountsWithPeriod","GET","/reports/getEmailActivityCounts(period='{period}')","mismatch","Get-MgReportEmailActivityCount" +"Cmdlets","GetMgReportGetEmailActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetEmailActivityUserCountsWithPeriod","GET","/reports/getEmailActivityUserCounts(period='{period}')","mismatch","Get-MgReportEmailActivityUserCount" +"Cmdlets","GetMgReportGetEmailActivityUserDetailWithDate.g.cs","v1.0","Get-MgReportGetEmailActivityUserDetailWithDate","GET","/reports/getEmailActivityUserDetail(date={date})","mismatch","Get-MgReportEmailActivityUserDetail" +"Cmdlets","GetMgReportGetEmailActivityUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetEmailActivityUserDetailWithPeriod","GET","/reports/getEmailActivityUserDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetEmailAppUsageAppsUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetEmailAppUsageAppsUserCountsWithPeriod","GET","/reports/getEmailAppUsageAppsUserCounts(period='{period}')","mismatch","Get-MgReportEmailAppUsageAppUserCount" +"Cmdlets","GetMgReportGetEmailAppUsageUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetEmailAppUsageUserCountsWithPeriod","GET","/reports/getEmailAppUsageUserCounts(period='{period}')","mismatch","Get-MgReportEmailAppUsageUserCount" +"Cmdlets","GetMgReportGetEmailAppUsageUserDetailWithDate.g.cs","v1.0","Get-MgReportGetEmailAppUsageUserDetailWithDate","GET","/reports/getEmailAppUsageUserDetail(date={date})","mismatch","Get-MgReportEmailAppUsageUserDetail" +"Cmdlets","GetMgReportGetEmailAppUsageUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetEmailAppUsageUserDetailWithPeriod","GET","/reports/getEmailAppUsageUserDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetEmailAppUsageVersionsUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetEmailAppUsageVersionsUserCountsWithPeriod","GET","/reports/getEmailAppUsageVersionsUserCounts(period='{period}')","mismatch","Get-MgReportEmailAppUsageVersionUserCount" +"Cmdlets","GetMgReportGetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgReportGetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTime","GET","/reports/getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})","mismatch","Get-MgReportGroupArchivedPrintJob" +"Cmdlets","GetMgReportGetM365AppPlatformUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetM365AppPlatformUserCountsWithPeriod","GET","/reports/getM365AppPlatformUserCounts(period='{period}')","mismatch","Get-MgReportM365AppPlatformUserCount" +"Cmdlets","GetMgReportGetM365AppUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetM365AppUserCountsWithPeriod","GET","/reports/getM365AppUserCounts(period='{period}')","mismatch","Get-MgReportM365AppUserCount" +"Cmdlets","GetMgReportGetM365AppUserDetailWithDate.g.cs","v1.0","Get-MgReportGetM365AppUserDetailWithDate","GET","/reports/getM365AppUserDetail(date={date})","mismatch","Get-MgReportM365AppUserDetail" +"Cmdlets","GetMgReportGetM365AppUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetM365AppUserDetailWithPeriod","GET","/reports/getM365AppUserDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetMailboxUsageDetailWithPeriod.g.cs","v1.0","Get-MgReportGetMailboxUsageDetailWithPeriod","GET","/reports/getMailboxUsageDetail(period='{period}')","mismatch","Get-MgReportMailboxUsageDetail" +"Cmdlets","GetMgReportGetMailboxUsageMailboxCountsWithPeriod.g.cs","v1.0","Get-MgReportGetMailboxUsageMailboxCountsWithPeriod","GET","/reports/getMailboxUsageMailboxCounts(period='{period}')","mismatch","Get-MgReportMailboxUsageMailboxCount" +"Cmdlets","GetMgReportGetMailboxUsageQuotaStatusMailboxCountsWithPeriod.g.cs","v1.0","Get-MgReportGetMailboxUsageQuotaStatusMailboxCountsWithPeriod","GET","/reports/getMailboxUsageQuotaStatusMailboxCounts(period='{period}')","mismatch","Get-MgReportMailboxUsageQuotaStatusMailboxCount" +"Cmdlets","GetMgReportGetMailboxUsageStorageWithPeriod.g.cs","v1.0","Get-MgReportGetMailboxUsageStorageWithPeriod","GET","/reports/getMailboxUsageStorage(period='{period}')","mismatch","Get-MgReportMailboxUsageStorage" +"Cmdlets","GetMgReportGetOffice365ActivationCounts.g.cs","v1.0","Get-MgReportGetOffice365ActivationCounts","GET","/reports/getOffice365ActivationCounts","mismatch","Get-MgReportOffice365ActivationCount" +"Cmdlets","GetMgReportGetOffice365ActivationsUserCounts.g.cs","v1.0","Get-MgReportGetOffice365ActivationsUserCounts","GET","/reports/getOffice365ActivationsUserCounts","mismatch","Get-MgReportOffice365ActivationUserCount" +"Cmdlets","GetMgReportGetOffice365ActivationsUserDetail.g.cs","v1.0","Get-MgReportGetOffice365ActivationsUserDetail","GET","/reports/getOffice365ActivationsUserDetail","mismatch","Get-MgReportOffice365ActivationUserDetail" +"Cmdlets","GetMgReportGetOffice365ActiveUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365ActiveUserCountsWithPeriod","GET","/reports/getOffice365ActiveUserCounts(period='{period}')","mismatch","Get-MgReportOffice365ActiveUserCount" +"Cmdlets","GetMgReportGetOffice365ActiveUserDetailWithDate.g.cs","v1.0","Get-MgReportGetOffice365ActiveUserDetailWithDate","GET","/reports/getOffice365ActiveUserDetail(date={date})","mismatch","Get-MgReportOffice365ActiveUserDetail" +"Cmdlets","GetMgReportGetOffice365ActiveUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365ActiveUserDetailWithPeriod","GET","/reports/getOffice365ActiveUserDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetOffice365GroupsActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365GroupsActivityCountsWithPeriod","GET","/reports/getOffice365GroupsActivityCounts(period='{period}')","mismatch","Get-MgReportOffice365GroupActivityCount" +"Cmdlets","GetMgReportGetOffice365GroupsActivityDetailWithDate.g.cs","v1.0","Get-MgReportGetOffice365GroupsActivityDetailWithDate","GET","/reports/getOffice365GroupsActivityDetail(date={date})","mismatch","Get-MgReportOffice365GroupActivityDetail" +"Cmdlets","GetMgReportGetOffice365GroupsActivityDetailWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365GroupsActivityDetailWithPeriod","GET","/reports/getOffice365GroupsActivityDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetOffice365GroupsActivityFileCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365GroupsActivityFileCountsWithPeriod","GET","/reports/getOffice365GroupsActivityFileCounts(period='{period}')","mismatch","Get-MgReportOffice365GroupActivityFileCount" +"Cmdlets","GetMgReportGetOffice365GroupsActivityGroupCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365GroupsActivityGroupCountsWithPeriod","GET","/reports/getOffice365GroupsActivityGroupCounts(period='{period}')","mismatch","Get-MgReportOffice365GroupActivityGroupCount" +"Cmdlets","GetMgReportGetOffice365GroupsActivityStorageWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365GroupsActivityStorageWithPeriod","GET","/reports/getOffice365GroupsActivityStorage(period='{period}')","mismatch","Get-MgReportOffice365GroupActivityStorage" +"Cmdlets","GetMgReportGetOffice365ServicesUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365ServicesUserCountsWithPeriod","GET","/reports/getOffice365ServicesUserCounts(period='{period}')","mismatch","Get-MgReportOffice365ServiceUserCount" +"Cmdlets","GetMgReportGetOneDriveActivityFileCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveActivityFileCountsWithPeriod","GET","/reports/getOneDriveActivityFileCounts(period='{period}')","mismatch","Get-MgReportOneDriveActivityFileCount" +"Cmdlets","GetMgReportGetOneDriveActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveActivityUserCountsWithPeriod","GET","/reports/getOneDriveActivityUserCounts(period='{period}')","mismatch","Get-MgReportOneDriveActivityUserCount" +"Cmdlets","GetMgReportGetOneDriveActivityUserDetailWithDate.g.cs","v1.0","Get-MgReportGetOneDriveActivityUserDetailWithDate","GET","/reports/getOneDriveActivityUserDetail(date={date})","mismatch","Get-MgReportOneDriveActivityUserDetail" +"Cmdlets","GetMgReportGetOneDriveActivityUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveActivityUserDetailWithPeriod","GET","/reports/getOneDriveActivityUserDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetOneDriveUsageAccountCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveUsageAccountCountsWithPeriod","GET","/reports/getOneDriveUsageAccountCounts(period='{period}')","mismatch","Get-MgReportOneDriveUsageAccountCount" +"Cmdlets","GetMgReportGetOneDriveUsageAccountDetailWithDate.g.cs","v1.0","Get-MgReportGetOneDriveUsageAccountDetailWithDate","GET","/reports/getOneDriveUsageAccountDetail(date={date})","mismatch","Get-MgReportOneDriveUsageAccountDetail" +"Cmdlets","GetMgReportGetOneDriveUsageAccountDetailWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveUsageAccountDetailWithPeriod","GET","/reports/getOneDriveUsageAccountDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetOneDriveUsageFileCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveUsageFileCountsWithPeriod","GET","/reports/getOneDriveUsageFileCounts(period='{period}')","mismatch","Get-MgReportOneDriveUsageFileCount" +"Cmdlets","GetMgReportGetOneDriveUsageStorageWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveUsageStorageWithPeriod","GET","/reports/getOneDriveUsageStorage(period='{period}')","mismatch","Get-MgReportOneDriveUsageStorage" +"Cmdlets","GetMgReportGetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgReportGetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTime","GET","/reports/getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})","mismatch","Get-MgReportPrinterArchivedPrintJob" +"Cmdlets","GetMgReportGetRelyingPartyDetailedSummaryWithPeriod.g.cs","v1.0","Get-MgReportGetRelyingPartyDetailedSummaryWithPeriod","GET","/reports/getRelyingPartyDetailedSummary(period='{period}')","mismatch","Get-MgReportRelyingPartyDetailedSummary" +"Cmdlets","GetMgReportGetSharePointActivityFileCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointActivityFileCountsWithPeriod","GET","/reports/getSharePointActivityFileCounts(period='{period}')","mismatch","Get-MgReportSharePointActivityFileCount" +"Cmdlets","GetMgReportGetSharePointActivityPagesWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointActivityPagesWithPeriod","GET","/reports/getSharePointActivityPages(period='{period}')","mismatch","Get-MgReportSharePointActivityPage" +"Cmdlets","GetMgReportGetSharePointActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointActivityUserCountsWithPeriod","GET","/reports/getSharePointActivityUserCounts(period='{period}')","mismatch","Get-MgReportSharePointActivityUserCount" +"Cmdlets","GetMgReportGetSharePointActivityUserDetailWithDate.g.cs","v1.0","Get-MgReportGetSharePointActivityUserDetailWithDate","GET","/reports/getSharePointActivityUserDetail(date={date})","mismatch","Get-MgReportSharePointActivityUserDetail" +"Cmdlets","GetMgReportGetSharePointActivityUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointActivityUserDetailWithPeriod","GET","/reports/getSharePointActivityUserDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetSharePointSiteUsageDetailWithDate.g.cs","v1.0","Get-MgReportGetSharePointSiteUsageDetailWithDate","GET","/reports/getSharePointSiteUsageDetail(date={date})","mismatch","Get-MgReportSharePointSiteUsageDetail" +"Cmdlets","GetMgReportGetSharePointSiteUsageDetailWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointSiteUsageDetailWithPeriod","GET","/reports/getSharePointSiteUsageDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetSharePointSiteUsageFileCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointSiteUsageFileCountsWithPeriod","GET","/reports/getSharePointSiteUsageFileCounts(period='{period}')","mismatch","Get-MgReportSharePointSiteUsageFileCount" +"Cmdlets","GetMgReportGetSharePointSiteUsagePagesWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointSiteUsagePagesWithPeriod","GET","/reports/getSharePointSiteUsagePages(period='{period}')","mismatch","Get-MgReportSharePointSiteUsagePage" +"Cmdlets","GetMgReportGetSharePointSiteUsageSiteCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointSiteUsageSiteCountsWithPeriod","GET","/reports/getSharePointSiteUsageSiteCounts(period='{period}')","mismatch","Get-MgReportSharePointSiteUsageSiteCount" +"Cmdlets","GetMgReportGetSharePointSiteUsageStorageWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointSiteUsageStorageWithPeriod","GET","/reports/getSharePointSiteUsageStorage(period='{period}')","mismatch","Get-MgReportSharePointSiteUsageStorage" +"Cmdlets","GetMgReportGetSkypeForBusinessActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessActivityCountsWithPeriod","GET","/reports/getSkypeForBusinessActivityCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessActivityCount" +"Cmdlets","GetMgReportGetSkypeForBusinessActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessActivityUserCountsWithPeriod","GET","/reports/getSkypeForBusinessActivityUserCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessActivityUserCount" +"Cmdlets","GetMgReportGetSkypeForBusinessActivityUserDetailWithDate.g.cs","v1.0","Get-MgReportGetSkypeForBusinessActivityUserDetailWithDate","GET","/reports/getSkypeForBusinessActivityUserDetail(date={date})","mismatch","Get-MgReportSkypeForBusinessActivityUserDetail" +"Cmdlets","GetMgReportGetSkypeForBusinessActivityUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessActivityUserDetailWithPeriod","GET","/reports/getSkypeForBusinessActivityUserDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetSkypeForBusinessDeviceUsageDistributionUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessDeviceUsageDistributionUserCountsWithPeriod","GET","/reports/getSkypeForBusinessDeviceUsageDistributionUserCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessDeviceUsageDistributionUserCount" +"Cmdlets","GetMgReportGetSkypeForBusinessDeviceUsageUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessDeviceUsageUserCountsWithPeriod","GET","/reports/getSkypeForBusinessDeviceUsageUserCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessDeviceUsageUserCount" +"Cmdlets","GetMgReportGetSkypeForBusinessDeviceUsageUserDetailWithDate.g.cs","v1.0","Get-MgReportGetSkypeForBusinessDeviceUsageUserDetailWithDate","GET","/reports/getSkypeForBusinessDeviceUsageUserDetail(date={date})","mismatch","Get-MgReportSkypeForBusinessDeviceUsageUserDetail" +"Cmdlets","GetMgReportGetSkypeForBusinessDeviceUsageUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessDeviceUsageUserDetailWithPeriod","GET","/reports/getSkypeForBusinessDeviceUsageUserDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetSkypeForBusinessOrganizerActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessOrganizerActivityCountsWithPeriod","GET","/reports/getSkypeForBusinessOrganizerActivityCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessOrganizerActivityCount" +"Cmdlets","GetMgReportGetSkypeForBusinessOrganizerActivityMinuteCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessOrganizerActivityMinuteCountsWithPeriod","GET","/reports/getSkypeForBusinessOrganizerActivityMinuteCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessOrganizerActivityMinuteCount" +"Cmdlets","GetMgReportGetSkypeForBusinessOrganizerActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessOrganizerActivityUserCountsWithPeriod","GET","/reports/getSkypeForBusinessOrganizerActivityUserCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessOrganizerActivityUserCount" +"Cmdlets","GetMgReportGetSkypeForBusinessParticipantActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessParticipantActivityCountsWithPeriod","GET","/reports/getSkypeForBusinessParticipantActivityCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessParticipantActivityCount" +"Cmdlets","GetMgReportGetSkypeForBusinessParticipantActivityMinuteCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessParticipantActivityMinuteCountsWithPeriod","GET","/reports/getSkypeForBusinessParticipantActivityMinuteCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessParticipantActivityMinuteCount" +"Cmdlets","GetMgReportGetSkypeForBusinessParticipantActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessParticipantActivityUserCountsWithPeriod","GET","/reports/getSkypeForBusinessParticipantActivityUserCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessParticipantActivityUserCount" +"Cmdlets","GetMgReportGetSkypeForBusinessPeerToPeerActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessPeerToPeerActivityCountsWithPeriod","GET","/reports/getSkypeForBusinessPeerToPeerActivityCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessPeerToPeerActivityCount" +"Cmdlets","GetMgReportGetSkypeForBusinessPeerToPeerActivityMinuteCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessPeerToPeerActivityMinuteCountsWithPeriod","GET","/reports/getSkypeForBusinessPeerToPeerActivityMinuteCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessPeerToPeerActivityMinuteCount" +"Cmdlets","GetMgReportGetSkypeForBusinessPeerToPeerActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessPeerToPeerActivityUserCountsWithPeriod","GET","/reports/getSkypeForBusinessPeerToPeerActivityUserCounts(period='{period}')","mismatch","Get-MgReportSkypeForBusinessPeerToPeerActivityUserCount" +"Cmdlets","GetMgReportGetTeamsDeviceUsageDistributionUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsDeviceUsageDistributionUserCountsWithPeriod","GET","/reports/getTeamsDeviceUsageDistributionUserCounts(period='{period}')","mismatch","Get-MgReportTeamDeviceUsageDistributionUserCount" +"Cmdlets","GetMgReportGetTeamsDeviceUsageUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsDeviceUsageUserCountsWithPeriod","GET","/reports/getTeamsDeviceUsageUserCounts(period='{period}')","mismatch","Get-MgReportTeamDeviceUsageUserCount" +"Cmdlets","GetMgReportGetTeamsDeviceUsageUserDetailWithDate.g.cs","v1.0","Get-MgReportGetTeamsDeviceUsageUserDetailWithDate","GET","/reports/getTeamsDeviceUsageUserDetail(date={date})","mismatch","Get-MgReportTeamDeviceUsageUserDetail" +"Cmdlets","GetMgReportGetTeamsDeviceUsageUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsDeviceUsageUserDetailWithPeriod","GET","/reports/getTeamsDeviceUsageUserDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetTeamsTeamActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsTeamActivityCountsWithPeriod","GET","/reports/getTeamsTeamActivityCounts(period='{period}')","mismatch","Get-MgReportTeamActivityCount" +"Cmdlets","GetMgReportGetTeamsTeamActivityDetailWithDate.g.cs","v1.0","Get-MgReportGetTeamsTeamActivityDetailWithDate","GET","/reports/getTeamsTeamActivityDetail(date={date})","mismatch","Get-MgReportTeamActivityDetail" +"Cmdlets","GetMgReportGetTeamsTeamActivityDetailWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsTeamActivityDetailWithPeriod","GET","/reports/getTeamsTeamActivityDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetTeamsTeamActivityDistributionCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsTeamActivityDistributionCountsWithPeriod","GET","/reports/getTeamsTeamActivityDistributionCounts(period='{period}')","mismatch","Get-MgReportTeamActivityDistributionCount" +"Cmdlets","GetMgReportGetTeamsTeamCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsTeamCountsWithPeriod","GET","/reports/getTeamsTeamCounts(period='{period}')","mismatch","Get-MgReportTeamCount" +"Cmdlets","GetMgReportGetTeamsUserActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsUserActivityCountsWithPeriod","GET","/reports/getTeamsUserActivityCounts(period='{period}')","mismatch","Get-MgReportTeamUserActivityCount" +"Cmdlets","GetMgReportGetTeamsUserActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsUserActivityUserCountsWithPeriod","GET","/reports/getTeamsUserActivityUserCounts(period='{period}')","mismatch","Get-MgReportTeamUserActivityUserCount" +"Cmdlets","GetMgReportGetTeamsUserActivityUserDetailWithDate.g.cs","v1.0","Get-MgReportGetTeamsUserActivityUserDetailWithDate","GET","/reports/getTeamsUserActivityUserDetail(date={date})","mismatch","Get-MgReportTeamUserActivityUserDetail" +"Cmdlets","GetMgReportGetTeamsUserActivityUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsUserActivityUserDetailWithPeriod","GET","/reports/getTeamsUserActivityUserDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgReportGetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTime","GET","/reports/getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})","mismatch","Get-MgReportUserArchivedPrintJob" +"Cmdlets","GetMgReportGetYammerActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetYammerActivityCountsWithPeriod","GET","/reports/getYammerActivityCounts(period='{period}')","mismatch","Get-MgReportYammerActivityCount" +"Cmdlets","GetMgReportGetYammerActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetYammerActivityUserCountsWithPeriod","GET","/reports/getYammerActivityUserCounts(period='{period}')","mismatch","Get-MgReportYammerActivityUserCount" +"Cmdlets","GetMgReportGetYammerActivityUserDetailWithDate.g.cs","v1.0","Get-MgReportGetYammerActivityUserDetailWithDate","GET","/reports/getYammerActivityUserDetail(date={date})","mismatch","Get-MgReportYammerActivityUserDetail" +"Cmdlets","GetMgReportGetYammerActivityUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetYammerActivityUserDetailWithPeriod","GET","/reports/getYammerActivityUserDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetYammerDeviceUsageDistributionUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetYammerDeviceUsageDistributionUserCountsWithPeriod","GET","/reports/getYammerDeviceUsageDistributionUserCounts(period='{period}')","mismatch","Get-MgReportYammerDeviceUsageDistributionUserCount" +"Cmdlets","GetMgReportGetYammerDeviceUsageUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetYammerDeviceUsageUserCountsWithPeriod","GET","/reports/getYammerDeviceUsageUserCounts(period='{period}')","mismatch","Get-MgReportYammerDeviceUsageUserCount" +"Cmdlets","GetMgReportGetYammerDeviceUsageUserDetailWithDate.g.cs","v1.0","Get-MgReportGetYammerDeviceUsageUserDetailWithDate","GET","/reports/getYammerDeviceUsageUserDetail(date={date})","mismatch","Get-MgReportYammerDeviceUsageUserDetail" +"Cmdlets","GetMgReportGetYammerDeviceUsageUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetYammerDeviceUsageUserDetailWithPeriod","GET","/reports/getYammerDeviceUsageUserDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetYammerGroupsActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetYammerGroupsActivityCountsWithPeriod","GET","/reports/getYammerGroupsActivityCounts(period='{period}')","mismatch","Get-MgReportYammerGroupActivityCount" +"Cmdlets","GetMgReportGetYammerGroupsActivityDetailWithDate.g.cs","v1.0","Get-MgReportGetYammerGroupsActivityDetailWithDate","GET","/reports/getYammerGroupsActivityDetail(date={date})","mismatch","Get-MgReportYammerGroupActivityDetail" +"Cmdlets","GetMgReportGetYammerGroupsActivityDetailWithPeriod.g.cs","v1.0","Get-MgReportGetYammerGroupsActivityDetailWithPeriod","GET","/reports/getYammerGroupsActivityDetail(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportGetYammerGroupsActivityGroupCountsWithPeriod.g.cs","v1.0","Get-MgReportGetYammerGroupsActivityGroupCountsWithPeriod","GET","/reports/getYammerGroupsActivityGroupCounts(period='{period}')","mismatch","Get-MgReportYammerGroupActivityGroupCount" +"Cmdlets","GetMgReportManagedDeviceEnrollmentFailureDetails.g.cs","v1.0","Get-MgReportManagedDeviceEnrollmentFailureDetails","GET","/reports/managedDeviceEnrollmentFailureDetails","mismatch","Get-MgReportManagedDeviceEnrollmentFailureDetail" +"Cmdlets","GetMgReportManagedDeviceEnrollmentFailureDetailsWithSkipWithTopWithFilterWithSkipToken.g.cs","v1.0","Get-MgReportManagedDeviceEnrollmentFailureDetailsWithSkipWithTopWithFilterWithSkipToken","GET","/reports/managedDeviceEnrollmentFailureDetails(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')","no-oracle","" +"Cmdlets","GetMgReportManagedDeviceEnrollmentTopFailures.g.cs","v1.0","Get-MgReportManagedDeviceEnrollmentTopFailures","GET","/reports/managedDeviceEnrollmentTopFailures","mismatch","Get-MgReportManagedDeviceEnrollmentTopFailure" +"Cmdlets","GetMgReportManagedDeviceEnrollmentTopFailuresWithPeriod.g.cs","v1.0","Get-MgReportManagedDeviceEnrollmentTopFailuresWithPeriod","GET","/reports/managedDeviceEnrollmentTopFailures(period='{period}')","no-oracle","" +"Cmdlets","GetMgReportMonthlyPrintUsageByPrinter_Get.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByPrinter","GET","/reports/monthlyPrintUsageByPrinter/{param}","matched","Get-MgReportMonthlyPrintUsageByPrinter" +"Cmdlets","GetMgReportMonthlyPrintUsageByPrinter_List.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByPrinter","GET","/reports/monthlyPrintUsageByPrinter","matched","Get-MgReportMonthlyPrintUsageByPrinter" +"Cmdlets","GetMgReportMonthlyPrintUsageByPrinter.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByPrinter","","","dispatcher","" +"Cmdlets","GetMgReportMonthlyPrintUsageByPrinterCount.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByPrinterCount","GET","/reports/monthlyPrintUsageByPrinter/$count","matched","Get-MgReportMonthlyPrintUsageByPrinterCount" +"Cmdlets","GetMgReportMonthlyPrintUsageByUser_Get.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByUser","GET","/reports/monthlyPrintUsageByUser/{param}","matched","Get-MgReportMonthlyPrintUsageByUser" +"Cmdlets","GetMgReportMonthlyPrintUsageByUser_List.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByUser","GET","/reports/monthlyPrintUsageByUser","matched","Get-MgReportMonthlyPrintUsageByUser" +"Cmdlets","GetMgReportMonthlyPrintUsageByUser.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByUser","","","dispatcher","" +"Cmdlets","GetMgReportMonthlyPrintUsageByUserCount.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByUserCount","GET","/reports/monthlyPrintUsageByUser/$count","matched","Get-MgReportMonthlyPrintUsageByUserCount" +"Cmdlets","GetMgReportPartner.g.cs","v1.0","Get-MgReportPartner","GET","/reports/partners","matched","Get-MgReportPartner" +"Cmdlets","GetMgReportPartnerBilling.g.cs","v1.0","Get-MgReportPartnerBilling","GET","/reports/partners/billing","matched","Get-MgReportPartnerBilling" +"Cmdlets","GetMgReportPartnerBillingManifest_Get.g.cs","v1.0","Get-MgReportPartnerBillingManifest","GET","/reports/partners/billing/manifests/{param}","matched","Get-MgReportPartnerBillingManifest" +"Cmdlets","GetMgReportPartnerBillingManifest_List.g.cs","v1.0","Get-MgReportPartnerBillingManifest","GET","/reports/partners/billing/manifests","matched","Get-MgReportPartnerBillingManifest" +"Cmdlets","GetMgReportPartnerBillingManifest.g.cs","v1.0","Get-MgReportPartnerBillingManifest","","","dispatcher","" +"Cmdlets","GetMgReportPartnerBillingManifestCount.g.cs","v1.0","Get-MgReportPartnerBillingManifestCount","GET","/reports/partners/billing/manifests/$count","matched","Get-MgReportPartnerBillingManifestCount" +"Cmdlets","GetMgReportPartnerBillingOperation_Get.g.cs","v1.0","Get-MgReportPartnerBillingOperation","GET","/reports/partners/billing/operations/{param}","matched","Get-MgReportPartnerBillingOperation" +"Cmdlets","GetMgReportPartnerBillingOperation_List.g.cs","v1.0","Get-MgReportPartnerBillingOperation","GET","/reports/partners/billing/operations","matched","Get-MgReportPartnerBillingOperation" +"Cmdlets","GetMgReportPartnerBillingOperation.g.cs","v1.0","Get-MgReportPartnerBillingOperation","","","dispatcher","" +"Cmdlets","GetMgReportPartnerBillingOperationCount.g.cs","v1.0","Get-MgReportPartnerBillingOperationCount","GET","/reports/partners/billing/operations/$count","matched","Get-MgReportPartnerBillingOperationCount" +"Cmdlets","GetMgReportPartnerBillingReconciliation.g.cs","v1.0","Get-MgReportPartnerBillingReconciliation","GET","/reports/partners/billing/reconciliation","matched","Get-MgReportPartnerBillingReconciliation" +"Cmdlets","GetMgReportPartnerBillingReconciliationBilled.g.cs","v1.0","Get-MgReportPartnerBillingReconciliationBilled","GET","/reports/partners/billing/reconciliation/billed","matched","Get-MgReportPartnerBillingReconciliationBilled" +"Cmdlets","GetMgReportPartnerBillingReconciliationUnbilled.g.cs","v1.0","Get-MgReportPartnerBillingReconciliationUnbilled","GET","/reports/partners/billing/reconciliation/unbilled","matched","Get-MgReportPartnerBillingReconciliationUnbilled" +"Cmdlets","GetMgReportPartnerBillingUsage.g.cs","v1.0","Get-MgReportPartnerBillingUsage","GET","/reports/partners/billing/usage","matched","Get-MgReportPartnerBillingUsage" +"Cmdlets","GetMgReportPartnerBillingUsageBilled.g.cs","v1.0","Get-MgReportPartnerBillingUsageBilled","GET","/reports/partners/billing/usage/billed","matched","Get-MgReportPartnerBillingUsageBilled" +"Cmdlets","GetMgReportPartnerBillingUsageUnbilled.g.cs","v1.0","Get-MgReportPartnerBillingUsageUnbilled","GET","/reports/partners/billing/usage/unbilled","matched","Get-MgReportPartnerBillingUsageUnbilled" +"Cmdlets","GetMgReportSecurity.g.cs","v1.0","Get-MgReportSecurity","GET","/reports/security","matched","Get-MgReportSecurity" +"Cmdlets","GetMgReportSecurityGetAttackSimulationRepeatOffenders.g.cs","v1.0","Get-MgReportSecurityGetAttackSimulationRepeatOffenders","GET","/reports/security/getAttackSimulationRepeatOffenders","mismatch","Get-MgReportSecurityAttackSimulationRepeatOffender" +"Cmdlets","GetMgReportSecurityGetAttackSimulationSimulationUserCoverage.g.cs","v1.0","Get-MgReportSecurityGetAttackSimulationSimulationUserCoverage","GET","/reports/security/getAttackSimulationSimulationUserCoverage","mismatch","Get-MgReportSecurityAttackSimulationUserCoverage" +"Cmdlets","GetMgReportSecurityGetAttackSimulationTrainingUserCoverage.g.cs","v1.0","Get-MgReportSecurityGetAttackSimulationTrainingUserCoverage","GET","/reports/security/getAttackSimulationTrainingUserCoverage","mismatch","Get-MgReportSecurityAttackSimulationTrainingUserCoverage" +"Cmdlets","InvokeMgAuditLogSignInConfirmCompromised.g.cs","v1.0","Invoke-MgAuditLogSignInConfirmCompromised","POST","/auditLogs/signIns/confirmCompromised","mismatch","Confirm-MgAuditLogSignInCompromised" +"Cmdlets","InvokeMgAuditLogSignInConfirmSafe.g.cs","v1.0","Invoke-MgAuditLogSignInConfirmSafe","POST","/auditLogs/signIns/confirmSafe","mismatch","Confirm-MgAuditLogSignInSafe" +"Cmdlets","InvokeMgAuditLogSignInDismiss.g.cs","v1.0","Invoke-MgAuditLogSignInDismiss","POST","/auditLogs/signIns/dismiss","mismatch","Invoke-MgDismissAuditLogSignIn" +"Cmdlets","InvokeMgDeviceManagementReportGetCachedReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetCachedReport","POST","/deviceManagement/reports/getCachedReport","mismatch","Get-MgDeviceManagementReportCachedReport" +"Cmdlets","InvokeMgDeviceManagementReportGetCompliancePolicyNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetCompliancePolicyNonComplianceReport","POST","/deviceManagement/reports/getCompliancePolicyNonComplianceReport","mismatch","Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport" +"Cmdlets","InvokeMgDeviceManagementReportGetCompliancePolicyNonComplianceSummaryReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetCompliancePolicyNonComplianceSummaryReport","POST","/deviceManagement/reports/getCompliancePolicyNonComplianceSummaryReport","mismatch","Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport" +"Cmdlets","InvokeMgDeviceManagementReportGetComplianceSettingNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetComplianceSettingNonComplianceReport","POST","/deviceManagement/reports/getComplianceSettingNonComplianceReport","mismatch","Get-MgDeviceManagementReportComplianceSettingNonComplianceReport" +"Cmdlets","InvokeMgDeviceManagementReportGetConfigurationPolicyNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetConfigurationPolicyNonComplianceReport","POST","/deviceManagement/reports/getConfigurationPolicyNonComplianceReport","mismatch","Get-MgDeviceManagementReportConfigurationPolicyNonComplianceReport" +"Cmdlets","InvokeMgDeviceManagementReportGetConfigurationPolicyNonComplianceSummaryReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetConfigurationPolicyNonComplianceSummaryReport","POST","/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport","mismatch","Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport" +"Cmdlets","InvokeMgDeviceManagementReportGetConfigurationSettingNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetConfigurationSettingNonComplianceReport","POST","/deviceManagement/reports/getConfigurationSettingNonComplianceReport","mismatch","Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport" +"Cmdlets","InvokeMgDeviceManagementReportGetDeviceManagementIntentPerSettingContributingProfiles.g.cs","v1.0","Invoke-MgDeviceManagementReportGetDeviceManagementIntentPerSettingContributingProfiles","POST","/deviceManagement/reports/getDeviceManagementIntentPerSettingContributingProfiles","mismatch","Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile" +"Cmdlets","InvokeMgDeviceManagementReportGetDeviceManagementIntentSettingsReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetDeviceManagementIntentSettingsReport","POST","/deviceManagement/reports/getDeviceManagementIntentSettingsReport","mismatch","Get-MgDeviceManagementReportDeviceManagementIntentSettingReport" +"Cmdlets","InvokeMgDeviceManagementReportGetDeviceNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetDeviceNonComplianceReport","POST","/deviceManagement/reports/getDeviceNonComplianceReport","mismatch","Get-MgDeviceManagementReportDeviceNonComplianceReport" +"Cmdlets","InvokeMgDeviceManagementReportGetDevicesWithoutCompliancePolicyReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetDevicesWithoutCompliancePolicyReport","POST","/deviceManagement/reports/getDevicesWithoutCompliancePolicyReport","mismatch","Get-MgDeviceManagementReportDeviceWithoutCompliancePolicyReport" +"Cmdlets","InvokeMgDeviceManagementReportGetHistoricalReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetHistoricalReport","POST","/deviceManagement/reports/getHistoricalReport","mismatch","Get-MgDeviceManagementReportHistoricalReport" +"Cmdlets","InvokeMgDeviceManagementReportGetNoncompliantDevicesAndSettingsReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetNoncompliantDevicesAndSettingsReport","POST","/deviceManagement/reports/getNoncompliantDevicesAndSettingsReport","mismatch","Get-MgDeviceManagementReportNoncompliantDeviceAndSettingReport" +"Cmdlets","InvokeMgDeviceManagementReportGetPolicyNonComplianceMetadata.g.cs","v1.0","Invoke-MgDeviceManagementReportGetPolicyNonComplianceMetadata","POST","/deviceManagement/reports/getPolicyNonComplianceMetadata","mismatch","Get-MgDeviceManagementReportPolicyNonComplianceMetadata" +"Cmdlets","InvokeMgDeviceManagementReportGetPolicyNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetPolicyNonComplianceReport","POST","/deviceManagement/reports/getPolicyNonComplianceReport","mismatch","Get-MgDeviceManagementReportPolicyNonComplianceReport" +"Cmdlets","InvokeMgDeviceManagementReportGetPolicyNonComplianceSummaryReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetPolicyNonComplianceSummaryReport","POST","/deviceManagement/reports/getPolicyNonComplianceSummaryReport","mismatch","Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport" +"Cmdlets","InvokeMgDeviceManagementReportGetReportFilters.g.cs","v1.0","Invoke-MgDeviceManagementReportGetReportFilters","POST","/deviceManagement/reports/getReportFilters","mismatch","Get-MgDeviceManagementReportFilter" +"Cmdlets","InvokeMgDeviceManagementReportGetSettingNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetSettingNonComplianceReport","POST","/deviceManagement/reports/getSettingNonComplianceReport","mismatch","Get-MgDeviceManagementReportSettingNonComplianceReport" +"Cmdlets","InvokeMgDeviceManagementReportRetrieveDeviceAppInstallationStatusReport.g.cs","v1.0","Invoke-MgDeviceManagementReportRetrieveDeviceAppInstallationStatusReport","POST","/deviceManagement/reports/retrieveDeviceAppInstallationStatusReport","mismatch","Get-MgDeviceManagementReportDeviceAppInstallationStatusReport" +"Cmdlets","InvokeMgReportPartnerBillingReconciliationBilledExport.g.cs","v1.0","Invoke-MgReportPartnerBillingReconciliationBilledExport","POST","/reports/partners/billing/reconciliation/billed/export","mismatch","Export-MgReportPartnerBillingReconciliationBilled" +"Cmdlets","InvokeMgReportPartnerBillingReconciliationUnbilledExport.g.cs","v1.0","Invoke-MgReportPartnerBillingReconciliationUnbilledExport","POST","/reports/partners/billing/reconciliation/unbilled/export","mismatch","Export-MgReportPartnerBillingReconciliationUnbilled" +"Cmdlets","InvokeMgReportPartnerBillingUsageBilledExport.g.cs","v1.0","Invoke-MgReportPartnerBillingUsageBilledExport","POST","/reports/partners/billing/usage/billed/export","mismatch","Export-MgReportPartnerBillingUsageBilled" +"Cmdlets","InvokeMgReportPartnerBillingUsageUnbilledExport.g.cs","v1.0","Invoke-MgReportPartnerBillingUsageUnbilledExport","POST","/reports/partners/billing/usage/unbilled/export","mismatch","Export-MgReportPartnerBillingUsageUnbilled" +"Cmdlets","NewMgAuditLogDirectoryAudit.g.cs","v1.0","New-MgAuditLogDirectoryAudit","POST","/auditLogs/directoryAudits","no-oracle","" +"Cmdlets","NewMgAuditLogProvisioning.g.cs","v1.0","New-MgAuditLogProvisioning","POST","/auditLogs/provisioning","no-oracle","" +"Cmdlets","NewMgAuditLogSignIn.g.cs","v1.0","New-MgAuditLogSignIn","POST","/auditLogs/signIns","no-oracle","" +"Cmdlets","NewMgDeviceManagementReportExportJob.g.cs","v1.0","New-MgDeviceManagementReportExportJob","POST","/deviceManagement/reports/exportJobs","no-oracle","" +"Cmdlets","NewMgReportAuthenticationMethodUserRegistrationDetail.g.cs","v1.0","New-MgReportAuthenticationMethodUserRegistrationDetail","POST","/reports/authenticationMethods/userRegistrationDetails","matched","New-MgReportAuthenticationMethodUserRegistrationDetail" +"Cmdlets","NewMgReportDailyPrintUsageByPrinter.g.cs","v1.0","New-MgReportDailyPrintUsageByPrinter","POST","/reports/dailyPrintUsageByPrinter","no-oracle","" +"Cmdlets","NewMgReportDailyPrintUsageByUser.g.cs","v1.0","New-MgReportDailyPrintUsageByUser","POST","/reports/dailyPrintUsageByUser","no-oracle","" +"Cmdlets","NewMgReportMonthlyPrintUsageByPrinter.g.cs","v1.0","New-MgReportMonthlyPrintUsageByPrinter","POST","/reports/monthlyPrintUsageByPrinter","no-oracle","" +"Cmdlets","NewMgReportMonthlyPrintUsageByUser.g.cs","v1.0","New-MgReportMonthlyPrintUsageByUser","POST","/reports/monthlyPrintUsageByUser","no-oracle","" +"Cmdlets","NewMgReportPartnerBillingManifest.g.cs","v1.0","New-MgReportPartnerBillingManifest","POST","/reports/partners/billing/manifests","matched","New-MgReportPartnerBillingManifest" +"Cmdlets","NewMgReportPartnerBillingOperation.g.cs","v1.0","New-MgReportPartnerBillingOperation","POST","/reports/partners/billing/operations","matched","New-MgReportPartnerBillingOperation" +"Cmdlets","RemoveMgAdminReportSetting.g.cs","v1.0","Remove-MgAdminReportSetting","DELETE","/admin/reportSettings","matched","Remove-MgAdminReportSetting" +"Cmdlets","RemoveMgAuditLogDirectoryAudit.g.cs","v1.0","Remove-MgAuditLogDirectoryAudit","DELETE","/auditLogs/directoryAudits/{param}","no-oracle","" +"Cmdlets","RemoveMgAuditLogProvisioning.g.cs","v1.0","Remove-MgAuditLogProvisioning","DELETE","/auditLogs/provisioning/{param}","no-oracle","" +"Cmdlets","RemoveMgAuditLogSignIn.g.cs","v1.0","Remove-MgAuditLogSignIn","DELETE","/auditLogs/signIns/{param}","no-oracle","" +"Cmdlets","RemoveMgDeviceManagementReport.g.cs","v1.0","Remove-MgDeviceManagementReport","DELETE","/deviceManagement/reports","matched","Remove-MgDeviceManagementReport" +"Cmdlets","RemoveMgDeviceManagementReportExportJob.g.cs","v1.0","Remove-MgDeviceManagementReportExportJob","DELETE","/deviceManagement/reports/exportJobs/{param}","no-oracle","" +"Cmdlets","RemoveMgReportAuthenticationMethod.g.cs","v1.0","Remove-MgReportAuthenticationMethod","DELETE","/reports/authenticationMethods","no-oracle","" +"Cmdlets","RemoveMgReportAuthenticationMethodUserRegistrationDetail.g.cs","v1.0","Remove-MgReportAuthenticationMethodUserRegistrationDetail","DELETE","/reports/authenticationMethods/userRegistrationDetails/{param}","matched","Remove-MgReportAuthenticationMethodUserRegistrationDetail" +"Cmdlets","RemoveMgReportDailyPrintUsageByPrinter.g.cs","v1.0","Remove-MgReportDailyPrintUsageByPrinter","DELETE","/reports/dailyPrintUsageByPrinter/{param}","no-oracle","" +"Cmdlets","RemoveMgReportDailyPrintUsageByUser.g.cs","v1.0","Remove-MgReportDailyPrintUsageByUser","DELETE","/reports/dailyPrintUsageByUser/{param}","no-oracle","" +"Cmdlets","RemoveMgReportMonthlyPrintUsageByPrinter.g.cs","v1.0","Remove-MgReportMonthlyPrintUsageByPrinter","DELETE","/reports/monthlyPrintUsageByPrinter/{param}","no-oracle","" +"Cmdlets","RemoveMgReportMonthlyPrintUsageByUser.g.cs","v1.0","Remove-MgReportMonthlyPrintUsageByUser","DELETE","/reports/monthlyPrintUsageByUser/{param}","no-oracle","" +"Cmdlets","RemoveMgReportPartner.g.cs","v1.0","Remove-MgReportPartner","DELETE","/reports/partners","no-oracle","" +"Cmdlets","RemoveMgReportPartnerBilling.g.cs","v1.0","Remove-MgReportPartnerBilling","DELETE","/reports/partners/billing","matched","Remove-MgReportPartnerBilling" +"Cmdlets","RemoveMgReportPartnerBillingManifest.g.cs","v1.0","Remove-MgReportPartnerBillingManifest","DELETE","/reports/partners/billing/manifests/{param}","matched","Remove-MgReportPartnerBillingManifest" +"Cmdlets","RemoveMgReportPartnerBillingOperation.g.cs","v1.0","Remove-MgReportPartnerBillingOperation","DELETE","/reports/partners/billing/operations/{param}","matched","Remove-MgReportPartnerBillingOperation" +"Cmdlets","RemoveMgReportPartnerBillingReconciliation.g.cs","v1.0","Remove-MgReportPartnerBillingReconciliation","DELETE","/reports/partners/billing/reconciliation","matched","Remove-MgReportPartnerBillingReconciliation" +"Cmdlets","RemoveMgReportPartnerBillingReconciliationBilled.g.cs","v1.0","Remove-MgReportPartnerBillingReconciliationBilled","DELETE","/reports/partners/billing/reconciliation/billed","matched","Remove-MgReportPartnerBillingReconciliationBilled" +"Cmdlets","RemoveMgReportPartnerBillingReconciliationUnbilled.g.cs","v1.0","Remove-MgReportPartnerBillingReconciliationUnbilled","DELETE","/reports/partners/billing/reconciliation/unbilled","matched","Remove-MgReportPartnerBillingReconciliationUnbilled" +"Cmdlets","RemoveMgReportPartnerBillingUsage.g.cs","v1.0","Remove-MgReportPartnerBillingUsage","DELETE","/reports/partners/billing/usage","matched","Remove-MgReportPartnerBillingUsage" +"Cmdlets","RemoveMgReportPartnerBillingUsageBilled.g.cs","v1.0","Remove-MgReportPartnerBillingUsageBilled","DELETE","/reports/partners/billing/usage/billed","matched","Remove-MgReportPartnerBillingUsageBilled" +"Cmdlets","RemoveMgReportPartnerBillingUsageUnbilled.g.cs","v1.0","Remove-MgReportPartnerBillingUsageUnbilled","DELETE","/reports/partners/billing/usage/unbilled","matched","Remove-MgReportPartnerBillingUsageUnbilled" +"Cmdlets","RemoveMgReportSecurity.g.cs","v1.0","Remove-MgReportSecurity","DELETE","/reports/security","no-oracle","" +"Cmdlets","UpdateMgAdminReportSetting.g.cs","v1.0","Update-MgAdminReportSetting","PATCH","/admin/reportSettings","matched","Update-MgAdminReportSetting" +"Cmdlets","UpdateMgAuditLog.g.cs","v1.0","Update-MgAuditLog","PATCH","/auditLogs","no-oracle","" +"Cmdlets","UpdateMgAuditLogDirectoryAudit.g.cs","v1.0","Update-MgAuditLogDirectoryAudit","PATCH","/auditLogs/directoryAudits/{param}","no-oracle","" +"Cmdlets","UpdateMgAuditLogProvisioning.g.cs","v1.0","Update-MgAuditLogProvisioning","PATCH","/auditLogs/provisioning/{param}","no-oracle","" +"Cmdlets","UpdateMgAuditLogSignIn.g.cs","v1.0","Update-MgAuditLogSignIn","PATCH","/auditLogs/signIns/{param}","no-oracle","" +"Cmdlets","UpdateMgDeviceManagementReport.g.cs","v1.0","Update-MgDeviceManagementReport","PATCH","/deviceManagement/reports","matched","Update-MgDeviceManagementReport" +"Cmdlets","UpdateMgDeviceManagementReportExportJob.g.cs","v1.0","Update-MgDeviceManagementReportExportJob","PATCH","/deviceManagement/reports/exportJobs/{param}","no-oracle","" +"Cmdlets","UpdateMgReport.g.cs","v1.0","Update-MgReport","PATCH","/reports","no-oracle","" +"Cmdlets","UpdateMgReportAuthenticationMethod.g.cs","v1.0","Update-MgReportAuthenticationMethod","PATCH","/reports/authenticationMethods","no-oracle","" +"Cmdlets","UpdateMgReportAuthenticationMethodUserRegistrationDetail.g.cs","v1.0","Update-MgReportAuthenticationMethodUserRegistrationDetail","PATCH","/reports/authenticationMethods/userRegistrationDetails/{param}","matched","Update-MgReportAuthenticationMethodUserRegistrationDetail" +"Cmdlets","UpdateMgReportDailyPrintUsageByPrinter.g.cs","v1.0","Update-MgReportDailyPrintUsageByPrinter","PATCH","/reports/dailyPrintUsageByPrinter/{param}","no-oracle","" +"Cmdlets","UpdateMgReportDailyPrintUsageByUser.g.cs","v1.0","Update-MgReportDailyPrintUsageByUser","PATCH","/reports/dailyPrintUsageByUser/{param}","no-oracle","" +"Cmdlets","UpdateMgReportMonthlyPrintUsageByPrinter.g.cs","v1.0","Update-MgReportMonthlyPrintUsageByPrinter","PATCH","/reports/monthlyPrintUsageByPrinter/{param}","no-oracle","" +"Cmdlets","UpdateMgReportMonthlyPrintUsageByUser.g.cs","v1.0","Update-MgReportMonthlyPrintUsageByUser","PATCH","/reports/monthlyPrintUsageByUser/{param}","no-oracle","" +"Cmdlets","UpdateMgReportPartner.g.cs","v1.0","Update-MgReportPartner","PATCH","/reports/partners","no-oracle","" +"Cmdlets","UpdateMgReportPartnerBilling.g.cs","v1.0","Update-MgReportPartnerBilling","PATCH","/reports/partners/billing","matched","Update-MgReportPartnerBilling" +"Cmdlets","UpdateMgReportPartnerBillingManifest.g.cs","v1.0","Update-MgReportPartnerBillingManifest","PATCH","/reports/partners/billing/manifests/{param}","matched","Update-MgReportPartnerBillingManifest" +"Cmdlets","UpdateMgReportPartnerBillingOperation.g.cs","v1.0","Update-MgReportPartnerBillingOperation","PATCH","/reports/partners/billing/operations/{param}","matched","Update-MgReportPartnerBillingOperation" +"Cmdlets","UpdateMgReportPartnerBillingReconciliation.g.cs","v1.0","Update-MgReportPartnerBillingReconciliation","PATCH","/reports/partners/billing/reconciliation","matched","Update-MgReportPartnerBillingReconciliation" +"Cmdlets","UpdateMgReportPartnerBillingReconciliationBilled.g.cs","v1.0","Update-MgReportPartnerBillingReconciliationBilled","PATCH","/reports/partners/billing/reconciliation/billed","matched","Update-MgReportPartnerBillingReconciliationBilled" +"Cmdlets","UpdateMgReportPartnerBillingReconciliationUnbilled.g.cs","v1.0","Update-MgReportPartnerBillingReconciliationUnbilled","PATCH","/reports/partners/billing/reconciliation/unbilled","matched","Update-MgReportPartnerBillingReconciliationUnbilled" +"Cmdlets","UpdateMgReportPartnerBillingUsage.g.cs","v1.0","Update-MgReportPartnerBillingUsage","PATCH","/reports/partners/billing/usage","matched","Update-MgReportPartnerBillingUsage" +"Cmdlets","UpdateMgReportPartnerBillingUsageBilled.g.cs","v1.0","Update-MgReportPartnerBillingUsageBilled","PATCH","/reports/partners/billing/usage/billed","matched","Update-MgReportPartnerBillingUsageBilled" +"Cmdlets","UpdateMgReportPartnerBillingUsageUnbilled.g.cs","v1.0","Update-MgReportPartnerBillingUsageUnbilled","PATCH","/reports/partners/billing/usage/unbilled","matched","Update-MgReportPartnerBillingUsageUnbilled" +"Cmdlets","UpdateMgReportSecurity.g.cs","v1.0","Update-MgReportSecurity","PATCH","/reports/security","no-oracle","" +"Cmdlets","GetMgSchemaExtension_Get.g.cs","v1.0","Get-MgSchemaExtension","GET","/schemaExtensions/{param}","matched","Get-MgSchemaExtension" +"Cmdlets","GetMgSchemaExtension_List.g.cs","v1.0","Get-MgSchemaExtension","GET","/schemaExtensions","matched","Get-MgSchemaExtension" +"Cmdlets","GetMgSchemaExtension.g.cs","v1.0","Get-MgSchemaExtension","","","dispatcher","" +"Cmdlets","GetMgSchemaExtensionCount.g.cs","v1.0","Get-MgSchemaExtensionCount","GET","/schemaExtensions/$count","matched","Get-MgSchemaExtensionCount" +"Cmdlets","NewMgSchemaExtension.g.cs","v1.0","New-MgSchemaExtension","POST","/schemaExtensions","matched","New-MgSchemaExtension" +"Cmdlets","RemoveMgSchemaExtension.g.cs","v1.0","Remove-MgSchemaExtension","DELETE","/schemaExtensions/{param}","matched","Remove-MgSchemaExtension" +"Cmdlets","UpdateMgSchemaExtension.g.cs","v1.0","Update-MgSchemaExtension","PATCH","/schemaExtensions/{param}","matched","Update-MgSchemaExtension" +"Cmdlets","GetMgExternal.g.cs","v1.0","Get-MgExternal","GET","/external","matched","Get-MgExternal" +"Cmdlets","GetMgExternalConnection_Get.g.cs","v1.0","Get-MgExternalConnection","GET","/external/connections/{param}","matched","Get-MgExternalConnection" +"Cmdlets","GetMgExternalConnection_List.g.cs","v1.0","Get-MgExternalConnection","GET","/external/connections","matched","Get-MgExternalConnection" +"Cmdlets","GetMgExternalConnection.g.cs","v1.0","Get-MgExternalConnection","","","dispatcher","" +"Cmdlets","GetMgExternalConnectionCount.g.cs","v1.0","Get-MgExternalConnectionCount","GET","/external/connections/$count","matched","Get-MgExternalConnectionCount" +"Cmdlets","GetMgExternalConnectionGroup_Get.g.cs","v1.0","Get-MgExternalConnectionGroup","GET","/external/connections/{param}/groups/{param}","matched","Get-MgExternalConnectionGroup" +"Cmdlets","GetMgExternalConnectionGroup_List.g.cs","v1.0","Get-MgExternalConnectionGroup","GET","/external/connections/{param}/groups","matched","Get-MgExternalConnectionGroup" +"Cmdlets","GetMgExternalConnectionGroup.g.cs","v1.0","Get-MgExternalConnectionGroup","","","dispatcher","" +"Cmdlets","GetMgExternalConnectionGroupCount.g.cs","v1.0","Get-MgExternalConnectionGroupCount","GET","/external/connections/{param}/groups/$count","matched","Get-MgExternalConnectionGroupCount" +"Cmdlets","GetMgExternalConnectionGroupMember_Get.g.cs","v1.0","Get-MgExternalConnectionGroupMember","GET","/external/connections/{param}/groups/{param}/members/{param}","matched","Get-MgExternalConnectionGroupMember" +"Cmdlets","GetMgExternalConnectionGroupMember_List.g.cs","v1.0","Get-MgExternalConnectionGroupMember","GET","/external/connections/{param}/groups/{param}/members","matched","Get-MgExternalConnectionGroupMember" +"Cmdlets","GetMgExternalConnectionGroupMember.g.cs","v1.0","Get-MgExternalConnectionGroupMember","","","dispatcher","" +"Cmdlets","GetMgExternalConnectionGroupMemberCount.g.cs","v1.0","Get-MgExternalConnectionGroupMemberCount","GET","/external/connections/{param}/groups/{param}/members/$count","matched","Get-MgExternalConnectionGroupMemberCount" +"Cmdlets","GetMgExternalConnectionItem_Get.g.cs","v1.0","Get-MgExternalConnectionItem","GET","/external/connections/{param}/items/{param}","matched","Get-MgExternalConnectionItem" +"Cmdlets","GetMgExternalConnectionItem_List.g.cs","v1.0","Get-MgExternalConnectionItem","GET","/external/connections/{param}/items","matched","Get-MgExternalConnectionItem" +"Cmdlets","GetMgExternalConnectionItem.g.cs","v1.0","Get-MgExternalConnectionItem","","","dispatcher","" +"Cmdlets","GetMgExternalConnectionItemActivity_Get.g.cs","v1.0","Get-MgExternalConnectionItemActivity","GET","/external/connections/{param}/items/{param}/activities/{param}","matched","Get-MgExternalConnectionItemActivity" +"Cmdlets","GetMgExternalConnectionItemActivity_List.g.cs","v1.0","Get-MgExternalConnectionItemActivity","GET","/external/connections/{param}/items/{param}/activities","matched","Get-MgExternalConnectionItemActivity" +"Cmdlets","GetMgExternalConnectionItemActivity.g.cs","v1.0","Get-MgExternalConnectionItemActivity","","","dispatcher","" +"Cmdlets","GetMgExternalConnectionItemActivityCount.g.cs","v1.0","Get-MgExternalConnectionItemActivityCount","GET","/external/connections/{param}/items/{param}/activities/$count","matched","Get-MgExternalConnectionItemActivityCount" +"Cmdlets","GetMgExternalConnectionItemActivityPerformedBy.g.cs","v1.0","Get-MgExternalConnectionItemActivityPerformedBy","GET","/external/connections/{param}/items/{param}/activities/{param}/performedBy","matched","Get-MgExternalConnectionItemActivityPerformedBy" +"Cmdlets","GetMgExternalConnectionItemCount.g.cs","v1.0","Get-MgExternalConnectionItemCount","GET","/external/connections/{param}/items/$count","matched","Get-MgExternalConnectionItemCount" +"Cmdlets","GetMgExternalConnectionOperation_Get.g.cs","v1.0","Get-MgExternalConnectionOperation","GET","/external/connections/{param}/operations/{param}","matched","Get-MgExternalConnectionOperation" +"Cmdlets","GetMgExternalConnectionOperation_List.g.cs","v1.0","Get-MgExternalConnectionOperation","GET","/external/connections/{param}/operations","matched","Get-MgExternalConnectionOperation" +"Cmdlets","GetMgExternalConnectionOperation.g.cs","v1.0","Get-MgExternalConnectionOperation","","","dispatcher","" +"Cmdlets","GetMgExternalConnectionOperationCount.g.cs","v1.0","Get-MgExternalConnectionOperationCount","GET","/external/connections/{param}/operations/$count","matched","Get-MgExternalConnectionOperationCount" +"Cmdlets","GetMgExternalConnectionSchema.g.cs","v1.0","Get-MgExternalConnectionSchema","GET","/external/connections/{param}/schema","matched","Get-MgExternalConnectionSchema" +"Cmdlets","GetMgSearch.g.cs","v1.0","Get-MgSearch","GET","/search","matched","Get-MgSearchEntity" +"Cmdlets","GetMgSearchAcronym_Get.g.cs","v1.0","Get-MgSearchAcronym","GET","/search/acronyms/{param}","matched","Get-MgSearchAcronym" +"Cmdlets","GetMgSearchAcronym_List.g.cs","v1.0","Get-MgSearchAcronym","GET","/search/acronyms","matched","Get-MgSearchAcronym" +"Cmdlets","GetMgSearchAcronym.g.cs","v1.0","Get-MgSearchAcronym","","","dispatcher","" +"Cmdlets","GetMgSearchAcronymCount.g.cs","v1.0","Get-MgSearchAcronymCount","GET","/search/acronyms/$count","matched","Get-MgSearchAcronymCount" +"Cmdlets","GetMgSearchBookmark_Get.g.cs","v1.0","Get-MgSearchBookmark","GET","/search/bookmarks/{param}","matched","Get-MgSearchBookmark" +"Cmdlets","GetMgSearchBookmark_List.g.cs","v1.0","Get-MgSearchBookmark","GET","/search/bookmarks","matched","Get-MgSearchBookmark" +"Cmdlets","GetMgSearchBookmark.g.cs","v1.0","Get-MgSearchBookmark","","","dispatcher","" +"Cmdlets","GetMgSearchBookmarkCount.g.cs","v1.0","Get-MgSearchBookmarkCount","GET","/search/bookmarks/$count","matched","Get-MgSearchBookmarkCount" +"Cmdlets","GetMgSearchQna_Get.g.cs","v1.0","Get-MgSearchQna","GET","/search/qnas/{param}","matched","Get-MgSearchQna" +"Cmdlets","GetMgSearchQna_List.g.cs","v1.0","Get-MgSearchQna","GET","/search/qnas","matched","Get-MgSearchQna" +"Cmdlets","GetMgSearchQna.g.cs","v1.0","Get-MgSearchQna","","","dispatcher","" +"Cmdlets","GetMgSearchQnaCount.g.cs","v1.0","Get-MgSearchQnaCount","GET","/search/qnas/$count","matched","Get-MgSearchQnaCount" +"Cmdlets","InvokeMgExternalConnectionItemAddActivities.g.cs","v1.0","Invoke-MgExternalConnectionItemAddActivities","POST","/external/connections/{param}/items/{param}/addActivities","mismatch","Add-MgExternalConnectionItemActivity" +"Cmdlets","InvokeMgSearchQuery.g.cs","v1.0","Invoke-MgSearchQuery","POST","/search/query","mismatch","Invoke-MgQuerySearch" +"Cmdlets","NewMgExternalConnection.g.cs","v1.0","New-MgExternalConnection","POST","/external/connections","matched","New-MgExternalConnection" +"Cmdlets","NewMgExternalConnectionGroup.g.cs","v1.0","New-MgExternalConnectionGroup","POST","/external/connections/{param}/groups","matched","New-MgExternalConnectionGroup" +"Cmdlets","NewMgExternalConnectionGroupMember.g.cs","v1.0","New-MgExternalConnectionGroupMember","POST","/external/connections/{param}/groups/{param}/members","matched","New-MgExternalConnectionGroupMember" +"Cmdlets","NewMgExternalConnectionItem.g.cs","v1.0","New-MgExternalConnectionItem","POST","/external/connections/{param}/items","matched","New-MgExternalConnectionItem" +"Cmdlets","NewMgExternalConnectionItemActivity.g.cs","v1.0","New-MgExternalConnectionItemActivity","POST","/external/connections/{param}/items/{param}/activities","matched","New-MgExternalConnectionItemActivity" +"Cmdlets","NewMgExternalConnectionOperation.g.cs","v1.0","New-MgExternalConnectionOperation","POST","/external/connections/{param}/operations","matched","New-MgExternalConnectionOperation" +"Cmdlets","NewMgSearchAcronym.g.cs","v1.0","New-MgSearchAcronym","POST","/search/acronyms","matched","New-MgSearchAcronym" +"Cmdlets","NewMgSearchBookmark.g.cs","v1.0","New-MgSearchBookmark","POST","/search/bookmarks","matched","New-MgSearchBookmark" +"Cmdlets","NewMgSearchQna.g.cs","v1.0","New-MgSearchQna","POST","/search/qnas","matched","New-MgSearchQna" +"Cmdlets","RemoveMgExternalConnection.g.cs","v1.0","Remove-MgExternalConnection","DELETE","/external/connections/{param}","matched","Remove-MgExternalConnection" +"Cmdlets","RemoveMgExternalConnectionGroup.g.cs","v1.0","Remove-MgExternalConnectionGroup","DELETE","/external/connections/{param}/groups/{param}","matched","Remove-MgExternalConnectionGroup" +"Cmdlets","RemoveMgExternalConnectionGroupMember.g.cs","v1.0","Remove-MgExternalConnectionGroupMember","DELETE","/external/connections/{param}/groups/{param}/members/{param}","matched","Remove-MgExternalConnectionGroupMember" +"Cmdlets","RemoveMgExternalConnectionItem.g.cs","v1.0","Remove-MgExternalConnectionItem","DELETE","/external/connections/{param}/items/{param}","matched","Remove-MgExternalConnectionItem" +"Cmdlets","RemoveMgExternalConnectionItemActivity.g.cs","v1.0","Remove-MgExternalConnectionItemActivity","DELETE","/external/connections/{param}/items/{param}/activities/{param}","matched","Remove-MgExternalConnectionItemActivity" +"Cmdlets","RemoveMgExternalConnectionOperation.g.cs","v1.0","Remove-MgExternalConnectionOperation","DELETE","/external/connections/{param}/operations/{param}","matched","Remove-MgExternalConnectionOperation" +"Cmdlets","RemoveMgSearchAcronym.g.cs","v1.0","Remove-MgSearchAcronym","DELETE","/search/acronyms/{param}","matched","Remove-MgSearchAcronym" +"Cmdlets","RemoveMgSearchBookmark.g.cs","v1.0","Remove-MgSearchBookmark","DELETE","/search/bookmarks/{param}","matched","Remove-MgSearchBookmark" +"Cmdlets","RemoveMgSearchQna.g.cs","v1.0","Remove-MgSearchQna","DELETE","/search/qnas/{param}","matched","Remove-MgSearchQna" +"Cmdlets","SetMgExternalConnectionItem.g.cs","v1.0","Set-MgExternalConnectionItem","PUT","/external/connections/{param}/items/{param}","matched","Set-MgExternalConnectionItem" +"Cmdlets","UpdateMgExternal.g.cs","v1.0","Update-MgExternal","PATCH","/external","matched","Update-MgExternal" +"Cmdlets","UpdateMgExternalConnection.g.cs","v1.0","Update-MgExternalConnection","PATCH","/external/connections/{param}","matched","Update-MgExternalConnection" +"Cmdlets","UpdateMgExternalConnectionGroup.g.cs","v1.0","Update-MgExternalConnectionGroup","PATCH","/external/connections/{param}/groups/{param}","matched","Update-MgExternalConnectionGroup" +"Cmdlets","UpdateMgExternalConnectionGroupMember.g.cs","v1.0","Update-MgExternalConnectionGroupMember","PATCH","/external/connections/{param}/groups/{param}/members/{param}","matched","Update-MgExternalConnectionGroupMember" +"Cmdlets","UpdateMgExternalConnectionItemActivity.g.cs","v1.0","Update-MgExternalConnectionItemActivity","PATCH","/external/connections/{param}/items/{param}/activities/{param}","matched","Update-MgExternalConnectionItemActivity" +"Cmdlets","UpdateMgExternalConnectionOperation.g.cs","v1.0","Update-MgExternalConnectionOperation","PATCH","/external/connections/{param}/operations/{param}","matched","Update-MgExternalConnectionOperation" +"Cmdlets","UpdateMgExternalConnectionSchema.g.cs","v1.0","Update-MgExternalConnectionSchema","PATCH","/external/connections/{param}/schema","matched","Update-MgExternalConnectionSchema" +"Cmdlets","UpdateMgSearch.g.cs","v1.0","Update-MgSearch","PATCH","/search","matched","Update-MgSearchEntity" +"Cmdlets","UpdateMgSearchAcronym.g.cs","v1.0","Update-MgSearchAcronym","PATCH","/search/acronyms/{param}","matched","Update-MgSearchAcronym" +"Cmdlets","UpdateMgSearchBookmark.g.cs","v1.0","Update-MgSearchBookmark","PATCH","/search/bookmarks/{param}","matched","Update-MgSearchBookmark" +"Cmdlets","UpdateMgSearchQna.g.cs","v1.0","Update-MgSearchQna","PATCH","/search/qnas/{param}","matched","Update-MgSearchQna" +"Cmdlets","GetMgSecurity.g.cs","v1.0","Get-MgSecurity","GET","/security","no-oracle","" +"Cmdlets","GetMgSecurityAlert_Get.g.cs","v1.0","Get-MgSecurityAlert","GET","/security/alerts/{param}","matched","Get-MgSecurityAlert" +"Cmdlets","GetMgSecurityAlert_List.g.cs","v1.0","Get-MgSecurityAlert","GET","/security/alerts","matched","Get-MgSecurityAlert" +"Cmdlets","GetMgSecurityAlert.g.cs","v1.0","Get-MgSecurityAlert","","","dispatcher","" +"Cmdlets","GetMgSecurityAlertCount.g.cs","v1.0","Get-MgSecurityAlertCount","GET","/security/alerts/$count","matched","Get-MgSecurityAlertCount" +"Cmdlets","GetMgSecurityAlertV2_Get.g.cs","v1.0","Get-MgSecurityAlertV2","GET","/security/alerts_v2/{param}","matched","Get-MgSecurityAlertV2" +"Cmdlets","GetMgSecurityAlertV2_List.g.cs","v1.0","Get-MgSecurityAlertV2","GET","/security/alerts_v2","matched","Get-MgSecurityAlertV2" +"Cmdlets","GetMgSecurityAlertV2.g.cs","v1.0","Get-MgSecurityAlertV2","","","dispatcher","" +"Cmdlets","GetMgSecurityAlertV2CommentCount.g.cs","v1.0","Get-MgSecurityAlertV2CommentCount","GET","/security/alerts_v2/{param}/comments/$count","mismatch","Invoke-MgCommentSecurityAlert" +"Cmdlets","GetMgSecurityAlertV2Count.g.cs","v1.0","Get-MgSecurityAlertV2Count","GET","/security/alerts_v2/$count","matched","Get-MgSecurityAlertV2Count" +"Cmdlets","GetMgSecurityAttackSimulation_Get.g.cs","v1.0","Get-MgSecurityAttackSimulation","GET","/security/attackSimulation/simulations/{param}","matched","Get-MgSecurityAttackSimulation" +"Cmdlets","GetMgSecurityAttackSimulation_List.g.cs","v1.0","Get-MgSecurityAttackSimulation","GET","/security/attackSimulation/simulations","matched","Get-MgSecurityAttackSimulation" +"Cmdlets","GetMgSecurityAttackSimulation.g.cs","v1.0","Get-MgSecurityAttackSimulation","","","dispatcher","" +"Cmdlets","GetMgSecurityAttackSimulationAutomation_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomation","GET","/security/attackSimulation/simulationAutomations/{param}","matched","Get-MgSecurityAttackSimulationAutomation" +"Cmdlets","GetMgSecurityAttackSimulationAutomation_List.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomation","GET","/security/attackSimulation/simulationAutomations","matched","Get-MgSecurityAttackSimulationAutomation" +"Cmdlets","GetMgSecurityAttackSimulationAutomation.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomation","","","dispatcher","" +"Cmdlets","GetMgSecurityAttackSimulationAutomationCount.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomationCount","GET","/security/attackSimulation/simulationAutomations/$count","matched","Get-MgSecurityAttackSimulationAutomationCount" +"Cmdlets","GetMgSecurityAttackSimulationAutomationRun_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomationRun","GET","/security/attackSimulation/simulationAutomations/{param}/runs/{param}","matched","Get-MgSecurityAttackSimulationAutomationRun" +"Cmdlets","GetMgSecurityAttackSimulationAutomationRun_List.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomationRun","GET","/security/attackSimulation/simulationAutomations/{param}/runs","matched","Get-MgSecurityAttackSimulationAutomationRun" +"Cmdlets","GetMgSecurityAttackSimulationAutomationRun.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomationRun","","","dispatcher","" +"Cmdlets","GetMgSecurityAttackSimulationAutomationRunCount.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomationRunCount","GET","/security/attackSimulation/simulationAutomations/{param}/runs/$count","matched","Get-MgSecurityAttackSimulationAutomationRunCount" +"Cmdlets","GetMgSecurityAttackSimulationCount.g.cs","v1.0","Get-MgSecurityAttackSimulationCount","GET","/security/attackSimulation/simulations/$count","matched","Get-MgSecurityAttackSimulationCount" +"Cmdlets","GetMgSecurityAttackSimulationEndUserNotification_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotification","GET","/security/attackSimulation/endUserNotifications/{param}","matched","Get-MgSecurityAttackSimulationEndUserNotification" +"Cmdlets","GetMgSecurityAttackSimulationEndUserNotification_List.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotification","GET","/security/attackSimulation/endUserNotifications","matched","Get-MgSecurityAttackSimulationEndUserNotification" +"Cmdlets","GetMgSecurityAttackSimulationEndUserNotification.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotification","","","dispatcher","" +"Cmdlets","GetMgSecurityAttackSimulationEndUserNotificationCount.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotificationCount","GET","/security/attackSimulation/endUserNotifications/$count","matched","Get-MgSecurityAttackSimulationEndUserNotificationCount" +"Cmdlets","GetMgSecurityAttackSimulationEndUserNotificationDetail_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotificationDetail","GET","/security/attackSimulation/endUserNotifications/{param}/details/{param}","matched","Get-MgSecurityAttackSimulationEndUserNotificationDetail" +"Cmdlets","GetMgSecurityAttackSimulationEndUserNotificationDetail_List.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotificationDetail","GET","/security/attackSimulation/endUserNotifications/{param}/details","matched","Get-MgSecurityAttackSimulationEndUserNotificationDetail" +"Cmdlets","GetMgSecurityAttackSimulationEndUserNotificationDetail.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotificationDetail","","","dispatcher","" +"Cmdlets","GetMgSecurityAttackSimulationEndUserNotificationDetailCount.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotificationDetailCount","GET","/security/attackSimulation/endUserNotifications/{param}/details/$count","matched","Get-MgSecurityAttackSimulationEndUserNotificationDetailCount" +"Cmdlets","GetMgSecurityAttackSimulationLandingPage_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPage","GET","/security/attackSimulation/landingPages/{param}","matched","Get-MgSecurityAttackSimulationLandingPage" +"Cmdlets","GetMgSecurityAttackSimulationLandingPage_List.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPage","GET","/security/attackSimulation/landingPages","matched","Get-MgSecurityAttackSimulationLandingPage" +"Cmdlets","GetMgSecurityAttackSimulationLandingPage.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPage","","","dispatcher","" +"Cmdlets","GetMgSecurityAttackSimulationLandingPageCount.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPageCount","GET","/security/attackSimulation/landingPages/$count","matched","Get-MgSecurityAttackSimulationLandingPageCount" +"Cmdlets","GetMgSecurityAttackSimulationLandingPageDetail_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPageDetail","GET","/security/attackSimulation/landingPages/{param}/details/{param}","matched","Get-MgSecurityAttackSimulationLandingPageDetail" +"Cmdlets","GetMgSecurityAttackSimulationLandingPageDetail_List.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPageDetail","GET","/security/attackSimulation/landingPages/{param}/details","matched","Get-MgSecurityAttackSimulationLandingPageDetail" +"Cmdlets","GetMgSecurityAttackSimulationLandingPageDetail.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPageDetail","","","dispatcher","" +"Cmdlets","GetMgSecurityAttackSimulationLandingPageDetailCount.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPageDetailCount","GET","/security/attackSimulation/landingPages/{param}/details/$count","matched","Get-MgSecurityAttackSimulationLandingPageDetailCount" +"Cmdlets","GetMgSecurityAttackSimulationLoginPage_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationLoginPage","GET","/security/attackSimulation/loginPages/{param}","matched","Get-MgSecurityAttackSimulationLoginPage" +"Cmdlets","GetMgSecurityAttackSimulationLoginPage_List.g.cs","v1.0","Get-MgSecurityAttackSimulationLoginPage","GET","/security/attackSimulation/loginPages","matched","Get-MgSecurityAttackSimulationLoginPage" +"Cmdlets","GetMgSecurityAttackSimulationLoginPage.g.cs","v1.0","Get-MgSecurityAttackSimulationLoginPage","","","dispatcher","" +"Cmdlets","GetMgSecurityAttackSimulationLoginPageCount.g.cs","v1.0","Get-MgSecurityAttackSimulationLoginPageCount","GET","/security/attackSimulation/loginPages/$count","matched","Get-MgSecurityAttackSimulationLoginPageCount" +"Cmdlets","GetMgSecurityAttackSimulationOperation_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationOperation","GET","/security/attackSimulation/operations/{param}","matched","Get-MgSecurityAttackSimulationOperation" +"Cmdlets","GetMgSecurityAttackSimulationOperation_List.g.cs","v1.0","Get-MgSecurityAttackSimulationOperation","GET","/security/attackSimulation/operations","matched","Get-MgSecurityAttackSimulationOperation" +"Cmdlets","GetMgSecurityAttackSimulationOperation.g.cs","v1.0","Get-MgSecurityAttackSimulationOperation","","","dispatcher","" +"Cmdlets","GetMgSecurityAttackSimulationOperationCount.g.cs","v1.0","Get-MgSecurityAttackSimulationOperationCount","GET","/security/attackSimulation/operations/$count","matched","Get-MgSecurityAttackSimulationOperationCount" +"Cmdlets","GetMgSecurityAttackSimulationPayload_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationPayload","GET","/security/attackSimulation/payloads/{param}","matched","Get-MgSecurityAttackSimulationPayload" +"Cmdlets","GetMgSecurityAttackSimulationPayload_List.g.cs","v1.0","Get-MgSecurityAttackSimulationPayload","GET","/security/attackSimulation/payloads","matched","Get-MgSecurityAttackSimulationPayload" +"Cmdlets","GetMgSecurityAttackSimulationPayload.g.cs","v1.0","Get-MgSecurityAttackSimulationPayload","","","dispatcher","" +"Cmdlets","GetMgSecurityAttackSimulationPayloadCount.g.cs","v1.0","Get-MgSecurityAttackSimulationPayloadCount","GET","/security/attackSimulation/payloads/$count","matched","Get-MgSecurityAttackSimulationPayloadCount" +"Cmdlets","GetMgSecurityAttackSimulationTraining_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationTraining","GET","/security/attackSimulation/trainings/{param}","matched","Get-MgSecurityAttackSimulationTraining" +"Cmdlets","GetMgSecurityAttackSimulationTraining_List.g.cs","v1.0","Get-MgSecurityAttackSimulationTraining","GET","/security/attackSimulation/trainings","matched","Get-MgSecurityAttackSimulationTraining" +"Cmdlets","GetMgSecurityAttackSimulationTraining.g.cs","v1.0","Get-MgSecurityAttackSimulationTraining","","","dispatcher","" +"Cmdlets","GetMgSecurityAttackSimulationTrainingCount.g.cs","v1.0","Get-MgSecurityAttackSimulationTrainingCount","GET","/security/attackSimulation/trainings/$count","matched","Get-MgSecurityAttackSimulationTrainingCount" +"Cmdlets","GetMgSecurityAttackSimulationTrainingLanguageDetail_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationTrainingLanguageDetail","GET","/security/attackSimulation/trainings/{param}/languageDetails/{param}","matched","Get-MgSecurityAttackSimulationTrainingLanguageDetail" +"Cmdlets","GetMgSecurityAttackSimulationTrainingLanguageDetail_List.g.cs","v1.0","Get-MgSecurityAttackSimulationTrainingLanguageDetail","GET","/security/attackSimulation/trainings/{param}/languageDetails","matched","Get-MgSecurityAttackSimulationTrainingLanguageDetail" +"Cmdlets","GetMgSecurityAttackSimulationTrainingLanguageDetail.g.cs","v1.0","Get-MgSecurityAttackSimulationTrainingLanguageDetail","","","dispatcher","" +"Cmdlets","GetMgSecurityAttackSimulationTrainingLanguageDetailCount.g.cs","v1.0","Get-MgSecurityAttackSimulationTrainingLanguageDetailCount","GET","/security/attackSimulation/trainings/{param}/languageDetails/$count","matched","Get-MgSecurityAttackSimulationTrainingLanguageDetailCount" +"Cmdlets","GetMgSecurityAuditLog.g.cs","v1.0","Get-MgSecurityAuditLog","GET","/security/auditLog","matched","Get-MgSecurityAuditLog" +"Cmdlets","GetMgSecurityAuditLogQuery_Get.g.cs","v1.0","Get-MgSecurityAuditLogQuery","GET","/security/auditLog/queries/{param}","matched","Get-MgSecurityAuditLogQuery" +"Cmdlets","GetMgSecurityAuditLogQuery_List.g.cs","v1.0","Get-MgSecurityAuditLogQuery","GET","/security/auditLog/queries","matched","Get-MgSecurityAuditLogQuery" +"Cmdlets","GetMgSecurityAuditLogQuery.g.cs","v1.0","Get-MgSecurityAuditLogQuery","","","dispatcher","" +"Cmdlets","GetMgSecurityAuditLogQueryCount.g.cs","v1.0","Get-MgSecurityAuditLogQueryCount","GET","/security/auditLog/queries/$count","matched","Get-MgSecurityAuditLogQueryCount" +"Cmdlets","GetMgSecurityAuditLogQueryRecord_Get.g.cs","v1.0","Get-MgSecurityAuditLogQueryRecord","GET","/security/auditLog/queries/{param}/records/{param}","matched","Get-MgSecurityAuditLogQueryRecord" +"Cmdlets","GetMgSecurityAuditLogQueryRecord_List.g.cs","v1.0","Get-MgSecurityAuditLogQueryRecord","GET","/security/auditLog/queries/{param}/records","matched","Get-MgSecurityAuditLogQueryRecord" +"Cmdlets","GetMgSecurityAuditLogQueryRecord.g.cs","v1.0","Get-MgSecurityAuditLogQueryRecord","","","dispatcher","" +"Cmdlets","GetMgSecurityAuditLogQueryRecordCount.g.cs","v1.0","Get-MgSecurityAuditLogQueryRecordCount","GET","/security/auditLog/queries/{param}/records/$count","matched","Get-MgSecurityAuditLogQueryRecordCount" +"Cmdlets","GetMgSecurityCase.g.cs","v1.0","Get-MgSecurityCase","GET","/security/cases","matched","Get-MgSecurityCase" +"Cmdlets","GetMgSecurityCaseEdiscoveryCase_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCase","GET","/security/cases/ediscoveryCases/{param}","matched","Get-MgSecurityCaseEdiscoveryCase" +"Cmdlets","GetMgSecurityCaseEdiscoveryCase_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCase","GET","/security/cases/ediscoveryCases","matched","Get-MgSecurityCaseEdiscoveryCase" +"Cmdlets","GetMgSecurityCaseEdiscoveryCase.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCase","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCount","GET","/security/cases/ediscoveryCases/$count","matched","Get-MgSecurityCaseEdiscoveryCaseCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodian_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodian","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseCustodian" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodian_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodian","GET","/security/cases/ediscoveryCases/{param}/custodians","matched","Get-MgSecurityCaseEdiscoveryCaseCustodian" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodian.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodian","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianCount","GET","/security/cases/ediscoveryCases/{param}/custodians/$count","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/lastIndexOperation","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianSiteSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianSiteSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianSiteSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianSiteSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceCount","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/{param}/site","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}/group","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}/group/serviceProvisioningErrors","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianUserSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianUserSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianUserSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseCustodianUserSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSourceCount","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSourceCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseMember_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseMember","GET","/security/cases/ediscoveryCases/{param}/caseMembers/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseMember" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseMember_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseMember","GET","/security/cases/ediscoveryCases/{param}/caseMembers","matched","Get-MgSecurityCaseEdiscoveryCaseMember" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseMember.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseMember","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseMemberCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseMemberCount","GET","/security/cases/ediscoveryCases/{param}/caseMembers/$count","matched","Get-MgSecurityCaseEdiscoveryCaseMemberCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseNoncustodialDataSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseNoncustodialDataSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources","matched","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseNoncustodialDataSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount","GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource","GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource","no-oracle","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation","GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/lastIndexOperation","matched","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseOperation_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseOperation","GET","/security/cases/ediscoveryCases/{param}/operations/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseOperation" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseOperation_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseOperation","GET","/security/cases/ediscoveryCases/{param}/operations","matched","Get-MgSecurityCaseEdiscoveryCaseOperation" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseOperation.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseOperation","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseOperationCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseOperationCount","GET","/security/cases/ediscoveryCases/{param}/operations/$count","matched","Get-MgSecurityCaseEdiscoveryCaseOperationCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseReviewSet_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSet","GET","/security/cases/ediscoveryCases/{param}/reviewSets/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseReviewSet" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseReviewSet_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSet","GET","/security/cases/ediscoveryCases/{param}/reviewSets","matched","Get-MgSecurityCaseEdiscoveryCaseReviewSet" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseReviewSet.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSet","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseReviewSetCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSetCount","GET","/security/cases/ediscoveryCases/{param}/reviewSets/$count","matched","Get-MgSecurityCaseEdiscoveryCaseReviewSetCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseReviewSetQuery_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery","GET","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseReviewSetQuery_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery","GET","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries","matched","Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseReviewSetQuery.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseReviewSetQueryCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSetQueryCount","GET","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/$count","matched","Get-MgSecurityCaseEdiscoveryCaseReviewSetQueryCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearch_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearch","GET","/security/cases/ediscoveryCases/{param}/searches/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseSearch" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearch_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearch","GET","/security/cases/ediscoveryCases/{param}/searches","matched","Get-MgSecurityCaseEdiscoveryCaseSearch" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearch.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearch","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchAdditionalSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchAdditionalSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources","matched","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchAdditionalSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/addToReviewSetOperation","matched","Get-MgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchCount","GET","/security/cases/ediscoveryCases/{param}/searches/$count","matched","Get-MgSecurityCaseEdiscoveryCaseSearchCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchCustodianSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/custodianSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchCustodianSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/custodianSources","matched","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchCustodianSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchCustodianSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSourceCount","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/custodianSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSourceCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/lastEstimateStatisticsOperation","matched","Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchNoncustodialSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/noncustodialSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchNoncustodialSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/noncustodialSources","matched","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/noncustodialSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseSetting.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSetting","GET","/security/cases/ediscoveryCases/{param}/settings","matched","Get-MgSecurityCaseEdiscoveryCaseSetting" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseTag_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTag","GET","/security/cases/ediscoveryCases/{param}/tags/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseTag" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseTag_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTag","GET","/security/cases/ediscoveryCases/{param}/tags","matched","Get-MgSecurityCaseEdiscoveryCaseTag" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseTag.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTag","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseTagAsHierarchy.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagAsHierarchy","GET","/security/cases/ediscoveryCases/{param}/tags/asHierarchy","mismatch","Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseTagChildTag_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagChildTag","GET","/security/cases/ediscoveryCases/{param}/tags/{param}/childTags/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseTagChildTag" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseTagChildTag_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagChildTag","GET","/security/cases/ediscoveryCases/{param}/tags/{param}/childTags","matched","Get-MgSecurityCaseEdiscoveryCaseTagChildTag" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseTagChildTag.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagChildTag","","","dispatcher","" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseTagChildTagCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagChildTagCount","GET","/security/cases/ediscoveryCases/{param}/tags/{param}/childTags/$count","matched","Get-MgSecurityCaseEdiscoveryCaseTagChildTagCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseTagCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagCount","GET","/security/cases/ediscoveryCases/{param}/tags/$count","matched","Get-MgSecurityCaseEdiscoveryCaseTagCount" +"Cmdlets","GetMgSecurityCaseEdiscoveryCaseTagParent.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagParent","GET","/security/cases/ediscoveryCases/{param}/tags/{param}/parent","matched","Get-MgSecurityCaseEdiscoveryCaseTagParent" +"Cmdlets","GetMgSecurityCollaboration.g.cs","v1.0","Get-MgSecurityCollaboration","GET","/security/collaboration","matched","Get-MgSecurityCollaboration" +"Cmdlets","GetMgSecurityCollaborationAnalyzedEmail_Get.g.cs","v1.0","Get-MgSecurityCollaborationAnalyzedEmail","GET","/security/collaboration/analyzedEmails/{param}","matched","Get-MgSecurityCollaborationAnalyzedEmail" +"Cmdlets","GetMgSecurityCollaborationAnalyzedEmail_List.g.cs","v1.0","Get-MgSecurityCollaborationAnalyzedEmail","GET","/security/collaboration/analyzedEmails","matched","Get-MgSecurityCollaborationAnalyzedEmail" +"Cmdlets","GetMgSecurityCollaborationAnalyzedEmail.g.cs","v1.0","Get-MgSecurityCollaborationAnalyzedEmail","","","dispatcher","" +"Cmdlets","GetMgSecurityCollaborationAnalyzedEmailCount.g.cs","v1.0","Get-MgSecurityCollaborationAnalyzedEmailCount","GET","/security/collaboration/analyzedEmails/$count","matched","Get-MgSecurityCollaborationAnalyzedEmailCount" +"Cmdlets","GetMgSecurityDataSecurityAndGovernance.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernance","GET","/security/dataSecurityAndGovernance","matched","Get-MgSecurityDataSecurityAndGovernance" +"Cmdlets","GetMgSecurityDataSecurityAndGovernanceProtectionScope.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceProtectionScope","GET","/security/dataSecurityAndGovernance/protectionScopes","matched","Get-MgSecurityDataSecurityAndGovernanceProtectionScope" +"Cmdlets","GetMgSecurityDataSecurityAndGovernanceSensitivityLabel_Get.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel","GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}","matched","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"Cmdlets","GetMgSecurityDataSecurityAndGovernanceSensitivityLabel_List.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel","GET","/security/dataSecurityAndGovernance/sensitivityLabels","matched","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"Cmdlets","GetMgSecurityDataSecurityAndGovernanceSensitivityLabel.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel","","","dispatcher","" +"Cmdlets","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelComputeInheritanceWithLabelIdsWithLocaleWithContentFormats.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelComputeInheritanceWithLabelIdsWithLocaleWithContentFormats","GET","/security/dataSecurityAndGovernance/sensitivityLabels/computeInheritance(labelIds={labelIds},locale='{locale}',contentFormats={contentFormats})","mismatch","Invoke-MgComputeSecurityDataSecurityAndGovernanceSensitivityLabelInheritance" +"Cmdlets","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelCount.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelCount","GET","/security/dataSecurityAndGovernance/sensitivityLabels/$count","matched","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelCount" +"Cmdlets","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel_Get.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/{param}","matched","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"Cmdlets","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel_List.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels","matched","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"Cmdlets","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","","","dispatcher","" +"Cmdlets","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelComputeInheritanceWithLabelIdsWithLocaleWithContentFormats.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelComputeInheritanceWithLabelIdsWithLocaleWithContentFormats","GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/computeInheritance(labelIds={labelIds},locale='{locale}',contentFormats={contentFormats})","mismatch","Invoke-MgComputeSecurityDataSecurityAndGovernanceSensitivityLabelSublabelInheritance" +"Cmdlets","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelCount.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelCount","GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/$count","matched","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelCount" +"Cmdlets","GetMgSecurityIdentity.g.cs","v1.0","Get-MgSecurityIdentity","GET","/security/identities","matched","Get-MgSecurityIdentity" +"Cmdlets","GetMgSecurityIdentityAccount_Get.g.cs","v1.0","Get-MgSecurityIdentityAccount","GET","/security/identities/identityAccounts/{param}","matched","Get-MgSecurityIdentityAccount" +"Cmdlets","GetMgSecurityIdentityAccount_List.g.cs","v1.0","Get-MgSecurityIdentityAccount","GET","/security/identities/identityAccounts","matched","Get-MgSecurityIdentityAccount" +"Cmdlets","GetMgSecurityIdentityAccount.g.cs","v1.0","Get-MgSecurityIdentityAccount","","","dispatcher","" +"Cmdlets","GetMgSecurityIdentityAccountCount.g.cs","v1.0","Get-MgSecurityIdentityAccountCount","GET","/security/identities/identityAccounts/$count","matched","Get-MgSecurityIdentityAccountCount" +"Cmdlets","GetMgSecurityIdentityHealthIssue_Get.g.cs","v1.0","Get-MgSecurityIdentityHealthIssue","GET","/security/identities/healthIssues/{param}","matched","Get-MgSecurityIdentityHealthIssue" +"Cmdlets","GetMgSecurityIdentityHealthIssue_List.g.cs","v1.0","Get-MgSecurityIdentityHealthIssue","GET","/security/identities/healthIssues","matched","Get-MgSecurityIdentityHealthIssue" +"Cmdlets","GetMgSecurityIdentityHealthIssue.g.cs","v1.0","Get-MgSecurityIdentityHealthIssue","","","dispatcher","" +"Cmdlets","GetMgSecurityIdentityHealthIssueCount.g.cs","v1.0","Get-MgSecurityIdentityHealthIssueCount","GET","/security/identities/healthIssues/$count","matched","Get-MgSecurityIdentityHealthIssueCount" +"Cmdlets","GetMgSecurityIdentitySensor_Get.g.cs","v1.0","Get-MgSecurityIdentitySensor","GET","/security/identities/sensors/{param}","matched","Get-MgSecurityIdentitySensor" +"Cmdlets","GetMgSecurityIdentitySensor_List.g.cs","v1.0","Get-MgSecurityIdentitySensor","GET","/security/identities/sensors","matched","Get-MgSecurityIdentitySensor" +"Cmdlets","GetMgSecurityIdentitySensor.g.cs","v1.0","Get-MgSecurityIdentitySensor","","","dispatcher","" +"Cmdlets","GetMgSecurityIdentitySensorCandidate_Get.g.cs","v1.0","Get-MgSecurityIdentitySensorCandidate","GET","/security/identities/sensorCandidates/{param}","matched","Get-MgSecurityIdentitySensorCandidate" +"Cmdlets","GetMgSecurityIdentitySensorCandidate_List.g.cs","v1.0","Get-MgSecurityIdentitySensorCandidate","GET","/security/identities/sensorCandidates","matched","Get-MgSecurityIdentitySensorCandidate" +"Cmdlets","GetMgSecurityIdentitySensorCandidate.g.cs","v1.0","Get-MgSecurityIdentitySensorCandidate","","","dispatcher","" +"Cmdlets","GetMgSecurityIdentitySensorCandidateActivationConfiguration.g.cs","v1.0","Get-MgSecurityIdentitySensorCandidateActivationConfiguration","GET","/security/identities/sensorCandidateActivationConfiguration","matched","Get-MgSecurityIdentitySensorCandidateActivationConfiguration" +"Cmdlets","GetMgSecurityIdentitySensorCandidateCount.g.cs","v1.0","Get-MgSecurityIdentitySensorCandidateCount","GET","/security/identities/sensorCandidates/$count","matched","Get-MgSecurityIdentitySensorCandidateCount" +"Cmdlets","GetMgSecurityIdentitySensorCount.g.cs","v1.0","Get-MgSecurityIdentitySensorCount","GET","/security/identities/sensors/$count","matched","Get-MgSecurityIdentitySensorCount" +"Cmdlets","GetMgSecurityIdentitySensorGetDeploymentAccessKey.g.cs","v1.0","Get-MgSecurityIdentitySensorGetDeploymentAccessKey","GET","/security/identities/sensors/getDeploymentAccessKey","mismatch","Get-MgSecurityIdentitySensorDeploymentAccessKey" +"Cmdlets","GetMgSecurityIdentitySensorGetDeploymentPackageUri.g.cs","v1.0","Get-MgSecurityIdentitySensorGetDeploymentPackageUri","GET","/security/identities/sensors/getDeploymentPackageUri","mismatch","Get-MgSecurityIdentitySensorDeploymentPackageUri" +"Cmdlets","GetMgSecurityIdentitySensorHealthIssue_Get.g.cs","v1.0","Get-MgSecurityIdentitySensorHealthIssue","GET","/security/identities/sensors/{param}/healthIssues/{param}","matched","Get-MgSecurityIdentitySensorHealthIssue" +"Cmdlets","GetMgSecurityIdentitySensorHealthIssue_List.g.cs","v1.0","Get-MgSecurityIdentitySensorHealthIssue","GET","/security/identities/sensors/{param}/healthIssues","matched","Get-MgSecurityIdentitySensorHealthIssue" +"Cmdlets","GetMgSecurityIdentitySensorHealthIssue.g.cs","v1.0","Get-MgSecurityIdentitySensorHealthIssue","","","dispatcher","" +"Cmdlets","GetMgSecurityIdentitySensorHealthIssueCount.g.cs","v1.0","Get-MgSecurityIdentitySensorHealthIssueCount","GET","/security/identities/sensors/{param}/healthIssues/$count","matched","Get-MgSecurityIdentitySensorHealthIssueCount" +"Cmdlets","GetMgSecurityIdentitySetting.g.cs","v1.0","Get-MgSecurityIdentitySetting","GET","/security/identities/settings","matched","Get-MgSecurityIdentitySetting" +"Cmdlets","GetMgSecurityIdentitySettingAutoAuditingConfiguration.g.cs","v1.0","Get-MgSecurityIdentitySettingAutoAuditingConfiguration","GET","/security/identities/settings/autoAuditingConfiguration","matched","Get-MgSecurityIdentitySettingAutoAuditingConfiguration" +"Cmdlets","GetMgSecurityIncident_Get.g.cs","v1.0","Get-MgSecurityIncident","GET","/security/incidents/{param}","matched","Get-MgSecurityIncident" +"Cmdlets","GetMgSecurityIncident_List.g.cs","v1.0","Get-MgSecurityIncident","GET","/security/incidents","matched","Get-MgSecurityIncident" +"Cmdlets","GetMgSecurityIncident.g.cs","v1.0","Get-MgSecurityIncident","","","dispatcher","" +"Cmdlets","GetMgSecurityIncidentAlert_Get.g.cs","v1.0","Get-MgSecurityIncidentAlert","GET","/security/incidents/{param}/alerts/{param}","matched","Get-MgSecurityIncidentAlert" +"Cmdlets","GetMgSecurityIncidentAlert_List.g.cs","v1.0","Get-MgSecurityIncidentAlert","GET","/security/incidents/{param}/alerts","matched","Get-MgSecurityIncidentAlert" +"Cmdlets","GetMgSecurityIncidentAlert.g.cs","v1.0","Get-MgSecurityIncidentAlert","","","dispatcher","" +"Cmdlets","GetMgSecurityIncidentAlertCommentCount.g.cs","v1.0","Get-MgSecurityIncidentAlertCommentCount","GET","/security/incidents/{param}/alerts/{param}/comments/$count","matched","Get-MgSecurityIncidentAlertCommentCount" +"Cmdlets","GetMgSecurityIncidentAlertCount.g.cs","v1.0","Get-MgSecurityIncidentAlertCount","GET","/security/incidents/{param}/alerts/$count","matched","Get-MgSecurityIncidentAlertCount" +"Cmdlets","GetMgSecurityIncidentCount.g.cs","v1.0","Get-MgSecurityIncidentCount","GET","/security/incidents/$count","matched","Get-MgSecurityIncidentCount" +"Cmdlets","GetMgSecurityLabel.g.cs","v1.0","Get-MgSecurityLabel","GET","/security/labels","matched","Get-MgSecurityLabel" +"Cmdlets","GetMgSecurityLabelAuthority_Get.g.cs","v1.0","Get-MgSecurityLabelAuthority","GET","/security/labels/authorities/{param}","matched","Get-MgSecurityLabelAuthority" +"Cmdlets","GetMgSecurityLabelAuthority_List.g.cs","v1.0","Get-MgSecurityLabelAuthority","GET","/security/labels/authorities","matched","Get-MgSecurityLabelAuthority" +"Cmdlets","GetMgSecurityLabelAuthority.g.cs","v1.0","Get-MgSecurityLabelAuthority","","","dispatcher","" +"Cmdlets","GetMgSecurityLabelAuthorityCount.g.cs","v1.0","Get-MgSecurityLabelAuthorityCount","GET","/security/labels/authorities/$count","matched","Get-MgSecurityLabelAuthorityCount" +"Cmdlets","GetMgSecurityLabelCategory_Get.g.cs","v1.0","Get-MgSecurityLabelCategory","GET","/security/labels/categories/{param}","matched","Get-MgSecurityLabelCategory" +"Cmdlets","GetMgSecurityLabelCategory_List.g.cs","v1.0","Get-MgSecurityLabelCategory","GET","/security/labels/categories","matched","Get-MgSecurityLabelCategory" +"Cmdlets","GetMgSecurityLabelCategory.g.cs","v1.0","Get-MgSecurityLabelCategory","","","dispatcher","" +"Cmdlets","GetMgSecurityLabelCategoryCount.g.cs","v1.0","Get-MgSecurityLabelCategoryCount","GET","/security/labels/categories/$count","matched","Get-MgSecurityLabelCategoryCount" +"Cmdlets","GetMgSecurityLabelCategorySubcategory_Get.g.cs","v1.0","Get-MgSecurityLabelCategorySubcategory","GET","/security/labels/categories/{param}/subcategories/{param}","matched","Get-MgSecurityLabelCategorySubcategory" +"Cmdlets","GetMgSecurityLabelCategorySubcategory_List.g.cs","v1.0","Get-MgSecurityLabelCategorySubcategory","GET","/security/labels/categories/{param}/subcategories","matched","Get-MgSecurityLabelCategorySubcategory" +"Cmdlets","GetMgSecurityLabelCategorySubcategory.g.cs","v1.0","Get-MgSecurityLabelCategorySubcategory","","","dispatcher","" +"Cmdlets","GetMgSecurityLabelCategorySubcategoryCount.g.cs","v1.0","Get-MgSecurityLabelCategorySubcategoryCount","GET","/security/labels/categories/{param}/subcategories/$count","matched","Get-MgSecurityLabelCategorySubcategoryCount" +"Cmdlets","GetMgSecurityLabelCitation_Get.g.cs","v1.0","Get-MgSecurityLabelCitation","GET","/security/labels/citations/{param}","matched","Get-MgSecurityLabelCitation" +"Cmdlets","GetMgSecurityLabelCitation_List.g.cs","v1.0","Get-MgSecurityLabelCitation","GET","/security/labels/citations","matched","Get-MgSecurityLabelCitation" +"Cmdlets","GetMgSecurityLabelCitation.g.cs","v1.0","Get-MgSecurityLabelCitation","","","dispatcher","" +"Cmdlets","GetMgSecurityLabelCitationCount.g.cs","v1.0","Get-MgSecurityLabelCitationCount","GET","/security/labels/citations/$count","matched","Get-MgSecurityLabelCitationCount" +"Cmdlets","GetMgSecurityLabelDepartment_Get.g.cs","v1.0","Get-MgSecurityLabelDepartment","GET","/security/labels/departments/{param}","matched","Get-MgSecurityLabelDepartment" +"Cmdlets","GetMgSecurityLabelDepartment_List.g.cs","v1.0","Get-MgSecurityLabelDepartment","GET","/security/labels/departments","matched","Get-MgSecurityLabelDepartment" +"Cmdlets","GetMgSecurityLabelDepartment.g.cs","v1.0","Get-MgSecurityLabelDepartment","","","dispatcher","" +"Cmdlets","GetMgSecurityLabelDepartmentCount.g.cs","v1.0","Get-MgSecurityLabelDepartmentCount","GET","/security/labels/departments/$count","matched","Get-MgSecurityLabelDepartmentCount" +"Cmdlets","GetMgSecurityLabelFilePlanReference_Get.g.cs","v1.0","Get-MgSecurityLabelFilePlanReference","GET","/security/labels/filePlanReferences/{param}","matched","Get-MgSecurityLabelFilePlanReference" +"Cmdlets","GetMgSecurityLabelFilePlanReference_List.g.cs","v1.0","Get-MgSecurityLabelFilePlanReference","GET","/security/labels/filePlanReferences","matched","Get-MgSecurityLabelFilePlanReference" +"Cmdlets","GetMgSecurityLabelFilePlanReference.g.cs","v1.0","Get-MgSecurityLabelFilePlanReference","","","dispatcher","" +"Cmdlets","GetMgSecurityLabelFilePlanReferenceCount.g.cs","v1.0","Get-MgSecurityLabelFilePlanReferenceCount","GET","/security/labels/filePlanReferences/$count","matched","Get-MgSecurityLabelFilePlanReferenceCount" +"Cmdlets","GetMgSecurityLabelRetentionLabel_Get.g.cs","v1.0","Get-MgSecurityLabelRetentionLabel","GET","/security/labels/retentionLabels/{param}","matched","Get-MgSecurityLabelRetentionLabel" +"Cmdlets","GetMgSecurityLabelRetentionLabel_List.g.cs","v1.0","Get-MgSecurityLabelRetentionLabel","GET","/security/labels/retentionLabels","matched","Get-MgSecurityLabelRetentionLabel" +"Cmdlets","GetMgSecurityLabelRetentionLabel.g.cs","v1.0","Get-MgSecurityLabelRetentionLabel","","","dispatcher","" +"Cmdlets","GetMgSecurityLabelRetentionLabelCount.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelCount","GET","/security/labels/retentionLabels/$count","matched","Get-MgSecurityLabelRetentionLabelCount" +"Cmdlets","GetMgSecurityLabelRetentionLabelDescriptor.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDescriptor","GET","/security/labels/retentionLabels/{param}/descriptors","matched","Get-MgSecurityLabelRetentionLabelDescriptor" +"Cmdlets","GetMgSecurityLabelRetentionLabelDescriptorAuthorityTemplate.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDescriptorAuthorityTemplate","GET","/security/labels/retentionLabels/{param}/descriptors/authorityTemplate","matched","Get-MgSecurityLabelRetentionLabelDescriptorAuthorityTemplate" +"Cmdlets","GetMgSecurityLabelRetentionLabelDescriptorCategoryTemplate.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDescriptorCategoryTemplate","GET","/security/labels/retentionLabels/{param}/descriptors/categoryTemplate","matched","Get-MgSecurityLabelRetentionLabelDescriptorCategoryTemplate" +"Cmdlets","GetMgSecurityLabelRetentionLabelDescriptorCitationTemplate.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDescriptorCitationTemplate","GET","/security/labels/retentionLabels/{param}/descriptors/citationTemplate","matched","Get-MgSecurityLabelRetentionLabelDescriptorCitationTemplate" +"Cmdlets","GetMgSecurityLabelRetentionLabelDescriptorDepartmentTemplate.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDescriptorDepartmentTemplate","GET","/security/labels/retentionLabels/{param}/descriptors/departmentTemplate","matched","Get-MgSecurityLabelRetentionLabelDescriptorDepartmentTemplate" +"Cmdlets","GetMgSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate","GET","/security/labels/retentionLabels/{param}/descriptors/filePlanReferenceTemplate","matched","Get-MgSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate" +"Cmdlets","GetMgSecurityLabelRetentionLabelDispositionReviewStage_Get.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDispositionReviewStage","GET","/security/labels/retentionLabels/{param}/dispositionReviewStages/{param}","matched","Get-MgSecurityLabelRetentionLabelDispositionReviewStage" +"Cmdlets","GetMgSecurityLabelRetentionLabelDispositionReviewStage_List.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDispositionReviewStage","GET","/security/labels/retentionLabels/{param}/dispositionReviewStages","matched","Get-MgSecurityLabelRetentionLabelDispositionReviewStage" +"Cmdlets","GetMgSecurityLabelRetentionLabelDispositionReviewStage.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDispositionReviewStage","","","dispatcher","" +"Cmdlets","GetMgSecurityLabelRetentionLabelDispositionReviewStageCount.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDispositionReviewStageCount","GET","/security/labels/retentionLabels/{param}/dispositionReviewStages/$count","matched","Get-MgSecurityLabelRetentionLabelDispositionReviewStageCount" +"Cmdlets","GetMgSecurityLabelRetentionLabelRetentionEventType.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelRetentionEventType","GET","/security/labels/retentionLabels/{param}/retentionEventType","mismatch","Get-MgSecurityLabelRetentionEventType" +"Cmdlets","GetMgSecuritySecureScore_Get.g.cs","v1.0","Get-MgSecuritySecureScore","GET","/security/secureScores/{param}","matched","Get-MgSecuritySecureScore" +"Cmdlets","GetMgSecuritySecureScore_List.g.cs","v1.0","Get-MgSecuritySecureScore","GET","/security/secureScores","matched","Get-MgSecuritySecureScore" +"Cmdlets","GetMgSecuritySecureScore.g.cs","v1.0","Get-MgSecuritySecureScore","","","dispatcher","" +"Cmdlets","GetMgSecuritySecureScoreControlProfile_Get.g.cs","v1.0","Get-MgSecuritySecureScoreControlProfile","GET","/security/secureScoreControlProfiles/{param}","matched","Get-MgSecuritySecureScoreControlProfile" +"Cmdlets","GetMgSecuritySecureScoreControlProfile_List.g.cs","v1.0","Get-MgSecuritySecureScoreControlProfile","GET","/security/secureScoreControlProfiles","matched","Get-MgSecuritySecureScoreControlProfile" +"Cmdlets","GetMgSecuritySecureScoreControlProfile.g.cs","v1.0","Get-MgSecuritySecureScoreControlProfile","","","dispatcher","" +"Cmdlets","GetMgSecuritySecureScoreControlProfileCount.g.cs","v1.0","Get-MgSecuritySecureScoreControlProfileCount","GET","/security/secureScoreControlProfiles/$count","matched","Get-MgSecuritySecureScoreControlProfileCount" +"Cmdlets","GetMgSecuritySecureScoreCount.g.cs","v1.0","Get-MgSecuritySecureScoreCount","GET","/security/secureScores/$count","matched","Get-MgSecuritySecureScoreCount" +"Cmdlets","GetMgSecuritySubjectRightsRequest_Get.g.cs","v1.0","Get-MgSecuritySubjectRightsRequest","GET","/security/subjectRightsRequests/{param}","matched","Get-MgSecuritySubjectRightsRequest" +"Cmdlets","GetMgSecuritySubjectRightsRequest_List.g.cs","v1.0","Get-MgSecuritySubjectRightsRequest","GET","/security/subjectRightsRequests","matched","Get-MgSecuritySubjectRightsRequest" +"Cmdlets","GetMgSecuritySubjectRightsRequest.g.cs","v1.0","Get-MgSecuritySubjectRightsRequest","","","dispatcher","" +"Cmdlets","GetMgSecuritySubjectRightsRequestApprover_Get.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApprover","GET","/security/subjectRightsRequests/{param}/approvers/{param}","matched","Get-MgSecuritySubjectRightsRequestApprover" +"Cmdlets","GetMgSecuritySubjectRightsRequestApprover_List.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApprover","GET","/security/subjectRightsRequests/{param}/approvers","matched","Get-MgSecuritySubjectRightsRequestApprover" +"Cmdlets","GetMgSecuritySubjectRightsRequestApprover.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApprover","","","dispatcher","" +"Cmdlets","GetMgSecuritySubjectRightsRequestApproverCount.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApproverCount","GET","/security/subjectRightsRequests/{param}/approvers/$count","matched","Get-MgSecuritySubjectRightsRequestApproverCount" +"Cmdlets","GetMgSecuritySubjectRightsRequestApproverMailboxSetting.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApproverMailboxSetting","GET","/security/subjectRightsRequests/{param}/approvers/{param}/mailboxSettings","matched","Get-MgSecuritySubjectRightsRequestApproverMailboxSetting" +"Cmdlets","GetMgSecuritySubjectRightsRequestApproverServiceProvisioningError.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningError","GET","/security/subjectRightsRequests/{param}/approvers/{param}/serviceProvisioningErrors","matched","Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningError" +"Cmdlets","GetMgSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount","GET","/security/subjectRightsRequests/{param}/approvers/{param}/serviceProvisioningErrors/$count","matched","Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount" +"Cmdlets","GetMgSecuritySubjectRightsRequestCollaborator_Get.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaborator","GET","/security/subjectRightsRequests/{param}/collaborators/{param}","matched","Get-MgSecuritySubjectRightsRequestCollaborator" +"Cmdlets","GetMgSecuritySubjectRightsRequestCollaborator_List.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaborator","GET","/security/subjectRightsRequests/{param}/collaborators","matched","Get-MgSecuritySubjectRightsRequestCollaborator" +"Cmdlets","GetMgSecuritySubjectRightsRequestCollaborator.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaborator","","","dispatcher","" +"Cmdlets","GetMgSecuritySubjectRightsRequestCollaboratorCount.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaboratorCount","GET","/security/subjectRightsRequests/{param}/collaborators/$count","matched","Get-MgSecuritySubjectRightsRequestCollaboratorCount" +"Cmdlets","GetMgSecuritySubjectRightsRequestCollaboratorMailboxSetting.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting","GET","/security/subjectRightsRequests/{param}/collaborators/{param}/mailboxSettings","matched","Get-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting" +"Cmdlets","GetMgSecuritySubjectRightsRequestCollaboratorServiceProvisioningError.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningError","GET","/security/subjectRightsRequests/{param}/collaborators/{param}/serviceProvisioningErrors","matched","Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningError" +"Cmdlets","GetMgSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount","GET","/security/subjectRightsRequests/{param}/collaborators/{param}/serviceProvisioningErrors/$count","matched","Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount" +"Cmdlets","GetMgSecuritySubjectRightsRequestCount.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCount","GET","/security/subjectRightsRequests/$count","matched","Get-MgSecuritySubjectRightsRequestCount" +"Cmdlets","GetMgSecuritySubjectRightsRequestGetFinalAttachment.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestGetFinalAttachment","GET","/security/subjectRightsRequests/{param}/getFinalAttachment","mismatch","Get-MgSecuritySubjectRightsRequestFinalAttachment" +"Cmdlets","GetMgSecuritySubjectRightsRequestGetFinalReport.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestGetFinalReport","GET","/security/subjectRightsRequests/{param}/getFinalReport","mismatch","Get-MgSecuritySubjectRightsRequestFinalReport" +"Cmdlets","GetMgSecuritySubjectRightsRequestNote_Get.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestNote","GET","/security/subjectRightsRequests/{param}/notes/{param}","matched","Get-MgSecuritySubjectRightsRequestNote" +"Cmdlets","GetMgSecuritySubjectRightsRequestNote_List.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestNote","GET","/security/subjectRightsRequests/{param}/notes","matched","Get-MgSecuritySubjectRightsRequestNote" +"Cmdlets","GetMgSecuritySubjectRightsRequestNote.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestNote","","","dispatcher","" +"Cmdlets","GetMgSecuritySubjectRightsRequestNoteCount.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestNoteCount","GET","/security/subjectRightsRequests/{param}/notes/$count","matched","Get-MgSecuritySubjectRightsRequestNoteCount" +"Cmdlets","GetMgSecuritySubjectRightsRequestTeam.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestTeam","GET","/security/subjectRightsRequests/{param}/team","matched","Get-MgSecuritySubjectRightsRequestTeam" +"Cmdlets","GetMgSecurityThreatIntelligence.g.cs","v1.0","Get-MgSecurityThreatIntelligence","GET","/security/threatIntelligence","matched","Get-MgSecurityThreatIntelligence" +"Cmdlets","GetMgSecurityThreatIntelligenceArticle_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticle","GET","/security/threatIntelligence/articles/{param}","matched","Get-MgSecurityThreatIntelligenceArticle" +"Cmdlets","GetMgSecurityThreatIntelligenceArticle_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticle","GET","/security/threatIntelligence/articles","matched","Get-MgSecurityThreatIntelligenceArticle" +"Cmdlets","GetMgSecurityThreatIntelligenceArticle.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticle","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceArticleCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticleCount","GET","/security/threatIntelligence/articles/$count","matched","Get-MgSecurityThreatIntelligenceArticleCount" +"Cmdlets","GetMgSecurityThreatIntelligenceArticleIndicator_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticleIndicator","GET","/security/threatIntelligence/articleIndicators/{param}","matched","Get-MgSecurityThreatIntelligenceArticleIndicator" +"Cmdlets","GetMgSecurityThreatIntelligenceArticleIndicator_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticleIndicator","GET","/security/threatIntelligence/articleIndicators","matched","Get-MgSecurityThreatIntelligenceArticleIndicator" +"Cmdlets","GetMgSecurityThreatIntelligenceArticleIndicator.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticleIndicator","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceArticleIndicatorArtifact.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticleIndicatorArtifact","GET","/security/threatIntelligence/articleIndicators/{param}/artifact","matched","Get-MgSecurityThreatIntelligenceArticleIndicatorArtifact" +"Cmdlets","GetMgSecurityThreatIntelligenceArticleIndicatorCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticleIndicatorCount","GET","/security/threatIntelligence/articleIndicators/$count","matched","Get-MgSecurityThreatIntelligenceArticleIndicatorCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHost_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHost","GET","/security/threatIntelligence/hosts/{param}","matched","Get-MgSecurityThreatIntelligenceHost" +"Cmdlets","GetMgSecurityThreatIntelligenceHost_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHost","GET","/security/threatIntelligence/hosts","matched","Get-MgSecurityThreatIntelligenceHost" +"Cmdlets","GetMgSecurityThreatIntelligenceHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHost","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceHostChildHostPair_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostChildHostPair","GET","/security/threatIntelligence/hosts/{param}/childHostPairs/{param}","matched","Get-MgSecurityThreatIntelligenceHostChildHostPair" +"Cmdlets","GetMgSecurityThreatIntelligenceHostChildHostPair_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostChildHostPair","GET","/security/threatIntelligence/hosts/{param}/childHostPairs","matched","Get-MgSecurityThreatIntelligenceHostChildHostPair" +"Cmdlets","GetMgSecurityThreatIntelligenceHostChildHostPair.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostChildHostPair","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceHostChildHostPairCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostChildHostPairCount","GET","/security/threatIntelligence/hosts/{param}/childHostPairs/$count","matched","Get-MgSecurityThreatIntelligenceHostChildHostPairCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHostComponent_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostComponent","GET","/security/threatIntelligence/hostComponents/{param}","matched","Get-MgSecurityThreatIntelligenceHostComponent" +"Cmdlets","GetMgSecurityThreatIntelligenceHostComponent_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostComponent","GET","/security/threatIntelligence/hostComponents","matched","Get-MgSecurityThreatIntelligenceHostComponent" +"Cmdlets","GetMgSecurityThreatIntelligenceHostComponent.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostComponent","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceHostComponentCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostComponentCount","GET","/security/threatIntelligence/hostComponents/$count","matched","Get-MgSecurityThreatIntelligenceHostComponentCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHostComponentHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostComponentHost","GET","/security/threatIntelligence/hostComponents/{param}/host","matched","Get-MgSecurityThreatIntelligenceHostComponentHost" +"Cmdlets","GetMgSecurityThreatIntelligenceHostCookie_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostCookie","GET","/security/threatIntelligence/hostCookies/{param}","matched","Get-MgSecurityThreatIntelligenceHostCookie" +"Cmdlets","GetMgSecurityThreatIntelligenceHostCookie_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostCookie","GET","/security/threatIntelligence/hostCookies","matched","Get-MgSecurityThreatIntelligenceHostCookie" +"Cmdlets","GetMgSecurityThreatIntelligenceHostCookie.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostCookie","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceHostCookieCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostCookieCount","GET","/security/threatIntelligence/hostCookies/$count","matched","Get-MgSecurityThreatIntelligenceHostCookieCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHostCookieHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostCookieHost","GET","/security/threatIntelligence/hostCookies/{param}/host","matched","Get-MgSecurityThreatIntelligenceHostCookieHost" +"Cmdlets","GetMgSecurityThreatIntelligenceHostCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostCount","GET","/security/threatIntelligence/hosts/$count","matched","Get-MgSecurityThreatIntelligenceHostCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPair_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPair","GET","/security/threatIntelligence/hostPairs/{param}","matched","Get-MgSecurityThreatIntelligenceHostPair" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPair_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPair","GET","/security/threatIntelligence/hostPairs","matched","Get-MgSecurityThreatIntelligenceHostPair" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPair.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPair","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPairChildHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPairChildHost","GET","/security/threatIntelligence/hostPairs/{param}/childHost","matched","Get-MgSecurityThreatIntelligenceHostPairChildHost" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPairCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPairCount","GET","/security/threatIntelligence/hostPairs/$count","matched","Get-MgSecurityThreatIntelligenceHostPairCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPairParentHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPairParentHost","GET","/security/threatIntelligence/hostPairs/{param}/parentHost","matched","Get-MgSecurityThreatIntelligenceHostPairParentHost" +"Cmdlets","GetMgSecurityThreatIntelligenceHostParentHostPair_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostParentHostPair","GET","/security/threatIntelligence/hosts/{param}/parentHostPairs/{param}","matched","Get-MgSecurityThreatIntelligenceHostParentHostPair" +"Cmdlets","GetMgSecurityThreatIntelligenceHostParentHostPair_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostParentHostPair","GET","/security/threatIntelligence/hosts/{param}/parentHostPairs","matched","Get-MgSecurityThreatIntelligenceHostParentHostPair" +"Cmdlets","GetMgSecurityThreatIntelligenceHostParentHostPair.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostParentHostPair","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceHostParentHostPairCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostParentHostPairCount","GET","/security/threatIntelligence/hosts/{param}/parentHostPairs/$count","matched","Get-MgSecurityThreatIntelligenceHostParentHostPairCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPassiveDns_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDns","GET","/security/threatIntelligence/hosts/{param}/passiveDns/{param}","matched","Get-MgSecurityThreatIntelligenceHostPassiveDns" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPassiveDns_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDns","GET","/security/threatIntelligence/hosts/{param}/passiveDns","matched","Get-MgSecurityThreatIntelligenceHostPassiveDns" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPassiveDns.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDns","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPassiveDnsCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDnsCount","GET","/security/threatIntelligence/hosts/{param}/passiveDns/$count","matched","Get-MgSecurityThreatIntelligenceHostPassiveDnsCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPassiveDnsReverse_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse","GET","/security/threatIntelligence/hosts/{param}/passiveDnsReverse/{param}","matched","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPassiveDnsReverse_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse","GET","/security/threatIntelligence/hosts/{param}/passiveDnsReverse","matched","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPassiveDnsReverse.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPassiveDnsReverseCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverseCount","GET","/security/threatIntelligence/hosts/{param}/passiveDnsReverse/$count","matched","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverseCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPort_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPort","GET","/security/threatIntelligence/hostPorts/{param}","matched","Get-MgSecurityThreatIntelligenceHostPort" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPort_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPort","GET","/security/threatIntelligence/hostPorts","matched","Get-MgSecurityThreatIntelligenceHostPort" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPort.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPort","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPortCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPortCount","GET","/security/threatIntelligence/hostPorts/$count","matched","Get-MgSecurityThreatIntelligenceHostPortCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPortHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPortHost","GET","/security/threatIntelligence/hostPorts/{param}/host","matched","Get-MgSecurityThreatIntelligenceHostPortHost" +"Cmdlets","GetMgSecurityThreatIntelligenceHostPortMostRecentSslCertificate.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPortMostRecentSslCertificate","GET","/security/threatIntelligence/hostPorts/{param}/mostRecentSslCertificate","matched","Get-MgSecurityThreatIntelligenceHostPortMostRecentSslCertificate" +"Cmdlets","GetMgSecurityThreatIntelligenceHostReputation.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostReputation","GET","/security/threatIntelligence/hosts/{param}/reputation","matched","Get-MgSecurityThreatIntelligenceHostReputation" +"Cmdlets","GetMgSecurityThreatIntelligenceHostSslCertificate_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSslCertificate","GET","/security/threatIntelligence/hostSslCertificates/{param}","matched","Get-MgSecurityThreatIntelligenceHostSslCertificate" +"Cmdlets","GetMgSecurityThreatIntelligenceHostSslCertificate_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSslCertificate","GET","/security/threatIntelligence/hostSslCertificates","matched","Get-MgSecurityThreatIntelligenceHostSslCertificate" +"Cmdlets","GetMgSecurityThreatIntelligenceHostSslCertificate.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSslCertificate","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceHostSslCertificateCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSslCertificateCount","GET","/security/threatIntelligence/hosts/{param}/sslCertificates/$count","matched","Get-MgSecurityThreatIntelligenceHostSslCertificateCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHostSslCertificateHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSslCertificateHost","GET","/security/threatIntelligence/hostSslCertificates/{param}/host","matched","Get-MgSecurityThreatIntelligenceHostSslCertificateHost" +"Cmdlets","GetMgSecurityThreatIntelligenceHostSslCertificateSslCertificate.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSslCertificateSslCertificate","GET","/security/threatIntelligence/hostSslCertificates/{param}/sslCertificate","no-oracle","" +"Cmdlets","GetMgSecurityThreatIntelligenceHostSubdomain_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSubdomain","GET","/security/threatIntelligence/hosts/{param}/subdomains/{param}","matched","Get-MgSecurityThreatIntelligenceHostSubdomain" +"Cmdlets","GetMgSecurityThreatIntelligenceHostSubdomain_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSubdomain","GET","/security/threatIntelligence/hosts/{param}/subdomains","matched","Get-MgSecurityThreatIntelligenceHostSubdomain" +"Cmdlets","GetMgSecurityThreatIntelligenceHostSubdomain.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSubdomain","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceHostSubdomainCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSubdomainCount","GET","/security/threatIntelligence/hosts/{param}/subdomains/$count","matched","Get-MgSecurityThreatIntelligenceHostSubdomainCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHostTracker.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostTracker","GET","/security/threatIntelligence/hostTrackers","matched","Get-MgSecurityThreatIntelligenceHostTracker" +"Cmdlets","GetMgSecurityThreatIntelligenceHostTrackerCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostTrackerCount","GET","/security/threatIntelligence/hosts/{param}/trackers/$count","matched","Get-MgSecurityThreatIntelligenceHostTrackerCount" +"Cmdlets","GetMgSecurityThreatIntelligenceHostTrackerHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostTrackerHost","GET","/security/threatIntelligence/hostTrackers/{param}/host","matched","Get-MgSecurityThreatIntelligenceHostTrackerHost" +"Cmdlets","GetMgSecurityThreatIntelligenceHostWhois.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostWhois","GET","/security/threatIntelligence/hosts/{param}/whois","corrected","Get-MgSecurityThreatIntelligenceHostWhoi" +"Cmdlets","GetMgSecurityThreatIntelligenceIntelProfile_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfile","GET","/security/threatIntelligence/intelProfiles/{param}","matched","Get-MgSecurityThreatIntelligenceIntelProfile" +"Cmdlets","GetMgSecurityThreatIntelligenceIntelProfile_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfile","GET","/security/threatIntelligence/intelProfiles","matched","Get-MgSecurityThreatIntelligenceIntelProfile" +"Cmdlets","GetMgSecurityThreatIntelligenceIntelProfile.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfile","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceIntelProfileCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfileCount","GET","/security/threatIntelligence/intelProfiles/$count","matched","Get-MgSecurityThreatIntelligenceIntelProfileCount" +"Cmdlets","GetMgSecurityThreatIntelligenceIntelProfileIndicator_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfileIndicator","GET","/security/threatIntelligence/intelProfiles/{param}/indicators/{param}","matched","Get-MgSecurityThreatIntelligenceIntelProfileIndicator" +"Cmdlets","GetMgSecurityThreatIntelligenceIntelProfileIndicator_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfileIndicator","GET","/security/threatIntelligence/intelProfiles/{param}/indicators","matched","Get-MgSecurityThreatIntelligenceIntelProfileIndicator" +"Cmdlets","GetMgSecurityThreatIntelligenceIntelProfileIndicator.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfileIndicator","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceIntelProfileIndicatorCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfileIndicatorCount","GET","/security/threatIntelligence/intelProfiles/{param}/indicators/$count","matched","Get-MgSecurityThreatIntelligenceIntelProfileIndicatorCount" +"Cmdlets","GetMgSecurityThreatIntelligencePassiveDnsRecord_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligencePassiveDnsRecord","GET","/security/threatIntelligence/passiveDnsRecords/{param}","matched","Get-MgSecurityThreatIntelligencePassiveDnsRecord" +"Cmdlets","GetMgSecurityThreatIntelligencePassiveDnsRecord_List.g.cs","v1.0","Get-MgSecurityThreatIntelligencePassiveDnsRecord","GET","/security/threatIntelligence/passiveDnsRecords","matched","Get-MgSecurityThreatIntelligencePassiveDnsRecord" +"Cmdlets","GetMgSecurityThreatIntelligencePassiveDnsRecord.g.cs","v1.0","Get-MgSecurityThreatIntelligencePassiveDnsRecord","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligencePassiveDnsRecordArtifact.g.cs","v1.0","Get-MgSecurityThreatIntelligencePassiveDnsRecordArtifact","GET","/security/threatIntelligence/passiveDnsRecords/{param}/artifact","matched","Get-MgSecurityThreatIntelligencePassiveDnsRecordArtifact" +"Cmdlets","GetMgSecurityThreatIntelligencePassiveDnsRecordCount.g.cs","v1.0","Get-MgSecurityThreatIntelligencePassiveDnsRecordCount","GET","/security/threatIntelligence/passiveDnsRecords/$count","matched","Get-MgSecurityThreatIntelligencePassiveDnsRecordCount" +"Cmdlets","GetMgSecurityThreatIntelligencePassiveDnsRecordParentHost.g.cs","v1.0","Get-MgSecurityThreatIntelligencePassiveDnsRecordParentHost","GET","/security/threatIntelligence/passiveDnsRecords/{param}/parentHost","matched","Get-MgSecurityThreatIntelligencePassiveDnsRecordParentHost" +"Cmdlets","GetMgSecurityThreatIntelligenceProfileIndicator_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceProfileIndicator","GET","/security/threatIntelligence/intelligenceProfileIndicators/{param}","matched","Get-MgSecurityThreatIntelligenceProfileIndicator" +"Cmdlets","GetMgSecurityThreatIntelligenceProfileIndicator_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceProfileIndicator","GET","/security/threatIntelligence/intelligenceProfileIndicators","matched","Get-MgSecurityThreatIntelligenceProfileIndicator" +"Cmdlets","GetMgSecurityThreatIntelligenceProfileIndicator.g.cs","v1.0","Get-MgSecurityThreatIntelligenceProfileIndicator","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceProfileIndicatorArtifact.g.cs","v1.0","Get-MgSecurityThreatIntelligenceProfileIndicatorArtifact","GET","/security/threatIntelligence/intelligenceProfileIndicators/{param}/artifact","matched","Get-MgSecurityThreatIntelligenceProfileIndicatorArtifact" +"Cmdlets","GetMgSecurityThreatIntelligenceProfileIndicatorCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceProfileIndicatorCount","GET","/security/threatIntelligence/intelligenceProfileIndicators/$count","matched","Get-MgSecurityThreatIntelligenceProfileIndicatorCount" +"Cmdlets","GetMgSecurityThreatIntelligenceSslCertificate_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificate","GET","/security/threatIntelligence/sslCertificates/{param}","matched","Get-MgSecurityThreatIntelligenceSslCertificate" +"Cmdlets","GetMgSecurityThreatIntelligenceSslCertificate_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificate","GET","/security/threatIntelligence/sslCertificates","matched","Get-MgSecurityThreatIntelligenceSslCertificate" +"Cmdlets","GetMgSecurityThreatIntelligenceSslCertificate.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificate","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceSslCertificateCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificateCount","GET","/security/threatIntelligence/sslCertificates/$count","matched","Get-MgSecurityThreatIntelligenceSslCertificateCount" +"Cmdlets","GetMgSecurityThreatIntelligenceSslCertificateRelatedHost_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost","GET","/security/threatIntelligence/sslCertificates/{param}/relatedHosts/{param}","matched","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost" +"Cmdlets","GetMgSecurityThreatIntelligenceSslCertificateRelatedHost_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost","GET","/security/threatIntelligence/sslCertificates/{param}/relatedHosts","matched","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost" +"Cmdlets","GetMgSecurityThreatIntelligenceSslCertificateRelatedHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceSslCertificateRelatedHostCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHostCount","GET","/security/threatIntelligence/sslCertificates/{param}/relatedHosts/$count","matched","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHostCount" +"Cmdlets","GetMgSecurityThreatIntelligenceSubdomain_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSubdomain","GET","/security/threatIntelligence/subdomains/{param}","matched","Get-MgSecurityThreatIntelligenceSubdomain" +"Cmdlets","GetMgSecurityThreatIntelligenceSubdomain_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSubdomain","GET","/security/threatIntelligence/subdomains","matched","Get-MgSecurityThreatIntelligenceSubdomain" +"Cmdlets","GetMgSecurityThreatIntelligenceSubdomain.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSubdomain","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceSubdomainCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSubdomainCount","GET","/security/threatIntelligence/subdomains/$count","matched","Get-MgSecurityThreatIntelligenceSubdomainCount" +"Cmdlets","GetMgSecurityThreatIntelligenceSubdomainHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSubdomainHost","GET","/security/threatIntelligence/subdomains/{param}/host","matched","Get-MgSecurityThreatIntelligenceSubdomainHost" +"Cmdlets","GetMgSecurityThreatIntelligenceVulnerability_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerability","GET","/security/threatIntelligence/vulnerabilities/{param}","matched","Get-MgSecurityThreatIntelligenceVulnerability" +"Cmdlets","GetMgSecurityThreatIntelligenceVulnerability_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerability","GET","/security/threatIntelligence/vulnerabilities","matched","Get-MgSecurityThreatIntelligenceVulnerability" +"Cmdlets","GetMgSecurityThreatIntelligenceVulnerability.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerability","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceVulnerabilityArticle_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityArticle","GET","/security/threatIntelligence/vulnerabilities/{param}/articles/{param}","matched","Get-MgSecurityThreatIntelligenceVulnerabilityArticle" +"Cmdlets","GetMgSecurityThreatIntelligenceVulnerabilityArticle_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityArticle","GET","/security/threatIntelligence/vulnerabilities/{param}/articles","matched","Get-MgSecurityThreatIntelligenceVulnerabilityArticle" +"Cmdlets","GetMgSecurityThreatIntelligenceVulnerabilityArticle.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityArticle","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceVulnerabilityArticleCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityArticleCount","GET","/security/threatIntelligence/vulnerabilities/{param}/articles/$count","matched","Get-MgSecurityThreatIntelligenceVulnerabilityArticleCount" +"Cmdlets","GetMgSecurityThreatIntelligenceVulnerabilityComponent_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityComponent","GET","/security/threatIntelligence/vulnerabilities/{param}/components/{param}","matched","Get-MgSecurityThreatIntelligenceVulnerabilityComponent" +"Cmdlets","GetMgSecurityThreatIntelligenceVulnerabilityComponent_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityComponent","GET","/security/threatIntelligence/vulnerabilities/{param}/components","matched","Get-MgSecurityThreatIntelligenceVulnerabilityComponent" +"Cmdlets","GetMgSecurityThreatIntelligenceVulnerabilityComponent.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityComponent","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceVulnerabilityComponentCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityComponentCount","GET","/security/threatIntelligence/vulnerabilities/{param}/components/$count","matched","Get-MgSecurityThreatIntelligenceVulnerabilityComponentCount" +"Cmdlets","GetMgSecurityThreatIntelligenceVulnerabilityCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityCount","GET","/security/threatIntelligence/vulnerabilities/$count","matched","Get-MgSecurityThreatIntelligenceVulnerabilityCount" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisHistoryRecord_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisHistoryRecord","GET","/security/threatIntelligence/whoisHistoryRecords/{param}","matched","Get-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisHistoryRecord_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisHistoryRecord","GET","/security/threatIntelligence/whoisHistoryRecords","matched","Get-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisHistoryRecord.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisHistoryRecord","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisHistoryRecordCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisHistoryRecordCount","GET","/security/threatIntelligence/whoisHistoryRecords/$count","matched","Get-MgSecurityThreatIntelligenceWhoisHistoryRecordCount" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisHistoryRecordHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisHistoryRecordHost","GET","/security/threatIntelligence/whoisHistoryRecords/{param}/host","matched","Get-MgSecurityThreatIntelligenceWhoisHistoryRecordHost" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisRecord_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecord","GET","/security/threatIntelligence/whoisRecords/{param}","matched","Get-MgSecurityThreatIntelligenceWhoisRecord" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisRecord_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecord","GET","/security/threatIntelligence/whoisRecords","matched","Get-MgSecurityThreatIntelligenceWhoisRecord" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisRecord.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecord","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisRecordCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecordCount","GET","/security/threatIntelligence/whoisRecords/$count","matched","Get-MgSecurityThreatIntelligenceWhoisRecordCount" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisRecordHistory_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecordHistory","GET","/security/threatIntelligence/whoisRecords/{param}/history/{param}","matched","Get-MgSecurityThreatIntelligenceWhoisRecordHistory" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisRecordHistory_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecordHistory","GET","/security/threatIntelligence/whoisRecords/{param}/history","matched","Get-MgSecurityThreatIntelligenceWhoisRecordHistory" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisRecordHistory.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecordHistory","","","dispatcher","" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisRecordHistoryCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecordHistoryCount","GET","/security/threatIntelligence/whoisRecords/{param}/history/$count","matched","Get-MgSecurityThreatIntelligenceWhoisRecordHistoryCount" +"Cmdlets","GetMgSecurityThreatIntelligenceWhoisRecordHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecordHost","GET","/security/threatIntelligence/whoisRecords/{param}/host","matched","Get-MgSecurityThreatIntelligenceWhoisRecordHost" +"Cmdlets","GetMgSecurityTrigger.g.cs","v1.0","Get-MgSecurityTrigger","GET","/security/triggers","matched","Get-MgSecurityTrigger" +"Cmdlets","GetMgSecurityTriggerRetentionEvent_Get.g.cs","v1.0","Get-MgSecurityTriggerRetentionEvent","GET","/security/triggers/retentionEvents/{param}","matched","Get-MgSecurityTriggerRetentionEvent" +"Cmdlets","GetMgSecurityTriggerRetentionEvent_List.g.cs","v1.0","Get-MgSecurityTriggerRetentionEvent","GET","/security/triggers/retentionEvents","matched","Get-MgSecurityTriggerRetentionEvent" +"Cmdlets","GetMgSecurityTriggerRetentionEvent.g.cs","v1.0","Get-MgSecurityTriggerRetentionEvent","","","dispatcher","" +"Cmdlets","GetMgSecurityTriggerRetentionEventCount.g.cs","v1.0","Get-MgSecurityTriggerRetentionEventCount","GET","/security/triggers/retentionEvents/$count","matched","Get-MgSecurityTriggerRetentionEventCount" +"Cmdlets","GetMgSecurityTriggerRetentionEventRetentionEventType.g.cs","v1.0","Get-MgSecurityTriggerRetentionEventRetentionEventType","GET","/security/triggers/retentionEvents/{param}/retentionEventType","mismatch","Get-MgSecurityTriggerRetentionEventType" +"Cmdlets","GetMgSecurityTriggerType.g.cs","v1.0","Get-MgSecurityTriggerType","GET","/security/triggerTypes","matched","Get-MgSecurityTriggerType" +"Cmdlets","GetMgSecurityTriggerTypeRetentionEventType_Get.g.cs","v1.0","Get-MgSecurityTriggerTypeRetentionEventType","GET","/security/triggerTypes/retentionEventTypes/{param}","matched","Get-MgSecurityTriggerTypeRetentionEventType" +"Cmdlets","GetMgSecurityTriggerTypeRetentionEventType_List.g.cs","v1.0","Get-MgSecurityTriggerTypeRetentionEventType","GET","/security/triggerTypes/retentionEventTypes","matched","Get-MgSecurityTriggerTypeRetentionEventType" +"Cmdlets","GetMgSecurityTriggerTypeRetentionEventType.g.cs","v1.0","Get-MgSecurityTriggerTypeRetentionEventType","","","dispatcher","" +"Cmdlets","GetMgSecurityTriggerTypeRetentionEventTypeCount.g.cs","v1.0","Get-MgSecurityTriggerTypeRetentionEventTypeCount","GET","/security/triggerTypes/retentionEventTypes/$count","matched","Get-MgSecurityTriggerTypeRetentionEventTypeCount" +"Cmdlets","InvokeMgSecurityAlertV2MoveAlerts.g.cs","v1.0","Invoke-MgSecurityAlertV2MoveAlerts","POST","/security/alerts_v2/moveAlerts","mismatch","Move-MgSecurityAlert" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseClose.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseClose","POST","/security/cases/ediscoveryCases/{param}/close","mismatch","Close-MgSecurityCaseEdiscoveryCase" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseCustodianActivate.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseCustodianActivate","POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/activate","mismatch","Initialize-MgSecurityCaseEdiscoveryCaseCustodian" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseCustodianApplyHold.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseCustodianApplyHold","POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/applyHold","mismatch","Add-MgSecurityCaseEdiscoveryCaseCustodianHold" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseCustodianRelease.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseCustodianRelease","POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/release","mismatch","Publish-MgSecurityCaseEdiscoveryCaseCustodian" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseCustodianRemoveHold.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseCustodianRemoveHold","POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/removeHold","mismatch","Remove-MgSecurityCaseEdiscoveryCaseCustodianHold" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseCustodianUpdateIndex.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseCustodianUpdateIndex","POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/updateIndex","mismatch","Update-MgSecurityCaseEdiscoveryCaseCustodianIndex" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceApplyHold.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceApplyHold","POST","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/applyHold","mismatch","Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRelease.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRelease","POST","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/release","mismatch","Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRemoveHold.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRemoveHold","POST","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/removeHold","mismatch","Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceUpdateIndex.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceUpdateIndex","POST","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/updateIndex","mismatch","Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseReopen.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseReopen","POST","/security/cases/ediscoveryCases/{param}/reopen","mismatch","Invoke-MgReopenSecurityCaseEdiscoveryCase" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseReviewSetAddToReviewSet.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseReviewSetAddToReviewSet","POST","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/addToReviewSet","mismatch","Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseReviewSetExport.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseReviewSetExport","POST","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/export","mismatch","Export-MgSecurityCaseEdiscoveryCaseReviewSet" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseReviewSetQueryApplyTags.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseReviewSetQueryApplyTags","POST","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}/applyTags","mismatch","Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseReviewSetQueryExport.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseReviewSetQueryExport","POST","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}/export","mismatch","Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseSearchEstimateStatistics.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseSearchEstimateStatistics","POST","/security/cases/ediscoveryCases/{param}/searches/{param}/estimateStatistics","mismatch","Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseSearchExportReport.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseSearchExportReport","POST","/security/cases/ediscoveryCases/{param}/searches/{param}/exportReport","mismatch","Export-MgSecurityCaseEdiscoveryCaseSearchReport" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseSearchExportResult.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseSearchExportResult","POST","/security/cases/ediscoveryCases/{param}/searches/{param}/exportResult","mismatch","Export-MgSecurityCaseEdiscoveryCaseSearchResult" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseSearchPurgeData.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseSearchPurgeData","POST","/security/cases/ediscoveryCases/{param}/searches/{param}/purgeData","mismatch","Clear-MgSecurityCaseEdiscoveryCaseSearchData" +"Cmdlets","InvokeMgSecurityCaseEdiscoveryCaseSettingResetToDefault.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseSettingResetToDefault","POST","/security/cases/ediscoveryCases/{param}/settings/resetToDefault","mismatch","Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault" +"Cmdlets","InvokeMgSecurityCollaborationAnalyzedEmailRemediate.g.cs","v1.0","Invoke-MgSecurityCollaborationAnalyzedEmailRemediate","POST","/security/collaboration/analyzedEmails/remediate","mismatch","Invoke-MgRemediateSecurityCollaborationAnalyzedEmail" +"Cmdlets","InvokeMgSecurityDataSecurityAndGovernanceProcessContentAsync.g.cs","v1.0","Invoke-MgSecurityDataSecurityAndGovernanceProcessContentAsync","POST","/security/dataSecurityAndGovernance/processContentAsync","mismatch","Invoke-MgProcessSecurityDataSecurityAndGovernanceContentAsync" +"Cmdlets","InvokeMgSecurityDataSecurityAndGovernanceProtectionScopeCompute.g.cs","v1.0","Invoke-MgSecurityDataSecurityAndGovernanceProtectionScopeCompute","POST","/security/dataSecurityAndGovernance/protectionScopes/compute","mismatch","Invoke-MgComputeSecurityDataSecurityAndGovernanceProtectionScope" +"Cmdlets","InvokeMgSecurityDataSecurityAndGovernanceSensitivityLabelComputeRightsAndInheritance.g.cs","v1.0","Invoke-MgSecurityDataSecurityAndGovernanceSensitivityLabelComputeRightsAndInheritance","POST","/security/dataSecurityAndGovernance/sensitivityLabels/computeRightsAndInheritance","mismatch","Invoke-MgAndSecurityDataSecurityAndGovernanceSensitivityLabel" +"Cmdlets","InvokeMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelComputeRightsAndInheritance.g.cs","v1.0","Invoke-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelComputeRightsAndInheritance","POST","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/computeRightsAndInheritance","mismatch","Invoke-MgAndSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"Cmdlets","InvokeMgSecurityIdentityAccountInvokeAction.g.cs","v1.0","Invoke-MgSecurityIdentityAccountInvokeAction","POST","/security/identities/identityAccounts/{param}/invokeAction","mismatch","Invoke-MgInvokeSecurityIdentityAccountAction" +"Cmdlets","InvokeMgSecurityIdentitySensorCandidateActivate.g.cs","v1.0","Invoke-MgSecurityIdentitySensorCandidateActivate","POST","/security/identities/sensorCandidates/activate","mismatch","Initialize-MgSecurityIdentitySensorCandidate" +"Cmdlets","InvokeMgSecurityIdentitySensorRegenerateDeploymentAccessKey.g.cs","v1.0","Invoke-MgSecurityIdentitySensorRegenerateDeploymentAccessKey","POST","/security/identities/sensors/regenerateDeploymentAccessKey","mismatch","New-MgSecurityIdentitySensorDeploymentAccessKey" +"Cmdlets","InvokeMgSecurityIncidentMergeIncidents.g.cs","v1.0","Invoke-MgSecurityIncidentMergeIncidents","POST","/security/incidents/mergeIncidents","mismatch","Merge-MgSecurityIncident" +"Cmdlets","InvokeMgSecurityRunHuntingQuery.g.cs","v1.0","Invoke-MgSecurityRunHuntingQuery","POST","/security/runHuntingQuery","mismatch","Start-MgSecurityHuntingQuery" +"Cmdlets","NewMgSecurityAlert.g.cs","v1.0","New-MgSecurityAlert","POST","/security/alerts","matched","New-MgSecurityAlert" +"Cmdlets","NewMgSecurityAlertV2.g.cs","v1.0","New-MgSecurityAlertV2","POST","/security/alerts_v2","matched","New-MgSecurityAlertV2" +"Cmdlets","NewMgSecurityAttackSimulation.g.cs","v1.0","New-MgSecurityAttackSimulation","POST","/security/attackSimulation/simulations","matched","New-MgSecurityAttackSimulation" +"Cmdlets","NewMgSecurityAttackSimulationAutomation.g.cs","v1.0","New-MgSecurityAttackSimulationAutomation","POST","/security/attackSimulation/simulationAutomations","matched","New-MgSecurityAttackSimulationAutomation" +"Cmdlets","NewMgSecurityAttackSimulationAutomationRun.g.cs","v1.0","New-MgSecurityAttackSimulationAutomationRun","POST","/security/attackSimulation/simulationAutomations/{param}/runs","matched","New-MgSecurityAttackSimulationAutomationRun" +"Cmdlets","NewMgSecurityAttackSimulationEndUserNotification.g.cs","v1.0","New-MgSecurityAttackSimulationEndUserNotification","POST","/security/attackSimulation/endUserNotifications","matched","New-MgSecurityAttackSimulationEndUserNotification" +"Cmdlets","NewMgSecurityAttackSimulationEndUserNotificationDetail.g.cs","v1.0","New-MgSecurityAttackSimulationEndUserNotificationDetail","POST","/security/attackSimulation/endUserNotifications/{param}/details","matched","New-MgSecurityAttackSimulationEndUserNotificationDetail" +"Cmdlets","NewMgSecurityAttackSimulationLandingPage.g.cs","v1.0","New-MgSecurityAttackSimulationLandingPage","POST","/security/attackSimulation/landingPages","matched","New-MgSecurityAttackSimulationLandingPage" +"Cmdlets","NewMgSecurityAttackSimulationLandingPageDetail.g.cs","v1.0","New-MgSecurityAttackSimulationLandingPageDetail","POST","/security/attackSimulation/landingPages/{param}/details","matched","New-MgSecurityAttackSimulationLandingPageDetail" +"Cmdlets","NewMgSecurityAttackSimulationLoginPage.g.cs","v1.0","New-MgSecurityAttackSimulationLoginPage","POST","/security/attackSimulation/loginPages","matched","New-MgSecurityAttackSimulationLoginPage" +"Cmdlets","NewMgSecurityAttackSimulationOperation.g.cs","v1.0","New-MgSecurityAttackSimulationOperation","POST","/security/attackSimulation/operations","matched","New-MgSecurityAttackSimulationOperation" +"Cmdlets","NewMgSecurityAttackSimulationPayload.g.cs","v1.0","New-MgSecurityAttackSimulationPayload","POST","/security/attackSimulation/payloads","matched","New-MgSecurityAttackSimulationPayload" +"Cmdlets","NewMgSecurityAttackSimulationTraining.g.cs","v1.0","New-MgSecurityAttackSimulationTraining","POST","/security/attackSimulation/trainings","matched","New-MgSecurityAttackSimulationTraining" +"Cmdlets","NewMgSecurityAttackSimulationTrainingLanguageDetail.g.cs","v1.0","New-MgSecurityAttackSimulationTrainingLanguageDetail","POST","/security/attackSimulation/trainings/{param}/languageDetails","matched","New-MgSecurityAttackSimulationTrainingLanguageDetail" +"Cmdlets","NewMgSecurityAuditLogQuery.g.cs","v1.0","New-MgSecurityAuditLogQuery","POST","/security/auditLog/queries","matched","New-MgSecurityAuditLogQuery" +"Cmdlets","NewMgSecurityCaseEdiscoveryCase.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCase","POST","/security/cases/ediscoveryCases","matched","New-MgSecurityCaseEdiscoveryCase" +"Cmdlets","NewMgSecurityCaseEdiscoveryCaseCustodian.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseCustodian","POST","/security/cases/ediscoveryCases/{param}/custodians","matched","New-MgSecurityCaseEdiscoveryCaseCustodian" +"Cmdlets","NewMgSecurityCaseEdiscoveryCaseCustodianSiteSource.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources","matched","New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"Cmdlets","NewMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources","matched","New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"Cmdlets","NewMgSecurityCaseEdiscoveryCaseCustodianUserSource.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseCustodianUserSource","POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources","matched","New-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"Cmdlets","NewMgSecurityCaseEdiscoveryCaseMember.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseMember","POST","/security/cases/ediscoveryCases/{param}/caseMembers","matched","New-MgSecurityCaseEdiscoveryCaseMember" +"Cmdlets","NewMgSecurityCaseEdiscoveryCaseNoncustodialDataSource.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","POST","/security/cases/ediscoveryCases/{param}/noncustodialDataSources","matched","New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"Cmdlets","NewMgSecurityCaseEdiscoveryCaseOperation.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseOperation","POST","/security/cases/ediscoveryCases/{param}/operations","matched","New-MgSecurityCaseEdiscoveryCaseOperation" +"Cmdlets","NewMgSecurityCaseEdiscoveryCaseReviewSet.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseReviewSet","POST","/security/cases/ediscoveryCases/{param}/reviewSets","matched","New-MgSecurityCaseEdiscoveryCaseReviewSet" +"Cmdlets","NewMgSecurityCaseEdiscoveryCaseReviewSetQuery.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseReviewSetQuery","POST","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries","matched","New-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"Cmdlets","NewMgSecurityCaseEdiscoveryCaseSearch.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseSearch","POST","/security/cases/ediscoveryCases/{param}/searches","matched","New-MgSecurityCaseEdiscoveryCaseSearch" +"Cmdlets","NewMgSecurityCaseEdiscoveryCaseSearchAdditionalSource.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","POST","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources","matched","New-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"Cmdlets","NewMgSecurityCaseEdiscoveryCaseTag.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseTag","POST","/security/cases/ediscoveryCases/{param}/tags","matched","New-MgSecurityCaseEdiscoveryCaseTag" +"Cmdlets","NewMgSecurityCollaborationAnalyzedEmail.g.cs","v1.0","New-MgSecurityCollaborationAnalyzedEmail","POST","/security/collaboration/analyzedEmails","matched","New-MgSecurityCollaborationAnalyzedEmail" +"Cmdlets","NewMgSecurityDataSecurityAndGovernanceSensitivityLabel.g.cs","v1.0","New-MgSecurityDataSecurityAndGovernanceSensitivityLabel","POST","/security/dataSecurityAndGovernance/sensitivityLabels","matched","New-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"Cmdlets","NewMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel.g.cs","v1.0","New-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","POST","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels","matched","New-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"Cmdlets","NewMgSecurityIdentityAccount.g.cs","v1.0","New-MgSecurityIdentityAccount","POST","/security/identities/identityAccounts","matched","New-MgSecurityIdentityAccount" +"Cmdlets","NewMgSecurityIdentityHealthIssue.g.cs","v1.0","New-MgSecurityIdentityHealthIssue","POST","/security/identities/healthIssues","matched","New-MgSecurityIdentityHealthIssue" +"Cmdlets","NewMgSecurityIdentitySensor.g.cs","v1.0","New-MgSecurityIdentitySensor","POST","/security/identities/sensors","matched","New-MgSecurityIdentitySensor" +"Cmdlets","NewMgSecurityIdentitySensorCandidate.g.cs","v1.0","New-MgSecurityIdentitySensorCandidate","POST","/security/identities/sensorCandidates","matched","New-MgSecurityIdentitySensorCandidate" +"Cmdlets","NewMgSecurityIncident.g.cs","v1.0","New-MgSecurityIncident","POST","/security/incidents","matched","New-MgSecurityIncident" +"Cmdlets","NewMgSecurityLabelAuthority.g.cs","v1.0","New-MgSecurityLabelAuthority","POST","/security/labels/authorities","matched","New-MgSecurityLabelAuthority" +"Cmdlets","NewMgSecurityLabelCategory.g.cs","v1.0","New-MgSecurityLabelCategory","POST","/security/labels/categories","matched","New-MgSecurityLabelCategory" +"Cmdlets","NewMgSecurityLabelCategorySubcategory.g.cs","v1.0","New-MgSecurityLabelCategorySubcategory","POST","/security/labels/categories/{param}/subcategories","matched","New-MgSecurityLabelCategorySubcategory" +"Cmdlets","NewMgSecurityLabelCitation.g.cs","v1.0","New-MgSecurityLabelCitation","POST","/security/labels/citations","matched","New-MgSecurityLabelCitation" +"Cmdlets","NewMgSecurityLabelDepartment.g.cs","v1.0","New-MgSecurityLabelDepartment","POST","/security/labels/departments","matched","New-MgSecurityLabelDepartment" +"Cmdlets","NewMgSecurityLabelFilePlanReference.g.cs","v1.0","New-MgSecurityLabelFilePlanReference","POST","/security/labels/filePlanReferences","matched","New-MgSecurityLabelFilePlanReference" +"Cmdlets","NewMgSecurityLabelRetentionLabel.g.cs","v1.0","New-MgSecurityLabelRetentionLabel","POST","/security/labels/retentionLabels","matched","New-MgSecurityLabelRetentionLabel" +"Cmdlets","NewMgSecurityLabelRetentionLabelDispositionReviewStage.g.cs","v1.0","New-MgSecurityLabelRetentionLabelDispositionReviewStage","POST","/security/labels/retentionLabels/{param}/dispositionReviewStages","matched","New-MgSecurityLabelRetentionLabelDispositionReviewStage" +"Cmdlets","NewMgSecuritySecureScore.g.cs","v1.0","New-MgSecuritySecureScore","POST","/security/secureScores","matched","New-MgSecuritySecureScore" +"Cmdlets","NewMgSecuritySecureScoreControlProfile.g.cs","v1.0","New-MgSecuritySecureScoreControlProfile","POST","/security/secureScoreControlProfiles","matched","New-MgSecuritySecureScoreControlProfile" +"Cmdlets","NewMgSecuritySubjectRightsRequest.g.cs","v1.0","New-MgSecuritySubjectRightsRequest","POST","/security/subjectRightsRequests","matched","New-MgSecuritySubjectRightsRequest" +"Cmdlets","NewMgSecuritySubjectRightsRequestNote.g.cs","v1.0","New-MgSecuritySubjectRightsRequestNote","POST","/security/subjectRightsRequests/{param}/notes","matched","New-MgSecuritySubjectRightsRequestNote" +"Cmdlets","NewMgSecurityThreatIntelligenceArticle.g.cs","v1.0","New-MgSecurityThreatIntelligenceArticle","POST","/security/threatIntelligence/articles","matched","New-MgSecurityThreatIntelligenceArticle" +"Cmdlets","NewMgSecurityThreatIntelligenceArticleIndicator.g.cs","v1.0","New-MgSecurityThreatIntelligenceArticleIndicator","POST","/security/threatIntelligence/articleIndicators","matched","New-MgSecurityThreatIntelligenceArticleIndicator" +"Cmdlets","NewMgSecurityThreatIntelligenceHost.g.cs","v1.0","New-MgSecurityThreatIntelligenceHost","POST","/security/threatIntelligence/hosts","matched","New-MgSecurityThreatIntelligenceHost" +"Cmdlets","NewMgSecurityThreatIntelligenceHostComponent.g.cs","v1.0","New-MgSecurityThreatIntelligenceHostComponent","POST","/security/threatIntelligence/hostComponents","matched","New-MgSecurityThreatIntelligenceHostComponent" +"Cmdlets","NewMgSecurityThreatIntelligenceHostCookie.g.cs","v1.0","New-MgSecurityThreatIntelligenceHostCookie","POST","/security/threatIntelligence/hostCookies","matched","New-MgSecurityThreatIntelligenceHostCookie" +"Cmdlets","NewMgSecurityThreatIntelligenceHostPair.g.cs","v1.0","New-MgSecurityThreatIntelligenceHostPair","POST","/security/threatIntelligence/hostPairs","matched","New-MgSecurityThreatIntelligenceHostPair" +"Cmdlets","NewMgSecurityThreatIntelligenceHostPort.g.cs","v1.0","New-MgSecurityThreatIntelligenceHostPort","POST","/security/threatIntelligence/hostPorts","matched","New-MgSecurityThreatIntelligenceHostPort" +"Cmdlets","NewMgSecurityThreatIntelligenceHostSslCertificate.g.cs","v1.0","New-MgSecurityThreatIntelligenceHostSslCertificate","POST","/security/threatIntelligence/hostSslCertificates","matched","New-MgSecurityThreatIntelligenceHostSslCertificate" +"Cmdlets","NewMgSecurityThreatIntelligenceHostTracker.g.cs","v1.0","New-MgSecurityThreatIntelligenceHostTracker","POST","/security/threatIntelligence/hostTrackers","matched","New-MgSecurityThreatIntelligenceHostTracker" +"Cmdlets","NewMgSecurityThreatIntelligenceIntelProfile.g.cs","v1.0","New-MgSecurityThreatIntelligenceIntelProfile","POST","/security/threatIntelligence/intelProfiles","matched","New-MgSecurityThreatIntelligenceIntelProfile" +"Cmdlets","NewMgSecurityThreatIntelligencePassiveDnsRecord.g.cs","v1.0","New-MgSecurityThreatIntelligencePassiveDnsRecord","POST","/security/threatIntelligence/passiveDnsRecords","matched","New-MgSecurityThreatIntelligencePassiveDnsRecord" +"Cmdlets","NewMgSecurityThreatIntelligenceProfileIndicator.g.cs","v1.0","New-MgSecurityThreatIntelligenceProfileIndicator","POST","/security/threatIntelligence/intelligenceProfileIndicators","matched","New-MgSecurityThreatIntelligenceProfileIndicator" +"Cmdlets","NewMgSecurityThreatIntelligenceSslCertificate.g.cs","v1.0","New-MgSecurityThreatIntelligenceSslCertificate","POST","/security/threatIntelligence/sslCertificates","matched","New-MgSecurityThreatIntelligenceSslCertificate" +"Cmdlets","NewMgSecurityThreatIntelligenceSubdomain.g.cs","v1.0","New-MgSecurityThreatIntelligenceSubdomain","POST","/security/threatIntelligence/subdomains","matched","New-MgSecurityThreatIntelligenceSubdomain" +"Cmdlets","NewMgSecurityThreatIntelligenceVulnerability.g.cs","v1.0","New-MgSecurityThreatIntelligenceVulnerability","POST","/security/threatIntelligence/vulnerabilities","matched","New-MgSecurityThreatIntelligenceVulnerability" +"Cmdlets","NewMgSecurityThreatIntelligenceVulnerabilityComponent.g.cs","v1.0","New-MgSecurityThreatIntelligenceVulnerabilityComponent","POST","/security/threatIntelligence/vulnerabilities/{param}/components","matched","New-MgSecurityThreatIntelligenceVulnerabilityComponent" +"Cmdlets","NewMgSecurityThreatIntelligenceWhoisHistoryRecord.g.cs","v1.0","New-MgSecurityThreatIntelligenceWhoisHistoryRecord","POST","/security/threatIntelligence/whoisHistoryRecords","matched","New-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"Cmdlets","NewMgSecurityThreatIntelligenceWhoisRecord.g.cs","v1.0","New-MgSecurityThreatIntelligenceWhoisRecord","POST","/security/threatIntelligence/whoisRecords","matched","New-MgSecurityThreatIntelligenceWhoisRecord" +"Cmdlets","NewMgSecurityTriggerRetentionEvent.g.cs","v1.0","New-MgSecurityTriggerRetentionEvent","POST","/security/triggers/retentionEvents","matched","New-MgSecurityTriggerRetentionEvent" +"Cmdlets","NewMgSecurityTriggerTypeRetentionEventType.g.cs","v1.0","New-MgSecurityTriggerTypeRetentionEventType","POST","/security/triggerTypes/retentionEventTypes","matched","New-MgSecurityTriggerTypeRetentionEventType" +"Cmdlets","RemoveMgSecurityAlertV2.g.cs","v1.0","Remove-MgSecurityAlertV2","DELETE","/security/alerts_v2/{param}","matched","Remove-MgSecurityAlertV2" +"Cmdlets","RemoveMgSecurityAttackSimulation.g.cs","v1.0","Remove-MgSecurityAttackSimulation","DELETE","/security/attackSimulation/simulations/{param}","matched","Remove-MgSecurityAttackSimulation" +"Cmdlets","RemoveMgSecurityAttackSimulationAutomation.g.cs","v1.0","Remove-MgSecurityAttackSimulationAutomation","DELETE","/security/attackSimulation/simulationAutomations/{param}","matched","Remove-MgSecurityAttackSimulationAutomation" +"Cmdlets","RemoveMgSecurityAttackSimulationAutomationRun.g.cs","v1.0","Remove-MgSecurityAttackSimulationAutomationRun","DELETE","/security/attackSimulation/simulationAutomations/{param}/runs/{param}","matched","Remove-MgSecurityAttackSimulationAutomationRun" +"Cmdlets","RemoveMgSecurityAttackSimulationEndUserNotification.g.cs","v1.0","Remove-MgSecurityAttackSimulationEndUserNotification","DELETE","/security/attackSimulation/endUserNotifications/{param}","matched","Remove-MgSecurityAttackSimulationEndUserNotification" +"Cmdlets","RemoveMgSecurityAttackSimulationEndUserNotificationDetail.g.cs","v1.0","Remove-MgSecurityAttackSimulationEndUserNotificationDetail","DELETE","/security/attackSimulation/endUserNotifications/{param}/details/{param}","matched","Remove-MgSecurityAttackSimulationEndUserNotificationDetail" +"Cmdlets","RemoveMgSecurityAttackSimulationLandingPage.g.cs","v1.0","Remove-MgSecurityAttackSimulationLandingPage","DELETE","/security/attackSimulation/landingPages/{param}","matched","Remove-MgSecurityAttackSimulationLandingPage" +"Cmdlets","RemoveMgSecurityAttackSimulationLandingPageDetail.g.cs","v1.0","Remove-MgSecurityAttackSimulationLandingPageDetail","DELETE","/security/attackSimulation/landingPages/{param}/details/{param}","matched","Remove-MgSecurityAttackSimulationLandingPageDetail" +"Cmdlets","RemoveMgSecurityAttackSimulationLoginPage.g.cs","v1.0","Remove-MgSecurityAttackSimulationLoginPage","DELETE","/security/attackSimulation/loginPages/{param}","matched","Remove-MgSecurityAttackSimulationLoginPage" +"Cmdlets","RemoveMgSecurityAttackSimulationOperation.g.cs","v1.0","Remove-MgSecurityAttackSimulationOperation","DELETE","/security/attackSimulation/operations/{param}","matched","Remove-MgSecurityAttackSimulationOperation" +"Cmdlets","RemoveMgSecurityAttackSimulationPayload.g.cs","v1.0","Remove-MgSecurityAttackSimulationPayload","DELETE","/security/attackSimulation/payloads/{param}","matched","Remove-MgSecurityAttackSimulationPayload" +"Cmdlets","RemoveMgSecurityAttackSimulationTraining.g.cs","v1.0","Remove-MgSecurityAttackSimulationTraining","DELETE","/security/attackSimulation/trainings/{param}","matched","Remove-MgSecurityAttackSimulationTraining" +"Cmdlets","RemoveMgSecurityAttackSimulationTrainingLanguageDetail.g.cs","v1.0","Remove-MgSecurityAttackSimulationTrainingLanguageDetail","DELETE","/security/attackSimulation/trainings/{param}/languageDetails/{param}","matched","Remove-MgSecurityAttackSimulationTrainingLanguageDetail" +"Cmdlets","RemoveMgSecurityAuditLog.g.cs","v1.0","Remove-MgSecurityAuditLog","DELETE","/security/auditLog","matched","Remove-MgSecurityAuditLog" +"Cmdlets","RemoveMgSecurityAuditLogQuery.g.cs","v1.0","Remove-MgSecurityAuditLogQuery","DELETE","/security/auditLog/queries/{param}","matched","Remove-MgSecurityAuditLogQuery" +"Cmdlets","RemoveMgSecurityCase.g.cs","v1.0","Remove-MgSecurityCase","DELETE","/security/cases","matched","Remove-MgSecurityCase" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCase.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCase","DELETE","/security/cases/ediscoveryCases/{param}","matched","Remove-MgSecurityCaseEdiscoveryCase" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseCustodian.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseCustodian","DELETE","/security/cases/ediscoveryCases/{param}/custodians/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseCustodian" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseCustodianSiteSource.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","DELETE","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","DELETE","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseCustodianUserSource.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseCustodianUserSource","DELETE","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseMember.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseMember","DELETE","/security/cases/ediscoveryCases/{param}/caseMembers/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseMember" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseNoncustodialDataSource.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","DELETE","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource","DELETE","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource","no-oracle","" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseOperation.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseOperation","DELETE","/security/cases/ediscoveryCases/{param}/operations/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseOperation" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseReviewSet.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseReviewSet","DELETE","/security/cases/ediscoveryCases/{param}/reviewSets/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseReviewSet" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseReviewSetQuery.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery","DELETE","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseSearch.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseSearch","DELETE","/security/cases/ediscoveryCases/{param}/searches/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseSearch" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseSearchAdditionalSource.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","DELETE","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseSetting.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseSetting","DELETE","/security/cases/ediscoveryCases/{param}/settings","matched","Remove-MgSecurityCaseEdiscoveryCaseSetting" +"Cmdlets","RemoveMgSecurityCaseEdiscoveryCaseTag.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseTag","DELETE","/security/cases/ediscoveryCases/{param}/tags/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseTag" +"Cmdlets","RemoveMgSecurityCollaboration.g.cs","v1.0","Remove-MgSecurityCollaboration","DELETE","/security/collaboration","matched","Remove-MgSecurityCollaboration" +"Cmdlets","RemoveMgSecurityCollaborationAnalyzedEmail.g.cs","v1.0","Remove-MgSecurityCollaborationAnalyzedEmail","DELETE","/security/collaboration/analyzedEmails/{param}","matched","Remove-MgSecurityCollaborationAnalyzedEmail" +"Cmdlets","RemoveMgSecurityDataSecurityAndGovernance.g.cs","v1.0","Remove-MgSecurityDataSecurityAndGovernance","DELETE","/security/dataSecurityAndGovernance","matched","Remove-MgSecurityDataSecurityAndGovernance" +"Cmdlets","RemoveMgSecurityDataSecurityAndGovernanceProtectionScope.g.cs","v1.0","Remove-MgSecurityDataSecurityAndGovernanceProtectionScope","DELETE","/security/dataSecurityAndGovernance/protectionScopes","matched","Remove-MgSecurityDataSecurityAndGovernanceProtectionScope" +"Cmdlets","RemoveMgSecurityDataSecurityAndGovernanceSensitivityLabel.g.cs","v1.0","Remove-MgSecurityDataSecurityAndGovernanceSensitivityLabel","DELETE","/security/dataSecurityAndGovernance/sensitivityLabels/{param}","matched","Remove-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"Cmdlets","RemoveMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel.g.cs","v1.0","Remove-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","DELETE","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/{param}","matched","Remove-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"Cmdlets","RemoveMgSecurityIdentity.g.cs","v1.0","Remove-MgSecurityIdentity","DELETE","/security/identities","matched","Remove-MgSecurityIdentity" +"Cmdlets","RemoveMgSecurityIdentityAccount.g.cs","v1.0","Remove-MgSecurityIdentityAccount","DELETE","/security/identities/identityAccounts/{param}","matched","Remove-MgSecurityIdentityAccount" +"Cmdlets","RemoveMgSecurityIdentityHealthIssue.g.cs","v1.0","Remove-MgSecurityIdentityHealthIssue","DELETE","/security/identities/healthIssues/{param}","matched","Remove-MgSecurityIdentityHealthIssue" +"Cmdlets","RemoveMgSecurityIdentitySensor.g.cs","v1.0","Remove-MgSecurityIdentitySensor","DELETE","/security/identities/sensors/{param}","matched","Remove-MgSecurityIdentitySensor" +"Cmdlets","RemoveMgSecurityIdentitySensorCandidate.g.cs","v1.0","Remove-MgSecurityIdentitySensorCandidate","DELETE","/security/identities/sensorCandidates/{param}","matched","Remove-MgSecurityIdentitySensorCandidate" +"Cmdlets","RemoveMgSecurityIdentitySensorCandidateActivationConfiguration.g.cs","v1.0","Remove-MgSecurityIdentitySensorCandidateActivationConfiguration","DELETE","/security/identities/sensorCandidateActivationConfiguration","matched","Remove-MgSecurityIdentitySensorCandidateActivationConfiguration" +"Cmdlets","RemoveMgSecurityIdentitySetting.g.cs","v1.0","Remove-MgSecurityIdentitySetting","DELETE","/security/identities/settings","matched","Remove-MgSecurityIdentitySetting" +"Cmdlets","RemoveMgSecurityIdentitySettingAutoAuditingConfiguration.g.cs","v1.0","Remove-MgSecurityIdentitySettingAutoAuditingConfiguration","DELETE","/security/identities/settings/autoAuditingConfiguration","matched","Remove-MgSecurityIdentitySettingAutoAuditingConfiguration" +"Cmdlets","RemoveMgSecurityIncident.g.cs","v1.0","Remove-MgSecurityIncident","DELETE","/security/incidents/{param}","matched","Remove-MgSecurityIncident" +"Cmdlets","RemoveMgSecurityLabel.g.cs","v1.0","Remove-MgSecurityLabel","DELETE","/security/labels","matched","Remove-MgSecurityLabel" +"Cmdlets","RemoveMgSecurityLabelAuthority.g.cs","v1.0","Remove-MgSecurityLabelAuthority","DELETE","/security/labels/authorities/{param}","matched","Remove-MgSecurityLabelAuthority" +"Cmdlets","RemoveMgSecurityLabelCategory.g.cs","v1.0","Remove-MgSecurityLabelCategory","DELETE","/security/labels/categories/{param}","matched","Remove-MgSecurityLabelCategory" +"Cmdlets","RemoveMgSecurityLabelCategorySubcategory.g.cs","v1.0","Remove-MgSecurityLabelCategorySubcategory","DELETE","/security/labels/categories/{param}/subcategories/{param}","matched","Remove-MgSecurityLabelCategorySubcategory" +"Cmdlets","RemoveMgSecurityLabelCitation.g.cs","v1.0","Remove-MgSecurityLabelCitation","DELETE","/security/labels/citations/{param}","matched","Remove-MgSecurityLabelCitation" +"Cmdlets","RemoveMgSecurityLabelDepartment.g.cs","v1.0","Remove-MgSecurityLabelDepartment","DELETE","/security/labels/departments/{param}","matched","Remove-MgSecurityLabelDepartment" +"Cmdlets","RemoveMgSecurityLabelFilePlanReference.g.cs","v1.0","Remove-MgSecurityLabelFilePlanReference","DELETE","/security/labels/filePlanReferences/{param}","matched","Remove-MgSecurityLabelFilePlanReference" +"Cmdlets","RemoveMgSecurityLabelRetentionLabel.g.cs","v1.0","Remove-MgSecurityLabelRetentionLabel","DELETE","/security/labels/retentionLabels/{param}","matched","Remove-MgSecurityLabelRetentionLabel" +"Cmdlets","RemoveMgSecurityLabelRetentionLabelDescriptor.g.cs","v1.0","Remove-MgSecurityLabelRetentionLabelDescriptor","DELETE","/security/labels/retentionLabels/{param}/descriptors","matched","Remove-MgSecurityLabelRetentionLabelDescriptor" +"Cmdlets","RemoveMgSecurityLabelRetentionLabelDispositionReviewStage.g.cs","v1.0","Remove-MgSecurityLabelRetentionLabelDispositionReviewStage","DELETE","/security/labels/retentionLabels/{param}/dispositionReviewStages/{param}","matched","Remove-MgSecurityLabelRetentionLabelDispositionReviewStage" +"Cmdlets","RemoveMgSecuritySecureScore.g.cs","v1.0","Remove-MgSecuritySecureScore","DELETE","/security/secureScores/{param}","matched","Remove-MgSecuritySecureScore" +"Cmdlets","RemoveMgSecuritySecureScoreControlProfile.g.cs","v1.0","Remove-MgSecuritySecureScoreControlProfile","DELETE","/security/secureScoreControlProfiles/{param}","matched","Remove-MgSecuritySecureScoreControlProfile" +"Cmdlets","RemoveMgSecuritySubjectRightsRequest.g.cs","v1.0","Remove-MgSecuritySubjectRightsRequest","DELETE","/security/subjectRightsRequests/{param}","matched","Remove-MgSecuritySubjectRightsRequest" +"Cmdlets","RemoveMgSecuritySubjectRightsRequestNote.g.cs","v1.0","Remove-MgSecuritySubjectRightsRequestNote","DELETE","/security/subjectRightsRequests/{param}/notes/{param}","matched","Remove-MgSecuritySubjectRightsRequestNote" +"Cmdlets","RemoveMgSecurityThreatIntelligence.g.cs","v1.0","Remove-MgSecurityThreatIntelligence","DELETE","/security/threatIntelligence","matched","Remove-MgSecurityThreatIntelligence" +"Cmdlets","RemoveMgSecurityThreatIntelligenceArticle.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceArticle","DELETE","/security/threatIntelligence/articles/{param}","matched","Remove-MgSecurityThreatIntelligenceArticle" +"Cmdlets","RemoveMgSecurityThreatIntelligenceArticleIndicator.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceArticleIndicator","DELETE","/security/threatIntelligence/articleIndicators/{param}","matched","Remove-MgSecurityThreatIntelligenceArticleIndicator" +"Cmdlets","RemoveMgSecurityThreatIntelligenceHost.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHost","DELETE","/security/threatIntelligence/hosts/{param}","matched","Remove-MgSecurityThreatIntelligenceHost" +"Cmdlets","RemoveMgSecurityThreatIntelligenceHostComponent.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostComponent","DELETE","/security/threatIntelligence/hostComponents/{param}","matched","Remove-MgSecurityThreatIntelligenceHostComponent" +"Cmdlets","RemoveMgSecurityThreatIntelligenceHostCookie.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostCookie","DELETE","/security/threatIntelligence/hostCookies/{param}","matched","Remove-MgSecurityThreatIntelligenceHostCookie" +"Cmdlets","RemoveMgSecurityThreatIntelligenceHostPair.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostPair","DELETE","/security/threatIntelligence/hostPairs/{param}","matched","Remove-MgSecurityThreatIntelligenceHostPair" +"Cmdlets","RemoveMgSecurityThreatIntelligenceHostPort.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostPort","DELETE","/security/threatIntelligence/hostPorts/{param}","matched","Remove-MgSecurityThreatIntelligenceHostPort" +"Cmdlets","RemoveMgSecurityThreatIntelligenceHostReputation.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostReputation","DELETE","/security/threatIntelligence/hosts/{param}/reputation","matched","Remove-MgSecurityThreatIntelligenceHostReputation" +"Cmdlets","RemoveMgSecurityThreatIntelligenceHostSslCertificate.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostSslCertificate","DELETE","/security/threatIntelligence/hostSslCertificates/{param}","matched","Remove-MgSecurityThreatIntelligenceHostSslCertificate" +"Cmdlets","RemoveMgSecurityThreatIntelligenceHostTracker.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostTracker","DELETE","/security/threatIntelligence/hostTrackers/{param}","matched","Remove-MgSecurityThreatIntelligenceHostTracker" +"Cmdlets","RemoveMgSecurityThreatIntelligenceIntelProfile.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceIntelProfile","DELETE","/security/threatIntelligence/intelProfiles/{param}","matched","Remove-MgSecurityThreatIntelligenceIntelProfile" +"Cmdlets","RemoveMgSecurityThreatIntelligencePassiveDnsRecord.g.cs","v1.0","Remove-MgSecurityThreatIntelligencePassiveDnsRecord","DELETE","/security/threatIntelligence/passiveDnsRecords/{param}","matched","Remove-MgSecurityThreatIntelligencePassiveDnsRecord" +"Cmdlets","RemoveMgSecurityThreatIntelligenceProfileIndicator.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceProfileIndicator","DELETE","/security/threatIntelligence/intelligenceProfileIndicators/{param}","matched","Remove-MgSecurityThreatIntelligenceProfileIndicator" +"Cmdlets","RemoveMgSecurityThreatIntelligenceSslCertificate.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceSslCertificate","DELETE","/security/threatIntelligence/sslCertificates/{param}","matched","Remove-MgSecurityThreatIntelligenceSslCertificate" +"Cmdlets","RemoveMgSecurityThreatIntelligenceSubdomain.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceSubdomain","DELETE","/security/threatIntelligence/subdomains/{param}","matched","Remove-MgSecurityThreatIntelligenceSubdomain" +"Cmdlets","RemoveMgSecurityThreatIntelligenceVulnerability.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceVulnerability","DELETE","/security/threatIntelligence/vulnerabilities/{param}","matched","Remove-MgSecurityThreatIntelligenceVulnerability" +"Cmdlets","RemoveMgSecurityThreatIntelligenceVulnerabilityComponent.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceVulnerabilityComponent","DELETE","/security/threatIntelligence/vulnerabilities/{param}/components/{param}","matched","Remove-MgSecurityThreatIntelligenceVulnerabilityComponent" +"Cmdlets","RemoveMgSecurityThreatIntelligenceWhoisHistoryRecord.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceWhoisHistoryRecord","DELETE","/security/threatIntelligence/whoisHistoryRecords/{param}","matched","Remove-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"Cmdlets","RemoveMgSecurityThreatIntelligenceWhoisRecord.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceWhoisRecord","DELETE","/security/threatIntelligence/whoisRecords/{param}","matched","Remove-MgSecurityThreatIntelligenceWhoisRecord" +"Cmdlets","RemoveMgSecurityTrigger.g.cs","v1.0","Remove-MgSecurityTrigger","DELETE","/security/triggers","matched","Remove-MgSecurityTrigger" +"Cmdlets","RemoveMgSecurityTriggerRetentionEvent.g.cs","v1.0","Remove-MgSecurityTriggerRetentionEvent","DELETE","/security/triggers/retentionEvents/{param}","matched","Remove-MgSecurityTriggerRetentionEvent" +"Cmdlets","RemoveMgSecurityTriggerType.g.cs","v1.0","Remove-MgSecurityTriggerType","DELETE","/security/triggerTypes","matched","Remove-MgSecurityTriggerType" +"Cmdlets","RemoveMgSecurityTriggerTypeRetentionEventType.g.cs","v1.0","Remove-MgSecurityTriggerTypeRetentionEventType","DELETE","/security/triggerTypes/retentionEventTypes/{param}","matched","Remove-MgSecurityTriggerTypeRetentionEventType" +"Cmdlets","UpdateMgSecurity.g.cs","v1.0","Update-MgSecurity","PATCH","/security","no-oracle","" +"Cmdlets","UpdateMgSecurityAlert.g.cs","v1.0","Update-MgSecurityAlert","PATCH","/security/alerts/{param}","matched","Update-MgSecurityAlert" +"Cmdlets","UpdateMgSecurityAlertV2.g.cs","v1.0","Update-MgSecurityAlertV2","PATCH","/security/alerts_v2/{param}","matched","Update-MgSecurityAlertV2" +"Cmdlets","UpdateMgSecurityAttackSimulation.g.cs","v1.0","Update-MgSecurityAttackSimulation","PATCH","/security/attackSimulation/simulations/{param}","no-oracle","" +"Cmdlets","UpdateMgSecurityAttackSimulationAutomation.g.cs","v1.0","Update-MgSecurityAttackSimulationAutomation","PATCH","/security/attackSimulation/simulationAutomations/{param}","matched","Update-MgSecurityAttackSimulationAutomation" +"Cmdlets","UpdateMgSecurityAttackSimulationAutomationRun.g.cs","v1.0","Update-MgSecurityAttackSimulationAutomationRun","PATCH","/security/attackSimulation/simulationAutomations/{param}/runs/{param}","matched","Update-MgSecurityAttackSimulationAutomationRun" +"Cmdlets","UpdateMgSecurityAttackSimulationEndUserNotification.g.cs","v1.0","Update-MgSecurityAttackSimulationEndUserNotification","PATCH","/security/attackSimulation/endUserNotifications/{param}","matched","Update-MgSecurityAttackSimulationEndUserNotification" +"Cmdlets","UpdateMgSecurityAttackSimulationEndUserNotificationDetail.g.cs","v1.0","Update-MgSecurityAttackSimulationEndUserNotificationDetail","PATCH","/security/attackSimulation/endUserNotifications/{param}/details/{param}","matched","Update-MgSecurityAttackSimulationEndUserNotificationDetail" +"Cmdlets","UpdateMgSecurityAttackSimulationLandingPage.g.cs","v1.0","Update-MgSecurityAttackSimulationLandingPage","PATCH","/security/attackSimulation/landingPages/{param}","matched","Update-MgSecurityAttackSimulationLandingPage" +"Cmdlets","UpdateMgSecurityAttackSimulationLandingPageDetail.g.cs","v1.0","Update-MgSecurityAttackSimulationLandingPageDetail","PATCH","/security/attackSimulation/landingPages/{param}/details/{param}","matched","Update-MgSecurityAttackSimulationLandingPageDetail" +"Cmdlets","UpdateMgSecurityAttackSimulationLoginPage.g.cs","v1.0","Update-MgSecurityAttackSimulationLoginPage","PATCH","/security/attackSimulation/loginPages/{param}","matched","Update-MgSecurityAttackSimulationLoginPage" +"Cmdlets","UpdateMgSecurityAttackSimulationOperation.g.cs","v1.0","Update-MgSecurityAttackSimulationOperation","PATCH","/security/attackSimulation/operations/{param}","matched","Update-MgSecurityAttackSimulationOperation" +"Cmdlets","UpdateMgSecurityAttackSimulationPayload.g.cs","v1.0","Update-MgSecurityAttackSimulationPayload","PATCH","/security/attackSimulation/payloads/{param}","matched","Update-MgSecurityAttackSimulationPayload" +"Cmdlets","UpdateMgSecurityAttackSimulationTraining.g.cs","v1.0","Update-MgSecurityAttackSimulationTraining","PATCH","/security/attackSimulation/trainings/{param}","matched","Update-MgSecurityAttackSimulationTraining" +"Cmdlets","UpdateMgSecurityAttackSimulationTrainingLanguageDetail.g.cs","v1.0","Update-MgSecurityAttackSimulationTrainingLanguageDetail","PATCH","/security/attackSimulation/trainings/{param}/languageDetails/{param}","matched","Update-MgSecurityAttackSimulationTrainingLanguageDetail" +"Cmdlets","UpdateMgSecurityAuditLog.g.cs","v1.0","Update-MgSecurityAuditLog","PATCH","/security/auditLog","matched","Update-MgSecurityAuditLog" +"Cmdlets","UpdateMgSecurityCase.g.cs","v1.0","Update-MgSecurityCase","PATCH","/security/cases","matched","Update-MgSecurityCase" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCase.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCase","PATCH","/security/cases/ediscoveryCases/{param}","matched","Update-MgSecurityCaseEdiscoveryCase" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseCustodian.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseCustodian","PATCH","/security/cases/ediscoveryCases/{param}/custodians/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseCustodian" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseCustodianSiteSource.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","PATCH","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","PATCH","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseCustodianUserSource.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseCustodianUserSource","PATCH","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseMember.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseMember","PATCH","/security/cases/ediscoveryCases/{param}/caseMembers/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseMember" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseNoncustodialDataSource.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","PATCH","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource","PATCH","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource","no-oracle","" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseOperation.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseOperation","PATCH","/security/cases/ediscoveryCases/{param}/operations/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseOperation" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseReviewSet.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseReviewSet","PATCH","/security/cases/ediscoveryCases/{param}/reviewSets/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseReviewSet" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseReviewSetQuery.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery","PATCH","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseSearch.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseSearch","PATCH","/security/cases/ediscoveryCases/{param}/searches/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseSearch" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseSearchAdditionalSource.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","PATCH","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseSetting.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseSetting","PATCH","/security/cases/ediscoveryCases/{param}/settings","matched","Update-MgSecurityCaseEdiscoveryCaseSetting" +"Cmdlets","UpdateMgSecurityCaseEdiscoveryCaseTag.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseTag","PATCH","/security/cases/ediscoveryCases/{param}/tags/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseTag" +"Cmdlets","UpdateMgSecurityCollaboration.g.cs","v1.0","Update-MgSecurityCollaboration","PATCH","/security/collaboration","matched","Update-MgSecurityCollaboration" +"Cmdlets","UpdateMgSecurityCollaborationAnalyzedEmail.g.cs","v1.0","Update-MgSecurityCollaborationAnalyzedEmail","PATCH","/security/collaboration/analyzedEmails/{param}","matched","Update-MgSecurityCollaborationAnalyzedEmail" +"Cmdlets","UpdateMgSecurityDataSecurityAndGovernance.g.cs","v1.0","Update-MgSecurityDataSecurityAndGovernance","PATCH","/security/dataSecurityAndGovernance","matched","Update-MgSecurityDataSecurityAndGovernance" +"Cmdlets","UpdateMgSecurityDataSecurityAndGovernanceProtectionScope.g.cs","v1.0","Update-MgSecurityDataSecurityAndGovernanceProtectionScope","PATCH","/security/dataSecurityAndGovernance/protectionScopes","matched","Update-MgSecurityDataSecurityAndGovernanceProtectionScope" +"Cmdlets","UpdateMgSecurityDataSecurityAndGovernanceSensitivityLabel.g.cs","v1.0","Update-MgSecurityDataSecurityAndGovernanceSensitivityLabel","PATCH","/security/dataSecurityAndGovernance/sensitivityLabels/{param}","matched","Update-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"Cmdlets","UpdateMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel.g.cs","v1.0","Update-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","PATCH","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/{param}","matched","Update-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"Cmdlets","UpdateMgSecurityIdentity.g.cs","v1.0","Update-MgSecurityIdentity","PATCH","/security/identities","matched","Update-MgSecurityIdentity" +"Cmdlets","UpdateMgSecurityIdentityAccount.g.cs","v1.0","Update-MgSecurityIdentityAccount","PATCH","/security/identities/identityAccounts/{param}","matched","Update-MgSecurityIdentityAccount" +"Cmdlets","UpdateMgSecurityIdentityHealthIssue.g.cs","v1.0","Update-MgSecurityIdentityHealthIssue","PATCH","/security/identities/healthIssues/{param}","matched","Update-MgSecurityIdentityHealthIssue" +"Cmdlets","UpdateMgSecurityIdentitySensor.g.cs","v1.0","Update-MgSecurityIdentitySensor","PATCH","/security/identities/sensors/{param}","matched","Update-MgSecurityIdentitySensor" +"Cmdlets","UpdateMgSecurityIdentitySensorCandidate.g.cs","v1.0","Update-MgSecurityIdentitySensorCandidate","PATCH","/security/identities/sensorCandidates/{param}","matched","Update-MgSecurityIdentitySensorCandidate" +"Cmdlets","UpdateMgSecurityIdentitySensorCandidateActivationConfiguration.g.cs","v1.0","Update-MgSecurityIdentitySensorCandidateActivationConfiguration","PATCH","/security/identities/sensorCandidateActivationConfiguration","matched","Update-MgSecurityIdentitySensorCandidateActivationConfiguration" +"Cmdlets","UpdateMgSecurityIdentitySetting.g.cs","v1.0","Update-MgSecurityIdentitySetting","PATCH","/security/identities/settings","matched","Update-MgSecurityIdentitySetting" +"Cmdlets","UpdateMgSecurityIdentitySettingAutoAuditingConfiguration.g.cs","v1.0","Update-MgSecurityIdentitySettingAutoAuditingConfiguration","PATCH","/security/identities/settings/autoAuditingConfiguration","matched","Update-MgSecurityIdentitySettingAutoAuditingConfiguration" +"Cmdlets","UpdateMgSecurityIncident.g.cs","v1.0","Update-MgSecurityIncident","PATCH","/security/incidents/{param}","matched","Update-MgSecurityIncident" +"Cmdlets","UpdateMgSecurityLabel.g.cs","v1.0","Update-MgSecurityLabel","PATCH","/security/labels","matched","Update-MgSecurityLabel" +"Cmdlets","UpdateMgSecurityLabelAuthority.g.cs","v1.0","Update-MgSecurityLabelAuthority","PATCH","/security/labels/authorities/{param}","matched","Update-MgSecurityLabelAuthority" +"Cmdlets","UpdateMgSecurityLabelCategory.g.cs","v1.0","Update-MgSecurityLabelCategory","PATCH","/security/labels/categories/{param}","matched","Update-MgSecurityLabelCategory" +"Cmdlets","UpdateMgSecurityLabelCategorySubcategory.g.cs","v1.0","Update-MgSecurityLabelCategorySubcategory","PATCH","/security/labels/categories/{param}/subcategories/{param}","matched","Update-MgSecurityLabelCategorySubcategory" +"Cmdlets","UpdateMgSecurityLabelCitation.g.cs","v1.0","Update-MgSecurityLabelCitation","PATCH","/security/labels/citations/{param}","matched","Update-MgSecurityLabelCitation" +"Cmdlets","UpdateMgSecurityLabelDepartment.g.cs","v1.0","Update-MgSecurityLabelDepartment","PATCH","/security/labels/departments/{param}","matched","Update-MgSecurityLabelDepartment" +"Cmdlets","UpdateMgSecurityLabelFilePlanReference.g.cs","v1.0","Update-MgSecurityLabelFilePlanReference","PATCH","/security/labels/filePlanReferences/{param}","matched","Update-MgSecurityLabelFilePlanReference" +"Cmdlets","UpdateMgSecurityLabelRetentionLabel.g.cs","v1.0","Update-MgSecurityLabelRetentionLabel","PATCH","/security/labels/retentionLabels/{param}","matched","Update-MgSecurityLabelRetentionLabel" +"Cmdlets","UpdateMgSecurityLabelRetentionLabelDescriptor.g.cs","v1.0","Update-MgSecurityLabelRetentionLabelDescriptor","PATCH","/security/labels/retentionLabels/{param}/descriptors","matched","Update-MgSecurityLabelRetentionLabelDescriptor" +"Cmdlets","UpdateMgSecurityLabelRetentionLabelDispositionReviewStage.g.cs","v1.0","Update-MgSecurityLabelRetentionLabelDispositionReviewStage","PATCH","/security/labels/retentionLabels/{param}/dispositionReviewStages/{param}","matched","Update-MgSecurityLabelRetentionLabelDispositionReviewStage" +"Cmdlets","UpdateMgSecuritySecureScore.g.cs","v1.0","Update-MgSecuritySecureScore","PATCH","/security/secureScores/{param}","matched","Update-MgSecuritySecureScore" +"Cmdlets","UpdateMgSecuritySecureScoreControlProfile.g.cs","v1.0","Update-MgSecuritySecureScoreControlProfile","PATCH","/security/secureScoreControlProfiles/{param}","matched","Update-MgSecuritySecureScoreControlProfile" +"Cmdlets","UpdateMgSecuritySubjectRightsRequest.g.cs","v1.0","Update-MgSecuritySubjectRightsRequest","PATCH","/security/subjectRightsRequests/{param}","matched","Update-MgSecuritySubjectRightsRequest" +"Cmdlets","UpdateMgSecuritySubjectRightsRequestApproverMailboxSetting.g.cs","v1.0","Update-MgSecuritySubjectRightsRequestApproverMailboxSetting","PATCH","/security/subjectRightsRequests/{param}/approvers/{param}/mailboxSettings","matched","Update-MgSecuritySubjectRightsRequestApproverMailboxSetting" +"Cmdlets","UpdateMgSecuritySubjectRightsRequestCollaboratorMailboxSetting.g.cs","v1.0","Update-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting","PATCH","/security/subjectRightsRequests/{param}/collaborators/{param}/mailboxSettings","matched","Update-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting" +"Cmdlets","UpdateMgSecuritySubjectRightsRequestNote.g.cs","v1.0","Update-MgSecuritySubjectRightsRequestNote","PATCH","/security/subjectRightsRequests/{param}/notes/{param}","matched","Update-MgSecuritySubjectRightsRequestNote" +"Cmdlets","UpdateMgSecurityThreatIntelligence.g.cs","v1.0","Update-MgSecurityThreatIntelligence","PATCH","/security/threatIntelligence","matched","Update-MgSecurityThreatIntelligence" +"Cmdlets","UpdateMgSecurityThreatIntelligenceArticle.g.cs","v1.0","Update-MgSecurityThreatIntelligenceArticle","PATCH","/security/threatIntelligence/articles/{param}","matched","Update-MgSecurityThreatIntelligenceArticle" +"Cmdlets","UpdateMgSecurityThreatIntelligenceArticleIndicator.g.cs","v1.0","Update-MgSecurityThreatIntelligenceArticleIndicator","PATCH","/security/threatIntelligence/articleIndicators/{param}","matched","Update-MgSecurityThreatIntelligenceArticleIndicator" +"Cmdlets","UpdateMgSecurityThreatIntelligenceHost.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHost","PATCH","/security/threatIntelligence/hosts/{param}","matched","Update-MgSecurityThreatIntelligenceHost" +"Cmdlets","UpdateMgSecurityThreatIntelligenceHostComponent.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostComponent","PATCH","/security/threatIntelligence/hostComponents/{param}","matched","Update-MgSecurityThreatIntelligenceHostComponent" +"Cmdlets","UpdateMgSecurityThreatIntelligenceHostCookie.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostCookie","PATCH","/security/threatIntelligence/hostCookies/{param}","matched","Update-MgSecurityThreatIntelligenceHostCookie" +"Cmdlets","UpdateMgSecurityThreatIntelligenceHostPair.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostPair","PATCH","/security/threatIntelligence/hostPairs/{param}","matched","Update-MgSecurityThreatIntelligenceHostPair" +"Cmdlets","UpdateMgSecurityThreatIntelligenceHostPort.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostPort","PATCH","/security/threatIntelligence/hostPorts/{param}","matched","Update-MgSecurityThreatIntelligenceHostPort" +"Cmdlets","UpdateMgSecurityThreatIntelligenceHostReputation.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostReputation","PATCH","/security/threatIntelligence/hosts/{param}/reputation","matched","Update-MgSecurityThreatIntelligenceHostReputation" +"Cmdlets","UpdateMgSecurityThreatIntelligenceHostSslCertificate.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostSslCertificate","PATCH","/security/threatIntelligence/hostSslCertificates/{param}","matched","Update-MgSecurityThreatIntelligenceHostSslCertificate" +"Cmdlets","UpdateMgSecurityThreatIntelligenceHostTracker.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostTracker","PATCH","/security/threatIntelligence/hostTrackers/{param}","matched","Update-MgSecurityThreatIntelligenceHostTracker" +"Cmdlets","UpdateMgSecurityThreatIntelligenceIntelProfile.g.cs","v1.0","Update-MgSecurityThreatIntelligenceIntelProfile","PATCH","/security/threatIntelligence/intelProfiles/{param}","matched","Update-MgSecurityThreatIntelligenceIntelProfile" +"Cmdlets","UpdateMgSecurityThreatIntelligencePassiveDnsRecord.g.cs","v1.0","Update-MgSecurityThreatIntelligencePassiveDnsRecord","PATCH","/security/threatIntelligence/passiveDnsRecords/{param}","matched","Update-MgSecurityThreatIntelligencePassiveDnsRecord" +"Cmdlets","UpdateMgSecurityThreatIntelligenceProfileIndicator.g.cs","v1.0","Update-MgSecurityThreatIntelligenceProfileIndicator","PATCH","/security/threatIntelligence/intelligenceProfileIndicators/{param}","matched","Update-MgSecurityThreatIntelligenceProfileIndicator" +"Cmdlets","UpdateMgSecurityThreatIntelligenceSslCertificate.g.cs","v1.0","Update-MgSecurityThreatIntelligenceSslCertificate","PATCH","/security/threatIntelligence/sslCertificates/{param}","matched","Update-MgSecurityThreatIntelligenceSslCertificate" +"Cmdlets","UpdateMgSecurityThreatIntelligenceSubdomain.g.cs","v1.0","Update-MgSecurityThreatIntelligenceSubdomain","PATCH","/security/threatIntelligence/subdomains/{param}","matched","Update-MgSecurityThreatIntelligenceSubdomain" +"Cmdlets","UpdateMgSecurityThreatIntelligenceVulnerability.g.cs","v1.0","Update-MgSecurityThreatIntelligenceVulnerability","PATCH","/security/threatIntelligence/vulnerabilities/{param}","matched","Update-MgSecurityThreatIntelligenceVulnerability" +"Cmdlets","UpdateMgSecurityThreatIntelligenceVulnerabilityComponent.g.cs","v1.0","Update-MgSecurityThreatIntelligenceVulnerabilityComponent","PATCH","/security/threatIntelligence/vulnerabilities/{param}/components/{param}","matched","Update-MgSecurityThreatIntelligenceVulnerabilityComponent" +"Cmdlets","UpdateMgSecurityThreatIntelligenceWhoisHistoryRecord.g.cs","v1.0","Update-MgSecurityThreatIntelligenceWhoisHistoryRecord","PATCH","/security/threatIntelligence/whoisHistoryRecords/{param}","matched","Update-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"Cmdlets","UpdateMgSecurityThreatIntelligenceWhoisRecord.g.cs","v1.0","Update-MgSecurityThreatIntelligenceWhoisRecord","PATCH","/security/threatIntelligence/whoisRecords/{param}","matched","Update-MgSecurityThreatIntelligenceWhoisRecord" +"Cmdlets","UpdateMgSecurityTrigger.g.cs","v1.0","Update-MgSecurityTrigger","PATCH","/security/triggers","matched","Update-MgSecurityTrigger" +"Cmdlets","UpdateMgSecurityTriggerRetentionEvent.g.cs","v1.0","Update-MgSecurityTriggerRetentionEvent","PATCH","/security/triggers/retentionEvents/{param}","matched","Update-MgSecurityTriggerRetentionEvent" +"Cmdlets","UpdateMgSecurityTriggerType.g.cs","v1.0","Update-MgSecurityTriggerType","PATCH","/security/triggerTypes","matched","Update-MgSecurityTriggerType" +"Cmdlets","UpdateMgSecurityTriggerTypeRetentionEventType.g.cs","v1.0","Update-MgSecurityTriggerTypeRetentionEventType","PATCH","/security/triggerTypes/retentionEventTypes/{param}","matched","Update-MgSecurityTriggerTypeRetentionEventType" +"Cmdlets","GetMgAdminSharepoint.g.cs","v1.0","Get-MgAdminSharepoint","GET","/admin/sharepoint","matched","Get-MgAdminSharepoint" +"Cmdlets","GetMgAdminSharepointSetting.g.cs","v1.0","Get-MgAdminSharepointSetting","GET","/admin/sharepoint/settings","matched","Get-MgAdminSharepointSetting" +"Cmdlets","GetMgGroupSite_Get.g.cs","v1.0","Get-MgGroupSite","GET","/groups/{param}/sites/{param}","matched","Get-MgGroupSite" +"Cmdlets","GetMgGroupSite_List.g.cs","v1.0","Get-MgGroupSite","GET","/groups/{param}/sites","matched","Get-MgGroupSite" +"Cmdlets","GetMgGroupSite.g.cs","v1.0","Get-MgGroupSite","","","dispatcher","" +"Cmdlets","GetMgGroupSiteAnalytic.g.cs","v1.0","Get-MgGroupSiteAnalytic","GET","/groups/{param}/sites/{param}/analytics","matched","Get-MgGroupSiteAnalytic" +"Cmdlets","GetMgGroupSiteAnalyticAllTime.g.cs","v1.0","Get-MgGroupSiteAnalyticAllTime","GET","/groups/{param}/sites/{param}/analytics/allTime","mismatch","Get-MgGroupSiteAnalyticTime" +"Cmdlets","GetMgGroupSiteAnalyticItemActivityStat_Get.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStat","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}","matched","Get-MgGroupSiteAnalyticItemActivityStat" +"Cmdlets","GetMgGroupSiteAnalyticItemActivityStat_List.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStat","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats","matched","Get-MgGroupSiteAnalyticItemActivityStat" +"Cmdlets","GetMgGroupSiteAnalyticItemActivityStat.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStat","","","dispatcher","" +"Cmdlets","GetMgGroupSiteAnalyticItemActivityStatActivity_Get.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatActivity","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","matched","Get-MgGroupSiteAnalyticItemActivityStatActivity" +"Cmdlets","GetMgGroupSiteAnalyticItemActivityStatActivity_List.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatActivity","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities","matched","Get-MgGroupSiteAnalyticItemActivityStatActivity" +"Cmdlets","GetMgGroupSiteAnalyticItemActivityStatActivity.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatActivity","","","dispatcher","" +"Cmdlets","GetMgGroupSiteAnalyticItemActivityStatActivityCount.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatActivityCount","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/$count","matched","Get-MgGroupSiteAnalyticItemActivityStatActivityCount" +"Cmdlets","GetMgGroupSiteAnalyticItemActivityStatActivityDriveItem.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItem","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem","matched","Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItem" +"Cmdlets","GetMgGroupSiteAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","matched","Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent" +"Cmdlets","GetMgGroupSiteAnalyticItemActivityStatCount.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatCount","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/$count","matched","Get-MgGroupSiteAnalyticItemActivityStatCount" +"Cmdlets","GetMgGroupSiteAnalyticLastSevenDay.g.cs","v1.0","Get-MgGroupSiteAnalyticLastSevenDay","GET","/groups/{param}/sites/{param}/analytics/lastSevenDays","matched","Get-MgGroupSiteAnalyticLastSevenDay" +"Cmdlets","GetMgGroupSiteColumn_Get.g.cs","v1.0","Get-MgGroupSiteColumn","GET","/groups/{param}/sites/{param}/columns/{param}","matched","Get-MgGroupSiteColumn" +"Cmdlets","GetMgGroupSiteColumn_List.g.cs","v1.0","Get-MgGroupSiteColumn","GET","/groups/{param}/sites/{param}/columns","matched","Get-MgGroupSiteColumn" +"Cmdlets","GetMgGroupSiteColumn.g.cs","v1.0","Get-MgGroupSiteColumn","","","dispatcher","" +"Cmdlets","GetMgGroupSiteColumnCount.g.cs","v1.0","Get-MgGroupSiteColumnCount","GET","/groups/{param}/sites/{param}/columns/$count","matched","Get-MgGroupSiteColumnCount" +"Cmdlets","GetMgGroupSiteColumnSourceColumn.g.cs","v1.0","Get-MgGroupSiteColumnSourceColumn","GET","/groups/{param}/sites/{param}/columns/{param}/sourceColumn","matched","Get-MgGroupSiteColumnSourceColumn" +"Cmdlets","GetMgGroupSiteContentType_Get.g.cs","v1.0","Get-MgGroupSiteContentType","GET","/groups/{param}/sites/{param}/contentTypes/{param}","matched","Get-MgGroupSiteContentType" +"Cmdlets","GetMgGroupSiteContentType_List.g.cs","v1.0","Get-MgGroupSiteContentType","GET","/groups/{param}/sites/{param}/contentTypes","matched","Get-MgGroupSiteContentType" +"Cmdlets","GetMgGroupSiteContentType.g.cs","v1.0","Get-MgGroupSiteContentType","","","dispatcher","" +"Cmdlets","GetMgGroupSiteContentTypeBase.g.cs","v1.0","Get-MgGroupSiteContentTypeBase","GET","/groups/{param}/sites/{param}/contentTypes/{param}/base","matched","Get-MgGroupSiteContentTypeBase" +"Cmdlets","GetMgGroupSiteContentTypeBaseType_Get.g.cs","v1.0","Get-MgGroupSiteContentTypeBaseType","GET","/groups/{param}/sites/{param}/contentTypes/{param}/baseTypes/{param}","matched","Get-MgGroupSiteContentTypeBaseType" +"Cmdlets","GetMgGroupSiteContentTypeBaseType_List.g.cs","v1.0","Get-MgGroupSiteContentTypeBaseType","GET","/groups/{param}/sites/{param}/contentTypes/{param}/baseTypes","matched","Get-MgGroupSiteContentTypeBaseType" +"Cmdlets","GetMgGroupSiteContentTypeBaseType.g.cs","v1.0","Get-MgGroupSiteContentTypeBaseType","","","dispatcher","" +"Cmdlets","GetMgGroupSiteContentTypeBaseTypeCount.g.cs","v1.0","Get-MgGroupSiteContentTypeBaseTypeCount","GET","/groups/{param}/sites/{param}/contentTypes/{param}/baseTypes/$count","matched","Get-MgGroupSiteContentTypeBaseTypeCount" +"Cmdlets","GetMgGroupSiteContentTypeColumn_Get.g.cs","v1.0","Get-MgGroupSiteContentTypeColumn","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columns/{param}","matched","Get-MgGroupSiteContentTypeColumn" +"Cmdlets","GetMgGroupSiteContentTypeColumn_List.g.cs","v1.0","Get-MgGroupSiteContentTypeColumn","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columns","matched","Get-MgGroupSiteContentTypeColumn" +"Cmdlets","GetMgGroupSiteContentTypeColumn.g.cs","v1.0","Get-MgGroupSiteContentTypeColumn","","","dispatcher","" +"Cmdlets","GetMgGroupSiteContentTypeColumnCount.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnCount","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columns/$count","matched","Get-MgGroupSiteContentTypeColumnCount" +"Cmdlets","GetMgGroupSiteContentTypeColumnLink_Get.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnLink","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks/{param}","matched","Get-MgGroupSiteContentTypeColumnLink" +"Cmdlets","GetMgGroupSiteContentTypeColumnLink_List.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnLink","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks","matched","Get-MgGroupSiteContentTypeColumnLink" +"Cmdlets","GetMgGroupSiteContentTypeColumnLink.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnLink","","","dispatcher","" +"Cmdlets","GetMgGroupSiteContentTypeColumnLinkCount.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnLinkCount","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks/$count","matched","Get-MgGroupSiteContentTypeColumnLinkCount" +"Cmdlets","GetMgGroupSiteContentTypeColumnPosition_Get.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnPosition","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnPositions/{param}","matched","Get-MgGroupSiteContentTypeColumnPosition" +"Cmdlets","GetMgGroupSiteContentTypeColumnPosition_List.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnPosition","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnPositions","matched","Get-MgGroupSiteContentTypeColumnPosition" +"Cmdlets","GetMgGroupSiteContentTypeColumnPosition.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnPosition","","","dispatcher","" +"Cmdlets","GetMgGroupSiteContentTypeColumnPositionCount.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnPositionCount","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnPositions/$count","matched","Get-MgGroupSiteContentTypeColumnPositionCount" +"Cmdlets","GetMgGroupSiteContentTypeColumnSourceColumn.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnSourceColumn","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columns/{param}/sourceColumn","matched","Get-MgGroupSiteContentTypeColumnSourceColumn" +"Cmdlets","GetMgGroupSiteContentTypeCount.g.cs","v1.0","Get-MgGroupSiteContentTypeCount","GET","/groups/{param}/sites/{param}/contentTypes/$count","matched","Get-MgGroupSiteContentTypeCount" +"Cmdlets","GetMgGroupSiteContentTypeGetCompatibleHubContentTypes.g.cs","v1.0","Get-MgGroupSiteContentTypeGetCompatibleHubContentTypes","GET","/groups/{param}/sites/{param}/contentTypes/getCompatibleHubContentTypes","mismatch","Get-MgGroupSiteContentTypeCompatibleHubContentType" +"Cmdlets","GetMgGroupSiteContentTypeIsPublished.g.cs","v1.0","Get-MgGroupSiteContentTypeIsPublished","GET","/groups/{param}/sites/{param}/contentTypes/{param}/isPublished","mismatch","Test-MgGroupSiteContentTypePublished" +"Cmdlets","GetMgGroupSiteCount.g.cs","v1.0","Get-MgGroupSiteCount","GET","/groups/{param}/sites/{param}/sites/$count","mismatch","Get-MgGroupSubSiteCount" +"Cmdlets","GetMgGroupSiteCreatedByUser.g.cs","v1.0","Get-MgGroupSiteCreatedByUser","GET","/groups/{param}/sites/{param}/createdByUser","matched","Get-MgGroupSiteCreatedByUser" +"Cmdlets","GetMgGroupSiteCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSiteCreatedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/createdByUser/mailboxSettings","matched","Get-MgGroupSiteCreatedByUserMailboxSetting" +"Cmdlets","GetMgGroupSiteCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSiteCreatedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgGroupSiteCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgGroupSiteCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSiteCreatedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSiteCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgGroupSiteDefaultDrive.g.cs","v1.0","Get-MgGroupSiteDefaultDrive","GET","/groups/{param}/sites/{param}/drive","matched","Get-MgGroupSiteDefaultDrive" +"Cmdlets","GetMgGroupSiteDelta.g.cs","v1.0","Get-MgGroupSiteDelta","GET","/groups/{param}/sites/delta","matched","Get-MgGroupSiteDelta" +"Cmdlets","GetMgGroupSiteDrive_Get.g.cs","v1.0","Get-MgGroupSiteDrive","GET","/groups/{param}/sites/{param}/drives/{param}","matched","Get-MgGroupSiteDrive" +"Cmdlets","GetMgGroupSiteDrive_List.g.cs","v1.0","Get-MgGroupSiteDrive","GET","/groups/{param}/sites/{param}/drives","matched","Get-MgGroupSiteDrive" +"Cmdlets","GetMgGroupSiteDrive.g.cs","v1.0","Get-MgGroupSiteDrive","","","dispatcher","" +"Cmdlets","GetMgGroupSiteDriveCount.g.cs","v1.0","Get-MgGroupSiteDriveCount","GET","/groups/{param}/sites/{param}/drives/$count","matched","Get-MgGroupSiteDriveCount" +"Cmdlets","GetMgGroupSiteExternalColumn_Get.g.cs","v1.0","Get-MgGroupSiteExternalColumn","GET","/groups/{param}/sites/{param}/externalColumns/{param}","matched","Get-MgGroupSiteExternalColumn" +"Cmdlets","GetMgGroupSiteExternalColumn_List.g.cs","v1.0","Get-MgGroupSiteExternalColumn","GET","/groups/{param}/sites/{param}/externalColumns","matched","Get-MgGroupSiteExternalColumn" +"Cmdlets","GetMgGroupSiteExternalColumn.g.cs","v1.0","Get-MgGroupSiteExternalColumn","","","dispatcher","" +"Cmdlets","GetMgGroupSiteExternalColumnCount.g.cs","v1.0","Get-MgGroupSiteExternalColumnCount","GET","/groups/{param}/sites/{param}/externalColumns/$count","matched","Get-MgGroupSiteExternalColumnCount" +"Cmdlets","GetMgGroupSiteGetActivitiesByInterval.g.cs","v1.0","Get-MgGroupSiteGetActivitiesByInterval","GET","/groups/{param}/sites/{param}/getActivitiesByInterval","mismatch","Get-MgGroupSiteActivityByInterval" +"Cmdlets","GetMgGroupSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgGroupSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","GET","/groups/{param}/sites/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","no-oracle","" +"Cmdlets","GetMgGroupSiteGetAllSites.g.cs","v1.0","Get-MgGroupSiteGetAllSites","GET","/groups/{param}/sites/getAllSites","no-oracle","" +"Cmdlets","GetMgGroupSiteGetApplicableContentTypesForListWithListId.g.cs","v1.0","Get-MgGroupSiteGetApplicableContentTypesForListWithListId","GET","/groups/{param}/sites/{param}/getApplicableContentTypesForList(listId='{listId}')","mismatch","Get-MgGroupSiteApplicableContentTypeForList" +"Cmdlets","GetMgGroupSiteGetByPathWithPath.g.cs","v1.0","Get-MgGroupSiteGetByPathWithPath","GET","/groups/{param}/sites/{param}/getByPath(path='{path}')","mismatch","Get-MgGroupSiteByPath" +"Cmdlets","GetMgGroupSiteItem_Get.g.cs","v1.0","Get-MgGroupSiteItem","GET","/groups/{param}/sites/{param}/items/{param}","matched","Get-MgGroupSiteItem" +"Cmdlets","GetMgGroupSiteItem_List.g.cs","v1.0","Get-MgGroupSiteItem","GET","/groups/{param}/sites/{param}/items","matched","Get-MgGroupSiteItem" +"Cmdlets","GetMgGroupSiteItem.g.cs","v1.0","Get-MgGroupSiteItem","","","dispatcher","" +"Cmdlets","GetMgGroupSiteItemCount.g.cs","v1.0","Get-MgGroupSiteItemCount","GET","/groups/{param}/sites/{param}/items/$count","matched","Get-MgGroupSiteItemCount" +"Cmdlets","GetMgGroupSiteLastModifiedByUser.g.cs","v1.0","Get-MgGroupSiteLastModifiedByUser","GET","/groups/{param}/sites/{param}/lastModifiedByUser","matched","Get-MgGroupSiteLastModifiedByUser" +"Cmdlets","GetMgGroupSiteLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSiteLastModifiedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/lastModifiedByUser/mailboxSettings","matched","Get-MgGroupSiteLastModifiedByUserMailboxSetting" +"Cmdlets","GetMgGroupSiteLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSiteLastModifiedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgGroupSiteLastModifiedByUserServiceProvisioningError" +"Cmdlets","GetMgGroupSiteLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSiteLastModifiedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSiteLastModifiedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgGroupSiteList_Get.g.cs","v1.0","Get-MgGroupSiteList","GET","/groups/{param}/sites/{param}/lists/{param}","matched","Get-MgGroupSiteList" +"Cmdlets","GetMgGroupSiteList_List.g.cs","v1.0","Get-MgGroupSiteList","GET","/groups/{param}/sites/{param}/lists","matched","Get-MgGroupSiteList" +"Cmdlets","GetMgGroupSiteList.g.cs","v1.0","Get-MgGroupSiteList","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListColumn_Get.g.cs","v1.0","Get-MgGroupSiteListColumn","GET","/groups/{param}/sites/{param}/lists/{param}/columns/{param}","matched","Get-MgGroupSiteListColumn" +"Cmdlets","GetMgGroupSiteListColumn_List.g.cs","v1.0","Get-MgGroupSiteListColumn","GET","/groups/{param}/sites/{param}/lists/{param}/columns","matched","Get-MgGroupSiteListColumn" +"Cmdlets","GetMgGroupSiteListColumn.g.cs","v1.0","Get-MgGroupSiteListColumn","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListColumnCount.g.cs","v1.0","Get-MgGroupSiteListColumnCount","GET","/groups/{param}/sites/{param}/lists/{param}/columns/$count","matched","Get-MgGroupSiteListColumnCount" +"Cmdlets","GetMgGroupSiteListColumnSourceColumn.g.cs","v1.0","Get-MgGroupSiteListColumnSourceColumn","GET","/groups/{param}/sites/{param}/lists/{param}/columns/{param}/sourceColumn","matched","Get-MgGroupSiteListColumnSourceColumn" +"Cmdlets","GetMgGroupSiteListContentType_Get.g.cs","v1.0","Get-MgGroupSiteListContentType","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}","matched","Get-MgGroupSiteListContentType" +"Cmdlets","GetMgGroupSiteListContentType_List.g.cs","v1.0","Get-MgGroupSiteListContentType","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes","matched","Get-MgGroupSiteListContentType" +"Cmdlets","GetMgGroupSiteListContentType.g.cs","v1.0","Get-MgGroupSiteListContentType","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListContentTypeBase.g.cs","v1.0","Get-MgGroupSiteListContentTypeBase","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/base","no-oracle","" +"Cmdlets","GetMgGroupSiteListContentTypeBaseType_Get.g.cs","v1.0","Get-MgGroupSiteListContentTypeBaseType","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/{param}","no-oracle","" +"Cmdlets","GetMgGroupSiteListContentTypeBaseType_List.g.cs","v1.0","Get-MgGroupSiteListContentTypeBaseType","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes","no-oracle","" +"Cmdlets","GetMgGroupSiteListContentTypeBaseType.g.cs","v1.0","Get-MgGroupSiteListContentTypeBaseType","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListContentTypeBaseTypeCount.g.cs","v1.0","Get-MgGroupSiteListContentTypeBaseTypeCount","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/$count","no-oracle","" +"Cmdlets","GetMgGroupSiteListContentTypeColumn_Get.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumn","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","matched","Get-MgGroupSiteListContentTypeColumn" +"Cmdlets","GetMgGroupSiteListContentTypeColumn_List.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumn","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns","matched","Get-MgGroupSiteListContentTypeColumn" +"Cmdlets","GetMgGroupSiteListContentTypeColumn.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumn","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListContentTypeColumnCount.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnCount","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/$count","matched","Get-MgGroupSiteListContentTypeColumnCount" +"Cmdlets","GetMgGroupSiteListContentTypeColumnLink_Get.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnLink","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","matched","Get-MgGroupSiteListContentTypeColumnLink" +"Cmdlets","GetMgGroupSiteListContentTypeColumnLink_List.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnLink","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks","matched","Get-MgGroupSiteListContentTypeColumnLink" +"Cmdlets","GetMgGroupSiteListContentTypeColumnLink.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnLink","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListContentTypeColumnLinkCount.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnLinkCount","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/$count","matched","Get-MgGroupSiteListContentTypeColumnLinkCount" +"Cmdlets","GetMgGroupSiteListContentTypeColumnPosition_Get.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnPosition","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions/{param}","matched","Get-MgGroupSiteListContentTypeColumnPosition" +"Cmdlets","GetMgGroupSiteListContentTypeColumnPosition_List.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnPosition","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions","matched","Get-MgGroupSiteListContentTypeColumnPosition" +"Cmdlets","GetMgGroupSiteListContentTypeColumnPosition.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnPosition","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListContentTypeColumnPositionCount.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnPositionCount","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions/$count","matched","Get-MgGroupSiteListContentTypeColumnPositionCount" +"Cmdlets","GetMgGroupSiteListContentTypeColumnSourceColumn.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnSourceColumn","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}/sourceColumn","matched","Get-MgGroupSiteListContentTypeColumnSourceColumn" +"Cmdlets","GetMgGroupSiteListContentTypeCount.g.cs","v1.0","Get-MgGroupSiteListContentTypeCount","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/$count","matched","Get-MgGroupSiteListContentTypeCount" +"Cmdlets","GetMgGroupSiteListContentTypeGetCompatibleHubContentTypes.g.cs","v1.0","Get-MgGroupSiteListContentTypeGetCompatibleHubContentTypes","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/getCompatibleHubContentTypes","mismatch","Get-MgGroupSiteListContentTypeCompatibleHubContentType" +"Cmdlets","GetMgGroupSiteListContentTypeIsPublished.g.cs","v1.0","Get-MgGroupSiteListContentTypeIsPublished","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/isPublished","mismatch","Test-MgGroupSiteListContentTypePublished" +"Cmdlets","GetMgGroupSiteListCount.g.cs","v1.0","Get-MgGroupSiteListCount","GET","/groups/{param}/sites/{param}/lists/$count","matched","Get-MgGroupSiteListCount" +"Cmdlets","GetMgGroupSiteListCreatedByUser.g.cs","v1.0","Get-MgGroupSiteListCreatedByUser","GET","/groups/{param}/sites/{param}/lists/{param}/createdByUser","matched","Get-MgGroupSiteListCreatedByUser" +"Cmdlets","GetMgGroupSiteListCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSiteListCreatedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/lists/{param}/createdByUser/mailboxSettings","matched","Get-MgGroupSiteListCreatedByUserMailboxSetting" +"Cmdlets","GetMgGroupSiteListCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSiteListCreatedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/lists/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgGroupSiteListCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgGroupSiteListCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSiteListCreatedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/lists/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSiteListCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgGroupSiteListDrive.g.cs","v1.0","Get-MgGroupSiteListDrive","GET","/groups/{param}/sites/{param}/lists/{param}/drive","matched","Get-MgGroupSiteListDrive" +"Cmdlets","GetMgGroupSiteListItem_Get.g.cs","v1.0","Get-MgGroupSiteListItem","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}","matched","Get-MgGroupSiteListItem" +"Cmdlets","GetMgGroupSiteListItem_List.g.cs","v1.0","Get-MgGroupSiteListItem","GET","/groups/{param}/sites/{param}/lists/{param}/items","matched","Get-MgGroupSiteListItem" +"Cmdlets","GetMgGroupSiteListItem.g.cs","v1.0","Get-MgGroupSiteListItem","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListItemAnalytic.g.cs","v1.0","Get-MgGroupSiteListItemAnalytic","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/analytics","matched","Get-MgGroupSiteListItemAnalytic" +"Cmdlets","GetMgGroupSiteListItemCreatedByUser.g.cs","v1.0","Get-MgGroupSiteListItemCreatedByUser","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser","matched","Get-MgGroupSiteListItemCreatedByUser" +"Cmdlets","GetMgGroupSiteListItemCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSiteListItemCreatedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser/mailboxSettings","matched","Get-MgGroupSiteListItemCreatedByUserMailboxSetting" +"Cmdlets","GetMgGroupSiteListItemCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSiteListItemCreatedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgGroupSiteListItemCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgGroupSiteListItemCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSiteListItemCreatedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSiteListItemCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgGroupSiteListItemDelta.g.cs","v1.0","Get-MgGroupSiteListItemDelta","GET","/groups/{param}/sites/{param}/lists/{param}/items/delta","matched","Get-MgGroupSiteListItemDelta" +"Cmdlets","GetMgGroupSiteListItemDocumentSetVersion_Get.g.cs","v1.0","Get-MgGroupSiteListItemDocumentSetVersion","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","matched","Get-MgGroupSiteListItemDocumentSetVersion" +"Cmdlets","GetMgGroupSiteListItemDocumentSetVersion_List.g.cs","v1.0","Get-MgGroupSiteListItemDocumentSetVersion","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions","matched","Get-MgGroupSiteListItemDocumentSetVersion" +"Cmdlets","GetMgGroupSiteListItemDocumentSetVersion.g.cs","v1.0","Get-MgGroupSiteListItemDocumentSetVersion","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListItemDocumentSetVersionCount.g.cs","v1.0","Get-MgGroupSiteListItemDocumentSetVersionCount","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/$count","matched","Get-MgGroupSiteListItemDocumentSetVersionCount" +"Cmdlets","GetMgGroupSiteListItemDocumentSetVersionField.g.cs","v1.0","Get-MgGroupSiteListItemDocumentSetVersionField","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","matched","Get-MgGroupSiteListItemDocumentSetVersionField" +"Cmdlets","GetMgGroupSiteListItemDriveItem.g.cs","v1.0","Get-MgGroupSiteListItemDriveItem","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/driveItem","matched","Get-MgGroupSiteListItemDriveItem" +"Cmdlets","GetMgGroupSiteListItemDriveItemContent.g.cs","v1.0","Get-MgGroupSiteListItemDriveItemContent","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/driveItem/content","matched","Get-MgGroupSiteListItemDriveItemContent" +"Cmdlets","GetMgGroupSiteListItemField.g.cs","v1.0","Get-MgGroupSiteListItemField","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/fields","matched","Get-MgGroupSiteListItemField" +"Cmdlets","GetMgGroupSiteListItemGetActivitiesByInterval.g.cs","v1.0","Get-MgGroupSiteListItemGetActivitiesByInterval","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/getActivitiesByInterval","mismatch","Get-MgGroupSiteListItemActivityByInterval" +"Cmdlets","GetMgGroupSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgGroupSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","no-oracle","" +"Cmdlets","GetMgGroupSiteListItemLastModifiedByUser.g.cs","v1.0","Get-MgGroupSiteListItemLastModifiedByUser","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser","mismatch","Get-MgGroupSiteItemLastModifiedByUser" +"Cmdlets","GetMgGroupSiteListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSiteListItemLastModifiedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/mailboxSettings","mismatch","Get-MgGroupSiteItemLastModifiedByUserMailboxSetting" +"Cmdlets","GetMgGroupSiteListItemLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSiteListItemLastModifiedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors","mismatch","Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningError" +"Cmdlets","GetMgGroupSiteListItemLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSiteListItemLastModifiedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","mismatch","Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgGroupSiteListItemPermission_Get.g.cs","v1.0","Get-MgGroupSiteListItemPermission","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/{param}","matched","Get-MgGroupSiteListItemPermission" +"Cmdlets","GetMgGroupSiteListItemPermission_List.g.cs","v1.0","Get-MgGroupSiteListItemPermission","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions","matched","Get-MgGroupSiteListItemPermission" +"Cmdlets","GetMgGroupSiteListItemPermission.g.cs","v1.0","Get-MgGroupSiteListItemPermission","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListItemPermissionCount.g.cs","v1.0","Get-MgGroupSiteListItemPermissionCount","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/$count","matched","Get-MgGroupSiteListItemPermissionCount" +"Cmdlets","GetMgGroupSiteListItemVersion_Get.g.cs","v1.0","Get-MgGroupSiteListItemVersion","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}","matched","Get-MgGroupSiteListItemVersion" +"Cmdlets","GetMgGroupSiteListItemVersion_List.g.cs","v1.0","Get-MgGroupSiteListItemVersion","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions","matched","Get-MgGroupSiteListItemVersion" +"Cmdlets","GetMgGroupSiteListItemVersion.g.cs","v1.0","Get-MgGroupSiteListItemVersion","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListItemVersionCount.g.cs","v1.0","Get-MgGroupSiteListItemVersionCount","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/$count","matched","Get-MgGroupSiteListItemVersionCount" +"Cmdlets","GetMgGroupSiteListItemVersionField.g.cs","v1.0","Get-MgGroupSiteListItemVersionField","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","matched","Get-MgGroupSiteListItemVersionField" +"Cmdlets","GetMgGroupSiteListLastModifiedByUser.g.cs","v1.0","Get-MgGroupSiteListLastModifiedByUser","GET","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser","no-oracle","" +"Cmdlets","GetMgGroupSiteListLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSiteListLastModifiedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings","no-oracle","" +"Cmdlets","GetMgGroupSiteListLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSiteListLastModifiedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgGroupSiteListLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSiteListLastModifiedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgGroupSiteListOperation_Get.g.cs","v1.0","Get-MgGroupSiteListOperation","GET","/groups/{param}/sites/{param}/lists/{param}/operations/{param}","matched","Get-MgGroupSiteListOperation" +"Cmdlets","GetMgGroupSiteListOperation_List.g.cs","v1.0","Get-MgGroupSiteListOperation","GET","/groups/{param}/sites/{param}/lists/{param}/operations","matched","Get-MgGroupSiteListOperation" +"Cmdlets","GetMgGroupSiteListOperation.g.cs","v1.0","Get-MgGroupSiteListOperation","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListOperationCount.g.cs","v1.0","Get-MgGroupSiteListOperationCount","GET","/groups/{param}/sites/{param}/lists/{param}/operations/$count","matched","Get-MgGroupSiteListOperationCount" +"Cmdlets","GetMgGroupSiteListPermission_Get.g.cs","v1.0","Get-MgGroupSiteListPermission","GET","/groups/{param}/sites/{param}/lists/{param}/permissions/{param}","matched","Get-MgGroupSiteListPermission" +"Cmdlets","GetMgGroupSiteListPermission_List.g.cs","v1.0","Get-MgGroupSiteListPermission","GET","/groups/{param}/sites/{param}/lists/{param}/permissions","matched","Get-MgGroupSiteListPermission" +"Cmdlets","GetMgGroupSiteListPermission.g.cs","v1.0","Get-MgGroupSiteListPermission","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListPermissionCount.g.cs","v1.0","Get-MgGroupSiteListPermissionCount","GET","/groups/{param}/sites/{param}/lists/{param}/permissions/$count","matched","Get-MgGroupSiteListPermissionCount" +"Cmdlets","GetMgGroupSiteListSubscription_Get.g.cs","v1.0","Get-MgGroupSiteListSubscription","GET","/groups/{param}/sites/{param}/lists/{param}/subscriptions/{param}","matched","Get-MgGroupSiteListSubscription" +"Cmdlets","GetMgGroupSiteListSubscription_List.g.cs","v1.0","Get-MgGroupSiteListSubscription","GET","/groups/{param}/sites/{param}/lists/{param}/subscriptions","matched","Get-MgGroupSiteListSubscription" +"Cmdlets","GetMgGroupSiteListSubscription.g.cs","v1.0","Get-MgGroupSiteListSubscription","","","dispatcher","" +"Cmdlets","GetMgGroupSiteListSubscriptionCount.g.cs","v1.0","Get-MgGroupSiteListSubscriptionCount","GET","/groups/{param}/sites/{param}/lists/{param}/subscriptions/$count","matched","Get-MgGroupSiteListSubscriptionCount" +"Cmdlets","GetMgGroupSiteOnenote.g.cs","v1.0","Get-MgGroupSiteOnenote","GET","/groups/{param}/sites/{param}/onenote","matched","Get-MgGroupSiteOnenote" +"Cmdlets","GetMgGroupSiteOnenoteNotebook_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}","matched","Get-MgGroupSiteOnenoteNotebook" +"Cmdlets","GetMgGroupSiteOnenoteNotebook_List.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks","matched","Get-MgGroupSiteOnenoteNotebook" +"Cmdlets","GetMgGroupSiteOnenoteNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebook","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOnenoteNotebookCount.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookCount","GET","/groups/{param}/sites/{param}/onenote/notebooks/$count","matched","Get-MgGroupSiteOnenoteNotebookCount" +"Cmdlets","GetMgGroupSiteOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks","GET","/groups/{param}/sites/{param}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})","mismatch","Get-MgGroupSiteOnenoteNotebookRecentNotebook" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSection_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSection","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}","matched","Get-MgGroupSiteOnenoteNotebookSection" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSection_List.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSection","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections","matched","Get-MgGroupSiteOnenoteNotebookSection" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSection.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSection","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionCount.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionCount","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/$count","matched","Get-MgGroupSiteOnenoteNotebookSectionCount" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroup","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups","matched","Get-MgGroupSiteOnenoteNotebookSectionGroup" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupCount.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupCount","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupCount" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupParentNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupParentNotebook" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupParentSectionGroup","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentSectionGroup","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupParentSectionGroup" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupSection_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSection","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSection" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupSection_List.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSection","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSection" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSection","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupSectionCount.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionCount","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/$count","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionCount" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupSectionPage_List.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupSectionPageCount.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCount","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCount" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionPage_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPage","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Get-MgGroupSiteOnenoteNotebookSectionPage" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionPage_List.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPage","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","Get-MgGroupSiteOnenoteNotebookSectionPage" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionPage.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPage","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionPageContent.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPageContent","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","matched","Get-MgGroupSiteOnenoteNotebookSectionPageContent" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionPageCount.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPageCount","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/$count","matched","Get-MgGroupSiteOnenoteNotebookSectionPageCount" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPageParentNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteNotebookSectionPageParentNotebook" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionPageParentSection.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPageParentSection","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupSiteOnenoteNotebookSectionPageParentSection" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionPagePreview.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPagePreview","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupSiteOnenoteNotebookSectionPage" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionParentNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteNotebookSectionParentNotebook" +"Cmdlets","GetMgGroupSiteOnenoteNotebookSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionParentSectionGroup","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/parentSectionGroup","matched","Get-MgGroupSiteOnenoteNotebookSectionParentSectionGroup" +"Cmdlets","GetMgGroupSiteOnenoteOperation_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteOperation","GET","/groups/{param}/sites/{param}/onenote/operations/{param}","matched","Get-MgGroupSiteOnenoteOperation" +"Cmdlets","GetMgGroupSiteOnenoteOperation_List.g.cs","v1.0","Get-MgGroupSiteOnenoteOperation","GET","/groups/{param}/sites/{param}/onenote/operations","matched","Get-MgGroupSiteOnenoteOperation" +"Cmdlets","GetMgGroupSiteOnenoteOperation.g.cs","v1.0","Get-MgGroupSiteOnenoteOperation","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOnenoteOperationCount.g.cs","v1.0","Get-MgGroupSiteOnenoteOperationCount","GET","/groups/{param}/sites/{param}/onenote/operations/$count","matched","Get-MgGroupSiteOnenoteOperationCount" +"Cmdlets","GetMgGroupSiteOnenotePage_Get.g.cs","v1.0","Get-MgGroupSiteOnenotePage","GET","/groups/{param}/sites/{param}/onenote/pages/{param}","matched","Get-MgGroupSiteOnenotePage" +"Cmdlets","GetMgGroupSiteOnenotePage_List.g.cs","v1.0","Get-MgGroupSiteOnenotePage","GET","/groups/{param}/sites/{param}/onenote/pages","matched","Get-MgGroupSiteOnenotePage" +"Cmdlets","GetMgGroupSiteOnenotePage.g.cs","v1.0","Get-MgGroupSiteOnenotePage","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOnenotePageContent.g.cs","v1.0","Get-MgGroupSiteOnenotePageContent","GET","/groups/{param}/sites/{param}/onenote/pages/{param}/content","matched","Get-MgGroupSiteOnenotePageContent" +"Cmdlets","GetMgGroupSiteOnenotePageCount.g.cs","v1.0","Get-MgGroupSiteOnenotePageCount","GET","/groups/{param}/sites/{param}/onenote/pages/$count","matched","Get-MgGroupSiteOnenotePageCount" +"Cmdlets","GetMgGroupSiteOnenotePageParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenotePageParentNotebook","GET","/groups/{param}/sites/{param}/onenote/pages/{param}/parentNotebook","matched","Get-MgGroupSiteOnenotePageParentNotebook" +"Cmdlets","GetMgGroupSiteOnenotePageParentSection.g.cs","v1.0","Get-MgGroupSiteOnenotePageParentSection","GET","/groups/{param}/sites/{param}/onenote/pages/{param}/parentSection","matched","Get-MgGroupSiteOnenotePageParentSection" +"Cmdlets","GetMgGroupSiteOnenotePagePreview.g.cs","v1.0","Get-MgGroupSiteOnenotePagePreview","GET","/groups/{param}/sites/{param}/onenote/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupSiteOnenotePage" +"Cmdlets","GetMgGroupSiteOnenoteResource_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteResource","GET","/groups/{param}/sites/{param}/onenote/resources/{param}","matched","Get-MgGroupSiteOnenoteResource" +"Cmdlets","GetMgGroupSiteOnenoteResource_List.g.cs","v1.0","Get-MgGroupSiteOnenoteResource","GET","/groups/{param}/sites/{param}/onenote/resources","matched","Get-MgGroupSiteOnenoteResource" +"Cmdlets","GetMgGroupSiteOnenoteResource.g.cs","v1.0","Get-MgGroupSiteOnenoteResource","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOnenoteResourceContent.g.cs","v1.0","Get-MgGroupSiteOnenoteResourceContent","GET","/groups/{param}/sites/{param}/onenote/resources/{param}/content","matched","Get-MgGroupSiteOnenoteResourceContent" +"Cmdlets","GetMgGroupSiteOnenoteResourceCount.g.cs","v1.0","Get-MgGroupSiteOnenoteResourceCount","GET","/groups/{param}/sites/{param}/onenote/resources/$count","matched","Get-MgGroupSiteOnenoteResourceCount" +"Cmdlets","GetMgGroupSiteOnenoteSection_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteSection","GET","/groups/{param}/sites/{param}/onenote/sections/{param}","matched","Get-MgGroupSiteOnenoteSection" +"Cmdlets","GetMgGroupSiteOnenoteSection_List.g.cs","v1.0","Get-MgGroupSiteOnenoteSection","GET","/groups/{param}/sites/{param}/onenote/sections","matched","Get-MgGroupSiteOnenoteSection" +"Cmdlets","GetMgGroupSiteOnenoteSection.g.cs","v1.0","Get-MgGroupSiteOnenoteSection","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOnenoteSectionCount.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionCount","GET","/groups/{param}/sites/{param}/onenote/sections/$count","matched","Get-MgGroupSiteOnenoteSectionCount" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroup","GET","/groups/{param}/sites/{param}/onenote/sectionGroups","matched","Get-MgGroupSiteOnenoteSectionGroup" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupCount.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupCount","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgGroupSiteOnenoteSectionGroupCount" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupParentNotebook","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteSectionGroupParentNotebook" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupParentSectionGroup","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/parentSectionGroup","matched","Get-MgGroupSiteOnenoteSectionGroupParentSectionGroup" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSection_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSection","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Get-MgGroupSiteOnenoteSectionGroupSection" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSection_List.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSection","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections","matched","Get-MgGroupSiteOnenoteSectionGroupSection" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSection.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSection","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSectionCount.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionCount","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/$count","matched","Get-MgGroupSiteOnenoteSectionGroupSectionCount" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPage","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgGroupSiteOnenoteSectionGroupSectionPage" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSectionPage_List.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPage","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgGroupSiteOnenoteSectionGroupSectionPage" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPage","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPageContent","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Get-MgGroupSiteOnenoteSectionGroupSectionPageContent" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSectionPageCount.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPageCount","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgGroupSiteOnenoteSectionGroupSectionPageCount" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPageParentNotebook","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteSectionGroupSectionPageParentNotebook" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPageParentSection","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupSiteOnenoteSectionGroupSectionPageParentSection" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPagePreview","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupSiteOnenoteSectionGroupSectionPage" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionParentNotebook","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteSectionGroupSectionParentNotebook" +"Cmdlets","GetMgGroupSiteOnenoteSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionParentSectionGroup","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgGroupSiteOnenoteSectionGroupSectionParentSectionGroup" +"Cmdlets","GetMgGroupSiteOnenoteSectionPage_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPage","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}","matched","Get-MgGroupSiteOnenoteSectionPage" +"Cmdlets","GetMgGroupSiteOnenoteSectionPage_List.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPage","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages","matched","Get-MgGroupSiteOnenoteSectionPage" +"Cmdlets","GetMgGroupSiteOnenoteSectionPage.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPage","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOnenoteSectionPageContent.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPageContent","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/content","matched","Get-MgGroupSiteOnenoteSectionPageContent" +"Cmdlets","GetMgGroupSiteOnenoteSectionPageCount.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPageCount","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/$count","matched","Get-MgGroupSiteOnenoteSectionPageCount" +"Cmdlets","GetMgGroupSiteOnenoteSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPageParentNotebook","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteSectionPageParentNotebook" +"Cmdlets","GetMgGroupSiteOnenoteSectionPageParentSection.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPageParentSection","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupSiteOnenoteSectionPageParentSection" +"Cmdlets","GetMgGroupSiteOnenoteSectionPagePreview.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPagePreview","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupSiteOnenoteSectionPage" +"Cmdlets","GetMgGroupSiteOnenoteSectionParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionParentNotebook","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteSectionParentNotebook" +"Cmdlets","GetMgGroupSiteOnenoteSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionParentSectionGroup","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/parentSectionGroup","matched","Get-MgGroupSiteOnenoteSectionParentSectionGroup" +"Cmdlets","GetMgGroupSiteOperation_Get.g.cs","v1.0","Get-MgGroupSiteOperation","GET","/groups/{param}/sites/{param}/operations/{param}","matched","Get-MgGroupSiteOperation" +"Cmdlets","GetMgGroupSiteOperation_List.g.cs","v1.0","Get-MgGroupSiteOperation","GET","/groups/{param}/sites/{param}/operations","matched","Get-MgGroupSiteOperation" +"Cmdlets","GetMgGroupSiteOperation.g.cs","v1.0","Get-MgGroupSiteOperation","","","dispatcher","" +"Cmdlets","GetMgGroupSiteOperationCount.g.cs","v1.0","Get-MgGroupSiteOperationCount","GET","/groups/{param}/sites/{param}/operations/$count","matched","Get-MgGroupSiteOperationCount" +"Cmdlets","GetMgGroupSitePage_Get.g.cs","v1.0","Get-MgGroupSitePage","GET","/groups/{param}/sites/{param}/pages/{param}","matched","Get-MgGroupSitePage" +"Cmdlets","GetMgGroupSitePage_List.g.cs","v1.0","Get-MgGroupSitePage","GET","/groups/{param}/sites/{param}/pages","matched","Get-MgGroupSitePage" +"Cmdlets","GetMgGroupSitePage.g.cs","v1.0","Get-MgGroupSitePage","","","dispatcher","" +"Cmdlets","GetMgGroupSitePageAsSitePage_Get.g.cs","v1.0","Get-MgGroupSitePageAsSitePage","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage","matched","Get-MgGroupSitePageAsSitePage" +"Cmdlets","GetMgGroupSitePageAsSitePage_List.g.cs","v1.0","Get-MgGroupSitePageAsSitePage","GET","/groups/{param}/sites/{param}/pages/sitePage","matched","Get-MgGroupSitePageAsSitePage" +"Cmdlets","GetMgGroupSitePageAsSitePage.g.cs","v1.0","Get-MgGroupSitePageAsSitePage","","","dispatcher","" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayout.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayout","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout","matched","Get-MgGroupSitePageAsSitePageCanvaLayout" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSection_Get.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSection_List.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","","","dispatcher","" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn_Get.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn_List.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","","","dispatcher","" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/$count","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart_Get.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart_List.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","","","dispatcher","" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/$count","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/$count","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutVerticalSection.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart_Get.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart_List.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","","","dispatcher","" +"Cmdlets","GetMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/$count","matched","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount" +"Cmdlets","GetMgGroupSitePageAsSitePageCreatedByUser.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCreatedByUser","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/createdByUser","matched","Get-MgGroupSitePageAsSitePageCreatedByUser" +"Cmdlets","GetMgGroupSitePageAsSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/createdByUser/mailboxSettings","matched","Get-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting" +"Cmdlets","GetMgGroupSitePageAsSitePageCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/createdByUser/serviceProvisioningErrors","matched","Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgGroupSitePageAsSitePageLastModifiedByUser.g.cs","v1.0","Get-MgGroupSitePageAsSitePageLastModifiedByUser","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/lastModifiedByUser","matched","Get-MgGroupSitePageAsSitePageLastModifiedByUser" +"Cmdlets","GetMgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/mailboxSettings","matched","Get-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting" +"Cmdlets","GetMgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError" +"Cmdlets","GetMgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgGroupSitePageAsSitePageWebPart_Get.g.cs","v1.0","Get-MgGroupSitePageAsSitePageWebPart","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts/{param}","matched","Get-MgGroupSitePageAsSitePageWebPart" +"Cmdlets","GetMgGroupSitePageAsSitePageWebPart_List.g.cs","v1.0","Get-MgGroupSitePageAsSitePageWebPart","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts","matched","Get-MgGroupSitePageAsSitePageWebPart" +"Cmdlets","GetMgGroupSitePageAsSitePageWebPart.g.cs","v1.0","Get-MgGroupSitePageAsSitePageWebPart","","","dispatcher","" +"Cmdlets","GetMgGroupSitePageAsSitePageWebPartCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageWebPartCount","GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts/$count","matched","Get-MgGroupSitePageAsSitePageWebPartCount" +"Cmdlets","GetMgGroupSitePageCount.g.cs","v1.0","Get-MgGroupSitePageCount","GET","/groups/{param}/sites/{param}/pages/$count","matched","Get-MgGroupSitePageCount" +"Cmdlets","GetMgGroupSitePageCountAsSitePage.g.cs","v1.0","Get-MgGroupSitePageCountAsSitePage","GET","/groups/{param}/sites/{param}/pages/sitePage/$count","matched","Get-MgGroupSitePageCountAsSitePage" +"Cmdlets","GetMgGroupSitePageCreatedByUser.g.cs","v1.0","Get-MgGroupSitePageCreatedByUser","GET","/groups/{param}/sites/{param}/pages/{param}/createdByUser","matched","Get-MgGroupSitePageCreatedByUser" +"Cmdlets","GetMgGroupSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSitePageCreatedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/pages/{param}/createdByUser/mailboxSettings","matched","Get-MgGroupSitePageCreatedByUserMailboxSetting" +"Cmdlets","GetMgGroupSitePageCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSitePageCreatedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/pages/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgGroupSitePageCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgGroupSitePageCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSitePageCreatedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/pages/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSitePageCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgGroupSitePageLastModifiedByUser.g.cs","v1.0","Get-MgGroupSitePageLastModifiedByUser","GET","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser","matched","Get-MgGroupSitePageLastModifiedByUser" +"Cmdlets","GetMgGroupSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSitePageLastModifiedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser/mailboxSettings","matched","Get-MgGroupSitePageLastModifiedByUserMailboxSetting" +"Cmdlets","GetMgGroupSitePageLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSitePageLastModifiedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgGroupSitePageLastModifiedByUserServiceProvisioningError" +"Cmdlets","GetMgGroupSitePageLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSitePageLastModifiedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSitePageLastModifiedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgGroupSitePermission_Get.g.cs","v1.0","Get-MgGroupSitePermission","GET","/groups/{param}/sites/{param}/permissions/{param}","matched","Get-MgGroupSitePermission" +"Cmdlets","GetMgGroupSitePermission_List.g.cs","v1.0","Get-MgGroupSitePermission","GET","/groups/{param}/sites/{param}/permissions","matched","Get-MgGroupSitePermission" +"Cmdlets","GetMgGroupSitePermission.g.cs","v1.0","Get-MgGroupSitePermission","","","dispatcher","" +"Cmdlets","GetMgGroupSitePermissionCount.g.cs","v1.0","Get-MgGroupSitePermissionCount","GET","/groups/{param}/sites/{param}/permissions/$count","matched","Get-MgGroupSitePermissionCount" +"Cmdlets","GetMgGroupSiteTermStore.g.cs","v1.0","Get-MgGroupSiteTermStore","GET","/groups/{param}/sites/{param}/termStores","matched","Get-MgGroupSiteTermStore" +"Cmdlets","GetMgGroupSiteTermStoreCount.g.cs","v1.0","Get-MgGroupSiteTermStoreCount","GET","/groups/{param}/sites/{param}/termStores/$count","matched","Get-MgGroupSiteTermStoreCount" +"Cmdlets","GetMgGroupSiteTermStoreGroup_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreGroup","GET","/groups/{param}/sites/{param}/termStore/groups/{param}","matched","Get-MgGroupSiteTermStoreGroup" +"Cmdlets","GetMgGroupSiteTermStoreGroup_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroup","GET","/groups/{param}/sites/{param}/termStore/groups","matched","Get-MgGroupSiteTermStoreGroup" +"Cmdlets","GetMgGroupSiteTermStoreGroup.g.cs","v1.0","Get-MgGroupSiteTermStoreGroup","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreGroupCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupCount","GET","/groups/{param}/sites/{param}/termStore/groups/$count","matched","Get-MgGroupSiteTermStoreGroupCount" +"Cmdlets","GetMgGroupSiteTermStoreGroupSet_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}","matched","Get-MgGroupSiteTermStoreGroupSet" +"Cmdlets","GetMgGroupSiteTermStoreGroupSet_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets","matched","Get-MgGroupSiteTermStoreGroupSet" +"Cmdlets","GetMgGroupSiteTermStoreGroupSet.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSet","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetChild.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetChild","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children","matched","Get-MgGroupSiteTermStoreGroupSetChild" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetChildCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetChildCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/$count","matched","Get-MgGroupSiteTermStoreGroupSetChildCount" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/$count","matched","Get-MgGroupSiteTermStoreGroupSetCount" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetParentGroup.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetParentGroup","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","matched","Get-MgGroupSiteTermStoreGroupSetParentGroup" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelation","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreGroupSetRelation" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelation","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations","matched","Get-MgGroupSiteTermStoreGroupSetRelation" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelation","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelationCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreGroupSetRelationCount" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreGroupSetRelationFromTerm" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelationSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreGroupSetRelationSet" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreGroupSetRelationToTerm" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetTerm_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","matched","Get-MgGroupSiteTermStoreGroupSetTerm" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetTerm_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms","matched","Get-MgGroupSiteTermStoreGroupSetTerm" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTerm","","","dispatcher","" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetTermChild_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChild","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children","matched","Get-MgGroupSiteTermStoreGroupSetTermChild" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetTermChild.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChild","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetTermChildCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChildCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/$count","matched","Get-MgGroupSiteTermStoreGroupSetTermChildCount" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChildRelation","","","dispatcher","" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetTermCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/$count","matched","Get-MgGroupSiteTermStoreGroupSetTermCount" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetTermRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermRelation","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations","matched","Get-MgGroupSiteTermStoreGroupSetTermRelation" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetTermRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermRelation","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetTermRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermRelationCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreGroupSetTermRelationCount" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreGroupSetTermSet.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/set","matched","Get-MgGroupSiteTermStoreGroupSetTermSet" +"Cmdlets","GetMgGroupSiteTermStoreSet_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}","matched","Get-MgGroupSiteTermStoreSet" +"Cmdlets","GetMgGroupSiteTermStoreSet_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSet","GET","/groups/{param}/sites/{param}/termStore/sets","matched","Get-MgGroupSiteTermStoreSet" +"Cmdlets","GetMgGroupSiteTermStoreSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSet","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreSetChild.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChild","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children","matched","Get-MgGroupSiteTermStoreSetChild" +"Cmdlets","GetMgGroupSiteTermStoreSetChildCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChildCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/$count","matched","Get-MgGroupSiteTermStoreSetChildCount" +"Cmdlets","GetMgGroupSiteTermStoreSetChildRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChildRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations","matched","Get-MgGroupSiteTermStoreSetChildRelation" +"Cmdlets","GetMgGroupSiteTermStoreSetChildRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChildRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetChildRelationCount" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreSetChildSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChildSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/set","matched","Get-MgGroupSiteTermStoreSetChildSet" +"Cmdlets","GetMgGroupSiteTermStoreSetCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetCount","GET","/groups/{param}/sites/{param}/termStore/sets/$count","matched","Get-MgGroupSiteTermStoreSetCount" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroup.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroup","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup","matched","Get-MgGroupSiteTermStoreSetParentGroup" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSet_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","matched","Get-MgGroupSiteTermStoreSetParentGroupSet" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSet_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets","matched","Get-MgGroupSiteTermStoreSetParentGroupSet" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSet","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetChild","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children","matched","Get-MgGroupSiteTermStoreSetParentGroupSetChild" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/$count","matched","Get-MgGroupSiteTermStoreSetParentGroupSetCount" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreSetParentGroupSetRelation" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations","matched","Get-MgGroupSiteTermStoreSetParentGroupSetRelation" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelation","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetParentGroupSetRelationCount" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreSetParentGroupSetRelationFromTerm" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelationSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreSetParentGroupSetRelationSet" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreSetParentGroupSetRelationToTerm" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetTerm_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTerm" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetTerm_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTerm" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTerm","","","dispatcher","" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChild","","","dispatcher","" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetTermChildRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation","","","dispatcher","" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetTermCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/$count","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermCount" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation","","","dispatcher","" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreSetParentGroupSetTermSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/set","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermSet" +"Cmdlets","GetMgGroupSiteTermStoreSetRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreSetRelation" +"Cmdlets","GetMgGroupSiteTermStoreSetRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations","matched","Get-MgGroupSiteTermStoreSetRelation" +"Cmdlets","GetMgGroupSiteTermStoreSetRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelation","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreSetRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetRelationCount" +"Cmdlets","GetMgGroupSiteTermStoreSetRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreSetRelationFromTerm" +"Cmdlets","GetMgGroupSiteTermStoreSetRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelationSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreSetRelationSet" +"Cmdlets","GetMgGroupSiteTermStoreSetRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreSetRelationToTerm" +"Cmdlets","GetMgGroupSiteTermStoreSetTerm_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}","matched","Get-MgGroupSiteTermStoreSetTerm" +"Cmdlets","GetMgGroupSiteTermStoreSetTerm_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms","matched","Get-MgGroupSiteTermStoreSetTerm" +"Cmdlets","GetMgGroupSiteTermStoreSetTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTerm","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreSetTermChild_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChild","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","matched","Get-MgGroupSiteTermStoreSetTermChild" +"Cmdlets","GetMgGroupSiteTermStoreSetTermChild_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChild","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children","matched","Get-MgGroupSiteTermStoreSetTermChild" +"Cmdlets","GetMgGroupSiteTermStoreSetTermChild.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChild","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreSetTermChildCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/$count","matched","Get-MgGroupSiteTermStoreSetTermChildCount" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreSetTermChildRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations","matched","Get-MgGroupSiteTermStoreSetTermChildRelation" +"Cmdlets","GetMgGroupSiteTermStoreSetTermChildRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildRelation","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreSetTermChildRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetTermChildRelationCount" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgGroupSiteTermStoreSetTermChildSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/set","matched","Get-MgGroupSiteTermStoreSetTermChildSet" +"Cmdlets","GetMgGroupSiteTermStoreSetTermCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/$count","matched","Get-MgGroupSiteTermStoreSetTermCount" +"Cmdlets","GetMgGroupSiteTermStoreSetTermRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreSetTermRelation" +"Cmdlets","GetMgGroupSiteTermStoreSetTermRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations","matched","Get-MgGroupSiteTermStoreSetTermRelation" +"Cmdlets","GetMgGroupSiteTermStoreSetTermRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelation","","","dispatcher","" +"Cmdlets","GetMgGroupSiteTermStoreSetTermRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetTermRelationCount" +"Cmdlets","GetMgGroupSiteTermStoreSetTermRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreSetTermRelationFromTerm" +"Cmdlets","GetMgGroupSiteTermStoreSetTermRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelationSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreSetTermRelationSet" +"Cmdlets","GetMgGroupSiteTermStoreSetTermRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreSetTermRelationToTerm" +"Cmdlets","GetMgGroupSiteTermStoreSetTermSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/set","matched","Get-MgGroupSiteTermStoreSetTermSet" +"Cmdlets","GetMgGroupSubSite_Get.g.cs","v1.0","Get-MgGroupSubSite","GET","/groups/{param}/sites/{param}/sites/{param}","matched","Get-MgGroupSubSite" +"Cmdlets","GetMgGroupSubSite_List.g.cs","v1.0","Get-MgGroupSubSite","GET","/groups/{param}/sites/{param}/sites","matched","Get-MgGroupSubSite" +"Cmdlets","GetMgGroupSubSite.g.cs","v1.0","Get-MgGroupSubSite","","","dispatcher","" +"Cmdlets","GetMgSite_Get.g.cs","v1.0","Get-MgSite","GET","/sites/{param}","matched","Get-MgSite" +"Cmdlets","GetMgSite_List.g.cs","v1.0","Get-MgSite","GET","/sites","matched","Get-MgSite" +"Cmdlets","GetMgSite.g.cs","v1.0","Get-MgSite","","","dispatcher","" +"Cmdlets","GetMgSiteAnalytic.g.cs","v1.0","Get-MgSiteAnalytic","GET","/sites/{param}/analytics","matched","Get-MgSiteAnalytic" +"Cmdlets","GetMgSiteAnalyticAllTime.g.cs","v1.0","Get-MgSiteAnalyticAllTime","GET","/sites/{param}/analytics/allTime","mismatch","Get-MgSiteAnalyticTime" +"Cmdlets","GetMgSiteAnalyticItemActivityStat_Get.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStat","GET","/sites/{param}/analytics/itemActivityStats/{param}","matched","Get-MgSiteAnalyticItemActivityStat" +"Cmdlets","GetMgSiteAnalyticItemActivityStat_List.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStat","GET","/sites/{param}/analytics/itemActivityStats","matched","Get-MgSiteAnalyticItemActivityStat" +"Cmdlets","GetMgSiteAnalyticItemActivityStat.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStat","","","dispatcher","" +"Cmdlets","GetMgSiteAnalyticItemActivityStatActivity_Get.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatActivity","GET","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","matched","Get-MgSiteAnalyticItemActivityStatActivity" +"Cmdlets","GetMgSiteAnalyticItemActivityStatActivity_List.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatActivity","GET","/sites/{param}/analytics/itemActivityStats/{param}/activities","matched","Get-MgSiteAnalyticItemActivityStatActivity" +"Cmdlets","GetMgSiteAnalyticItemActivityStatActivity.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatActivity","","","dispatcher","" +"Cmdlets","GetMgSiteAnalyticItemActivityStatActivityCount.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatActivityCount","GET","/sites/{param}/analytics/itemActivityStats/{param}/activities/$count","matched","Get-MgSiteAnalyticItemActivityStatActivityCount" +"Cmdlets","GetMgSiteAnalyticItemActivityStatActivityDriveItem.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatActivityDriveItem","GET","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem","matched","Get-MgSiteAnalyticItemActivityStatActivityDriveItem" +"Cmdlets","GetMgSiteAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatActivityDriveItemContent","GET","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","matched","Get-MgSiteAnalyticItemActivityStatActivityDriveItemContent" +"Cmdlets","GetMgSiteAnalyticItemActivityStatCount.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatCount","GET","/sites/{param}/analytics/itemActivityStats/$count","matched","Get-MgSiteAnalyticItemActivityStatCount" +"Cmdlets","GetMgSiteAnalyticLastSevenDay.g.cs","v1.0","Get-MgSiteAnalyticLastSevenDay","GET","/sites/{param}/analytics/lastSevenDays","matched","Get-MgSiteAnalyticLastSevenDay" +"Cmdlets","GetMgSiteColumn_Get.g.cs","v1.0","Get-MgSiteColumn","GET","/sites/{param}/columns/{param}","matched","Get-MgSiteColumn" +"Cmdlets","GetMgSiteColumn_List.g.cs","v1.0","Get-MgSiteColumn","GET","/sites/{param}/columns","matched","Get-MgSiteColumn" +"Cmdlets","GetMgSiteColumn.g.cs","v1.0","Get-MgSiteColumn","","","dispatcher","" +"Cmdlets","GetMgSiteColumnCount.g.cs","v1.0","Get-MgSiteColumnCount","GET","/sites/{param}/columns/$count","matched","Get-MgSiteColumnCount" +"Cmdlets","GetMgSiteColumnSourceColumn.g.cs","v1.0","Get-MgSiteColumnSourceColumn","GET","/sites/{param}/columns/{param}/sourceColumn","matched","Get-MgSiteColumnSourceColumn" +"Cmdlets","GetMgSiteContentType_Get.g.cs","v1.0","Get-MgSiteContentType","GET","/sites/{param}/contentTypes/{param}","matched","Get-MgSiteContentType" +"Cmdlets","GetMgSiteContentType_List.g.cs","v1.0","Get-MgSiteContentType","GET","/sites/{param}/contentTypes","matched","Get-MgSiteContentType" +"Cmdlets","GetMgSiteContentType.g.cs","v1.0","Get-MgSiteContentType","","","dispatcher","" +"Cmdlets","GetMgSiteContentTypeBase.g.cs","v1.0","Get-MgSiteContentTypeBase","GET","/sites/{param}/contentTypes/{param}/base","matched","Get-MgSiteContentTypeBase" +"Cmdlets","GetMgSiteContentTypeBaseType_Get.g.cs","v1.0","Get-MgSiteContentTypeBaseType","GET","/sites/{param}/contentTypes/{param}/baseTypes/{param}","matched","Get-MgSiteContentTypeBaseType" +"Cmdlets","GetMgSiteContentTypeBaseType_List.g.cs","v1.0","Get-MgSiteContentTypeBaseType","GET","/sites/{param}/contentTypes/{param}/baseTypes","matched","Get-MgSiteContentTypeBaseType" +"Cmdlets","GetMgSiteContentTypeBaseType.g.cs","v1.0","Get-MgSiteContentTypeBaseType","","","dispatcher","" +"Cmdlets","GetMgSiteContentTypeBaseTypeCount.g.cs","v1.0","Get-MgSiteContentTypeBaseTypeCount","GET","/sites/{param}/contentTypes/{param}/baseTypes/$count","matched","Get-MgSiteContentTypeBaseTypeCount" +"Cmdlets","GetMgSiteContentTypeColumn_Get.g.cs","v1.0","Get-MgSiteContentTypeColumn","GET","/sites/{param}/contentTypes/{param}/columns/{param}","matched","Get-MgSiteContentTypeColumn" +"Cmdlets","GetMgSiteContentTypeColumn_List.g.cs","v1.0","Get-MgSiteContentTypeColumn","GET","/sites/{param}/contentTypes/{param}/columns","matched","Get-MgSiteContentTypeColumn" +"Cmdlets","GetMgSiteContentTypeColumn.g.cs","v1.0","Get-MgSiteContentTypeColumn","","","dispatcher","" +"Cmdlets","GetMgSiteContentTypeColumnCount.g.cs","v1.0","Get-MgSiteContentTypeColumnCount","GET","/sites/{param}/contentTypes/{param}/columns/$count","matched","Get-MgSiteContentTypeColumnCount" +"Cmdlets","GetMgSiteContentTypeColumnLink_Get.g.cs","v1.0","Get-MgSiteContentTypeColumnLink","GET","/sites/{param}/contentTypes/{param}/columnLinks/{param}","matched","Get-MgSiteContentTypeColumnLink" +"Cmdlets","GetMgSiteContentTypeColumnLink_List.g.cs","v1.0","Get-MgSiteContentTypeColumnLink","GET","/sites/{param}/contentTypes/{param}/columnLinks","matched","Get-MgSiteContentTypeColumnLink" +"Cmdlets","GetMgSiteContentTypeColumnLink.g.cs","v1.0","Get-MgSiteContentTypeColumnLink","","","dispatcher","" +"Cmdlets","GetMgSiteContentTypeColumnLinkCount.g.cs","v1.0","Get-MgSiteContentTypeColumnLinkCount","GET","/sites/{param}/contentTypes/{param}/columnLinks/$count","matched","Get-MgSiteContentTypeColumnLinkCount" +"Cmdlets","GetMgSiteContentTypeColumnPosition_Get.g.cs","v1.0","Get-MgSiteContentTypeColumnPosition","GET","/sites/{param}/contentTypes/{param}/columnPositions/{param}","matched","Get-MgSiteContentTypeColumnPosition" +"Cmdlets","GetMgSiteContentTypeColumnPosition_List.g.cs","v1.0","Get-MgSiteContentTypeColumnPosition","GET","/sites/{param}/contentTypes/{param}/columnPositions","matched","Get-MgSiteContentTypeColumnPosition" +"Cmdlets","GetMgSiteContentTypeColumnPosition.g.cs","v1.0","Get-MgSiteContentTypeColumnPosition","","","dispatcher","" +"Cmdlets","GetMgSiteContentTypeColumnPositionCount.g.cs","v1.0","Get-MgSiteContentTypeColumnPositionCount","GET","/sites/{param}/contentTypes/{param}/columnPositions/$count","matched","Get-MgSiteContentTypeColumnPositionCount" +"Cmdlets","GetMgSiteContentTypeColumnSourceColumn.g.cs","v1.0","Get-MgSiteContentTypeColumnSourceColumn","GET","/sites/{param}/contentTypes/{param}/columns/{param}/sourceColumn","matched","Get-MgSiteContentTypeColumnSourceColumn" +"Cmdlets","GetMgSiteContentTypeCount.g.cs","v1.0","Get-MgSiteContentTypeCount","GET","/sites/{param}/contentTypes/$count","matched","Get-MgSiteContentTypeCount" +"Cmdlets","GetMgSiteContentTypeGetCompatibleHubContentTypes.g.cs","v1.0","Get-MgSiteContentTypeGetCompatibleHubContentTypes","GET","/sites/{param}/contentTypes/getCompatibleHubContentTypes","mismatch","Get-MgSiteContentTypeCompatibleHubContentType" +"Cmdlets","GetMgSiteContentTypeIsPublished.g.cs","v1.0","Get-MgSiteContentTypeIsPublished","GET","/sites/{param}/contentTypes/{param}/isPublished","mismatch","Test-MgSiteContentTypePublished" +"Cmdlets","GetMgSiteCount.g.cs","v1.0","Get-MgSiteCount","GET","/sites/{param}/sites/$count","mismatch","Get-MgSubSiteCount" +"Cmdlets","GetMgSiteDefaultDrive.g.cs","v1.0","Get-MgSiteDefaultDrive","GET","/sites/{param}/drive","matched","Get-MgSiteDefaultDrive" +"Cmdlets","GetMgSiteDelta.g.cs","v1.0","Get-MgSiteDelta","GET","/sites/delta","matched","Get-MgSiteDelta" +"Cmdlets","GetMgSiteDrive_Get.g.cs","v1.0","Get-MgSiteDrive","GET","/sites/{param}/drives/{param}","matched","Get-MgSiteDrive" +"Cmdlets","GetMgSiteDrive_List.g.cs","v1.0","Get-MgSiteDrive","GET","/sites/{param}/drives","matched","Get-MgSiteDrive" +"Cmdlets","GetMgSiteDrive.g.cs","v1.0","Get-MgSiteDrive","","","dispatcher","" +"Cmdlets","GetMgSiteDriveCount.g.cs","v1.0","Get-MgSiteDriveCount","GET","/sites/{param}/drives/$count","matched","Get-MgSiteDriveCount" +"Cmdlets","GetMgSiteExternalColumn_Get.g.cs","v1.0","Get-MgSiteExternalColumn","GET","/sites/{param}/externalColumns/{param}","matched","Get-MgSiteExternalColumn" +"Cmdlets","GetMgSiteExternalColumn_List.g.cs","v1.0","Get-MgSiteExternalColumn","GET","/sites/{param}/externalColumns","matched","Get-MgSiteExternalColumn" +"Cmdlets","GetMgSiteExternalColumn.g.cs","v1.0","Get-MgSiteExternalColumn","","","dispatcher","" +"Cmdlets","GetMgSiteExternalColumnCount.g.cs","v1.0","Get-MgSiteExternalColumnCount","GET","/sites/{param}/externalColumns/$count","matched","Get-MgSiteExternalColumnCount" +"Cmdlets","GetMgSiteGetActivitiesByInterval.g.cs","v1.0","Get-MgSiteGetActivitiesByInterval","GET","/sites/{param}/getActivitiesByInterval","mismatch","Get-MgSiteActivityByInterval" +"Cmdlets","GetMgSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","GET","/sites/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","no-oracle","" +"Cmdlets","GetMgSiteGetAllSites.g.cs","v1.0","Get-MgSiteGetAllSites","GET","/sites/getAllSites","mismatch","Get-MgAllSite" +"Cmdlets","GetMgSiteGetApplicableContentTypesForListWithListId.g.cs","v1.0","Get-MgSiteGetApplicableContentTypesForListWithListId","GET","/sites/{param}/getApplicableContentTypesForList(listId='{listId}')","mismatch","Get-MgSiteApplicableContentTypeForList" +"Cmdlets","GetMgSiteGetByPathWithPath.g.cs","v1.0","Get-MgSiteGetByPathWithPath","GET","/sites/{param}/getByPath(path='{path}')","mismatch","Get-MgSiteByPath" +"Cmdlets","GetMgSiteList_Get.g.cs","v1.0","Get-MgSiteList","GET","/sites/{param}/lists/{param}","matched","Get-MgSiteList" +"Cmdlets","GetMgSiteList_List.g.cs","v1.0","Get-MgSiteList","GET","/sites/{param}/lists","matched","Get-MgSiteList" +"Cmdlets","GetMgSiteList.g.cs","v1.0","Get-MgSiteList","","","dispatcher","" +"Cmdlets","GetMgSiteListColumn_Get.g.cs","v1.0","Get-MgSiteListColumn","GET","/sites/{param}/lists/{param}/columns/{param}","matched","Get-MgSiteListColumn" +"Cmdlets","GetMgSiteListColumn_List.g.cs","v1.0","Get-MgSiteListColumn","GET","/sites/{param}/lists/{param}/columns","matched","Get-MgSiteListColumn" +"Cmdlets","GetMgSiteListColumn.g.cs","v1.0","Get-MgSiteListColumn","","","dispatcher","" +"Cmdlets","GetMgSiteListColumnCount.g.cs","v1.0","Get-MgSiteListColumnCount","GET","/sites/{param}/lists/{param}/columns/$count","matched","Get-MgSiteListColumnCount" +"Cmdlets","GetMgSiteListColumnSourceColumn.g.cs","v1.0","Get-MgSiteListColumnSourceColumn","GET","/sites/{param}/lists/{param}/columns/{param}/sourceColumn","matched","Get-MgSiteListColumnSourceColumn" +"Cmdlets","GetMgSiteListContentType_Get.g.cs","v1.0","Get-MgSiteListContentType","GET","/sites/{param}/lists/{param}/contentTypes/{param}","matched","Get-MgSiteListContentType" +"Cmdlets","GetMgSiteListContentType_List.g.cs","v1.0","Get-MgSiteListContentType","GET","/sites/{param}/lists/{param}/contentTypes","matched","Get-MgSiteListContentType" +"Cmdlets","GetMgSiteListContentType.g.cs","v1.0","Get-MgSiteListContentType","","","dispatcher","" +"Cmdlets","GetMgSiteListContentTypeBase.g.cs","v1.0","Get-MgSiteListContentTypeBase","GET","/sites/{param}/lists/{param}/contentTypes/{param}/base","no-oracle","" +"Cmdlets","GetMgSiteListContentTypeBaseType_Get.g.cs","v1.0","Get-MgSiteListContentTypeBaseType","GET","/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/{param}","no-oracle","" +"Cmdlets","GetMgSiteListContentTypeBaseType_List.g.cs","v1.0","Get-MgSiteListContentTypeBaseType","GET","/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes","no-oracle","" +"Cmdlets","GetMgSiteListContentTypeBaseType.g.cs","v1.0","Get-MgSiteListContentTypeBaseType","","","dispatcher","" +"Cmdlets","GetMgSiteListContentTypeBaseTypeCount.g.cs","v1.0","Get-MgSiteListContentTypeBaseTypeCount","GET","/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/$count","no-oracle","" +"Cmdlets","GetMgSiteListContentTypeColumn_Get.g.cs","v1.0","Get-MgSiteListContentTypeColumn","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","matched","Get-MgSiteListContentTypeColumn" +"Cmdlets","GetMgSiteListContentTypeColumn_List.g.cs","v1.0","Get-MgSiteListContentTypeColumn","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columns","matched","Get-MgSiteListContentTypeColumn" +"Cmdlets","GetMgSiteListContentTypeColumn.g.cs","v1.0","Get-MgSiteListContentTypeColumn","","","dispatcher","" +"Cmdlets","GetMgSiteListContentTypeColumnCount.g.cs","v1.0","Get-MgSiteListContentTypeColumnCount","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columns/$count","matched","Get-MgSiteListContentTypeColumnCount" +"Cmdlets","GetMgSiteListContentTypeColumnLink_Get.g.cs","v1.0","Get-MgSiteListContentTypeColumnLink","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","matched","Get-MgSiteListContentTypeColumnLink" +"Cmdlets","GetMgSiteListContentTypeColumnLink_List.g.cs","v1.0","Get-MgSiteListContentTypeColumnLink","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks","matched","Get-MgSiteListContentTypeColumnLink" +"Cmdlets","GetMgSiteListContentTypeColumnLink.g.cs","v1.0","Get-MgSiteListContentTypeColumnLink","","","dispatcher","" +"Cmdlets","GetMgSiteListContentTypeColumnLinkCount.g.cs","v1.0","Get-MgSiteListContentTypeColumnLinkCount","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/$count","matched","Get-MgSiteListContentTypeColumnLinkCount" +"Cmdlets","GetMgSiteListContentTypeColumnPosition_Get.g.cs","v1.0","Get-MgSiteListContentTypeColumnPosition","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions/{param}","matched","Get-MgSiteListContentTypeColumnPosition" +"Cmdlets","GetMgSiteListContentTypeColumnPosition_List.g.cs","v1.0","Get-MgSiteListContentTypeColumnPosition","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions","matched","Get-MgSiteListContentTypeColumnPosition" +"Cmdlets","GetMgSiteListContentTypeColumnPosition.g.cs","v1.0","Get-MgSiteListContentTypeColumnPosition","","","dispatcher","" +"Cmdlets","GetMgSiteListContentTypeColumnPositionCount.g.cs","v1.0","Get-MgSiteListContentTypeColumnPositionCount","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions/$count","matched","Get-MgSiteListContentTypeColumnPositionCount" +"Cmdlets","GetMgSiteListContentTypeColumnSourceColumn.g.cs","v1.0","Get-MgSiteListContentTypeColumnSourceColumn","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}/sourceColumn","matched","Get-MgSiteListContentTypeColumnSourceColumn" +"Cmdlets","GetMgSiteListContentTypeCount.g.cs","v1.0","Get-MgSiteListContentTypeCount","GET","/sites/{param}/lists/{param}/contentTypes/$count","matched","Get-MgSiteListContentTypeCount" +"Cmdlets","GetMgSiteListContentTypeGetCompatibleHubContentTypes.g.cs","v1.0","Get-MgSiteListContentTypeGetCompatibleHubContentTypes","GET","/sites/{param}/lists/{param}/contentTypes/getCompatibleHubContentTypes","mismatch","Get-MgSiteListContentTypeCompatibleHubContentType" +"Cmdlets","GetMgSiteListContentTypeIsPublished.g.cs","v1.0","Get-MgSiteListContentTypeIsPublished","GET","/sites/{param}/lists/{param}/contentTypes/{param}/isPublished","mismatch","Test-MgSiteListContentTypePublished" +"Cmdlets","GetMgSiteListCount.g.cs","v1.0","Get-MgSiteListCount","GET","/sites/{param}/lists/$count","matched","Get-MgSiteListCount" +"Cmdlets","GetMgSiteListCreatedByUser.g.cs","v1.0","Get-MgSiteListCreatedByUser","GET","/sites/{param}/lists/{param}/createdByUser","matched","Get-MgSiteListCreatedByUser" +"Cmdlets","GetMgSiteListCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgSiteListCreatedByUserMailboxSetting","GET","/sites/{param}/lists/{param}/createdByUser/mailboxSettings","matched","Get-MgSiteListCreatedByUserMailboxSetting" +"Cmdlets","GetMgSiteListCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSiteListCreatedByUserServiceProvisioningError","GET","/sites/{param}/lists/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgSiteListCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgSiteListCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSiteListCreatedByUserServiceProvisioningErrorCount","GET","/sites/{param}/lists/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgSiteListCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgSiteListDrive.g.cs","v1.0","Get-MgSiteListDrive","GET","/sites/{param}/lists/{param}/drive","matched","Get-MgSiteListDrive" +"Cmdlets","GetMgSiteListItem_Get.g.cs","v1.0","Get-MgSiteListItem","GET","/sites/{param}/lists/{param}/items/{param}","matched","Get-MgSiteListItem" +"Cmdlets","GetMgSiteListItem_List.g.cs","v1.0","Get-MgSiteListItem","GET","/sites/{param}/lists/{param}/items","matched","Get-MgSiteListItem" +"Cmdlets","GetMgSiteListItem.g.cs","v1.0","Get-MgSiteListItem","","","dispatcher","" +"Cmdlets","GetMgSiteListItemAnalytic.g.cs","v1.0","Get-MgSiteListItemAnalytic","GET","/sites/{param}/lists/{param}/items/{param}/analytics","matched","Get-MgSiteListItemAnalytic" +"Cmdlets","GetMgSiteListItemCreatedByUser.g.cs","v1.0","Get-MgSiteListItemCreatedByUser","GET","/sites/{param}/lists/{param}/items/{param}/createdByUser","matched","Get-MgSiteListItemCreatedByUser" +"Cmdlets","GetMgSiteListItemCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgSiteListItemCreatedByUserMailboxSetting","GET","/sites/{param}/lists/{param}/items/{param}/createdByUser/mailboxSettings","matched","Get-MgSiteListItemCreatedByUserMailboxSetting" +"Cmdlets","GetMgSiteListItemCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSiteListItemCreatedByUserServiceProvisioningError","GET","/sites/{param}/lists/{param}/items/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgSiteListItemCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgSiteListItemCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSiteListItemCreatedByUserServiceProvisioningErrorCount","GET","/sites/{param}/lists/{param}/items/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgSiteListItemCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgSiteListItemDelta.g.cs","v1.0","Get-MgSiteListItemDelta","GET","/sites/{param}/lists/{param}/items/delta","matched","Get-MgSiteListItemDelta" +"Cmdlets","GetMgSiteListItemDocumentSetVersion_Get.g.cs","v1.0","Get-MgSiteListItemDocumentSetVersion","GET","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","matched","Get-MgSiteListItemDocumentSetVersion" +"Cmdlets","GetMgSiteListItemDocumentSetVersion_List.g.cs","v1.0","Get-MgSiteListItemDocumentSetVersion","GET","/sites/{param}/lists/{param}/items/{param}/documentSetVersions","matched","Get-MgSiteListItemDocumentSetVersion" +"Cmdlets","GetMgSiteListItemDocumentSetVersion.g.cs","v1.0","Get-MgSiteListItemDocumentSetVersion","","","dispatcher","" +"Cmdlets","GetMgSiteListItemDocumentSetVersionCount.g.cs","v1.0","Get-MgSiteListItemDocumentSetVersionCount","GET","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/$count","matched","Get-MgSiteListItemDocumentSetVersionCount" +"Cmdlets","GetMgSiteListItemDocumentSetVersionField.g.cs","v1.0","Get-MgSiteListItemDocumentSetVersionField","GET","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","matched","Get-MgSiteListItemDocumentSetVersionField" +"Cmdlets","GetMgSiteListItemDriveItem.g.cs","v1.0","Get-MgSiteListItemDriveItem","GET","/sites/{param}/lists/{param}/items/{param}/driveItem","matched","Get-MgSiteListItemDriveItem" +"Cmdlets","GetMgSiteListItemDriveItemContent.g.cs","v1.0","Get-MgSiteListItemDriveItemContent","GET","/sites/{param}/lists/{param}/items/{param}/driveItem/content","matched","Get-MgSiteListItemDriveItemContent" +"Cmdlets","GetMgSiteListItemField.g.cs","v1.0","Get-MgSiteListItemField","GET","/sites/{param}/lists/{param}/items/{param}/fields","matched","Get-MgSiteListItemField" +"Cmdlets","GetMgSiteListItemGetActivitiesByInterval.g.cs","v1.0","Get-MgSiteListItemGetActivitiesByInterval","GET","/sites/{param}/lists/{param}/items/{param}/getActivitiesByInterval","mismatch","Get-MgSiteListItemActivityByInterval" +"Cmdlets","GetMgSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","GET","/sites/{param}/lists/{param}/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","no-oracle","" +"Cmdlets","GetMgSiteListItemLastModifiedByUser.g.cs","v1.0","Get-MgSiteListItemLastModifiedByUser","GET","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser","mismatch","Get-MgSiteItemLastModifiedByUser" +"Cmdlets","GetMgSiteListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgSiteListItemLastModifiedByUserMailboxSetting","GET","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/mailboxSettings","mismatch","Get-MgSiteItemLastModifiedByUserMailboxSetting" +"Cmdlets","GetMgSiteListItemLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSiteListItemLastModifiedByUserServiceProvisioningError","GET","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors","mismatch","Get-MgSiteItemLastModifiedByUserServiceProvisioningError" +"Cmdlets","GetMgSiteListItemLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSiteListItemLastModifiedByUserServiceProvisioningErrorCount","GET","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","mismatch","Get-MgSiteItemLastModifiedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgSiteListItemPermission_Get.g.cs","v1.0","Get-MgSiteListItemPermission","GET","/sites/{param}/lists/{param}/items/{param}/permissions/{param}","matched","Get-MgSiteListItemPermission" +"Cmdlets","GetMgSiteListItemPermission_List.g.cs","v1.0","Get-MgSiteListItemPermission","GET","/sites/{param}/lists/{param}/items/{param}/permissions","matched","Get-MgSiteListItemPermission" +"Cmdlets","GetMgSiteListItemPermission.g.cs","v1.0","Get-MgSiteListItemPermission","","","dispatcher","" +"Cmdlets","GetMgSiteListItemPermissionCount.g.cs","v1.0","Get-MgSiteListItemPermissionCount","GET","/sites/{param}/lists/{param}/items/{param}/permissions/$count","matched","Get-MgSiteListItemPermissionCount" +"Cmdlets","GetMgSiteListItemVersion_Get.g.cs","v1.0","Get-MgSiteListItemVersion","GET","/sites/{param}/lists/{param}/items/{param}/versions/{param}","matched","Get-MgSiteListItemVersion" +"Cmdlets","GetMgSiteListItemVersion_List.g.cs","v1.0","Get-MgSiteListItemVersion","GET","/sites/{param}/lists/{param}/items/{param}/versions","matched","Get-MgSiteListItemVersion" +"Cmdlets","GetMgSiteListItemVersion.g.cs","v1.0","Get-MgSiteListItemVersion","","","dispatcher","" +"Cmdlets","GetMgSiteListItemVersionCount.g.cs","v1.0","Get-MgSiteListItemVersionCount","GET","/sites/{param}/lists/{param}/items/{param}/versions/$count","matched","Get-MgSiteListItemVersionCount" +"Cmdlets","GetMgSiteListItemVersionField.g.cs","v1.0","Get-MgSiteListItemVersionField","GET","/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","matched","Get-MgSiteListItemVersionField" +"Cmdlets","GetMgSiteListLastModifiedByUser.g.cs","v1.0","Get-MgSiteListLastModifiedByUser","GET","/sites/{param}/lists/{param}/lastModifiedByUser","mismatch","Get-MgSiteLastModifiedByUser" +"Cmdlets","GetMgSiteListLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgSiteListLastModifiedByUserMailboxSetting","GET","/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings","mismatch","Get-MgSiteLastModifiedByUserMailboxSetting" +"Cmdlets","GetMgSiteListLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSiteListLastModifiedByUserServiceProvisioningError","GET","/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors","mismatch","Get-MgSiteLastModifiedByUserServiceProvisioningError" +"Cmdlets","GetMgSiteListLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSiteListLastModifiedByUserServiceProvisioningErrorCount","GET","/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","mismatch","Get-MgSiteLastModifiedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgSiteListOperation_Get.g.cs","v1.0","Get-MgSiteListOperation","GET","/sites/{param}/lists/{param}/operations/{param}","matched","Get-MgSiteListOperation" +"Cmdlets","GetMgSiteListOperation_List.g.cs","v1.0","Get-MgSiteListOperation","GET","/sites/{param}/lists/{param}/operations","matched","Get-MgSiteListOperation" +"Cmdlets","GetMgSiteListOperation.g.cs","v1.0","Get-MgSiteListOperation","","","dispatcher","" +"Cmdlets","GetMgSiteListOperationCount.g.cs","v1.0","Get-MgSiteListOperationCount","GET","/sites/{param}/lists/{param}/operations/$count","matched","Get-MgSiteListOperationCount" +"Cmdlets","GetMgSiteListPermission_Get.g.cs","v1.0","Get-MgSiteListPermission","GET","/sites/{param}/lists/{param}/permissions/{param}","matched","Get-MgSiteListPermission" +"Cmdlets","GetMgSiteListPermission_List.g.cs","v1.0","Get-MgSiteListPermission","GET","/sites/{param}/lists/{param}/permissions","matched","Get-MgSiteListPermission" +"Cmdlets","GetMgSiteListPermission.g.cs","v1.0","Get-MgSiteListPermission","","","dispatcher","" +"Cmdlets","GetMgSiteListPermissionCount.g.cs","v1.0","Get-MgSiteListPermissionCount","GET","/sites/{param}/lists/{param}/permissions/$count","matched","Get-MgSiteListPermissionCount" +"Cmdlets","GetMgSiteListSubscription_Get.g.cs","v1.0","Get-MgSiteListSubscription","GET","/sites/{param}/lists/{param}/subscriptions/{param}","matched","Get-MgSiteListSubscription" +"Cmdlets","GetMgSiteListSubscription_List.g.cs","v1.0","Get-MgSiteListSubscription","GET","/sites/{param}/lists/{param}/subscriptions","matched","Get-MgSiteListSubscription" +"Cmdlets","GetMgSiteListSubscription.g.cs","v1.0","Get-MgSiteListSubscription","","","dispatcher","" +"Cmdlets","GetMgSiteListSubscriptionCount.g.cs","v1.0","Get-MgSiteListSubscriptionCount","GET","/sites/{param}/lists/{param}/subscriptions/$count","matched","Get-MgSiteListSubscriptionCount" +"Cmdlets","GetMgSiteOperation_Get.g.cs","v1.0","Get-MgSiteOperation","GET","/sites/{param}/operations/{param}","matched","Get-MgSiteOperation" +"Cmdlets","GetMgSiteOperation_List.g.cs","v1.0","Get-MgSiteOperation","GET","/sites/{param}/operations","matched","Get-MgSiteOperation" +"Cmdlets","GetMgSiteOperation.g.cs","v1.0","Get-MgSiteOperation","","","dispatcher","" +"Cmdlets","GetMgSiteOperationCount.g.cs","v1.0","Get-MgSiteOperationCount","GET","/sites/{param}/operations/$count","matched","Get-MgSiteOperationCount" +"Cmdlets","GetMgSitePage_Get.g.cs","v1.0","Get-MgSitePage","GET","/sites/{param}/pages/{param}","matched","Get-MgSitePage" +"Cmdlets","GetMgSitePage_List.g.cs","v1.0","Get-MgSitePage","GET","/sites/{param}/pages","matched","Get-MgSitePage" +"Cmdlets","GetMgSitePage.g.cs","v1.0","Get-MgSitePage","","","dispatcher","" +"Cmdlets","GetMgSitePageAsSitePage_Get.g.cs","v1.0","Get-MgSitePageAsSitePage","GET","/sites/{param}/pages/{param}/sitePage","matched","Get-MgSitePageAsSitePage" +"Cmdlets","GetMgSitePageAsSitePage_List.g.cs","v1.0","Get-MgSitePageAsSitePage","GET","/sites/{param}/pages/sitePage","matched","Get-MgSitePageAsSitePage" +"Cmdlets","GetMgSitePageAsSitePage.g.cs","v1.0","Get-MgSitePageAsSitePage","","","dispatcher","" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayout.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayout","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout","matched","Get-MgSitePageAsSitePageCanvaLayout" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutHorizontalSection_Get.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}","matched","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutHorizontalSection_List.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections","matched","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection","","","dispatcher","" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn_Get.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}","matched","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn_List.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns","matched","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","","","dispatcher","" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/$count","matched","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart_Get.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}","matched","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart_List.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts","matched","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","","","dispatcher","" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/$count","matched","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionCount.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionCount","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/$count","matched","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionCount" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutVerticalSection.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutVerticalSection","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection","matched","Get-MgSitePageAsSitePageCanvaLayoutVerticalSection" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart_Get.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}","matched","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart_List.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts","matched","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","","","dispatcher","" +"Cmdlets","GetMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount","GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/$count","matched","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount" +"Cmdlets","GetMgSitePageAsSitePageCreatedByUser.g.cs","v1.0","Get-MgSitePageAsSitePageCreatedByUser","GET","/sites/{param}/pages/{param}/sitePage/createdByUser","matched","Get-MgSitePageAsSitePageCreatedByUser" +"Cmdlets","GetMgSitePageAsSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgSitePageAsSitePageCreatedByUserMailboxSetting","GET","/sites/{param}/pages/{param}/sitePage/createdByUser/mailboxSettings","matched","Get-MgSitePageAsSitePageCreatedByUserMailboxSetting" +"Cmdlets","GetMgSitePageAsSitePageCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningError","GET","/sites/{param}/pages/{param}/sitePage/createdByUser/serviceProvisioningErrors","matched","Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount","GET","/sites/{param}/pages/{param}/sitePage/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgSitePageAsSitePageLastModifiedByUser.g.cs","v1.0","Get-MgSitePageAsSitePageLastModifiedByUser","GET","/sites/{param}/pages/{param}/sitePage/lastModifiedByUser","matched","Get-MgSitePageAsSitePageLastModifiedByUser" +"Cmdlets","GetMgSitePageAsSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgSitePageAsSitePageLastModifiedByUserMailboxSetting","GET","/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/mailboxSettings","matched","Get-MgSitePageAsSitePageLastModifiedByUserMailboxSetting" +"Cmdlets","GetMgSitePageAsSitePageLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningError","GET","/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningError" +"Cmdlets","GetMgSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount","GET","/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgSitePageAsSitePageWebPart_Get.g.cs","v1.0","Get-MgSitePageAsSitePageWebPart","GET","/sites/{param}/pages/{param}/sitePage/webParts/{param}","matched","Get-MgSitePageAsSitePageWebPart" +"Cmdlets","GetMgSitePageAsSitePageWebPart_List.g.cs","v1.0","Get-MgSitePageAsSitePageWebPart","GET","/sites/{param}/pages/{param}/sitePage/webParts","matched","Get-MgSitePageAsSitePageWebPart" +"Cmdlets","GetMgSitePageAsSitePageWebPart.g.cs","v1.0","Get-MgSitePageAsSitePageWebPart","","","dispatcher","" +"Cmdlets","GetMgSitePageAsSitePageWebPartCount.g.cs","v1.0","Get-MgSitePageAsSitePageWebPartCount","GET","/sites/{param}/pages/{param}/sitePage/webParts/$count","matched","Get-MgSitePageAsSitePageWebPartCount" +"Cmdlets","GetMgSitePageCount.g.cs","v1.0","Get-MgSitePageCount","GET","/sites/{param}/pages/$count","matched","Get-MgSitePageCount" +"Cmdlets","GetMgSitePageCountAsSitePage.g.cs","v1.0","Get-MgSitePageCountAsSitePage","GET","/sites/{param}/pages/sitePage/$count","matched","Get-MgSitePageCountAsSitePage" +"Cmdlets","GetMgSitePageCreatedByUser.g.cs","v1.0","Get-MgSitePageCreatedByUser","GET","/sites/{param}/pages/{param}/createdByUser","matched","Get-MgSitePageCreatedByUser" +"Cmdlets","GetMgSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgSitePageCreatedByUserMailboxSetting","GET","/sites/{param}/pages/{param}/createdByUser/mailboxSettings","matched","Get-MgSitePageCreatedByUserMailboxSetting" +"Cmdlets","GetMgSitePageCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSitePageCreatedByUserServiceProvisioningError","GET","/sites/{param}/pages/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgSitePageCreatedByUserServiceProvisioningError" +"Cmdlets","GetMgSitePageCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSitePageCreatedByUserServiceProvisioningErrorCount","GET","/sites/{param}/pages/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgSitePageCreatedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgSitePageLastModifiedByUser.g.cs","v1.0","Get-MgSitePageLastModifiedByUser","GET","/sites/{param}/pages/{param}/lastModifiedByUser","matched","Get-MgSitePageLastModifiedByUser" +"Cmdlets","GetMgSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgSitePageLastModifiedByUserMailboxSetting","GET","/sites/{param}/pages/{param}/lastModifiedByUser/mailboxSettings","matched","Get-MgSitePageLastModifiedByUserMailboxSetting" +"Cmdlets","GetMgSitePageLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSitePageLastModifiedByUserServiceProvisioningError","GET","/sites/{param}/pages/{param}/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgSitePageLastModifiedByUserServiceProvisioningError" +"Cmdlets","GetMgSitePageLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSitePageLastModifiedByUserServiceProvisioningErrorCount","GET","/sites/{param}/pages/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgSitePageLastModifiedByUserServiceProvisioningErrorCount" +"Cmdlets","GetMgSitePermission_Get.g.cs","v1.0","Get-MgSitePermission","GET","/sites/{param}/permissions/{param}","matched","Get-MgSitePermission" +"Cmdlets","GetMgSitePermission_List.g.cs","v1.0","Get-MgSitePermission","GET","/sites/{param}/permissions","matched","Get-MgSitePermission" +"Cmdlets","GetMgSitePermission.g.cs","v1.0","Get-MgSitePermission","","","dispatcher","" +"Cmdlets","GetMgSitePermissionCount.g.cs","v1.0","Get-MgSitePermissionCount","GET","/sites/{param}/permissions/$count","matched","Get-MgSitePermissionCount" +"Cmdlets","GetMgSiteTermStore.g.cs","v1.0","Get-MgSiteTermStore","GET","/sites/{param}/termStores","matched","Get-MgSiteTermStore" +"Cmdlets","GetMgSiteTermStoreCount.g.cs","v1.0","Get-MgSiteTermStoreCount","GET","/sites/{param}/termStores/$count","matched","Get-MgSiteTermStoreCount" +"Cmdlets","GetMgSiteTermStoreGroup_Get.g.cs","v1.0","Get-MgSiteTermStoreGroup","GET","/sites/{param}/termStore/groups/{param}","matched","Get-MgSiteTermStoreGroup" +"Cmdlets","GetMgSiteTermStoreGroup_List.g.cs","v1.0","Get-MgSiteTermStoreGroup","GET","/sites/{param}/termStore/groups","matched","Get-MgSiteTermStoreGroup" +"Cmdlets","GetMgSiteTermStoreGroup.g.cs","v1.0","Get-MgSiteTermStoreGroup","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreGroupCount.g.cs","v1.0","Get-MgSiteTermStoreGroupCount","GET","/sites/{param}/termStore/groups/$count","matched","Get-MgSiteTermStoreGroupCount" +"Cmdlets","GetMgSiteTermStoreGroupSet_Get.g.cs","v1.0","Get-MgSiteTermStoreGroupSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}","matched","Get-MgSiteTermStoreGroupSet" +"Cmdlets","GetMgSiteTermStoreGroupSet_List.g.cs","v1.0","Get-MgSiteTermStoreGroupSet","GET","/sites/{param}/termStore/groups/{param}/sets","matched","Get-MgSiteTermStoreGroupSet" +"Cmdlets","GetMgSiteTermStoreGroupSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSet","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreGroupSetChild.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChild","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children","matched","Get-MgSiteTermStoreGroupSetChild" +"Cmdlets","GetMgSiteTermStoreGroupSetChildCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChildCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/$count","matched","Get-MgSiteTermStoreGroupSetChildCount" +"Cmdlets","GetMgSiteTermStoreGroupSetChildRelation.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChildRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations","matched","Get-MgSiteTermStoreGroupSetChildRelation" +"Cmdlets","GetMgSiteTermStoreGroupSetChildRelationCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChildRelationCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/$count","matched","Get-MgSiteTermStoreGroupSetChildRelationCount" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgSiteTermStoreGroupSetChildSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChildSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/set","matched","Get-MgSiteTermStoreGroupSetChildSet" +"Cmdlets","GetMgSiteTermStoreGroupSetCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetCount","GET","/sites/{param}/termStore/groups/{param}/sets/$count","matched","Get-MgSiteTermStoreGroupSetCount" +"Cmdlets","GetMgSiteTermStoreGroupSetParentGroup.g.cs","v1.0","Get-MgSiteTermStoreGroupSetParentGroup","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","matched","Get-MgSiteTermStoreGroupSetParentGroup" +"Cmdlets","GetMgSiteTermStoreGroupSetRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","matched","Get-MgSiteTermStoreGroupSetRelation" +"Cmdlets","GetMgSiteTermStoreGroupSetRelation_List.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations","matched","Get-MgSiteTermStoreGroupSetRelation" +"Cmdlets","GetMgSiteTermStoreGroupSetRelation.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelation","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreGroupSetRelationCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelationCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/$count","matched","Get-MgSiteTermStoreGroupSetRelationCount" +"Cmdlets","GetMgSiteTermStoreGroupSetRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelationFromTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreGroupSetRelationFromTerm" +"Cmdlets","GetMgSiteTermStoreGroupSetRelationSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelationSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreGroupSetRelationSet" +"Cmdlets","GetMgSiteTermStoreGroupSetRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelationToTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreGroupSetRelationToTerm" +"Cmdlets","GetMgSiteTermStoreGroupSetTerm_Get.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","matched","Get-MgSiteTermStoreGroupSetTerm" +"Cmdlets","GetMgSiteTermStoreGroupSetTerm_List.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms","matched","Get-MgSiteTermStoreGroupSetTerm" +"Cmdlets","GetMgSiteTermStoreGroupSetTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTerm","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreGroupSetTermChild_Get.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChild","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","matched","Get-MgSiteTermStoreGroupSetTermChild" +"Cmdlets","GetMgSiteTermStoreGroupSetTermChild_List.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChild","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children","matched","Get-MgSiteTermStoreGroupSetTermChild" +"Cmdlets","GetMgSiteTermStoreGroupSetTermChild.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChild","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreGroupSetTermChildCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/$count","matched","Get-MgSiteTermStoreGroupSetTermChildCount" +"Cmdlets","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" +"Cmdlets","GetMgSiteTermStoreGroupSetTermChildRelation_List.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations","matched","Get-MgSiteTermStoreGroupSetTermChildRelation" +"Cmdlets","GetMgSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildRelation","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreGroupSetTermChildRelationCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildRelationCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/$count","matched","Get-MgSiteTermStoreGroupSetTermChildRelationCount" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgSiteTermStoreGroupSetTermChildSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/set","matched","Get-MgSiteTermStoreGroupSetTermChildSet" +"Cmdlets","GetMgSiteTermStoreGroupSetTermCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/$count","matched","Get-MgSiteTermStoreGroupSetTermCount" +"Cmdlets","GetMgSiteTermStoreGroupSetTermRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","matched","Get-MgSiteTermStoreGroupSetTermRelation" +"Cmdlets","GetMgSiteTermStoreGroupSetTermRelation_List.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations","matched","Get-MgSiteTermStoreGroupSetTermRelation" +"Cmdlets","GetMgSiteTermStoreGroupSetTermRelation.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelation","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreGroupSetTermRelationCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelationCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/$count","matched","Get-MgSiteTermStoreGroupSetTermRelationCount" +"Cmdlets","GetMgSiteTermStoreGroupSetTermRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelationFromTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreGroupSetTermRelationFromTerm" +"Cmdlets","GetMgSiteTermStoreGroupSetTermRelationSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelationSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreGroupSetTermRelationSet" +"Cmdlets","GetMgSiteTermStoreGroupSetTermRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelationToTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreGroupSetTermRelationToTerm" +"Cmdlets","GetMgSiteTermStoreGroupSetTermSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/set","matched","Get-MgSiteTermStoreGroupSetTermSet" +"Cmdlets","GetMgSiteTermStoreSet_Get.g.cs","v1.0","Get-MgSiteTermStoreSet","GET","/sites/{param}/termStore/sets/{param}","matched","Get-MgSiteTermStoreSet" +"Cmdlets","GetMgSiteTermStoreSet_List.g.cs","v1.0","Get-MgSiteTermStoreSet","GET","/sites/{param}/termStore/sets","matched","Get-MgSiteTermStoreSet" +"Cmdlets","GetMgSiteTermStoreSet.g.cs","v1.0","Get-MgSiteTermStoreSet","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreSetChild.g.cs","v1.0","Get-MgSiteTermStoreSetChild","GET","/sites/{param}/termStore/sets/{param}/children","matched","Get-MgSiteTermStoreSetChild" +"Cmdlets","GetMgSiteTermStoreSetChildCount.g.cs","v1.0","Get-MgSiteTermStoreSetChildCount","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/$count","matched","Get-MgSiteTermStoreSetChildCount" +"Cmdlets","GetMgSiteTermStoreSetChildRelation.g.cs","v1.0","Get-MgSiteTermStoreSetChildRelation","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations","matched","Get-MgSiteTermStoreSetChildRelation" +"Cmdlets","GetMgSiteTermStoreSetChildRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetChildRelationCount","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/$count","matched","Get-MgSiteTermStoreSetChildRelationCount" +"Cmdlets","GetMgSiteTermStoreSetChildRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetChildRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetChildRelationFromTerm" +"Cmdlets","GetMgSiteTermStoreSetChildRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetChildRelationSet","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetChildRelationSet" +"Cmdlets","GetMgSiteTermStoreSetChildRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetChildRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetChildRelationToTerm" +"Cmdlets","GetMgSiteTermStoreSetChildSet.g.cs","v1.0","Get-MgSiteTermStoreSetChildSet","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/set","matched","Get-MgSiteTermStoreSetChildSet" +"Cmdlets","GetMgSiteTermStoreSetCount.g.cs","v1.0","Get-MgSiteTermStoreSetCount","GET","/sites/{param}/termStore/sets/$count","matched","Get-MgSiteTermStoreSetCount" +"Cmdlets","GetMgSiteTermStoreSetParentGroup.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroup","GET","/sites/{param}/termStore/sets/{param}/parentGroup","matched","Get-MgSiteTermStoreSetParentGroup" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSet_Get.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","matched","Get-MgSiteTermStoreSetParentGroupSet" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSet_List.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets","matched","Get-MgSiteTermStoreSetParentGroupSet" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSet","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetChild","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children","matched","Get-MgSiteTermStoreSetParentGroupSetChild" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetChildCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetChildCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/$count","matched","Get-MgSiteTermStoreSetParentGroupSetChildCount" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetChildRelation.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetChildRelation","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations","matched","Get-MgSiteTermStoreSetParentGroupSetChildRelation" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetChildSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetChildSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/set","matched","Get-MgSiteTermStoreSetParentGroupSetChildSet" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/$count","matched","Get-MgSiteTermStoreSetParentGroupSetCount" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelation","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","matched","Get-MgSiteTermStoreSetParentGroupSetRelation" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetRelation_List.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelation","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations","matched","Get-MgSiteTermStoreSetParentGroupSetRelation" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelation","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelationCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/$count","matched","Get-MgSiteTermStoreSetParentGroupSetRelationCount" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetParentGroupSetRelationFromTerm" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelationSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetParentGroupSetRelationSet" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetParentGroupSetRelationToTerm" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTerm_Get.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","matched","Get-MgSiteTermStoreSetParentGroupSetTerm" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTerm_List.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms","matched","Get-MgSiteTermStoreSetParentGroupSetTerm" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTerm","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermChild_Get.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChild","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","matched","Get-MgSiteTermStoreSetParentGroupSetTermChild" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermChild_List.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChild","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children","matched","Get-MgSiteTermStoreSetParentGroupSetTermChild" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChild","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermChildCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChildCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/$count","matched","Get-MgSiteTermStoreSetParentGroupSetTermChildCount" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermChildRelation.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChildRelation","","","dispatcher","" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermChildSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChildSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/set","matched","Get-MgSiteTermStoreSetParentGroupSetTermChildSet" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/$count","matched","Get-MgSiteTermStoreSetParentGroupSetTermCount" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelation","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","matched","Get-MgSiteTermStoreSetParentGroupSetTermRelation" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermRelation_List.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelation","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations","matched","Get-MgSiteTermStoreSetParentGroupSetTermRelation" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelation","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelationCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/$count","matched","Get-MgSiteTermStoreSetParentGroupSetTermRelationCount" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetParentGroupSetTermRelationFromTerm" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelationSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetParentGroupSetTermRelationSet" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetParentGroupSetTermRelationToTerm" +"Cmdlets","GetMgSiteTermStoreSetParentGroupSetTermSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/set","matched","Get-MgSiteTermStoreSetParentGroupSetTermSet" +"Cmdlets","GetMgSiteTermStoreSetRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreSetRelation","GET","/sites/{param}/termStore/sets/{param}/relations/{param}","matched","Get-MgSiteTermStoreSetRelation" +"Cmdlets","GetMgSiteTermStoreSetRelation_List.g.cs","v1.0","Get-MgSiteTermStoreSetRelation","GET","/sites/{param}/termStore/sets/{param}/relations","matched","Get-MgSiteTermStoreSetRelation" +"Cmdlets","GetMgSiteTermStoreSetRelation.g.cs","v1.0","Get-MgSiteTermStoreSetRelation","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreSetRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetRelationCount","GET","/sites/{param}/termStore/sets/{param}/relations/$count","matched","Get-MgSiteTermStoreSetRelationCount" +"Cmdlets","GetMgSiteTermStoreSetRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetRelationFromTerm" +"Cmdlets","GetMgSiteTermStoreSetRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetRelationSet","GET","/sites/{param}/termStore/sets/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetRelationSet" +"Cmdlets","GetMgSiteTermStoreSetRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetRelationToTerm" +"Cmdlets","GetMgSiteTermStoreSetTerm_Get.g.cs","v1.0","Get-MgSiteTermStoreSetTerm","GET","/sites/{param}/termStore/sets/{param}/terms/{param}","matched","Get-MgSiteTermStoreSetTerm" +"Cmdlets","GetMgSiteTermStoreSetTerm_List.g.cs","v1.0","Get-MgSiteTermStoreSetTerm","GET","/sites/{param}/termStore/sets/{param}/terms","matched","Get-MgSiteTermStoreSetTerm" +"Cmdlets","GetMgSiteTermStoreSetTerm.g.cs","v1.0","Get-MgSiteTermStoreSetTerm","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreSetTermChild_Get.g.cs","v1.0","Get-MgSiteTermStoreSetTermChild","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","matched","Get-MgSiteTermStoreSetTermChild" +"Cmdlets","GetMgSiteTermStoreSetTermChild_List.g.cs","v1.0","Get-MgSiteTermStoreSetTermChild","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children","matched","Get-MgSiteTermStoreSetTermChild" +"Cmdlets","GetMgSiteTermStoreSetTermChild.g.cs","v1.0","Get-MgSiteTermStoreSetTermChild","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreSetTermChildCount.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildCount","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/$count","matched","Get-MgSiteTermStoreSetTermChildCount" +"Cmdlets","GetMgSiteTermStoreSetTermChildRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelation","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Get-MgSiteTermStoreSetTermChildRelation" +"Cmdlets","GetMgSiteTermStoreSetTermChildRelation_List.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelation","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations","matched","Get-MgSiteTermStoreSetTermChildRelation" +"Cmdlets","GetMgSiteTermStoreSetTermChildRelation.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelation","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreSetTermChildRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelationCount","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/$count","matched","Get-MgSiteTermStoreSetTermChildRelationCount" +"Cmdlets","GetMgSiteTermStoreSetTermChildRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetTermChildRelationFromTerm" +"Cmdlets","GetMgSiteTermStoreSetTermChildRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelationSet","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetTermChildRelationSet" +"Cmdlets","GetMgSiteTermStoreSetTermChildRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetTermChildRelationToTerm" +"Cmdlets","GetMgSiteTermStoreSetTermChildSet.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildSet","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/set","matched","Get-MgSiteTermStoreSetTermChildSet" +"Cmdlets","GetMgSiteTermStoreSetTermCount.g.cs","v1.0","Get-MgSiteTermStoreSetTermCount","GET","/sites/{param}/termStore/sets/{param}/terms/$count","matched","Get-MgSiteTermStoreSetTermCount" +"Cmdlets","GetMgSiteTermStoreSetTermRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelation","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","matched","Get-MgSiteTermStoreSetTermRelation" +"Cmdlets","GetMgSiteTermStoreSetTermRelation_List.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelation","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations","matched","Get-MgSiteTermStoreSetTermRelation" +"Cmdlets","GetMgSiteTermStoreSetTermRelation.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelation","","","dispatcher","" +"Cmdlets","GetMgSiteTermStoreSetTermRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelationCount","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/$count","matched","Get-MgSiteTermStoreSetTermRelationCount" +"Cmdlets","GetMgSiteTermStoreSetTermRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetTermRelationFromTerm" +"Cmdlets","GetMgSiteTermStoreSetTermRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelationSet","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetTermRelationSet" +"Cmdlets","GetMgSiteTermStoreSetTermRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetTermRelationToTerm" +"Cmdlets","GetMgSiteTermStoreSetTermSet.g.cs","v1.0","Get-MgSiteTermStoreSetTermSet","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/set","matched","Get-MgSiteTermStoreSetTermSet" +"Cmdlets","GetMgSubSite_Get.g.cs","v1.0","Get-MgSubSite","GET","/sites/{param}/sites/{param}","matched","Get-MgSubSite" +"Cmdlets","GetMgSubSite_List.g.cs","v1.0","Get-MgSubSite","GET","/sites/{param}/sites","matched","Get-MgSubSite" +"Cmdlets","GetMgSubSite.g.cs","v1.0","Get-MgSubSite","","","dispatcher","" +"Cmdlets","GetMgUserFollowedSite_Get.g.cs","v1.0","Get-MgUserFollowedSite","GET","/users/{param}/followedSites/{param}","matched","Get-MgUserFollowedSite" +"Cmdlets","GetMgUserFollowedSite_List.g.cs","v1.0","Get-MgUserFollowedSite","GET","/users/{param}/followedSites","matched","Get-MgUserFollowedSite" +"Cmdlets","GetMgUserFollowedSite.g.cs","v1.0","Get-MgUserFollowedSite","","","dispatcher","" +"Cmdlets","GetMgUserFollowedSiteCount.g.cs","v1.0","Get-MgUserFollowedSiteCount","GET","/users/{param}/followedSites/$count","matched","Get-MgUserFollowedSiteCount" +"Cmdlets","InvokeMgGroupSiteAdd.g.cs","v1.0","Invoke-MgGroupSiteAdd","POST","/groups/{param}/sites/add","mismatch","Add-MgGroupSite" +"Cmdlets","InvokeMgGroupSiteContentTypeAddCopy.g.cs","v1.0","Invoke-MgGroupSiteContentTypeAddCopy","POST","/groups/{param}/sites/{param}/contentTypes/addCopy","mismatch","Add-MgGroupSiteContentTypeCopy" +"Cmdlets","InvokeMgGroupSiteContentTypeAddCopyFromContentTypeHub.g.cs","v1.0","Invoke-MgGroupSiteContentTypeAddCopyFromContentTypeHub","POST","/groups/{param}/sites/{param}/contentTypes/addCopyFromContentTypeHub","mismatch","Add-MgGroupSiteContentTypeCopyFromContentTypeHub" +"Cmdlets","InvokeMgGroupSiteContentTypeAssociateWithHubSites.g.cs","v1.0","Invoke-MgGroupSiteContentTypeAssociateWithHubSites","POST","/groups/{param}/sites/{param}/contentTypes/{param}/associateWithHubSites","mismatch","Join-MgGroupSiteContentTypeWithHubSite" +"Cmdlets","InvokeMgGroupSiteContentTypeCopyToDefaultContentLocation.g.cs","v1.0","Invoke-MgGroupSiteContentTypeCopyToDefaultContentLocation","POST","/groups/{param}/sites/{param}/contentTypes/{param}/copyToDefaultContentLocation","mismatch","Copy-MgGroupSiteContentTypeToDefaultContentLocation" +"Cmdlets","InvokeMgGroupSiteContentTypePublish.g.cs","v1.0","Invoke-MgGroupSiteContentTypePublish","POST","/groups/{param}/sites/{param}/contentTypes/{param}/publish","mismatch","Publish-MgGroupSiteContentType" +"Cmdlets","InvokeMgGroupSiteContentTypeUnpublish.g.cs","v1.0","Invoke-MgGroupSiteContentTypeUnpublish","POST","/groups/{param}/sites/{param}/contentTypes/{param}/unpublish","mismatch","Unpublish-MgGroupSiteContentType" +"Cmdlets","InvokeMgGroupSiteListContentTypeAddCopy.g.cs","v1.0","Invoke-MgGroupSiteListContentTypeAddCopy","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/addCopy","mismatch","Add-MgGroupSiteListContentTypeCopy" +"Cmdlets","InvokeMgGroupSiteListContentTypeAddCopyFromContentTypeHub.g.cs","v1.0","Invoke-MgGroupSiteListContentTypeAddCopyFromContentTypeHub","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/addCopyFromContentTypeHub","mismatch","Add-MgGroupSiteListContentTypeCopyFromContentTypeHub" +"Cmdlets","InvokeMgGroupSiteListContentTypeAssociateWithHubSites.g.cs","v1.0","Invoke-MgGroupSiteListContentTypeAssociateWithHubSites","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/associateWithHubSites","mismatch","Join-MgGroupSiteListContentTypeWithHubSite" +"Cmdlets","InvokeMgGroupSiteListContentTypeCopyToDefaultContentLocation.g.cs","v1.0","Invoke-MgGroupSiteListContentTypeCopyToDefaultContentLocation","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/copyToDefaultContentLocation","mismatch","Copy-MgGroupSiteListContentTypeToDefaultContentLocation" +"Cmdlets","InvokeMgGroupSiteListContentTypePublish.g.cs","v1.0","Invoke-MgGroupSiteListContentTypePublish","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/publish","mismatch","Publish-MgGroupSiteListContentType" +"Cmdlets","InvokeMgGroupSiteListContentTypeUnpublish.g.cs","v1.0","Invoke-MgGroupSiteListContentTypeUnpublish","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/unpublish","mismatch","Unpublish-MgGroupSiteListContentType" +"Cmdlets","InvokeMgGroupSiteListItemCreateLink.g.cs","v1.0","Invoke-MgGroupSiteListItemCreateLink","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createLink","mismatch","New-MgGroupSiteListItemLink" +"Cmdlets","InvokeMgGroupSiteListItemDocumentSetVersionRestore.g.cs","v1.0","Invoke-MgGroupSiteListItemDocumentSetVersionRestore","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/restore","mismatch","Restore-MgGroupSiteListItemDocumentSetVersion" +"Cmdlets","InvokeMgGroupSiteListItemPermissionGrant.g.cs","v1.0","Invoke-MgGroupSiteListItemPermissionGrant","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/{param}/grant","mismatch","Grant-MgGroupSiteListItemPermission" +"Cmdlets","InvokeMgGroupSiteListItemVersionRestoreVersion.g.cs","v1.0","Invoke-MgGroupSiteListItemVersionRestoreVersion","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}/restoreVersion","mismatch","Restore-MgGroupSiteListItemVersion" +"Cmdlets","InvokeMgGroupSiteListPermissionGrant.g.cs","v1.0","Invoke-MgGroupSiteListPermissionGrant","POST","/groups/{param}/sites/{param}/lists/{param}/permissions/{param}/grant","mismatch","Grant-MgGroupSiteListPermission" +"Cmdlets","InvokeMgGroupSiteListSubscriptionReauthorize.g.cs","v1.0","Invoke-MgGroupSiteListSubscriptionReauthorize","POST","/groups/{param}/sites/{param}/lists/{param}/subscriptions/{param}/reauthorize","mismatch","Invoke-MgReauthorizeGroupSiteListSubscription" +"Cmdlets","InvokeMgGroupSiteOnenoteNotebookCopyNotebook.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookCopyNotebook","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/copyNotebook","mismatch","Copy-MgGroupSiteOnenoteNotebook" +"Cmdlets","InvokeMgGroupSiteOnenoteNotebookGetNotebookFromWebUrl.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookGetNotebookFromWebUrl","POST","/groups/{param}/sites/{param}/onenote/notebooks/getNotebookFromWebUrl","mismatch","Get-MgGroupSiteOnenoteNotebookFromWebUrl" +"Cmdlets","InvokeMgGroupSiteOnenoteNotebookSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionCopyToNotebook","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupSiteOnenoteNotebookSectionToNotebook" +"Cmdlets","InvokeMgGroupSiteOnenoteNotebookSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionCopyToSectionGroup","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupSiteOnenoteNotebookSectionToSectionGroup" +"Cmdlets","InvokeMgGroupSiteOnenoteNotebookSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionCopyToNotebook","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionToNotebook" +"Cmdlets","InvokeMgGroupSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionToSectionGroup" +"Cmdlets","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" +"Cmdlets","InvokeMgGroupSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","no-oracle","" +"Cmdlets","InvokeMgGroupSiteOnenoteNotebookSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionPageCopyToSection","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupSiteOnenoteNotebookSectionPageToSection" +"Cmdlets","InvokeMgGroupSiteOnenoteNotebookSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionPageOnenotePatchContent","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent","no-oracle","" +"Cmdlets","InvokeMgGroupSiteOnenotePageCopyToSection.g.cs","v1.0","Invoke-MgGroupSiteOnenotePageCopyToSection","POST","/groups/{param}/sites/{param}/onenote/pages/{param}/copyToSection","mismatch","Copy-MgGroupSiteOnenotePageToSection" +"Cmdlets","InvokeMgGroupSiteOnenotePageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupSiteOnenotePageOnenotePatchContent","POST","/groups/{param}/sites/{param}/onenote/pages/{param}/onenotePatchContent","no-oracle","" +"Cmdlets","InvokeMgGroupSiteOnenoteSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionCopyToNotebook","POST","/groups/{param}/sites/{param}/onenote/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupSiteOnenoteSectionToNotebook" +"Cmdlets","InvokeMgGroupSiteOnenoteSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionCopyToSectionGroup","POST","/groups/{param}/sites/{param}/onenote/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupSiteOnenoteSectionToSectionGroup" +"Cmdlets","InvokeMgGroupSiteOnenoteSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionGroupSectionCopyToNotebook","POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupSiteOnenoteSectionGroupSectionToNotebook" +"Cmdlets","InvokeMgGroupSiteOnenoteSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionGroupSectionCopyToSectionGroup","POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupSiteOnenoteSectionGroupSectionToSectionGroup" +"Cmdlets","InvokeMgGroupSiteOnenoteSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionGroupSectionPageCopyToSection","POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupSiteOnenoteSectionGroupSectionPageToSection" +"Cmdlets","InvokeMgGroupSiteOnenoteSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionGroupSectionPageOnenotePatchContent","POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","no-oracle","" +"Cmdlets","InvokeMgGroupSiteOnenoteSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionPageCopyToSection","POST","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupSiteOnenoteSectionPageToSection" +"Cmdlets","InvokeMgGroupSiteOnenoteSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionPageOnenotePatchContent","POST","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent","no-oracle","" +"Cmdlets","InvokeMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartGetPositionOfWebPart.g.cs","v1.0","Invoke-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartGetPositionOfWebPart","POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}/getPositionOfWebPart","mismatch","Get-MgGroupSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart" +"Cmdlets","InvokeMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartGetPositionOfWebPart.g.cs","v1.0","Invoke-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartGetPositionOfWebPart","POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}/getPositionOfWebPart","mismatch","Get-MgGroupSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart" +"Cmdlets","InvokeMgGroupSitePageAsSitePageWebPartGetPositionOfWebPart.g.cs","v1.0","Invoke-MgGroupSitePageAsSitePageWebPartGetPositionOfWebPart","POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts/{param}/getPositionOfWebPart","mismatch","Get-MgGroupSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart" +"Cmdlets","InvokeMgGroupSitePermissionGrant.g.cs","v1.0","Invoke-MgGroupSitePermissionGrant","POST","/groups/{param}/sites/{param}/permissions/{param}/grant","mismatch","Grant-MgGroupSitePermission" +"Cmdlets","InvokeMgGroupSiteRemove.g.cs","v1.0","Invoke-MgGroupSiteRemove","POST","/groups/{param}/sites/remove","mismatch","Remove-MgGroupSite" +"Cmdlets","InvokeMgSiteAdd.g.cs","v1.0","Invoke-MgSiteAdd","POST","/sites/add","mismatch","Add-MgSite" +"Cmdlets","InvokeMgSiteContentTypeAddCopy.g.cs","v1.0","Invoke-MgSiteContentTypeAddCopy","POST","/sites/{param}/contentTypes/addCopy","mismatch","Add-MgSiteContentTypeCopy" +"Cmdlets","InvokeMgSiteContentTypeAddCopyFromContentTypeHub.g.cs","v1.0","Invoke-MgSiteContentTypeAddCopyFromContentTypeHub","POST","/sites/{param}/contentTypes/addCopyFromContentTypeHub","mismatch","Add-MgSiteContentTypeCopyFromContentTypeHub" +"Cmdlets","InvokeMgSiteContentTypeAssociateWithHubSites.g.cs","v1.0","Invoke-MgSiteContentTypeAssociateWithHubSites","POST","/sites/{param}/contentTypes/{param}/associateWithHubSites","mismatch","Join-MgSiteContentTypeWithHubSite" +"Cmdlets","InvokeMgSiteContentTypeCopyToDefaultContentLocation.g.cs","v1.0","Invoke-MgSiteContentTypeCopyToDefaultContentLocation","POST","/sites/{param}/contentTypes/{param}/copyToDefaultContentLocation","mismatch","Copy-MgSiteContentTypeToDefaultContentLocation" +"Cmdlets","InvokeMgSiteContentTypePublish.g.cs","v1.0","Invoke-MgSiteContentTypePublish","POST","/sites/{param}/contentTypes/{param}/publish","mismatch","Publish-MgSiteContentType" +"Cmdlets","InvokeMgSiteContentTypeUnpublish.g.cs","v1.0","Invoke-MgSiteContentTypeUnpublish","POST","/sites/{param}/contentTypes/{param}/unpublish","mismatch","Unpublish-MgSiteContentType" +"Cmdlets","InvokeMgSiteListContentTypeAddCopy.g.cs","v1.0","Invoke-MgSiteListContentTypeAddCopy","POST","/sites/{param}/lists/{param}/contentTypes/addCopy","mismatch","Add-MgSiteListContentTypeCopy" +"Cmdlets","InvokeMgSiteListContentTypeAddCopyFromContentTypeHub.g.cs","v1.0","Invoke-MgSiteListContentTypeAddCopyFromContentTypeHub","POST","/sites/{param}/lists/{param}/contentTypes/addCopyFromContentTypeHub","mismatch","Add-MgSiteListContentTypeCopyFromContentTypeHub" +"Cmdlets","InvokeMgSiteListContentTypeAssociateWithHubSites.g.cs","v1.0","Invoke-MgSiteListContentTypeAssociateWithHubSites","POST","/sites/{param}/lists/{param}/contentTypes/{param}/associateWithHubSites","mismatch","Join-MgSiteListContentTypeWithHubSite" +"Cmdlets","InvokeMgSiteListContentTypeCopyToDefaultContentLocation.g.cs","v1.0","Invoke-MgSiteListContentTypeCopyToDefaultContentLocation","POST","/sites/{param}/lists/{param}/contentTypes/{param}/copyToDefaultContentLocation","mismatch","Copy-MgSiteListContentTypeToDefaultContentLocation" +"Cmdlets","InvokeMgSiteListContentTypePublish.g.cs","v1.0","Invoke-MgSiteListContentTypePublish","POST","/sites/{param}/lists/{param}/contentTypes/{param}/publish","mismatch","Publish-MgSiteListContentType" +"Cmdlets","InvokeMgSiteListContentTypeUnpublish.g.cs","v1.0","Invoke-MgSiteListContentTypeUnpublish","POST","/sites/{param}/lists/{param}/contentTypes/{param}/unpublish","mismatch","Unpublish-MgSiteListContentType" +"Cmdlets","InvokeMgSiteListItemCreateLink.g.cs","v1.0","Invoke-MgSiteListItemCreateLink","POST","/sites/{param}/lists/{param}/items/{param}/createLink","mismatch","New-MgSiteListItemLink" +"Cmdlets","InvokeMgSiteListItemDocumentSetVersionRestore.g.cs","v1.0","Invoke-MgSiteListItemDocumentSetVersionRestore","POST","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/restore","mismatch","Restore-MgSiteListItemDocumentSetVersion" +"Cmdlets","InvokeMgSiteListItemPermissionGrant.g.cs","v1.0","Invoke-MgSiteListItemPermissionGrant","POST","/sites/{param}/lists/{param}/items/{param}/permissions/{param}/grant","mismatch","Grant-MgSiteListItemPermission" +"Cmdlets","InvokeMgSiteListItemVersionRestoreVersion.g.cs","v1.0","Invoke-MgSiteListItemVersionRestoreVersion","POST","/sites/{param}/lists/{param}/items/{param}/versions/{param}/restoreVersion","mismatch","Restore-MgSiteListItemVersion" +"Cmdlets","InvokeMgSiteListPermissionGrant.g.cs","v1.0","Invoke-MgSiteListPermissionGrant","POST","/sites/{param}/lists/{param}/permissions/{param}/grant","mismatch","Grant-MgSiteListPermission" +"Cmdlets","InvokeMgSiteListSubscriptionReauthorize.g.cs","v1.0","Invoke-MgSiteListSubscriptionReauthorize","POST","/sites/{param}/lists/{param}/subscriptions/{param}/reauthorize","mismatch","Invoke-MgReauthorizeSiteListSubscription" +"Cmdlets","InvokeMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartGetPositionOfWebPart.g.cs","v1.0","Invoke-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartGetPositionOfWebPart","POST","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}/getPositionOfWebPart","mismatch","Get-MgSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart" +"Cmdlets","InvokeMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartGetPositionOfWebPart.g.cs","v1.0","Invoke-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartGetPositionOfWebPart","POST","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}/getPositionOfWebPart","mismatch","Get-MgSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart" +"Cmdlets","InvokeMgSitePageAsSitePageWebPartGetPositionOfWebPart.g.cs","v1.0","Invoke-MgSitePageAsSitePageWebPartGetPositionOfWebPart","POST","/sites/{param}/pages/{param}/sitePage/webParts/{param}/getPositionOfWebPart","mismatch","Get-MgSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart" +"Cmdlets","InvokeMgSitePermissionGrant.g.cs","v1.0","Invoke-MgSitePermissionGrant","POST","/sites/{param}/permissions/{param}/grant","mismatch","Grant-MgSitePermission" +"Cmdlets","InvokeMgSiteRemove.g.cs","v1.0","Invoke-MgSiteRemove","POST","/sites/remove","no-oracle","" +"Cmdlets","InvokeMgUserFollowedSiteAdd.g.cs","v1.0","Invoke-MgUserFollowedSiteAdd","POST","/users/{param}/followedSites/add","mismatch","Add-MgUserFollowedSite" +"Cmdlets","InvokeMgUserFollowedSiteRemove.g.cs","v1.0","Invoke-MgUserFollowedSiteRemove","POST","/users/{param}/followedSites/remove","mismatch","Remove-MgUserFollowedSite" +"Cmdlets","NewMgGroupSiteAnalyticItemActivityStat.g.cs","v1.0","New-MgGroupSiteAnalyticItemActivityStat","POST","/groups/{param}/sites/{param}/analytics/itemActivityStats","matched","New-MgGroupSiteAnalyticItemActivityStat" +"Cmdlets","NewMgGroupSiteAnalyticItemActivityStatActivity.g.cs","v1.0","New-MgGroupSiteAnalyticItemActivityStatActivity","POST","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities","matched","New-MgGroupSiteAnalyticItemActivityStatActivity" +"Cmdlets","NewMgGroupSiteColumn.g.cs","v1.0","New-MgGroupSiteColumn","POST","/groups/{param}/sites/{param}/columns","matched","New-MgGroupSiteColumn" +"Cmdlets","NewMgGroupSiteContentType.g.cs","v1.0","New-MgGroupSiteContentType","POST","/groups/{param}/sites/{param}/contentTypes","matched","New-MgGroupSiteContentType" +"Cmdlets","NewMgGroupSiteContentTypeColumn.g.cs","v1.0","New-MgGroupSiteContentTypeColumn","POST","/groups/{param}/sites/{param}/contentTypes/{param}/columns","matched","New-MgGroupSiteContentTypeColumn" +"Cmdlets","NewMgGroupSiteContentTypeColumnLink.g.cs","v1.0","New-MgGroupSiteContentTypeColumnLink","POST","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks","matched","New-MgGroupSiteContentTypeColumnLink" +"Cmdlets","NewMgGroupSiteList.g.cs","v1.0","New-MgGroupSiteList","POST","/groups/{param}/sites/{param}/lists","matched","New-MgGroupSiteList" +"Cmdlets","NewMgGroupSiteListColumn.g.cs","v1.0","New-MgGroupSiteListColumn","POST","/groups/{param}/sites/{param}/lists/{param}/columns","matched","New-MgGroupSiteListColumn" +"Cmdlets","NewMgGroupSiteListContentType.g.cs","v1.0","New-MgGroupSiteListContentType","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes","matched","New-MgGroupSiteListContentType" +"Cmdlets","NewMgGroupSiteListContentTypeColumn.g.cs","v1.0","New-MgGroupSiteListContentTypeColumn","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns","matched","New-MgGroupSiteListContentTypeColumn" +"Cmdlets","NewMgGroupSiteListContentTypeColumnLink.g.cs","v1.0","New-MgGroupSiteListContentTypeColumnLink","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks","matched","New-MgGroupSiteListContentTypeColumnLink" +"Cmdlets","NewMgGroupSiteListItem.g.cs","v1.0","New-MgGroupSiteListItem","POST","/groups/{param}/sites/{param}/lists/{param}/items","matched","New-MgGroupSiteListItem" +"Cmdlets","NewMgGroupSiteListItemDocumentSetVersion.g.cs","v1.0","New-MgGroupSiteListItemDocumentSetVersion","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions","matched","New-MgGroupSiteListItemDocumentSetVersion" +"Cmdlets","NewMgGroupSiteListItemPermission.g.cs","v1.0","New-MgGroupSiteListItemPermission","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions","matched","New-MgGroupSiteListItemPermission" +"Cmdlets","NewMgGroupSiteListItemVersion.g.cs","v1.0","New-MgGroupSiteListItemVersion","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions","matched","New-MgGroupSiteListItemVersion" +"Cmdlets","NewMgGroupSiteListOperation.g.cs","v1.0","New-MgGroupSiteListOperation","POST","/groups/{param}/sites/{param}/lists/{param}/operations","matched","New-MgGroupSiteListOperation" +"Cmdlets","NewMgGroupSiteListPermission.g.cs","v1.0","New-MgGroupSiteListPermission","POST","/groups/{param}/sites/{param}/lists/{param}/permissions","matched","New-MgGroupSiteListPermission" +"Cmdlets","NewMgGroupSiteListSubscription.g.cs","v1.0","New-MgGroupSiteListSubscription","POST","/groups/{param}/sites/{param}/lists/{param}/subscriptions","matched","New-MgGroupSiteListSubscription" +"Cmdlets","NewMgGroupSiteOnenoteNotebook.g.cs","v1.0","New-MgGroupSiteOnenoteNotebook","POST","/groups/{param}/sites/{param}/onenote/notebooks","matched","New-MgGroupSiteOnenoteNotebook" +"Cmdlets","NewMgGroupSiteOnenoteNotebookSection.g.cs","v1.0","New-MgGroupSiteOnenoteNotebookSection","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections","matched","New-MgGroupSiteOnenoteNotebookSection" +"Cmdlets","NewMgGroupSiteOnenoteNotebookSectionGroup.g.cs","v1.0","New-MgGroupSiteOnenoteNotebookSectionGroup","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups","matched","New-MgGroupSiteOnenoteNotebookSectionGroup" +"Cmdlets","NewMgGroupSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","New-MgGroupSiteOnenoteNotebookSectionGroupSection","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","New-MgGroupSiteOnenoteNotebookSectionGroupSection" +"Cmdlets","NewMgGroupSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","New-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","New-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","NewMgGroupSiteOnenoteNotebookSectionPage.g.cs","v1.0","New-MgGroupSiteOnenoteNotebookSectionPage","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","New-MgGroupSiteOnenoteNotebookSectionPage" +"Cmdlets","NewMgGroupSiteOnenoteOperation.g.cs","v1.0","New-MgGroupSiteOnenoteOperation","POST","/groups/{param}/sites/{param}/onenote/operations","matched","New-MgGroupSiteOnenoteOperation" +"Cmdlets","NewMgGroupSiteOnenotePage.g.cs","v1.0","New-MgGroupSiteOnenotePage","POST","/groups/{param}/sites/{param}/onenote/pages","matched","New-MgGroupSiteOnenotePage" +"Cmdlets","NewMgGroupSiteOnenoteResource.g.cs","v1.0","New-MgGroupSiteOnenoteResource","POST","/groups/{param}/sites/{param}/onenote/resources","matched","New-MgGroupSiteOnenoteResource" +"Cmdlets","NewMgGroupSiteOnenoteSection.g.cs","v1.0","New-MgGroupSiteOnenoteSection","POST","/groups/{param}/sites/{param}/onenote/sections","matched","New-MgGroupSiteOnenoteSection" +"Cmdlets","NewMgGroupSiteOnenoteSectionGroup.g.cs","v1.0","New-MgGroupSiteOnenoteSectionGroup","POST","/groups/{param}/sites/{param}/onenote/sectionGroups","matched","New-MgGroupSiteOnenoteSectionGroup" +"Cmdlets","NewMgGroupSiteOnenoteSectionGroupSection.g.cs","v1.0","New-MgGroupSiteOnenoteSectionGroupSection","POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections","matched","New-MgGroupSiteOnenoteSectionGroupSection" +"Cmdlets","NewMgGroupSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","New-MgGroupSiteOnenoteSectionGroupSectionPage","POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","New-MgGroupSiteOnenoteSectionGroupSectionPage" +"Cmdlets","NewMgGroupSiteOnenoteSectionPage.g.cs","v1.0","New-MgGroupSiteOnenoteSectionPage","POST","/groups/{param}/sites/{param}/onenote/sections/{param}/pages","matched","New-MgGroupSiteOnenoteSectionPage" +"Cmdlets","NewMgGroupSiteOperation.g.cs","v1.0","New-MgGroupSiteOperation","POST","/groups/{param}/sites/{param}/operations","matched","New-MgGroupSiteOperation" +"Cmdlets","NewMgGroupSitePage.g.cs","v1.0","New-MgGroupSitePage","POST","/groups/{param}/sites/{param}/pages","matched","New-MgGroupSitePage" +"Cmdlets","NewMgGroupSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections","matched","New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection" +"Cmdlets","NewMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns","matched","New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"Cmdlets","NewMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts","matched","New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"Cmdlets","NewMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","New-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts","matched","New-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"Cmdlets","NewMgGroupSitePageAsSitePageWebPart.g.cs","v1.0","New-MgGroupSitePageAsSitePageWebPart","POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts","matched","New-MgGroupSitePageAsSitePageWebPart" +"Cmdlets","NewMgGroupSitePermission.g.cs","v1.0","New-MgGroupSitePermission","POST","/groups/{param}/sites/{param}/permissions","matched","New-MgGroupSitePermission" +"Cmdlets","NewMgGroupSiteTermStore.g.cs","v1.0","New-MgGroupSiteTermStore","POST","/groups/{param}/sites/{param}/termStores","matched","New-MgGroupSiteTermStore" +"Cmdlets","NewMgGroupSiteTermStoreGroup.g.cs","v1.0","New-MgGroupSiteTermStoreGroup","POST","/groups/{param}/sites/{param}/termStore/groups","matched","New-MgGroupSiteTermStoreGroup" +"Cmdlets","NewMgGroupSiteTermStoreGroupSet.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSet","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets","matched","New-MgGroupSiteTermStoreGroupSet" +"Cmdlets","NewMgGroupSiteTermStoreGroupSetChild.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSetChild","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children","matched","New-MgGroupSiteTermStoreGroupSetChild" +"Cmdlets","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" +"Cmdlets","NewMgGroupSiteTermStoreGroupSetRelation.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSetRelation","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations","matched","New-MgGroupSiteTermStoreGroupSetRelation" +"Cmdlets","NewMgGroupSiteTermStoreGroupSetTerm.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSetTerm","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms","matched","New-MgGroupSiteTermStoreGroupSetTerm" +"Cmdlets","NewMgGroupSiteTermStoreGroupSetTermChild.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSetTermChild","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children","matched","New-MgGroupSiteTermStoreGroupSetTermChild" +"Cmdlets","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" +"Cmdlets","NewMgGroupSiteTermStoreGroupSetTermRelation.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSetTermRelation","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations","matched","New-MgGroupSiteTermStoreGroupSetTermRelation" +"Cmdlets","NewMgGroupSiteTermStoreSet.g.cs","v1.0","New-MgGroupSiteTermStoreSet","POST","/groups/{param}/sites/{param}/termStore/sets","matched","New-MgGroupSiteTermStoreSet" +"Cmdlets","NewMgGroupSiteTermStoreSetChild.g.cs","v1.0","New-MgGroupSiteTermStoreSetChild","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/children","matched","New-MgGroupSiteTermStoreSetChild" +"Cmdlets","NewMgGroupSiteTermStoreSetChildRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetChildRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations","matched","New-MgGroupSiteTermStoreSetChildRelation" +"Cmdlets","NewMgGroupSiteTermStoreSetParentGroupSet.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSet","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets","matched","New-MgGroupSiteTermStoreSetParentGroupSet" +"Cmdlets","NewMgGroupSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSetChild","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children","matched","New-MgGroupSiteTermStoreSetParentGroupSetChild" +"Cmdlets","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" +"Cmdlets","NewMgGroupSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSetRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations","matched","New-MgGroupSiteTermStoreSetParentGroupSetRelation" +"Cmdlets","NewMgGroupSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSetTerm","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms","matched","New-MgGroupSiteTermStoreSetParentGroupSetTerm" +"Cmdlets","NewMgGroupSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSetTermChild","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children","matched","New-MgGroupSiteTermStoreSetParentGroupSetTermChild" +"Cmdlets","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" +"Cmdlets","NewMgGroupSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSetTermRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations","matched","New-MgGroupSiteTermStoreSetParentGroupSetTermRelation" +"Cmdlets","NewMgGroupSiteTermStoreSetRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/relations","matched","New-MgGroupSiteTermStoreSetRelation" +"Cmdlets","NewMgGroupSiteTermStoreSetTerm.g.cs","v1.0","New-MgGroupSiteTermStoreSetTerm","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/terms","matched","New-MgGroupSiteTermStoreSetTerm" +"Cmdlets","NewMgGroupSiteTermStoreSetTermChild.g.cs","v1.0","New-MgGroupSiteTermStoreSetTermChild","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children","matched","New-MgGroupSiteTermStoreSetTermChild" +"Cmdlets","NewMgGroupSiteTermStoreSetTermChildRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetTermChildRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations","matched","New-MgGroupSiteTermStoreSetTermChildRelation" +"Cmdlets","NewMgGroupSiteTermStoreSetTermRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetTermRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations","matched","New-MgGroupSiteTermStoreSetTermRelation" +"Cmdlets","NewMgSiteAnalyticItemActivityStat.g.cs","v1.0","New-MgSiteAnalyticItemActivityStat","POST","/sites/{param}/analytics/itemActivityStats","matched","New-MgSiteAnalyticItemActivityStat" +"Cmdlets","NewMgSiteAnalyticItemActivityStatActivity.g.cs","v1.0","New-MgSiteAnalyticItemActivityStatActivity","POST","/sites/{param}/analytics/itemActivityStats/{param}/activities","matched","New-MgSiteAnalyticItemActivityStatActivity" +"Cmdlets","NewMgSiteColumn.g.cs","v1.0","New-MgSiteColumn","POST","/sites/{param}/columns","matched","New-MgSiteColumn" +"Cmdlets","NewMgSiteContentType.g.cs","v1.0","New-MgSiteContentType","POST","/sites/{param}/contentTypes","matched","New-MgSiteContentType" +"Cmdlets","NewMgSiteContentTypeColumn.g.cs","v1.0","New-MgSiteContentTypeColumn","POST","/sites/{param}/contentTypes/{param}/columns","matched","New-MgSiteContentTypeColumn" +"Cmdlets","NewMgSiteContentTypeColumnLink.g.cs","v1.0","New-MgSiteContentTypeColumnLink","POST","/sites/{param}/contentTypes/{param}/columnLinks","matched","New-MgSiteContentTypeColumnLink" +"Cmdlets","NewMgSiteList.g.cs","v1.0","New-MgSiteList","POST","/sites/{param}/lists","matched","New-MgSiteList" +"Cmdlets","NewMgSiteListColumn.g.cs","v1.0","New-MgSiteListColumn","POST","/sites/{param}/lists/{param}/columns","matched","New-MgSiteListColumn" +"Cmdlets","NewMgSiteListContentType.g.cs","v1.0","New-MgSiteListContentType","POST","/sites/{param}/lists/{param}/contentTypes","matched","New-MgSiteListContentType" +"Cmdlets","NewMgSiteListContentTypeColumn.g.cs","v1.0","New-MgSiteListContentTypeColumn","POST","/sites/{param}/lists/{param}/contentTypes/{param}/columns","matched","New-MgSiteListContentTypeColumn" +"Cmdlets","NewMgSiteListContentTypeColumnLink.g.cs","v1.0","New-MgSiteListContentTypeColumnLink","POST","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks","matched","New-MgSiteListContentTypeColumnLink" +"Cmdlets","NewMgSiteListItem.g.cs","v1.0","New-MgSiteListItem","POST","/sites/{param}/lists/{param}/items","matched","New-MgSiteListItem" +"Cmdlets","NewMgSiteListItemDocumentSetVersion.g.cs","v1.0","New-MgSiteListItemDocumentSetVersion","POST","/sites/{param}/lists/{param}/items/{param}/documentSetVersions","matched","New-MgSiteListItemDocumentSetVersion" +"Cmdlets","NewMgSiteListItemPermission.g.cs","v1.0","New-MgSiteListItemPermission","POST","/sites/{param}/lists/{param}/items/{param}/permissions","matched","New-MgSiteListItemPermission" +"Cmdlets","NewMgSiteListItemVersion.g.cs","v1.0","New-MgSiteListItemVersion","POST","/sites/{param}/lists/{param}/items/{param}/versions","matched","New-MgSiteListItemVersion" +"Cmdlets","NewMgSiteListOperation.g.cs","v1.0","New-MgSiteListOperation","POST","/sites/{param}/lists/{param}/operations","matched","New-MgSiteListOperation" +"Cmdlets","NewMgSiteListPermission.g.cs","v1.0","New-MgSiteListPermission","POST","/sites/{param}/lists/{param}/permissions","matched","New-MgSiteListPermission" +"Cmdlets","NewMgSiteListSubscription.g.cs","v1.0","New-MgSiteListSubscription","POST","/sites/{param}/lists/{param}/subscriptions","matched","New-MgSiteListSubscription" +"Cmdlets","NewMgSiteOperation.g.cs","v1.0","New-MgSiteOperation","POST","/sites/{param}/operations","matched","New-MgSiteOperation" +"Cmdlets","NewMgSitePage.g.cs","v1.0","New-MgSitePage","POST","/sites/{param}/pages","matched","New-MgSitePage" +"Cmdlets","NewMgSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","New-MgSitePageAsSitePageCanvaLayoutHorizontalSection","POST","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections","matched","New-MgSitePageAsSitePageCanvaLayoutHorizontalSection" +"Cmdlets","NewMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","POST","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns","matched","New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"Cmdlets","NewMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","POST","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts","matched","New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"Cmdlets","NewMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","New-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","POST","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts","matched","New-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"Cmdlets","NewMgSitePageAsSitePageWebPart.g.cs","v1.0","New-MgSitePageAsSitePageWebPart","POST","/sites/{param}/pages/{param}/sitePage/webParts","matched","New-MgSitePageAsSitePageWebPart" +"Cmdlets","NewMgSitePermission.g.cs","v1.0","New-MgSitePermission","POST","/sites/{param}/permissions","matched","New-MgSitePermission" +"Cmdlets","NewMgSiteTermStore.g.cs","v1.0","New-MgSiteTermStore","POST","/sites/{param}/termStores","matched","New-MgSiteTermStore" +"Cmdlets","NewMgSiteTermStoreGroup.g.cs","v1.0","New-MgSiteTermStoreGroup","POST","/sites/{param}/termStore/groups","matched","New-MgSiteTermStoreGroup" +"Cmdlets","NewMgSiteTermStoreGroupSet.g.cs","v1.0","New-MgSiteTermStoreGroupSet","POST","/sites/{param}/termStore/groups/{param}/sets","matched","New-MgSiteTermStoreGroupSet" +"Cmdlets","NewMgSiteTermStoreGroupSetChild.g.cs","v1.0","New-MgSiteTermStoreGroupSetChild","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/children","matched","New-MgSiteTermStoreGroupSetChild" +"Cmdlets","NewMgSiteTermStoreGroupSetChildRelation.g.cs","v1.0","New-MgSiteTermStoreGroupSetChildRelation","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations","matched","New-MgSiteTermStoreGroupSetChildRelation" +"Cmdlets","NewMgSiteTermStoreGroupSetRelation.g.cs","v1.0","New-MgSiteTermStoreGroupSetRelation","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/relations","matched","New-MgSiteTermStoreGroupSetRelation" +"Cmdlets","NewMgSiteTermStoreGroupSetTerm.g.cs","v1.0","New-MgSiteTermStoreGroupSetTerm","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/terms","matched","New-MgSiteTermStoreGroupSetTerm" +"Cmdlets","NewMgSiteTermStoreGroupSetTermChild.g.cs","v1.0","New-MgSiteTermStoreGroupSetTermChild","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children","matched","New-MgSiteTermStoreGroupSetTermChild" +"Cmdlets","NewMgSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","New-MgSiteTermStoreGroupSetTermChildRelation","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations","matched","New-MgSiteTermStoreGroupSetTermChildRelation" +"Cmdlets","NewMgSiteTermStoreGroupSetTermRelation.g.cs","v1.0","New-MgSiteTermStoreGroupSetTermRelation","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations","matched","New-MgSiteTermStoreGroupSetTermRelation" +"Cmdlets","NewMgSiteTermStoreSet.g.cs","v1.0","New-MgSiteTermStoreSet","POST","/sites/{param}/termStore/sets","matched","New-MgSiteTermStoreSet" +"Cmdlets","NewMgSiteTermStoreSetChild.g.cs","v1.0","New-MgSiteTermStoreSetChild","POST","/sites/{param}/termStore/sets/{param}/children","matched","New-MgSiteTermStoreSetChild" +"Cmdlets","NewMgSiteTermStoreSetChildRelation.g.cs","v1.0","New-MgSiteTermStoreSetChildRelation","POST","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations","matched","New-MgSiteTermStoreSetChildRelation" +"Cmdlets","NewMgSiteTermStoreSetParentGroupSet.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSet","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets","matched","New-MgSiteTermStoreSetParentGroupSet" +"Cmdlets","NewMgSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetChild","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children","matched","New-MgSiteTermStoreSetParentGroupSetChild" +"Cmdlets","NewMgSiteTermStoreSetParentGroupSetChildRelation.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetChildRelation","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations","matched","New-MgSiteTermStoreSetParentGroupSetChildRelation" +"Cmdlets","NewMgSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetRelation","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations","matched","New-MgSiteTermStoreSetParentGroupSetRelation" +"Cmdlets","NewMgSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetTerm","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms","matched","New-MgSiteTermStoreSetParentGroupSetTerm" +"Cmdlets","NewMgSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetTermChild","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children","matched","New-MgSiteTermStoreSetParentGroupSetTermChild" +"Cmdlets","NewMgSiteTermStoreSetParentGroupSetTermChildRelation.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetTermChildRelation","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations","matched","New-MgSiteTermStoreSetParentGroupSetTermChildRelation" +"Cmdlets","NewMgSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetTermRelation","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations","matched","New-MgSiteTermStoreSetParentGroupSetTermRelation" +"Cmdlets","NewMgSiteTermStoreSetRelation.g.cs","v1.0","New-MgSiteTermStoreSetRelation","POST","/sites/{param}/termStore/sets/{param}/relations","matched","New-MgSiteTermStoreSetRelation" +"Cmdlets","NewMgSiteTermStoreSetTerm.g.cs","v1.0","New-MgSiteTermStoreSetTerm","POST","/sites/{param}/termStore/sets/{param}/terms","matched","New-MgSiteTermStoreSetTerm" +"Cmdlets","NewMgSiteTermStoreSetTermChild.g.cs","v1.0","New-MgSiteTermStoreSetTermChild","POST","/sites/{param}/termStore/sets/{param}/terms/{param}/children","matched","New-MgSiteTermStoreSetTermChild" +"Cmdlets","NewMgSiteTermStoreSetTermChildRelation.g.cs","v1.0","New-MgSiteTermStoreSetTermChildRelation","POST","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations","matched","New-MgSiteTermStoreSetTermChildRelation" +"Cmdlets","NewMgSiteTermStoreSetTermRelation.g.cs","v1.0","New-MgSiteTermStoreSetTermRelation","POST","/sites/{param}/termStore/sets/{param}/terms/{param}/relations","matched","New-MgSiteTermStoreSetTermRelation" +"Cmdlets","RemoveMgAdminSharepoint.g.cs","v1.0","Remove-MgAdminSharepoint","DELETE","/admin/sharepoint","matched","Remove-MgAdminSharepoint" +"Cmdlets","RemoveMgAdminSharepointSetting.g.cs","v1.0","Remove-MgAdminSharepointSetting","DELETE","/admin/sharepoint/settings","matched","Remove-MgAdminSharepointSetting" +"Cmdlets","RemoveMgGroupSiteAnalytic.g.cs","v1.0","Remove-MgGroupSiteAnalytic","DELETE","/groups/{param}/sites/{param}/analytics","matched","Remove-MgGroupSiteAnalytic" +"Cmdlets","RemoveMgGroupSiteAnalyticItemActivityStat.g.cs","v1.0","Remove-MgGroupSiteAnalyticItemActivityStat","DELETE","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}","matched","Remove-MgGroupSiteAnalyticItemActivityStat" +"Cmdlets","RemoveMgGroupSiteAnalyticItemActivityStatActivity.g.cs","v1.0","Remove-MgGroupSiteAnalyticItemActivityStatActivity","DELETE","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","matched","Remove-MgGroupSiteAnalyticItemActivityStatActivity" +"Cmdlets","RemoveMgGroupSiteAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Remove-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent","DELETE","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","matched","Remove-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent" +"Cmdlets","RemoveMgGroupSiteColumn.g.cs","v1.0","Remove-MgGroupSiteColumn","DELETE","/groups/{param}/sites/{param}/columns/{param}","matched","Remove-MgGroupSiteColumn" +"Cmdlets","RemoveMgGroupSiteContentType.g.cs","v1.0","Remove-MgGroupSiteContentType","DELETE","/groups/{param}/sites/{param}/contentTypes/{param}","matched","Remove-MgGroupSiteContentType" +"Cmdlets","RemoveMgGroupSiteContentTypeColumn.g.cs","v1.0","Remove-MgGroupSiteContentTypeColumn","DELETE","/groups/{param}/sites/{param}/contentTypes/{param}/columns/{param}","matched","Remove-MgGroupSiteContentTypeColumn" +"Cmdlets","RemoveMgGroupSiteContentTypeColumnLink.g.cs","v1.0","Remove-MgGroupSiteContentTypeColumnLink","DELETE","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks/{param}","matched","Remove-MgGroupSiteContentTypeColumnLink" +"Cmdlets","RemoveMgGroupSiteList.g.cs","v1.0","Remove-MgGroupSiteList","DELETE","/groups/{param}/sites/{param}/lists/{param}","matched","Remove-MgGroupSiteList" +"Cmdlets","RemoveMgGroupSiteListColumn.g.cs","v1.0","Remove-MgGroupSiteListColumn","DELETE","/groups/{param}/sites/{param}/lists/{param}/columns/{param}","matched","Remove-MgGroupSiteListColumn" +"Cmdlets","RemoveMgGroupSiteListContentType.g.cs","v1.0","Remove-MgGroupSiteListContentType","DELETE","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}","matched","Remove-MgGroupSiteListContentType" +"Cmdlets","RemoveMgGroupSiteListContentTypeColumn.g.cs","v1.0","Remove-MgGroupSiteListContentTypeColumn","DELETE","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","matched","Remove-MgGroupSiteListContentTypeColumn" +"Cmdlets","RemoveMgGroupSiteListContentTypeColumnLink.g.cs","v1.0","Remove-MgGroupSiteListContentTypeColumnLink","DELETE","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","matched","Remove-MgGroupSiteListContentTypeColumnLink" +"Cmdlets","RemoveMgGroupSiteListItem.g.cs","v1.0","Remove-MgGroupSiteListItem","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}","matched","Remove-MgGroupSiteListItem" +"Cmdlets","RemoveMgGroupSiteListItemDocumentSetVersion.g.cs","v1.0","Remove-MgGroupSiteListItemDocumentSetVersion","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","matched","Remove-MgGroupSiteListItemDocumentSetVersion" +"Cmdlets","RemoveMgGroupSiteListItemDocumentSetVersionField.g.cs","v1.0","Remove-MgGroupSiteListItemDocumentSetVersionField","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","matched","Remove-MgGroupSiteListItemDocumentSetVersionField" +"Cmdlets","RemoveMgGroupSiteListItemDriveItemContent.g.cs","v1.0","Remove-MgGroupSiteListItemDriveItemContent","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/driveItem/content","matched","Remove-MgGroupSiteListItemDriveItemContent" +"Cmdlets","RemoveMgGroupSiteListItemField.g.cs","v1.0","Remove-MgGroupSiteListItemField","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/fields","matched","Remove-MgGroupSiteListItemField" +"Cmdlets","RemoveMgGroupSiteListItemPermission.g.cs","v1.0","Remove-MgGroupSiteListItemPermission","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/{param}","matched","Remove-MgGroupSiteListItemPermission" +"Cmdlets","RemoveMgGroupSiteListItemVersion.g.cs","v1.0","Remove-MgGroupSiteListItemVersion","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}","matched","Remove-MgGroupSiteListItemVersion" +"Cmdlets","RemoveMgGroupSiteListItemVersionField.g.cs","v1.0","Remove-MgGroupSiteListItemVersionField","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","matched","Remove-MgGroupSiteListItemVersionField" +"Cmdlets","RemoveMgGroupSiteListOperation.g.cs","v1.0","Remove-MgGroupSiteListOperation","DELETE","/groups/{param}/sites/{param}/lists/{param}/operations/{param}","matched","Remove-MgGroupSiteListOperation" +"Cmdlets","RemoveMgGroupSiteListPermission.g.cs","v1.0","Remove-MgGroupSiteListPermission","DELETE","/groups/{param}/sites/{param}/lists/{param}/permissions/{param}","matched","Remove-MgGroupSiteListPermission" +"Cmdlets","RemoveMgGroupSiteListSubscription.g.cs","v1.0","Remove-MgGroupSiteListSubscription","DELETE","/groups/{param}/sites/{param}/lists/{param}/subscriptions/{param}","matched","Remove-MgGroupSiteListSubscription" +"Cmdlets","RemoveMgGroupSiteOnenote.g.cs","v1.0","Remove-MgGroupSiteOnenote","DELETE","/groups/{param}/sites/{param}/onenote","matched","Remove-MgGroupSiteOnenote" +"Cmdlets","RemoveMgGroupSiteOnenoteNotebook.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebook","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}","matched","Remove-MgGroupSiteOnenoteNotebook" +"Cmdlets","RemoveMgGroupSiteOnenoteNotebookSection.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSection","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}","matched","Remove-MgGroupSiteOnenoteNotebookSection" +"Cmdlets","RemoveMgGroupSiteOnenoteNotebookSectionGroup.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSectionGroup","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Remove-MgGroupSiteOnenoteNotebookSectionGroup" +"Cmdlets","RemoveMgGroupSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSectionGroupSection","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Remove-MgGroupSiteOnenoteNotebookSectionGroupSection" +"Cmdlets","RemoveMgGroupSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","RemoveMgGroupSiteOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","RemoveMgGroupSiteOnenoteNotebookSectionPage.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSectionPage","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Remove-MgGroupSiteOnenoteNotebookSectionPage" +"Cmdlets","RemoveMgGroupSiteOnenoteNotebookSectionPageContent.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSectionPageContent","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","matched","Remove-MgGroupSiteOnenoteNotebookSectionPageContent" +"Cmdlets","RemoveMgGroupSiteOnenoteOperation.g.cs","v1.0","Remove-MgGroupSiteOnenoteOperation","DELETE","/groups/{param}/sites/{param}/onenote/operations/{param}","matched","Remove-MgGroupSiteOnenoteOperation" +"Cmdlets","RemoveMgGroupSiteOnenotePage.g.cs","v1.0","Remove-MgGroupSiteOnenotePage","DELETE","/groups/{param}/sites/{param}/onenote/pages/{param}","matched","Remove-MgGroupSiteOnenotePage" +"Cmdlets","RemoveMgGroupSiteOnenotePageContent.g.cs","v1.0","Remove-MgGroupSiteOnenotePageContent","DELETE","/groups/{param}/sites/{param}/onenote/pages/{param}/content","matched","Remove-MgGroupSiteOnenotePageContent" +"Cmdlets","RemoveMgGroupSiteOnenoteResource.g.cs","v1.0","Remove-MgGroupSiteOnenoteResource","DELETE","/groups/{param}/sites/{param}/onenote/resources/{param}","matched","Remove-MgGroupSiteOnenoteResource" +"Cmdlets","RemoveMgGroupSiteOnenoteResourceContent.g.cs","v1.0","Remove-MgGroupSiteOnenoteResourceContent","DELETE","/groups/{param}/sites/{param}/onenote/resources/{param}/content","matched","Remove-MgGroupSiteOnenoteResourceContent" +"Cmdlets","RemoveMgGroupSiteOnenoteSection.g.cs","v1.0","Remove-MgGroupSiteOnenoteSection","DELETE","/groups/{param}/sites/{param}/onenote/sections/{param}","matched","Remove-MgGroupSiteOnenoteSection" +"Cmdlets","RemoveMgGroupSiteOnenoteSectionGroup.g.cs","v1.0","Remove-MgGroupSiteOnenoteSectionGroup","DELETE","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}","matched","Remove-MgGroupSiteOnenoteSectionGroup" +"Cmdlets","RemoveMgGroupSiteOnenoteSectionGroupSection.g.cs","v1.0","Remove-MgGroupSiteOnenoteSectionGroupSection","DELETE","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Remove-MgGroupSiteOnenoteSectionGroupSection" +"Cmdlets","RemoveMgGroupSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","Remove-MgGroupSiteOnenoteSectionGroupSectionPage","DELETE","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgGroupSiteOnenoteSectionGroupSectionPage" +"Cmdlets","RemoveMgGroupSiteOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Remove-MgGroupSiteOnenoteSectionGroupSectionPageContent","DELETE","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Remove-MgGroupSiteOnenoteSectionGroupSectionPageContent" +"Cmdlets","RemoveMgGroupSiteOnenoteSectionPage.g.cs","v1.0","Remove-MgGroupSiteOnenoteSectionPage","DELETE","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}","matched","Remove-MgGroupSiteOnenoteSectionPage" +"Cmdlets","RemoveMgGroupSiteOnenoteSectionPageContent.g.cs","v1.0","Remove-MgGroupSiteOnenoteSectionPageContent","DELETE","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/content","matched","Remove-MgGroupSiteOnenoteSectionPageContent" +"Cmdlets","RemoveMgGroupSiteOperation.g.cs","v1.0","Remove-MgGroupSiteOperation","DELETE","/groups/{param}/sites/{param}/operations/{param}","matched","Remove-MgGroupSiteOperation" +"Cmdlets","RemoveMgGroupSitePage.g.cs","v1.0","Remove-MgGroupSitePage","DELETE","/groups/{param}/sites/{param}/pages/{param}","matched","Remove-MgGroupSitePage" +"Cmdlets","RemoveMgGroupSitePageAsSitePageCanvaLayout.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageCanvaLayout","DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout","matched","Remove-MgGroupSitePageAsSitePageCanvaLayout" +"Cmdlets","RemoveMgGroupSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}","matched","Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection" +"Cmdlets","RemoveMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}","matched","Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"Cmdlets","RemoveMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}","matched","Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"Cmdlets","RemoveMgGroupSitePageAsSitePageCanvaLayoutVerticalSection.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection","DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection","matched","Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection" +"Cmdlets","RemoveMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}","matched","Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"Cmdlets","RemoveMgGroupSitePageAsSitePageWebPart.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageWebPart","DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts/{param}","matched","Remove-MgGroupSitePageAsSitePageWebPart" +"Cmdlets","RemoveMgGroupSitePermission.g.cs","v1.0","Remove-MgGroupSitePermission","DELETE","/groups/{param}/sites/{param}/permissions/{param}","matched","Remove-MgGroupSitePermission" +"Cmdlets","RemoveMgGroupSiteTermStore.g.cs","v1.0","Remove-MgGroupSiteTermStore","DELETE","/groups/{param}/sites/{param}/termStore","matched","Remove-MgGroupSiteTermStore" +"Cmdlets","RemoveMgGroupSiteTermStoreGroup.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroup","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}","matched","Remove-MgGroupSiteTermStoreGroup" +"Cmdlets","RemoveMgGroupSiteTermStoreGroupSet.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSet","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}","matched","Remove-MgGroupSiteTermStoreGroupSet" +"Cmdlets","RemoveMgGroupSiteTermStoreGroupSetChild.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetChild","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}","matched","Remove-MgGroupSiteTermStoreGroupSetChild" +"Cmdlets","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" +"Cmdlets","RemoveMgGroupSiteTermStoreGroupSetParentGroup.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetParentGroup","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","matched","Remove-MgGroupSiteTermStoreGroupSetParentGroup" +"Cmdlets","RemoveMgGroupSiteTermStoreGroupSetRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetRelation","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreGroupSetRelation" +"Cmdlets","RemoveMgGroupSiteTermStoreGroupSetTerm.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetTerm","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","matched","Remove-MgGroupSiteTermStoreGroupSetTerm" +"Cmdlets","RemoveMgGroupSiteTermStoreGroupSetTermChild.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetTermChild","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","matched","Remove-MgGroupSiteTermStoreGroupSetTermChild" +"Cmdlets","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" +"Cmdlets","RemoveMgGroupSiteTermStoreGroupSetTermRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetTermRelation","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreGroupSetTermRelation" +"Cmdlets","RemoveMgGroupSiteTermStoreSet.g.cs","v1.0","Remove-MgGroupSiteTermStoreSet","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}","matched","Remove-MgGroupSiteTermStoreSet" +"Cmdlets","RemoveMgGroupSiteTermStoreSetChild.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetChild","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}","matched","Remove-MgGroupSiteTermStoreSetChild" +"Cmdlets","RemoveMgGroupSiteTermStoreSetChildRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetChildRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetChildRelation" +"Cmdlets","RemoveMgGroupSiteTermStoreSetParentGroup.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroup","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup","matched","Remove-MgGroupSiteTermStoreSetParentGroup" +"Cmdlets","RemoveMgGroupSiteTermStoreSetParentGroupSet.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroupSet","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","matched","Remove-MgGroupSiteTermStoreSetParentGroupSet" +"Cmdlets","RemoveMgGroupSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroupSetChild","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}","matched","Remove-MgGroupSiteTermStoreSetParentGroupSetChild" +"Cmdlets","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" +"Cmdlets","RemoveMgGroupSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroupSetRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetParentGroupSetRelation" +"Cmdlets","RemoveMgGroupSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroupSetTerm","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","matched","Remove-MgGroupSiteTermStoreSetParentGroupSetTerm" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","RemoveMgGroupSiteTermStoreSetRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetRelation" +"Cmdlets","RemoveMgGroupSiteTermStoreSetTerm.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetTerm","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}","matched","Remove-MgGroupSiteTermStoreSetTerm" +"Cmdlets","RemoveMgGroupSiteTermStoreSetTermChild.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetTermChild","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","matched","Remove-MgGroupSiteTermStoreSetTermChild" +"Cmdlets","RemoveMgGroupSiteTermStoreSetTermChildRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetTermChildRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetTermChildRelation" +"Cmdlets","RemoveMgGroupSiteTermStoreSetTermRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetTermRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetTermRelation" +"Cmdlets","RemoveMgSiteAnalytic.g.cs","v1.0","Remove-MgSiteAnalytic","DELETE","/sites/{param}/analytics","matched","Remove-MgSiteAnalytic" +"Cmdlets","RemoveMgSiteAnalyticItemActivityStat.g.cs","v1.0","Remove-MgSiteAnalyticItemActivityStat","DELETE","/sites/{param}/analytics/itemActivityStats/{param}","matched","Remove-MgSiteAnalyticItemActivityStat" +"Cmdlets","RemoveMgSiteAnalyticItemActivityStatActivity.g.cs","v1.0","Remove-MgSiteAnalyticItemActivityStatActivity","DELETE","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","matched","Remove-MgSiteAnalyticItemActivityStatActivity" +"Cmdlets","RemoveMgSiteColumn.g.cs","v1.0","Remove-MgSiteColumn","DELETE","/sites/{param}/columns/{param}","matched","Remove-MgSiteColumn" +"Cmdlets","RemoveMgSiteContentType.g.cs","v1.0","Remove-MgSiteContentType","DELETE","/sites/{param}/contentTypes/{param}","matched","Remove-MgSiteContentType" +"Cmdlets","RemoveMgSiteContentTypeColumn.g.cs","v1.0","Remove-MgSiteContentTypeColumn","DELETE","/sites/{param}/contentTypes/{param}/columns/{param}","matched","Remove-MgSiteContentTypeColumn" +"Cmdlets","RemoveMgSiteContentTypeColumnLink.g.cs","v1.0","Remove-MgSiteContentTypeColumnLink","DELETE","/sites/{param}/contentTypes/{param}/columnLinks/{param}","matched","Remove-MgSiteContentTypeColumnLink" +"Cmdlets","RemoveMgSiteList.g.cs","v1.0","Remove-MgSiteList","DELETE","/sites/{param}/lists/{param}","matched","Remove-MgSiteList" +"Cmdlets","RemoveMgSiteListColumn.g.cs","v1.0","Remove-MgSiteListColumn","DELETE","/sites/{param}/lists/{param}/columns/{param}","matched","Remove-MgSiteListColumn" +"Cmdlets","RemoveMgSiteListContentType.g.cs","v1.0","Remove-MgSiteListContentType","DELETE","/sites/{param}/lists/{param}/contentTypes/{param}","matched","Remove-MgSiteListContentType" +"Cmdlets","RemoveMgSiteListContentTypeColumn.g.cs","v1.0","Remove-MgSiteListContentTypeColumn","DELETE","/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","matched","Remove-MgSiteListContentTypeColumn" +"Cmdlets","RemoveMgSiteListContentTypeColumnLink.g.cs","v1.0","Remove-MgSiteListContentTypeColumnLink","DELETE","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","matched","Remove-MgSiteListContentTypeColumnLink" +"Cmdlets","RemoveMgSiteListItem.g.cs","v1.0","Remove-MgSiteListItem","DELETE","/sites/{param}/lists/{param}/items/{param}","matched","Remove-MgSiteListItem" +"Cmdlets","RemoveMgSiteListItemDocumentSetVersion.g.cs","v1.0","Remove-MgSiteListItemDocumentSetVersion","DELETE","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","matched","Remove-MgSiteListItemDocumentSetVersion" +"Cmdlets","RemoveMgSiteListItemDocumentSetVersionField.g.cs","v1.0","Remove-MgSiteListItemDocumentSetVersionField","DELETE","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","matched","Remove-MgSiteListItemDocumentSetVersionField" +"Cmdlets","RemoveMgSiteListItemField.g.cs","v1.0","Remove-MgSiteListItemField","DELETE","/sites/{param}/lists/{param}/items/{param}/fields","matched","Remove-MgSiteListItemField" +"Cmdlets","RemoveMgSiteListItemPermission.g.cs","v1.0","Remove-MgSiteListItemPermission","DELETE","/sites/{param}/lists/{param}/items/{param}/permissions/{param}","matched","Remove-MgSiteListItemPermission" +"Cmdlets","RemoveMgSiteListItemVersion.g.cs","v1.0","Remove-MgSiteListItemVersion","DELETE","/sites/{param}/lists/{param}/items/{param}/versions/{param}","matched","Remove-MgSiteListItemVersion" +"Cmdlets","RemoveMgSiteListItemVersionField.g.cs","v1.0","Remove-MgSiteListItemVersionField","DELETE","/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","matched","Remove-MgSiteListItemVersionField" +"Cmdlets","RemoveMgSiteListOperation.g.cs","v1.0","Remove-MgSiteListOperation","DELETE","/sites/{param}/lists/{param}/operations/{param}","matched","Remove-MgSiteListOperation" +"Cmdlets","RemoveMgSiteListPermission.g.cs","v1.0","Remove-MgSiteListPermission","DELETE","/sites/{param}/lists/{param}/permissions/{param}","matched","Remove-MgSiteListPermission" +"Cmdlets","RemoveMgSiteListSubscription.g.cs","v1.0","Remove-MgSiteListSubscription","DELETE","/sites/{param}/lists/{param}/subscriptions/{param}","matched","Remove-MgSiteListSubscription" +"Cmdlets","RemoveMgSiteOperation.g.cs","v1.0","Remove-MgSiteOperation","DELETE","/sites/{param}/operations/{param}","matched","Remove-MgSiteOperation" +"Cmdlets","RemoveMgSitePage.g.cs","v1.0","Remove-MgSitePage","DELETE","/sites/{param}/pages/{param}","matched","Remove-MgSitePage" +"Cmdlets","RemoveMgSitePageAsSitePageCanvaLayout.g.cs","v1.0","Remove-MgSitePageAsSitePageCanvaLayout","DELETE","/sites/{param}/pages/{param}/sitePage/canvasLayout","matched","Remove-MgSitePageAsSitePageCanvaLayout" +"Cmdlets","RemoveMgSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSection","DELETE","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}","matched","Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSection" +"Cmdlets","RemoveMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","DELETE","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}","matched","Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"Cmdlets","RemoveMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","DELETE","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}","matched","Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"Cmdlets","RemoveMgSitePageAsSitePageCanvaLayoutVerticalSection.g.cs","v1.0","Remove-MgSitePageAsSitePageCanvaLayoutVerticalSection","DELETE","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection","matched","Remove-MgSitePageAsSitePageCanvaLayoutVerticalSection" +"Cmdlets","RemoveMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","Remove-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","DELETE","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}","matched","Remove-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"Cmdlets","RemoveMgSitePageAsSitePageWebPart.g.cs","v1.0","Remove-MgSitePageAsSitePageWebPart","DELETE","/sites/{param}/pages/{param}/sitePage/webParts/{param}","matched","Remove-MgSitePageAsSitePageWebPart" +"Cmdlets","RemoveMgSitePermission.g.cs","v1.0","Remove-MgSitePermission","DELETE","/sites/{param}/permissions/{param}","matched","Remove-MgSitePermission" +"Cmdlets","RemoveMgSiteTermStore.g.cs","v1.0","Remove-MgSiteTermStore","DELETE","/sites/{param}/termStore","matched","Remove-MgSiteTermStore" +"Cmdlets","RemoveMgSiteTermStoreGroup.g.cs","v1.0","Remove-MgSiteTermStoreGroup","DELETE","/sites/{param}/termStore/groups/{param}","matched","Remove-MgSiteTermStoreGroup" +"Cmdlets","RemoveMgSiteTermStoreGroupSet.g.cs","v1.0","Remove-MgSiteTermStoreGroupSet","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}","matched","Remove-MgSiteTermStoreGroupSet" +"Cmdlets","RemoveMgSiteTermStoreGroupSetChild.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetChild","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}","matched","Remove-MgSiteTermStoreGroupSetChild" +"Cmdlets","RemoveMgSiteTermStoreGroupSetChildRelation.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetChildRelation","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Remove-MgSiteTermStoreGroupSetChildRelation" +"Cmdlets","RemoveMgSiteTermStoreGroupSetParentGroup.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetParentGroup","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","matched","Remove-MgSiteTermStoreGroupSetParentGroup" +"Cmdlets","RemoveMgSiteTermStoreGroupSetRelation.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetRelation","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","matched","Remove-MgSiteTermStoreGroupSetRelation" +"Cmdlets","RemoveMgSiteTermStoreGroupSetTerm.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetTerm","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","matched","Remove-MgSiteTermStoreGroupSetTerm" +"Cmdlets","RemoveMgSiteTermStoreGroupSetTermChild.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetTermChild","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","matched","Remove-MgSiteTermStoreGroupSetTermChild" +"Cmdlets","RemoveMgSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetTermChildRelation","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Remove-MgSiteTermStoreGroupSetTermChildRelation" +"Cmdlets","RemoveMgSiteTermStoreGroupSetTermRelation.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetTermRelation","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","matched","Remove-MgSiteTermStoreGroupSetTermRelation" +"Cmdlets","RemoveMgSiteTermStoreSet.g.cs","v1.0","Remove-MgSiteTermStoreSet","DELETE","/sites/{param}/termStore/sets/{param}","matched","Remove-MgSiteTermStoreSet" +"Cmdlets","RemoveMgSiteTermStoreSetChild.g.cs","v1.0","Remove-MgSiteTermStoreSetChild","DELETE","/sites/{param}/termStore/sets/{param}/children/{param}","matched","Remove-MgSiteTermStoreSetChild" +"Cmdlets","RemoveMgSiteTermStoreSetChildRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetChildRelation","DELETE","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetChildRelation" +"Cmdlets","RemoveMgSiteTermStoreSetParentGroup.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroup","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup","matched","Remove-MgSiteTermStoreSetParentGroup" +"Cmdlets","RemoveMgSiteTermStoreSetParentGroupSet.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSet","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSet" +"Cmdlets","RemoveMgSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSetChild","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSetChild" +"Cmdlets","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" +"Cmdlets","RemoveMgSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSetRelation","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSetRelation" +"Cmdlets","RemoveMgSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSetTerm","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSetTerm" +"Cmdlets","RemoveMgSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSetTermChild","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSetTermChild" +"Cmdlets","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" +"Cmdlets","RemoveMgSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSetTermRelation","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSetTermRelation" +"Cmdlets","RemoveMgSiteTermStoreSetRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetRelation","DELETE","/sites/{param}/termStore/sets/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetRelation" +"Cmdlets","RemoveMgSiteTermStoreSetTerm.g.cs","v1.0","Remove-MgSiteTermStoreSetTerm","DELETE","/sites/{param}/termStore/sets/{param}/terms/{param}","matched","Remove-MgSiteTermStoreSetTerm" +"Cmdlets","RemoveMgSiteTermStoreSetTermChild.g.cs","v1.0","Remove-MgSiteTermStoreSetTermChild","DELETE","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","matched","Remove-MgSiteTermStoreSetTermChild" +"Cmdlets","RemoveMgSiteTermStoreSetTermChildRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetTermChildRelation","DELETE","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetTermChildRelation" +"Cmdlets","RemoveMgSiteTermStoreSetTermRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetTermRelation","DELETE","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetTermRelation" +"Cmdlets","SetMgGroupSiteAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Set-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent","PUT","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","matched","Set-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent" +"Cmdlets","SetMgGroupSiteListItemDriveItemContent.g.cs","v1.0","Set-MgGroupSiteListItemDriveItemContent","PUT","/groups/{param}/sites/{param}/lists/{param}/items/{param}/driveItem/content","matched","Set-MgGroupSiteListItemDriveItemContent" +"Cmdlets","SetMgGroupSiteOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Set-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent","PUT","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Set-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent" +"Cmdlets","SetMgGroupSiteOnenoteNotebookSectionPageContent.g.cs","v1.0","Set-MgGroupSiteOnenoteNotebookSectionPageContent","PUT","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","matched","Set-MgGroupSiteOnenoteNotebookSectionPageContent" +"Cmdlets","SetMgGroupSiteOnenotePageContent.g.cs","v1.0","Set-MgGroupSiteOnenotePageContent","PUT","/groups/{param}/sites/{param}/onenote/pages/{param}/content","matched","Set-MgGroupSiteOnenotePageContent" +"Cmdlets","SetMgGroupSiteOnenoteResourceContent.g.cs","v1.0","Set-MgGroupSiteOnenoteResourceContent","PUT","/groups/{param}/sites/{param}/onenote/resources/{param}/content","matched","Set-MgGroupSiteOnenoteResourceContent" +"Cmdlets","SetMgGroupSiteOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Set-MgGroupSiteOnenoteSectionGroupSectionPageContent","PUT","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","matched","Set-MgGroupSiteOnenoteSectionGroupSectionPageContent" +"Cmdlets","SetMgGroupSiteOnenoteSectionPageContent.g.cs","v1.0","Set-MgGroupSiteOnenoteSectionPageContent","PUT","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/content","matched","Set-MgGroupSiteOnenoteSectionPageContent" +"Cmdlets","SetMgSiteAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Set-MgSiteAnalyticItemActivityStatActivityDriveItemContent","PUT","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","matched","Set-MgSiteAnalyticItemActivityStatActivityDriveItemContent" +"Cmdlets","SetMgSiteListItemDriveItemContent.g.cs","v1.0","Set-MgSiteListItemDriveItemContent","PUT","/sites/{param}/lists/{param}/items/{param}/driveItem/content","matched","Set-MgSiteListItemDriveItemContent" +"Cmdlets","UpdateMgAdminSharepoint.g.cs","v1.0","Update-MgAdminSharepoint","PATCH","/admin/sharepoint","matched","Update-MgAdminSharepoint" +"Cmdlets","UpdateMgAdminSharepointSetting.g.cs","v1.0","Update-MgAdminSharepointSetting","PATCH","/admin/sharepoint/settings","matched","Update-MgAdminSharepointSetting" +"Cmdlets","UpdateMgGroupSite.g.cs","v1.0","Update-MgGroupSite","PATCH","/groups/{param}/sites/{param}","matched","Update-MgGroupSite" +"Cmdlets","UpdateMgGroupSiteAnalytic.g.cs","v1.0","Update-MgGroupSiteAnalytic","PATCH","/groups/{param}/sites/{param}/analytics","matched","Update-MgGroupSiteAnalytic" +"Cmdlets","UpdateMgGroupSiteAnalyticItemActivityStat.g.cs","v1.0","Update-MgGroupSiteAnalyticItemActivityStat","PATCH","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}","matched","Update-MgGroupSiteAnalyticItemActivityStat" +"Cmdlets","UpdateMgGroupSiteAnalyticItemActivityStatActivity.g.cs","v1.0","Update-MgGroupSiteAnalyticItemActivityStatActivity","PATCH","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","matched","Update-MgGroupSiteAnalyticItemActivityStatActivity" +"Cmdlets","UpdateMgGroupSiteColumn.g.cs","v1.0","Update-MgGroupSiteColumn","PATCH","/groups/{param}/sites/{param}/columns/{param}","matched","Update-MgGroupSiteColumn" +"Cmdlets","UpdateMgGroupSiteContentType.g.cs","v1.0","Update-MgGroupSiteContentType","PATCH","/groups/{param}/sites/{param}/contentTypes/{param}","matched","Update-MgGroupSiteContentType" +"Cmdlets","UpdateMgGroupSiteContentTypeColumn.g.cs","v1.0","Update-MgGroupSiteContentTypeColumn","PATCH","/groups/{param}/sites/{param}/contentTypes/{param}/columns/{param}","matched","Update-MgGroupSiteContentTypeColumn" +"Cmdlets","UpdateMgGroupSiteContentTypeColumnLink.g.cs","v1.0","Update-MgGroupSiteContentTypeColumnLink","PATCH","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks/{param}","matched","Update-MgGroupSiteContentTypeColumnLink" +"Cmdlets","UpdateMgGroupSiteCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSiteCreatedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/createdByUser/mailboxSettings","matched","Update-MgGroupSiteCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgGroupSiteLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSiteLastModifiedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgGroupSiteLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgGroupSiteList.g.cs","v1.0","Update-MgGroupSiteList","PATCH","/groups/{param}/sites/{param}/lists/{param}","matched","Update-MgGroupSiteList" +"Cmdlets","UpdateMgGroupSiteListColumn.g.cs","v1.0","Update-MgGroupSiteListColumn","PATCH","/groups/{param}/sites/{param}/lists/{param}/columns/{param}","matched","Update-MgGroupSiteListColumn" +"Cmdlets","UpdateMgGroupSiteListContentType.g.cs","v1.0","Update-MgGroupSiteListContentType","PATCH","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}","matched","Update-MgGroupSiteListContentType" +"Cmdlets","UpdateMgGroupSiteListContentTypeColumn.g.cs","v1.0","Update-MgGroupSiteListContentTypeColumn","PATCH","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","matched","Update-MgGroupSiteListContentTypeColumn" +"Cmdlets","UpdateMgGroupSiteListContentTypeColumnLink.g.cs","v1.0","Update-MgGroupSiteListContentTypeColumnLink","PATCH","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","matched","Update-MgGroupSiteListContentTypeColumnLink" +"Cmdlets","UpdateMgGroupSiteListCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSiteListCreatedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/lists/{param}/createdByUser/mailboxSettings","matched","Update-MgGroupSiteListCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgGroupSiteListItem.g.cs","v1.0","Update-MgGroupSiteListItem","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}","matched","Update-MgGroupSiteListItem" +"Cmdlets","UpdateMgGroupSiteListItemCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSiteListItemCreatedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser/mailboxSettings","matched","Update-MgGroupSiteListItemCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgGroupSiteListItemDocumentSetVersion.g.cs","v1.0","Update-MgGroupSiteListItemDocumentSetVersion","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","matched","Update-MgGroupSiteListItemDocumentSetVersion" +"Cmdlets","UpdateMgGroupSiteListItemDocumentSetVersionField.g.cs","v1.0","Update-MgGroupSiteListItemDocumentSetVersionField","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","matched","Update-MgGroupSiteListItemDocumentSetVersionField" +"Cmdlets","UpdateMgGroupSiteListItemField.g.cs","v1.0","Update-MgGroupSiteListItemField","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/fields","matched","Update-MgGroupSiteListItemField" +"Cmdlets","UpdateMgGroupSiteListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSiteListItemLastModifiedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgGroupSiteListItemLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgGroupSiteListItemPermission.g.cs","v1.0","Update-MgGroupSiteListItemPermission","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/{param}","matched","Update-MgGroupSiteListItemPermission" +"Cmdlets","UpdateMgGroupSiteListItemVersion.g.cs","v1.0","Update-MgGroupSiteListItemVersion","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}","matched","Update-MgGroupSiteListItemVersion" +"Cmdlets","UpdateMgGroupSiteListItemVersionField.g.cs","v1.0","Update-MgGroupSiteListItemVersionField","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","matched","Update-MgGroupSiteListItemVersionField" +"Cmdlets","UpdateMgGroupSiteListLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSiteListLastModifiedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgGroupSiteListLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgGroupSiteListOperation.g.cs","v1.0","Update-MgGroupSiteListOperation","PATCH","/groups/{param}/sites/{param}/lists/{param}/operations/{param}","matched","Update-MgGroupSiteListOperation" +"Cmdlets","UpdateMgGroupSiteListPermission.g.cs","v1.0","Update-MgGroupSiteListPermission","PATCH","/groups/{param}/sites/{param}/lists/{param}/permissions/{param}","matched","Update-MgGroupSiteListPermission" +"Cmdlets","UpdateMgGroupSiteListSubscription.g.cs","v1.0","Update-MgGroupSiteListSubscription","PATCH","/groups/{param}/sites/{param}/lists/{param}/subscriptions/{param}","matched","Update-MgGroupSiteListSubscription" +"Cmdlets","UpdateMgGroupSiteOnenote.g.cs","v1.0","Update-MgGroupSiteOnenote","PATCH","/groups/{param}/sites/{param}/onenote","matched","Update-MgGroupSiteOnenote" +"Cmdlets","UpdateMgGroupSiteOnenoteNotebook.g.cs","v1.0","Update-MgGroupSiteOnenoteNotebook","PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}","matched","Update-MgGroupSiteOnenoteNotebook" +"Cmdlets","UpdateMgGroupSiteOnenoteNotebookSection.g.cs","v1.0","Update-MgGroupSiteOnenoteNotebookSection","PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}","matched","Update-MgGroupSiteOnenoteNotebookSection" +"Cmdlets","UpdateMgGroupSiteOnenoteNotebookSectionGroup.g.cs","v1.0","Update-MgGroupSiteOnenoteNotebookSectionGroup","PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Update-MgGroupSiteOnenoteNotebookSectionGroup" +"Cmdlets","UpdateMgGroupSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","Update-MgGroupSiteOnenoteNotebookSectionGroupSection","PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Update-MgGroupSiteOnenoteNotebookSectionGroupSection" +"Cmdlets","UpdateMgGroupSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Update-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Update-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"Cmdlets","UpdateMgGroupSiteOnenoteNotebookSectionPage.g.cs","v1.0","Update-MgGroupSiteOnenoteNotebookSectionPage","PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Update-MgGroupSiteOnenoteNotebookSectionPage" +"Cmdlets","UpdateMgGroupSiteOnenoteOperation.g.cs","v1.0","Update-MgGroupSiteOnenoteOperation","PATCH","/groups/{param}/sites/{param}/onenote/operations/{param}","matched","Update-MgGroupSiteOnenoteOperation" +"Cmdlets","UpdateMgGroupSiteOnenotePage.g.cs","v1.0","Update-MgGroupSiteOnenotePage","PATCH","/groups/{param}/sites/{param}/onenote/pages/{param}","matched","Update-MgGroupSiteOnenotePage" +"Cmdlets","UpdateMgGroupSiteOnenoteResource.g.cs","v1.0","Update-MgGroupSiteOnenoteResource","PATCH","/groups/{param}/sites/{param}/onenote/resources/{param}","matched","Update-MgGroupSiteOnenoteResource" +"Cmdlets","UpdateMgGroupSiteOnenoteSection.g.cs","v1.0","Update-MgGroupSiteOnenoteSection","PATCH","/groups/{param}/sites/{param}/onenote/sections/{param}","matched","Update-MgGroupSiteOnenoteSection" +"Cmdlets","UpdateMgGroupSiteOnenoteSectionGroup.g.cs","v1.0","Update-MgGroupSiteOnenoteSectionGroup","PATCH","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}","matched","Update-MgGroupSiteOnenoteSectionGroup" +"Cmdlets","UpdateMgGroupSiteOnenoteSectionGroupSection.g.cs","v1.0","Update-MgGroupSiteOnenoteSectionGroupSection","PATCH","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Update-MgGroupSiteOnenoteSectionGroupSection" +"Cmdlets","UpdateMgGroupSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","Update-MgGroupSiteOnenoteSectionGroupSectionPage","PATCH","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Update-MgGroupSiteOnenoteSectionGroupSectionPage" +"Cmdlets","UpdateMgGroupSiteOnenoteSectionPage.g.cs","v1.0","Update-MgGroupSiteOnenoteSectionPage","PATCH","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}","matched","Update-MgGroupSiteOnenoteSectionPage" +"Cmdlets","UpdateMgGroupSiteOperation.g.cs","v1.0","Update-MgGroupSiteOperation","PATCH","/groups/{param}/sites/{param}/operations/{param}","matched","Update-MgGroupSiteOperation" +"Cmdlets","UpdateMgGroupSitePage.g.cs","v1.0","Update-MgGroupSitePage","PATCH","/groups/{param}/sites/{param}/pages/{param}","matched","Update-MgGroupSitePage" +"Cmdlets","UpdateMgGroupSitePageAsSitePageCanvaLayout.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCanvaLayout","PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout","matched","Update-MgGroupSitePageAsSitePageCanvaLayout" +"Cmdlets","UpdateMgGroupSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}","matched","Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection" +"Cmdlets","UpdateMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}","matched","Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"Cmdlets","UpdateMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}","matched","Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"Cmdlets","UpdateMgGroupSitePageAsSitePageCanvaLayoutVerticalSection.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection","PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection","matched","Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection" +"Cmdlets","UpdateMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}","matched","Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"Cmdlets","UpdateMgGroupSitePageAsSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/createdByUser/mailboxSettings","matched","Update-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/mailboxSettings","matched","Update-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgGroupSitePageAsSitePageWebPart.g.cs","v1.0","Update-MgGroupSitePageAsSitePageWebPart","PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts/{param}","matched","Update-MgGroupSitePageAsSitePageWebPart" +"Cmdlets","UpdateMgGroupSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSitePageCreatedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/pages/{param}/createdByUser/mailboxSettings","matched","Update-MgGroupSitePageCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgGroupSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSitePageLastModifiedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgGroupSitePageLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgGroupSitePermission.g.cs","v1.0","Update-MgGroupSitePermission","PATCH","/groups/{param}/sites/{param}/permissions/{param}","matched","Update-MgGroupSitePermission" +"Cmdlets","UpdateMgGroupSiteTermStore.g.cs","v1.0","Update-MgGroupSiteTermStore","PATCH","/groups/{param}/sites/{param}/termStore","matched","Update-MgGroupSiteTermStore" +"Cmdlets","UpdateMgGroupSiteTermStoreGroup.g.cs","v1.0","Update-MgGroupSiteTermStoreGroup","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}","matched","Update-MgGroupSiteTermStoreGroup" +"Cmdlets","UpdateMgGroupSiteTermStoreGroupSet.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSet","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}","matched","Update-MgGroupSiteTermStoreGroupSet" +"Cmdlets","UpdateMgGroupSiteTermStoreGroupSetChild.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetChild","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}","matched","Update-MgGroupSiteTermStoreGroupSetChild" +"Cmdlets","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" +"Cmdlets","UpdateMgGroupSiteTermStoreGroupSetParentGroup.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetParentGroup","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","matched","Update-MgGroupSiteTermStoreGroupSetParentGroup" +"Cmdlets","UpdateMgGroupSiteTermStoreGroupSetRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetRelation","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreGroupSetRelation" +"Cmdlets","UpdateMgGroupSiteTermStoreGroupSetTerm.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetTerm","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","matched","Update-MgGroupSiteTermStoreGroupSetTerm" +"Cmdlets","UpdateMgGroupSiteTermStoreGroupSetTermChild.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetTermChild","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","matched","Update-MgGroupSiteTermStoreGroupSetTermChild" +"Cmdlets","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" +"Cmdlets","UpdateMgGroupSiteTermStoreGroupSetTermRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetTermRelation","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreGroupSetTermRelation" +"Cmdlets","UpdateMgGroupSiteTermStoreSet.g.cs","v1.0","Update-MgGroupSiteTermStoreSet","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}","matched","Update-MgGroupSiteTermStoreSet" +"Cmdlets","UpdateMgGroupSiteTermStoreSetChild.g.cs","v1.0","Update-MgGroupSiteTermStoreSetChild","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}","matched","Update-MgGroupSiteTermStoreSetChild" +"Cmdlets","UpdateMgGroupSiteTermStoreSetChildRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetChildRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetChildRelation" +"Cmdlets","UpdateMgGroupSiteTermStoreSetParentGroup.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroup","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup","matched","Update-MgGroupSiteTermStoreSetParentGroup" +"Cmdlets","UpdateMgGroupSiteTermStoreSetParentGroupSet.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroupSet","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","matched","Update-MgGroupSiteTermStoreSetParentGroupSet" +"Cmdlets","UpdateMgGroupSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroupSetChild","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}","matched","Update-MgGroupSiteTermStoreSetParentGroupSetChild" +"Cmdlets","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" +"Cmdlets","UpdateMgGroupSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroupSetRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetParentGroupSetRelation" +"Cmdlets","UpdateMgGroupSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroupSetTerm","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","matched","Update-MgGroupSiteTermStoreSetParentGroupSetTerm" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","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" +"Cmdlets","UpdateMgGroupSiteTermStoreSetRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetRelation" +"Cmdlets","UpdateMgGroupSiteTermStoreSetTerm.g.cs","v1.0","Update-MgGroupSiteTermStoreSetTerm","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}","matched","Update-MgGroupSiteTermStoreSetTerm" +"Cmdlets","UpdateMgGroupSiteTermStoreSetTermChild.g.cs","v1.0","Update-MgGroupSiteTermStoreSetTermChild","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","matched","Update-MgGroupSiteTermStoreSetTermChild" +"Cmdlets","UpdateMgGroupSiteTermStoreSetTermChildRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetTermChildRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetTermChildRelation" +"Cmdlets","UpdateMgGroupSiteTermStoreSetTermRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetTermRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetTermRelation" +"Cmdlets","UpdateMgSite.g.cs","v1.0","Update-MgSite","PATCH","/sites/{param}","matched","Update-MgSite" +"Cmdlets","UpdateMgSiteAnalytic.g.cs","v1.0","Update-MgSiteAnalytic","PATCH","/sites/{param}/analytics","matched","Update-MgSiteAnalytic" +"Cmdlets","UpdateMgSiteAnalyticItemActivityStat.g.cs","v1.0","Update-MgSiteAnalyticItemActivityStat","PATCH","/sites/{param}/analytics/itemActivityStats/{param}","matched","Update-MgSiteAnalyticItemActivityStat" +"Cmdlets","UpdateMgSiteAnalyticItemActivityStatActivity.g.cs","v1.0","Update-MgSiteAnalyticItemActivityStatActivity","PATCH","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","matched","Update-MgSiteAnalyticItemActivityStatActivity" +"Cmdlets","UpdateMgSiteColumn.g.cs","v1.0","Update-MgSiteColumn","PATCH","/sites/{param}/columns/{param}","matched","Update-MgSiteColumn" +"Cmdlets","UpdateMgSiteContentType.g.cs","v1.0","Update-MgSiteContentType","PATCH","/sites/{param}/contentTypes/{param}","matched","Update-MgSiteContentType" +"Cmdlets","UpdateMgSiteContentTypeColumn.g.cs","v1.0","Update-MgSiteContentTypeColumn","PATCH","/sites/{param}/contentTypes/{param}/columns/{param}","matched","Update-MgSiteContentTypeColumn" +"Cmdlets","UpdateMgSiteContentTypeColumnLink.g.cs","v1.0","Update-MgSiteContentTypeColumnLink","PATCH","/sites/{param}/contentTypes/{param}/columnLinks/{param}","matched","Update-MgSiteContentTypeColumnLink" +"Cmdlets","UpdateMgSiteList.g.cs","v1.0","Update-MgSiteList","PATCH","/sites/{param}/lists/{param}","matched","Update-MgSiteList" +"Cmdlets","UpdateMgSiteListColumn.g.cs","v1.0","Update-MgSiteListColumn","PATCH","/sites/{param}/lists/{param}/columns/{param}","matched","Update-MgSiteListColumn" +"Cmdlets","UpdateMgSiteListContentType.g.cs","v1.0","Update-MgSiteListContentType","PATCH","/sites/{param}/lists/{param}/contentTypes/{param}","matched","Update-MgSiteListContentType" +"Cmdlets","UpdateMgSiteListContentTypeColumn.g.cs","v1.0","Update-MgSiteListContentTypeColumn","PATCH","/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","matched","Update-MgSiteListContentTypeColumn" +"Cmdlets","UpdateMgSiteListContentTypeColumnLink.g.cs","v1.0","Update-MgSiteListContentTypeColumnLink","PATCH","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","matched","Update-MgSiteListContentTypeColumnLink" +"Cmdlets","UpdateMgSiteListCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgSiteListCreatedByUserMailboxSetting","PATCH","/sites/{param}/lists/{param}/createdByUser/mailboxSettings","matched","Update-MgSiteListCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgSiteListItem.g.cs","v1.0","Update-MgSiteListItem","PATCH","/sites/{param}/lists/{param}/items/{param}","matched","Update-MgSiteListItem" +"Cmdlets","UpdateMgSiteListItemCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgSiteListItemCreatedByUserMailboxSetting","PATCH","/sites/{param}/lists/{param}/items/{param}/createdByUser/mailboxSettings","matched","Update-MgSiteListItemCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgSiteListItemDocumentSetVersion.g.cs","v1.0","Update-MgSiteListItemDocumentSetVersion","PATCH","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","matched","Update-MgSiteListItemDocumentSetVersion" +"Cmdlets","UpdateMgSiteListItemDocumentSetVersionField.g.cs","v1.0","Update-MgSiteListItemDocumentSetVersionField","PATCH","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","matched","Update-MgSiteListItemDocumentSetVersionField" +"Cmdlets","UpdateMgSiteListItemField.g.cs","v1.0","Update-MgSiteListItemField","PATCH","/sites/{param}/lists/{param}/items/{param}/fields","matched","Update-MgSiteListItemField" +"Cmdlets","UpdateMgSiteListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgSiteListItemLastModifiedByUserMailboxSetting","PATCH","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgSiteListItemLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgSiteListItemPermission.g.cs","v1.0","Update-MgSiteListItemPermission","PATCH","/sites/{param}/lists/{param}/items/{param}/permissions/{param}","matched","Update-MgSiteListItemPermission" +"Cmdlets","UpdateMgSiteListItemVersion.g.cs","v1.0","Update-MgSiteListItemVersion","PATCH","/sites/{param}/lists/{param}/items/{param}/versions/{param}","matched","Update-MgSiteListItemVersion" +"Cmdlets","UpdateMgSiteListItemVersionField.g.cs","v1.0","Update-MgSiteListItemVersionField","PATCH","/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","matched","Update-MgSiteListItemVersionField" +"Cmdlets","UpdateMgSiteListLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgSiteListLastModifiedByUserMailboxSetting","PATCH","/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgSiteListLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgSiteListOperation.g.cs","v1.0","Update-MgSiteListOperation","PATCH","/sites/{param}/lists/{param}/operations/{param}","matched","Update-MgSiteListOperation" +"Cmdlets","UpdateMgSiteListPermission.g.cs","v1.0","Update-MgSiteListPermission","PATCH","/sites/{param}/lists/{param}/permissions/{param}","matched","Update-MgSiteListPermission" +"Cmdlets","UpdateMgSiteListSubscription.g.cs","v1.0","Update-MgSiteListSubscription","PATCH","/sites/{param}/lists/{param}/subscriptions/{param}","matched","Update-MgSiteListSubscription" +"Cmdlets","UpdateMgSiteOperation.g.cs","v1.0","Update-MgSiteOperation","PATCH","/sites/{param}/operations/{param}","matched","Update-MgSiteOperation" +"Cmdlets","UpdateMgSitePage.g.cs","v1.0","Update-MgSitePage","PATCH","/sites/{param}/pages/{param}","matched","Update-MgSitePage" +"Cmdlets","UpdateMgSitePageAsSitePageCanvaLayout.g.cs","v1.0","Update-MgSitePageAsSitePageCanvaLayout","PATCH","/sites/{param}/pages/{param}/sitePage/canvasLayout","matched","Update-MgSitePageAsSitePageCanvaLayout" +"Cmdlets","UpdateMgSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","Update-MgSitePageAsSitePageCanvaLayoutHorizontalSection","PATCH","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}","matched","Update-MgSitePageAsSitePageCanvaLayoutHorizontalSection" +"Cmdlets","UpdateMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","PATCH","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}","matched","Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"Cmdlets","UpdateMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","PATCH","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}","matched","Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"Cmdlets","UpdateMgSitePageAsSitePageCanvaLayoutVerticalSection.g.cs","v1.0","Update-MgSitePageAsSitePageCanvaLayoutVerticalSection","PATCH","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection","matched","Update-MgSitePageAsSitePageCanvaLayoutVerticalSection" +"Cmdlets","UpdateMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","Update-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","PATCH","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}","matched","Update-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"Cmdlets","UpdateMgSitePageAsSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgSitePageAsSitePageCreatedByUserMailboxSetting","PATCH","/sites/{param}/pages/{param}/sitePage/createdByUser/mailboxSettings","matched","Update-MgSitePageAsSitePageCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgSitePageAsSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgSitePageAsSitePageLastModifiedByUserMailboxSetting","PATCH","/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/mailboxSettings","matched","Update-MgSitePageAsSitePageLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgSitePageAsSitePageWebPart.g.cs","v1.0","Update-MgSitePageAsSitePageWebPart","PATCH","/sites/{param}/pages/{param}/sitePage/webParts/{param}","matched","Update-MgSitePageAsSitePageWebPart" +"Cmdlets","UpdateMgSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgSitePageCreatedByUserMailboxSetting","PATCH","/sites/{param}/pages/{param}/createdByUser/mailboxSettings","matched","Update-MgSitePageCreatedByUserMailboxSetting" +"Cmdlets","UpdateMgSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgSitePageLastModifiedByUserMailboxSetting","PATCH","/sites/{param}/pages/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgSitePageLastModifiedByUserMailboxSetting" +"Cmdlets","UpdateMgSitePermission.g.cs","v1.0","Update-MgSitePermission","PATCH","/sites/{param}/permissions/{param}","matched","Update-MgSitePermission" +"Cmdlets","UpdateMgSiteTermStore.g.cs","v1.0","Update-MgSiteTermStore","PATCH","/sites/{param}/termStore","matched","Update-MgSiteTermStore" +"Cmdlets","UpdateMgSiteTermStoreGroup.g.cs","v1.0","Update-MgSiteTermStoreGroup","PATCH","/sites/{param}/termStore/groups/{param}","matched","Update-MgSiteTermStoreGroup" +"Cmdlets","UpdateMgSiteTermStoreGroupSet.g.cs","v1.0","Update-MgSiteTermStoreGroupSet","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}","matched","Update-MgSiteTermStoreGroupSet" +"Cmdlets","UpdateMgSiteTermStoreGroupSetChild.g.cs","v1.0","Update-MgSiteTermStoreGroupSetChild","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}","matched","Update-MgSiteTermStoreGroupSetChild" +"Cmdlets","UpdateMgSiteTermStoreGroupSetChildRelation.g.cs","v1.0","Update-MgSiteTermStoreGroupSetChildRelation","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Update-MgSiteTermStoreGroupSetChildRelation" +"Cmdlets","UpdateMgSiteTermStoreGroupSetParentGroup.g.cs","v1.0","Update-MgSiteTermStoreGroupSetParentGroup","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","matched","Update-MgSiteTermStoreGroupSetParentGroup" +"Cmdlets","UpdateMgSiteTermStoreGroupSetRelation.g.cs","v1.0","Update-MgSiteTermStoreGroupSetRelation","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","matched","Update-MgSiteTermStoreGroupSetRelation" +"Cmdlets","UpdateMgSiteTermStoreGroupSetTerm.g.cs","v1.0","Update-MgSiteTermStoreGroupSetTerm","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","matched","Update-MgSiteTermStoreGroupSetTerm" +"Cmdlets","UpdateMgSiteTermStoreGroupSetTermChild.g.cs","v1.0","Update-MgSiteTermStoreGroupSetTermChild","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","matched","Update-MgSiteTermStoreGroupSetTermChild" +"Cmdlets","UpdateMgSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","Update-MgSiteTermStoreGroupSetTermChildRelation","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Update-MgSiteTermStoreGroupSetTermChildRelation" +"Cmdlets","UpdateMgSiteTermStoreGroupSetTermRelation.g.cs","v1.0","Update-MgSiteTermStoreGroupSetTermRelation","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","matched","Update-MgSiteTermStoreGroupSetTermRelation" +"Cmdlets","UpdateMgSiteTermStoreSet.g.cs","v1.0","Update-MgSiteTermStoreSet","PATCH","/sites/{param}/termStore/sets/{param}","matched","Update-MgSiteTermStoreSet" +"Cmdlets","UpdateMgSiteTermStoreSetChild.g.cs","v1.0","Update-MgSiteTermStoreSetChild","PATCH","/sites/{param}/termStore/sets/{param}/children/{param}","matched","Update-MgSiteTermStoreSetChild" +"Cmdlets","UpdateMgSiteTermStoreSetChildRelation.g.cs","v1.0","Update-MgSiteTermStoreSetChildRelation","PATCH","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetChildRelation" +"Cmdlets","UpdateMgSiteTermStoreSetParentGroup.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroup","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup","matched","Update-MgSiteTermStoreSetParentGroup" +"Cmdlets","UpdateMgSiteTermStoreSetParentGroupSet.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSet","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","matched","Update-MgSiteTermStoreSetParentGroupSet" +"Cmdlets","UpdateMgSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSetChild","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}","matched","Update-MgSiteTermStoreSetParentGroupSetChild" +"Cmdlets","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" +"Cmdlets","UpdateMgSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSetRelation","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetParentGroupSetRelation" +"Cmdlets","UpdateMgSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSetTerm","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","matched","Update-MgSiteTermStoreSetParentGroupSetTerm" +"Cmdlets","UpdateMgSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSetTermChild","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","matched","Update-MgSiteTermStoreSetParentGroupSetTermChild" +"Cmdlets","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" +"Cmdlets","UpdateMgSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSetTermRelation","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetParentGroupSetTermRelation" +"Cmdlets","UpdateMgSiteTermStoreSetRelation.g.cs","v1.0","Update-MgSiteTermStoreSetRelation","PATCH","/sites/{param}/termStore/sets/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetRelation" +"Cmdlets","UpdateMgSiteTermStoreSetTerm.g.cs","v1.0","Update-MgSiteTermStoreSetTerm","PATCH","/sites/{param}/termStore/sets/{param}/terms/{param}","matched","Update-MgSiteTermStoreSetTerm" +"Cmdlets","UpdateMgSiteTermStoreSetTermChild.g.cs","v1.0","Update-MgSiteTermStoreSetTermChild","PATCH","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","matched","Update-MgSiteTermStoreSetTermChild" +"Cmdlets","UpdateMgSiteTermStoreSetTermChildRelation.g.cs","v1.0","Update-MgSiteTermStoreSetTermChildRelation","PATCH","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetTermChildRelation" +"Cmdlets","UpdateMgSiteTermStoreSetTermRelation.g.cs","v1.0","Update-MgSiteTermStoreSetTermRelation","PATCH","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetTermRelation" +"Cmdlets","GetMgAppCatalogTeamApp_Get.g.cs","v1.0","Get-MgAppCatalogTeamApp","GET","/appCatalogs/teamsApps/{param}","matched","Get-MgAppCatalogTeamApp" +"Cmdlets","GetMgAppCatalogTeamApp_List.g.cs","v1.0","Get-MgAppCatalogTeamApp","GET","/appCatalogs/teamsApps","matched","Get-MgAppCatalogTeamApp" +"Cmdlets","GetMgAppCatalogTeamApp.g.cs","v1.0","Get-MgAppCatalogTeamApp","","","dispatcher","" +"Cmdlets","GetMgAppCatalogTeamAppCount.g.cs","v1.0","Get-MgAppCatalogTeamAppCount","GET","/appCatalogs/teamsApps/$count","matched","Get-MgAppCatalogTeamAppCount" +"Cmdlets","GetMgAppCatalogTeamAppDefinition_Get.g.cs","v1.0","Get-MgAppCatalogTeamAppDefinition","GET","/appCatalogs/teamsApps/{param}/appDefinitions/{param}","matched","Get-MgAppCatalogTeamAppDefinition" +"Cmdlets","GetMgAppCatalogTeamAppDefinition_List.g.cs","v1.0","Get-MgAppCatalogTeamAppDefinition","GET","/appCatalogs/teamsApps/{param}/appDefinitions","matched","Get-MgAppCatalogTeamAppDefinition" +"Cmdlets","GetMgAppCatalogTeamAppDefinition.g.cs","v1.0","Get-MgAppCatalogTeamAppDefinition","","","dispatcher","" +"Cmdlets","GetMgAppCatalogTeamAppDefinitionBot.g.cs","v1.0","Get-MgAppCatalogTeamAppDefinitionBot","GET","/appCatalogs/teamsApps/{param}/appDefinitions/{param}/bot","matched","Get-MgAppCatalogTeamAppDefinitionBot" +"Cmdlets","GetMgAppCatalogTeamAppDefinitionCount.g.cs","v1.0","Get-MgAppCatalogTeamAppDefinitionCount","GET","/appCatalogs/teamsApps/{param}/appDefinitions/$count","matched","Get-MgAppCatalogTeamAppDefinitionCount" +"Cmdlets","GetMgChat_Get.g.cs","v1.0","Get-MgChat","GET","/chats/{param}","matched","Get-MgChat" +"Cmdlets","GetMgChat_List.g.cs","v1.0","Get-MgChat","GET","/chats","matched","Get-MgChat" +"Cmdlets","GetMgChat.g.cs","v1.0","Get-MgChat","","","dispatcher","" +"Cmdlets","GetMgChatCount.g.cs","v1.0","Get-MgChatCount","GET","/chats/$count","matched","Get-MgChatCount" +"Cmdlets","GetMgChatGetAllMessages.g.cs","v1.0","Get-MgChatGetAllMessages","GET","/chats/getAllMessages","no-oracle","" +"Cmdlets","GetMgChatGetAllRetainedMessages.g.cs","v1.0","Get-MgChatGetAllRetainedMessages","GET","/chats/getAllRetainedMessages","mismatch","Get-MgChatRetainedMessage" +"Cmdlets","GetMgChatInstalledApp_Get.g.cs","v1.0","Get-MgChatInstalledApp","GET","/chats/{param}/installedApps/{param}","matched","Get-MgChatInstalledApp" +"Cmdlets","GetMgChatInstalledApp_List.g.cs","v1.0","Get-MgChatInstalledApp","GET","/chats/{param}/installedApps","matched","Get-MgChatInstalledApp" +"Cmdlets","GetMgChatInstalledApp.g.cs","v1.0","Get-MgChatInstalledApp","","","dispatcher","" +"Cmdlets","GetMgChatInstalledAppCount.g.cs","v1.0","Get-MgChatInstalledAppCount","GET","/chats/{param}/installedApps/$count","matched","Get-MgChatInstalledAppCount" +"Cmdlets","GetMgChatInstalledAppTeamApp.g.cs","v1.0","Get-MgChatInstalledAppTeamApp","GET","/chats/{param}/installedApps/{param}/teamsApp","matched","Get-MgChatInstalledAppTeamApp" +"Cmdlets","GetMgChatInstalledAppTeamAppDefinition.g.cs","v1.0","Get-MgChatInstalledAppTeamAppDefinition","GET","/chats/{param}/installedApps/{param}/teamsAppDefinition","matched","Get-MgChatInstalledAppTeamAppDefinition" +"Cmdlets","GetMgChatLastMessagePreview.g.cs","v1.0","Get-MgChatLastMessagePreview","GET","/chats/{param}/lastMessagePreview","matched","Get-MgChatLastMessagePreview" +"Cmdlets","GetMgChatMember_Get.g.cs","v1.0","Get-MgChatMember","GET","/chats/{param}/members/{param}","matched","Get-MgChatMember" +"Cmdlets","GetMgChatMember_List.g.cs","v1.0","Get-MgChatMember","GET","/chats/{param}/members","matched","Get-MgChatMember" +"Cmdlets","GetMgChatMember.g.cs","v1.0","Get-MgChatMember","","","dispatcher","" +"Cmdlets","GetMgChatMemberCount.g.cs","v1.0","Get-MgChatMemberCount","GET","/chats/{param}/members/$count","matched","Get-MgChatMemberCount" +"Cmdlets","GetMgChatMessage_Get.g.cs","v1.0","Get-MgChatMessage","GET","/chats/{param}/messages/{param}","matched","Get-MgChatMessage" +"Cmdlets","GetMgChatMessage_List.g.cs","v1.0","Get-MgChatMessage","GET","/chats/{param}/messages","matched","Get-MgChatMessage" +"Cmdlets","GetMgChatMessage.g.cs","v1.0","Get-MgChatMessage","","","dispatcher","" +"Cmdlets","GetMgChatMessageCount.g.cs","v1.0","Get-MgChatMessageCount","GET","/chats/{param}/messages/$count","matched","Get-MgChatMessageCount" +"Cmdlets","GetMgChatMessageDelta.g.cs","v1.0","Get-MgChatMessageDelta","GET","/chats/{param}/messages/delta","matched","Get-MgChatMessageDelta" +"Cmdlets","GetMgChatMessageHostedContent_Get.g.cs","v1.0","Get-MgChatMessageHostedContent","GET","/chats/{param}/messages/{param}/hostedContents/{param}","matched","Get-MgChatMessageHostedContent" +"Cmdlets","GetMgChatMessageHostedContent_List.g.cs","v1.0","Get-MgChatMessageHostedContent","GET","/chats/{param}/messages/{param}/hostedContents","matched","Get-MgChatMessageHostedContent" +"Cmdlets","GetMgChatMessageHostedContent.g.cs","v1.0","Get-MgChatMessageHostedContent","","","dispatcher","" +"Cmdlets","GetMgChatMessageHostedContentContent.g.cs","v1.0","Get-MgChatMessageHostedContentContent","GET","/chats/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgChatMessageHostedContentCount.g.cs","v1.0","Get-MgChatMessageHostedContentCount","GET","/chats/{param}/messages/{param}/hostedContents/$count","matched","Get-MgChatMessageHostedContentCount" +"Cmdlets","GetMgChatMessageReply_Get.g.cs","v1.0","Get-MgChatMessageReply","GET","/chats/{param}/messages/{param}/replies/{param}","matched","Get-MgChatMessageReply" +"Cmdlets","GetMgChatMessageReply_List.g.cs","v1.0","Get-MgChatMessageReply","GET","/chats/{param}/messages/{param}/replies","matched","Get-MgChatMessageReply" +"Cmdlets","GetMgChatMessageReply.g.cs","v1.0","Get-MgChatMessageReply","","","dispatcher","" +"Cmdlets","GetMgChatMessageReplyCount.g.cs","v1.0","Get-MgChatMessageReplyCount","GET","/chats/{param}/messages/{param}/replies/$count","matched","Get-MgChatMessageReplyCount" +"Cmdlets","GetMgChatMessageReplyDelta.g.cs","v1.0","Get-MgChatMessageReplyDelta","GET","/chats/{param}/messages/{param}/replies/delta","matched","Get-MgChatMessageReplyDelta" +"Cmdlets","GetMgChatMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgChatMessageReplyHostedContent","GET","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgChatMessageReplyHostedContent" +"Cmdlets","GetMgChatMessageReplyHostedContent_List.g.cs","v1.0","Get-MgChatMessageReplyHostedContent","GET","/chats/{param}/messages/{param}/replies/{param}/hostedContents","matched","Get-MgChatMessageReplyHostedContent" +"Cmdlets","GetMgChatMessageReplyHostedContent.g.cs","v1.0","Get-MgChatMessageReplyHostedContent","","","dispatcher","" +"Cmdlets","GetMgChatMessageReplyHostedContentContent.g.cs","v1.0","Get-MgChatMessageReplyHostedContentContent","GET","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgChatMessageReplyHostedContentCount.g.cs","v1.0","Get-MgChatMessageReplyHostedContentCount","GET","/chats/{param}/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgChatMessageReplyHostedContentCount" +"Cmdlets","GetMgChatPermissionGrant_Get.g.cs","v1.0","Get-MgChatPermissionGrant","GET","/chats/{param}/permissionGrants/{param}","matched","Get-MgChatPermissionGrant" +"Cmdlets","GetMgChatPermissionGrant_List.g.cs","v1.0","Get-MgChatPermissionGrant","GET","/chats/{param}/permissionGrants","matched","Get-MgChatPermissionGrant" +"Cmdlets","GetMgChatPermissionGrant.g.cs","v1.0","Get-MgChatPermissionGrant","","","dispatcher","" +"Cmdlets","GetMgChatPermissionGrantCount.g.cs","v1.0","Get-MgChatPermissionGrantCount","GET","/chats/{param}/permissionGrants/$count","matched","Get-MgChatPermissionGrantCount" +"Cmdlets","GetMgChatPinnedMessage_Get.g.cs","v1.0","Get-MgChatPinnedMessage","GET","/chats/{param}/pinnedMessages/{param}","matched","Get-MgChatPinnedMessage" +"Cmdlets","GetMgChatPinnedMessage_List.g.cs","v1.0","Get-MgChatPinnedMessage","GET","/chats/{param}/pinnedMessages","matched","Get-MgChatPinnedMessage" +"Cmdlets","GetMgChatPinnedMessage.g.cs","v1.0","Get-MgChatPinnedMessage","","","dispatcher","" +"Cmdlets","GetMgChatPinnedMessageCount.g.cs","v1.0","Get-MgChatPinnedMessageCount","GET","/chats/{param}/pinnedMessages/$count","matched","Get-MgChatPinnedMessageCount" +"Cmdlets","GetMgChatTab_Get.g.cs","v1.0","Get-MgChatTab","GET","/chats/{param}/tabs/{param}","matched","Get-MgChatTab" +"Cmdlets","GetMgChatTab_List.g.cs","v1.0","Get-MgChatTab","GET","/chats/{param}/tabs","matched","Get-MgChatTab" +"Cmdlets","GetMgChatTab.g.cs","v1.0","Get-MgChatTab","","","dispatcher","" +"Cmdlets","GetMgChatTabCount.g.cs","v1.0","Get-MgChatTabCount","GET","/chats/{param}/tabs/$count","matched","Get-MgChatTabCount" +"Cmdlets","GetMgChatTabTeamApp.g.cs","v1.0","Get-MgChatTabTeamApp","GET","/chats/{param}/tabs/{param}/teamsApp","matched","Get-MgChatTabTeamApp" +"Cmdlets","GetMgChatTargetedMessage_Get.g.cs","v1.0","Get-MgChatTargetedMessage","GET","/chats/{param}/targetedMessages/{param}","matched","Get-MgChatTargetedMessage" +"Cmdlets","GetMgChatTargetedMessage_List.g.cs","v1.0","Get-MgChatTargetedMessage","GET","/chats/{param}/targetedMessages","matched","Get-MgChatTargetedMessage" +"Cmdlets","GetMgChatTargetedMessage.g.cs","v1.0","Get-MgChatTargetedMessage","","","dispatcher","" +"Cmdlets","GetMgChatTargetedMessageCount.g.cs","v1.0","Get-MgChatTargetedMessageCount","GET","/chats/{param}/targetedMessages/$count","matched","Get-MgChatTargetedMessageCount" +"Cmdlets","GetMgChatTargetedMessageHostedContent_Get.g.cs","v1.0","Get-MgChatTargetedMessageHostedContent","GET","/chats/{param}/targetedMessages/{param}/hostedContents/{param}","matched","Get-MgChatTargetedMessageHostedContent" +"Cmdlets","GetMgChatTargetedMessageHostedContent_List.g.cs","v1.0","Get-MgChatTargetedMessageHostedContent","GET","/chats/{param}/targetedMessages/{param}/hostedContents","matched","Get-MgChatTargetedMessageHostedContent" +"Cmdlets","GetMgChatTargetedMessageHostedContent.g.cs","v1.0","Get-MgChatTargetedMessageHostedContent","","","dispatcher","" +"Cmdlets","GetMgChatTargetedMessageHostedContentContent.g.cs","v1.0","Get-MgChatTargetedMessageHostedContentContent","GET","/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgChatTargetedMessageHostedContentCount.g.cs","v1.0","Get-MgChatTargetedMessageHostedContentCount","GET","/chats/{param}/targetedMessages/{param}/hostedContents/$count","matched","Get-MgChatTargetedMessageHostedContentCount" +"Cmdlets","GetMgChatTargetedMessageReply_Get.g.cs","v1.0","Get-MgChatTargetedMessageReply","GET","/chats/{param}/targetedMessages/{param}/replies/{param}","matched","Get-MgChatTargetedMessageReply" +"Cmdlets","GetMgChatTargetedMessageReply_List.g.cs","v1.0","Get-MgChatTargetedMessageReply","GET","/chats/{param}/targetedMessages/{param}/replies","matched","Get-MgChatTargetedMessageReply" +"Cmdlets","GetMgChatTargetedMessageReply.g.cs","v1.0","Get-MgChatTargetedMessageReply","","","dispatcher","" +"Cmdlets","GetMgChatTargetedMessageReplyCount.g.cs","v1.0","Get-MgChatTargetedMessageReplyCount","GET","/chats/{param}/targetedMessages/{param}/replies/$count","matched","Get-MgChatTargetedMessageReplyCount" +"Cmdlets","GetMgChatTargetedMessageReplyDelta.g.cs","v1.0","Get-MgChatTargetedMessageReplyDelta","GET","/chats/{param}/targetedMessages/{param}/replies/delta","matched","Get-MgChatTargetedMessageReplyDelta" +"Cmdlets","GetMgChatTargetedMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgChatTargetedMessageReplyHostedContent","GET","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgChatTargetedMessageReplyHostedContent" +"Cmdlets","GetMgChatTargetedMessageReplyHostedContent_List.g.cs","v1.0","Get-MgChatTargetedMessageReplyHostedContent","GET","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents","matched","Get-MgChatTargetedMessageReplyHostedContent" +"Cmdlets","GetMgChatTargetedMessageReplyHostedContent.g.cs","v1.0","Get-MgChatTargetedMessageReplyHostedContent","","","dispatcher","" +"Cmdlets","GetMgChatTargetedMessageReplyHostedContentContent.g.cs","v1.0","Get-MgChatTargetedMessageReplyHostedContentContent","GET","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgChatTargetedMessageReplyHostedContentCount.g.cs","v1.0","Get-MgChatTargetedMessageReplyHostedContentCount","GET","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgChatTargetedMessageReplyHostedContentCount" +"Cmdlets","GetMgGroupTeam.g.cs","v1.0","Get-MgGroupTeam","GET","/groups/{param}/team","matched","Get-MgGroupTeam" +"Cmdlets","GetMgGroupTeamAllChannel_Get.g.cs","v1.0","Get-MgGroupTeamAllChannel","GET","/groups/{param}/team/allChannels/{param}","mismatch","Get-MgAllGroupTeamChannel" +"Cmdlets","GetMgGroupTeamAllChannel_List.g.cs","v1.0","Get-MgGroupTeamAllChannel","GET","/groups/{param}/team/allChannels","mismatch","Get-MgAllGroupTeamChannel" +"Cmdlets","GetMgGroupTeamAllChannel.g.cs","v1.0","Get-MgGroupTeamAllChannel","","","dispatcher","" +"Cmdlets","GetMgGroupTeamAllChannelCount.g.cs","v1.0","Get-MgGroupTeamAllChannelCount","GET","/groups/{param}/team/allChannels/$count","mismatch","Get-MgAllGroupTeamChannelCount" +"Cmdlets","GetMgGroupTeamChannel_Get.g.cs","v1.0","Get-MgGroupTeamChannel","GET","/groups/{param}/team/channels/{param}","matched","Get-MgGroupTeamChannel" +"Cmdlets","GetMgGroupTeamChannel_List.g.cs","v1.0","Get-MgGroupTeamChannel","GET","/groups/{param}/team/channels","matched","Get-MgGroupTeamChannel" +"Cmdlets","GetMgGroupTeamChannel.g.cs","v1.0","Get-MgGroupTeamChannel","","","dispatcher","" +"Cmdlets","GetMgGroupTeamChannelAllMember_Get.g.cs","v1.0","Get-MgGroupTeamChannelAllMember","GET","/groups/{param}/team/channels/{param}/allMembers/{param}","mismatch","Get-MgGroupTeamChannelMember" +"Cmdlets","GetMgGroupTeamChannelAllMember_List.g.cs","v1.0","Get-MgGroupTeamChannelAllMember","GET","/groups/{param}/team/channels/{param}/allMembers","mismatch","Get-MgGroupTeamChannelMember" +"Cmdlets","GetMgGroupTeamChannelAllMember.g.cs","v1.0","Get-MgGroupTeamChannelAllMember","","","dispatcher","" +"Cmdlets","GetMgGroupTeamChannelAllMemberCount.g.cs","v1.0","Get-MgGroupTeamChannelAllMemberCount","GET","/groups/{param}/team/channels/{param}/allMembers/$count","matched","Get-MgGroupTeamChannelAllMemberCount" +"Cmdlets","GetMgGroupTeamChannelCount.g.cs","v1.0","Get-MgGroupTeamChannelCount","GET","/groups/{param}/team/channels/$count","matched","Get-MgGroupTeamChannelCount" +"Cmdlets","GetMgGroupTeamChannelEnabledApp_Get.g.cs","v1.0","Get-MgGroupTeamChannelEnabledApp","GET","/groups/{param}/team/channels/{param}/enabledApps/{param}","matched","Get-MgGroupTeamChannelEnabledApp" +"Cmdlets","GetMgGroupTeamChannelEnabledApp_List.g.cs","v1.0","Get-MgGroupTeamChannelEnabledApp","GET","/groups/{param}/team/channels/{param}/enabledApps","matched","Get-MgGroupTeamChannelEnabledApp" +"Cmdlets","GetMgGroupTeamChannelEnabledApp.g.cs","v1.0","Get-MgGroupTeamChannelEnabledApp","","","dispatcher","" +"Cmdlets","GetMgGroupTeamChannelEnabledAppCount.g.cs","v1.0","Get-MgGroupTeamChannelEnabledAppCount","GET","/groups/{param}/team/channels/{param}/enabledApps/$count","matched","Get-MgGroupTeamChannelEnabledAppCount" +"Cmdlets","GetMgGroupTeamChannelFileFolder.g.cs","v1.0","Get-MgGroupTeamChannelFileFolder","GET","/groups/{param}/team/channels/{param}/filesFolder","matched","Get-MgGroupTeamChannelFileFolder" +"Cmdlets","GetMgGroupTeamChannelFileFolderContent.g.cs","v1.0","Get-MgGroupTeamChannelFileFolderContent","GET","/groups/{param}/team/channels/{param}/filesFolder/content","matched","Get-MgGroupTeamChannelFileFolderContent" +"Cmdlets","GetMgGroupTeamChannelGetAllMessages.g.cs","v1.0","Get-MgGroupTeamChannelGetAllMessages","GET","/groups/{param}/team/channels/getAllMessages","no-oracle","" +"Cmdlets","GetMgGroupTeamChannelGetAllRetainedMessages.g.cs","v1.0","Get-MgGroupTeamChannelGetAllRetainedMessages","GET","/groups/{param}/team/channels/getAllRetainedMessages","mismatch","Get-MgGroupTeamChannelRetainedMessage" +"Cmdlets","GetMgGroupTeamChannelMember_Get.g.cs","v1.0","Get-MgGroupTeamChannelMember","GET","/groups/{param}/team/channels/{param}/members/{param}","no-oracle","" +"Cmdlets","GetMgGroupTeamChannelMember_List.g.cs","v1.0","Get-MgGroupTeamChannelMember","GET","/groups/{param}/team/channels/{param}/members","no-oracle","" +"Cmdlets","GetMgGroupTeamChannelMember.g.cs","v1.0","Get-MgGroupTeamChannelMember","","","dispatcher","" +"Cmdlets","GetMgGroupTeamChannelMemberCount.g.cs","v1.0","Get-MgGroupTeamChannelMemberCount","GET","/groups/{param}/team/channels/{param}/members/$count","matched","Get-MgGroupTeamChannelMemberCount" +"Cmdlets","GetMgGroupTeamChannelMessage_Get.g.cs","v1.0","Get-MgGroupTeamChannelMessage","GET","/groups/{param}/team/channels/{param}/messages/{param}","matched","Get-MgGroupTeamChannelMessage" +"Cmdlets","GetMgGroupTeamChannelMessage_List.g.cs","v1.0","Get-MgGroupTeamChannelMessage","GET","/groups/{param}/team/channels/{param}/messages","matched","Get-MgGroupTeamChannelMessage" +"Cmdlets","GetMgGroupTeamChannelMessage.g.cs","v1.0","Get-MgGroupTeamChannelMessage","","","dispatcher","" +"Cmdlets","GetMgGroupTeamChannelMessageCount.g.cs","v1.0","Get-MgGroupTeamChannelMessageCount","GET","/groups/{param}/team/channels/{param}/messages/$count","matched","Get-MgGroupTeamChannelMessageCount" +"Cmdlets","GetMgGroupTeamChannelMessageDelta.g.cs","v1.0","Get-MgGroupTeamChannelMessageDelta","GET","/groups/{param}/team/channels/{param}/messages/delta","matched","Get-MgGroupTeamChannelMessageDelta" +"Cmdlets","GetMgGroupTeamChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgGroupTeamChannelMessageHostedContent","GET","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}","matched","Get-MgGroupTeamChannelMessageHostedContent" +"Cmdlets","GetMgGroupTeamChannelMessageHostedContent_List.g.cs","v1.0","Get-MgGroupTeamChannelMessageHostedContent","GET","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents","matched","Get-MgGroupTeamChannelMessageHostedContent" +"Cmdlets","GetMgGroupTeamChannelMessageHostedContent.g.cs","v1.0","Get-MgGroupTeamChannelMessageHostedContent","","","dispatcher","" +"Cmdlets","GetMgGroupTeamChannelMessageHostedContentContent.g.cs","v1.0","Get-MgGroupTeamChannelMessageHostedContentContent","GET","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgGroupTeamChannelMessageHostedContentCount.g.cs","v1.0","Get-MgGroupTeamChannelMessageHostedContentCount","GET","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/$count","matched","Get-MgGroupTeamChannelMessageHostedContentCount" +"Cmdlets","GetMgGroupTeamChannelMessageReply_Get.g.cs","v1.0","Get-MgGroupTeamChannelMessageReply","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}","matched","Get-MgGroupTeamChannelMessageReply" +"Cmdlets","GetMgGroupTeamChannelMessageReply_List.g.cs","v1.0","Get-MgGroupTeamChannelMessageReply","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies","matched","Get-MgGroupTeamChannelMessageReply" +"Cmdlets","GetMgGroupTeamChannelMessageReply.g.cs","v1.0","Get-MgGroupTeamChannelMessageReply","","","dispatcher","" +"Cmdlets","GetMgGroupTeamChannelMessageReplyCount.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyCount","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/$count","matched","Get-MgGroupTeamChannelMessageReplyCount" +"Cmdlets","GetMgGroupTeamChannelMessageReplyDelta.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyDelta","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/delta","matched","Get-MgGroupTeamChannelMessageReplyDelta" +"Cmdlets","GetMgGroupTeamChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyHostedContent","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgGroupTeamChannelMessageReplyHostedContent" +"Cmdlets","GetMgGroupTeamChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyHostedContent","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents","matched","Get-MgGroupTeamChannelMessageReplyHostedContent" +"Cmdlets","GetMgGroupTeamChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyHostedContent","","","dispatcher","" +"Cmdlets","GetMgGroupTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyHostedContentContent","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgGroupTeamChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyHostedContentCount","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgGroupTeamChannelMessageReplyHostedContentCount" +"Cmdlets","GetMgGroupTeamChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeam","GET","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}","matched","Get-MgGroupTeamChannelSharedWithTeam" +"Cmdlets","GetMgGroupTeamChannelSharedWithTeam_List.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeam","GET","/groups/{param}/team/channels/{param}/sharedWithTeams","matched","Get-MgGroupTeamChannelSharedWithTeam" +"Cmdlets","GetMgGroupTeamChannelSharedWithTeam.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeam","","","dispatcher","" +"Cmdlets","GetMgGroupTeamChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeamAllowedMember","GET","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param}","matched","Get-MgGroupTeamChannelSharedWithTeamAllowedMember" +"Cmdlets","GetMgGroupTeamChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeamAllowedMember","GET","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}/allowedMembers","matched","Get-MgGroupTeamChannelSharedWithTeamAllowedMember" +"Cmdlets","GetMgGroupTeamChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Cmdlets","GetMgGroupTeamChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeamAllowedMemberCount","GET","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count","matched","Get-MgGroupTeamChannelSharedWithTeamAllowedMemberCount" +"Cmdlets","GetMgGroupTeamChannelSharedWithTeamCount.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeamCount","GET","/groups/{param}/team/channels/{param}/sharedWithTeams/$count","matched","Get-MgGroupTeamChannelSharedWithTeamCount" +"Cmdlets","GetMgGroupTeamChannelTab_Get.g.cs","v1.0","Get-MgGroupTeamChannelTab","GET","/groups/{param}/team/channels/{param}/tabs/{param}","matched","Get-MgGroupTeamChannelTab" +"Cmdlets","GetMgGroupTeamChannelTab_List.g.cs","v1.0","Get-MgGroupTeamChannelTab","GET","/groups/{param}/team/channels/{param}/tabs","matched","Get-MgGroupTeamChannelTab" +"Cmdlets","GetMgGroupTeamChannelTab.g.cs","v1.0","Get-MgGroupTeamChannelTab","","","dispatcher","" +"Cmdlets","GetMgGroupTeamChannelTabCount.g.cs","v1.0","Get-MgGroupTeamChannelTabCount","GET","/groups/{param}/team/channels/{param}/tabs/$count","matched","Get-MgGroupTeamChannelTabCount" +"Cmdlets","GetMgGroupTeamChannelTabTeamApp.g.cs","v1.0","Get-MgGroupTeamChannelTabTeamApp","GET","/groups/{param}/team/channels/{param}/tabs/{param}/teamsApp","matched","Get-MgGroupTeamChannelTabTeamApp" +"Cmdlets","GetMgGroupTeamGroup.g.cs","v1.0","Get-MgGroupTeamGroup","GET","/groups/{param}/team/group","matched","Get-MgGroupTeamGroup" +"Cmdlets","GetMgGroupTeamGroupServiceProvisioningError.g.cs","v1.0","Get-MgGroupTeamGroupServiceProvisioningError","GET","/groups/{param}/team/group/serviceProvisioningErrors","matched","Get-MgGroupTeamGroupServiceProvisioningError" +"Cmdlets","GetMgGroupTeamGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupTeamGroupServiceProvisioningErrorCount","GET","/groups/{param}/team/group/serviceProvisioningErrors/$count","matched","Get-MgGroupTeamGroupServiceProvisioningErrorCount" +"Cmdlets","GetMgGroupTeamIncomingChannel_Get.g.cs","v1.0","Get-MgGroupTeamIncomingChannel","GET","/groups/{param}/team/incomingChannels/{param}","matched","Get-MgGroupTeamIncomingChannel" +"Cmdlets","GetMgGroupTeamIncomingChannel_List.g.cs","v1.0","Get-MgGroupTeamIncomingChannel","GET","/groups/{param}/team/incomingChannels","matched","Get-MgGroupTeamIncomingChannel" +"Cmdlets","GetMgGroupTeamIncomingChannel.g.cs","v1.0","Get-MgGroupTeamIncomingChannel","","","dispatcher","" +"Cmdlets","GetMgGroupTeamIncomingChannelCount.g.cs","v1.0","Get-MgGroupTeamIncomingChannelCount","GET","/groups/{param}/team/incomingChannels/$count","matched","Get-MgGroupTeamIncomingChannelCount" +"Cmdlets","GetMgGroupTeamInstalledApp_Get.g.cs","v1.0","Get-MgGroupTeamInstalledApp","GET","/groups/{param}/team/installedApps/{param}","matched","Get-MgGroupTeamInstalledApp" +"Cmdlets","GetMgGroupTeamInstalledApp_List.g.cs","v1.0","Get-MgGroupTeamInstalledApp","GET","/groups/{param}/team/installedApps","matched","Get-MgGroupTeamInstalledApp" +"Cmdlets","GetMgGroupTeamInstalledApp.g.cs","v1.0","Get-MgGroupTeamInstalledApp","","","dispatcher","" +"Cmdlets","GetMgGroupTeamInstalledAppCount.g.cs","v1.0","Get-MgGroupTeamInstalledAppCount","GET","/groups/{param}/team/installedApps/$count","matched","Get-MgGroupTeamInstalledAppCount" +"Cmdlets","GetMgGroupTeamInstalledAppTeamApp.g.cs","v1.0","Get-MgGroupTeamInstalledAppTeamApp","GET","/groups/{param}/team/installedApps/{param}/teamsApp","matched","Get-MgGroupTeamInstalledAppTeamApp" +"Cmdlets","GetMgGroupTeamInstalledAppTeamAppDefinition.g.cs","v1.0","Get-MgGroupTeamInstalledAppTeamAppDefinition","GET","/groups/{param}/team/installedApps/{param}/teamsAppDefinition","matched","Get-MgGroupTeamInstalledAppTeamAppDefinition" +"Cmdlets","GetMgGroupTeamMember_Get.g.cs","v1.0","Get-MgGroupTeamMember","GET","/groups/{param}/team/members/{param}","matched","Get-MgGroupTeamMember" +"Cmdlets","GetMgGroupTeamMember_List.g.cs","v1.0","Get-MgGroupTeamMember","GET","/groups/{param}/team/members","matched","Get-MgGroupTeamMember" +"Cmdlets","GetMgGroupTeamMember.g.cs","v1.0","Get-MgGroupTeamMember","","","dispatcher","" +"Cmdlets","GetMgGroupTeamMemberCount.g.cs","v1.0","Get-MgGroupTeamMemberCount","GET","/groups/{param}/team/members/$count","matched","Get-MgGroupTeamMemberCount" +"Cmdlets","GetMgGroupTeamOperation_Get.g.cs","v1.0","Get-MgGroupTeamOperation","GET","/groups/{param}/team/operations/{param}","matched","Get-MgGroupTeamOperation" +"Cmdlets","GetMgGroupTeamOperation_List.g.cs","v1.0","Get-MgGroupTeamOperation","GET","/groups/{param}/team/operations","matched","Get-MgGroupTeamOperation" +"Cmdlets","GetMgGroupTeamOperation.g.cs","v1.0","Get-MgGroupTeamOperation","","","dispatcher","" +"Cmdlets","GetMgGroupTeamOperationCount.g.cs","v1.0","Get-MgGroupTeamOperationCount","GET","/groups/{param}/team/operations/$count","matched","Get-MgGroupTeamOperationCount" +"Cmdlets","GetMgGroupTeamPermissionGrant_Get.g.cs","v1.0","Get-MgGroupTeamPermissionGrant","GET","/groups/{param}/team/permissionGrants/{param}","matched","Get-MgGroupTeamPermissionGrant" +"Cmdlets","GetMgGroupTeamPermissionGrant_List.g.cs","v1.0","Get-MgGroupTeamPermissionGrant","GET","/groups/{param}/team/permissionGrants","matched","Get-MgGroupTeamPermissionGrant" +"Cmdlets","GetMgGroupTeamPermissionGrant.g.cs","v1.0","Get-MgGroupTeamPermissionGrant","","","dispatcher","" +"Cmdlets","GetMgGroupTeamPermissionGrantCount.g.cs","v1.0","Get-MgGroupTeamPermissionGrantCount","GET","/groups/{param}/team/permissionGrants/$count","matched","Get-MgGroupTeamPermissionGrantCount" +"Cmdlets","GetMgGroupTeamPhoto.g.cs","v1.0","Get-MgGroupTeamPhoto","GET","/groups/{param}/team/photo","matched","Get-MgGroupTeamPhoto" +"Cmdlets","GetMgGroupTeamPhotoContent.g.cs","v1.0","Get-MgGroupTeamPhotoContent","GET","/groups/{param}/team/photo/$value","matched","Get-MgGroupTeamPhotoContent" +"Cmdlets","GetMgGroupTeamPrimaryChannel.g.cs","v1.0","Get-MgGroupTeamPrimaryChannel","GET","/groups/{param}/team/primaryChannel","matched","Get-MgGroupTeamPrimaryChannel" +"Cmdlets","GetMgGroupTeamPrimaryChannelAllMember_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelAllMember","GET","/groups/{param}/team/primaryChannel/allMembers/{param}","mismatch","Get-MgGroupTeamPrimaryChannelMember" +"Cmdlets","GetMgGroupTeamPrimaryChannelAllMember_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelAllMember","GET","/groups/{param}/team/primaryChannel/allMembers","mismatch","Get-MgGroupTeamPrimaryChannelMember" +"Cmdlets","GetMgGroupTeamPrimaryChannelAllMember.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelAllMember","","","dispatcher","" +"Cmdlets","GetMgGroupTeamPrimaryChannelAllMemberCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelAllMemberCount","GET","/groups/{param}/team/primaryChannel/allMembers/$count","matched","Get-MgGroupTeamPrimaryChannelAllMemberCount" +"Cmdlets","GetMgGroupTeamPrimaryChannelEnabledApp_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelEnabledApp","GET","/groups/{param}/team/primaryChannel/enabledApps/{param}","matched","Get-MgGroupTeamPrimaryChannelEnabledApp" +"Cmdlets","GetMgGroupTeamPrimaryChannelEnabledApp_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelEnabledApp","GET","/groups/{param}/team/primaryChannel/enabledApps","matched","Get-MgGroupTeamPrimaryChannelEnabledApp" +"Cmdlets","GetMgGroupTeamPrimaryChannelEnabledApp.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelEnabledApp","","","dispatcher","" +"Cmdlets","GetMgGroupTeamPrimaryChannelEnabledAppCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelEnabledAppCount","GET","/groups/{param}/team/primaryChannel/enabledApps/$count","matched","Get-MgGroupTeamPrimaryChannelEnabledAppCount" +"Cmdlets","GetMgGroupTeamPrimaryChannelFileFolder.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelFileFolder","GET","/groups/{param}/team/primaryChannel/filesFolder","matched","Get-MgGroupTeamPrimaryChannelFileFolder" +"Cmdlets","GetMgGroupTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelFileFolderContent","GET","/groups/{param}/team/primaryChannel/filesFolder/content","matched","Get-MgGroupTeamPrimaryChannelFileFolderContent" +"Cmdlets","GetMgGroupTeamPrimaryChannelMember_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMember","GET","/groups/{param}/team/primaryChannel/members/{param}","no-oracle","" +"Cmdlets","GetMgGroupTeamPrimaryChannelMember_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMember","GET","/groups/{param}/team/primaryChannel/members","no-oracle","" +"Cmdlets","GetMgGroupTeamPrimaryChannelMember.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMember","","","dispatcher","" +"Cmdlets","GetMgGroupTeamPrimaryChannelMemberCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMemberCount","GET","/groups/{param}/team/primaryChannel/members/$count","matched","Get-MgGroupTeamPrimaryChannelMemberCount" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessage_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessage","GET","/groups/{param}/team/primaryChannel/messages/{param}","matched","Get-MgGroupTeamPrimaryChannelMessage" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessage_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessage","GET","/groups/{param}/team/primaryChannel/messages","matched","Get-MgGroupTeamPrimaryChannelMessage" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessage.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessage","","","dispatcher","" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageCount","GET","/groups/{param}/team/primaryChannel/messages/$count","matched","Get-MgGroupTeamPrimaryChannelMessageCount" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageDelta.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageDelta","GET","/groups/{param}/team/primaryChannel/messages/delta","matched","Get-MgGroupTeamPrimaryChannelMessageDelta" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageHostedContent","GET","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}","matched","Get-MgGroupTeamPrimaryChannelMessageHostedContent" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageHostedContent_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageHostedContent","GET","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents","matched","Get-MgGroupTeamPrimaryChannelMessageHostedContent" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageHostedContent","","","dispatcher","" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageHostedContentContent.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageHostedContentContent","GET","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageHostedContentCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageHostedContentCount","GET","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/$count","matched","Get-MgGroupTeamPrimaryChannelMessageHostedContentCount" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageReply_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReply","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}","matched","Get-MgGroupTeamPrimaryChannelMessageReply" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageReply_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReply","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies","matched","Get-MgGroupTeamPrimaryChannelMessageReply" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageReply.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReply","","","dispatcher","" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageReplyCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyCount","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/$count","matched","Get-MgGroupTeamPrimaryChannelMessageReplyCount" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageReplyDelta.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyDelta","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/delta","matched","Get-MgGroupTeamPrimaryChannelMessageReplyDelta" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents","matched","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent","","","dispatcher","" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentContent","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgGroupTeamPrimaryChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentCount","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentCount" +"Cmdlets","GetMgGroupTeamPrimaryChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeam","GET","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}","matched","Get-MgGroupTeamPrimaryChannelSharedWithTeam" +"Cmdlets","GetMgGroupTeamPrimaryChannelSharedWithTeam_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeam","GET","/groups/{param}/team/primaryChannel/sharedWithTeams","matched","Get-MgGroupTeamPrimaryChannelSharedWithTeam" +"Cmdlets","GetMgGroupTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeam","","","dispatcher","" +"Cmdlets","GetMgGroupTeamPrimaryChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember","GET","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}/allowedMembers/{param}","matched","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember" +"Cmdlets","GetMgGroupTeamPrimaryChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember","GET","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}/allowedMembers","matched","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember" +"Cmdlets","GetMgGroupTeamPrimaryChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Cmdlets","GetMgGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount","GET","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}/allowedMembers/$count","matched","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount" +"Cmdlets","GetMgGroupTeamPrimaryChannelSharedWithTeamCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeamCount","GET","/groups/{param}/team/primaryChannel/sharedWithTeams/$count","matched","Get-MgGroupTeamPrimaryChannelSharedWithTeamCount" +"Cmdlets","GetMgGroupTeamPrimaryChannelTab_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelTab","GET","/groups/{param}/team/primaryChannel/tabs/{param}","matched","Get-MgGroupTeamPrimaryChannelTab" +"Cmdlets","GetMgGroupTeamPrimaryChannelTab_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelTab","GET","/groups/{param}/team/primaryChannel/tabs","matched","Get-MgGroupTeamPrimaryChannelTab" +"Cmdlets","GetMgGroupTeamPrimaryChannelTab.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelTab","","","dispatcher","" +"Cmdlets","GetMgGroupTeamPrimaryChannelTabCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelTabCount","GET","/groups/{param}/team/primaryChannel/tabs/$count","matched","Get-MgGroupTeamPrimaryChannelTabCount" +"Cmdlets","GetMgGroupTeamPrimaryChannelTabTeamApp.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelTabTeamApp","GET","/groups/{param}/team/primaryChannel/tabs/{param}/teamsApp","matched","Get-MgGroupTeamPrimaryChannelTabTeamApp" +"Cmdlets","GetMgGroupTeamSchedule.g.cs","v1.0","Get-MgGroupTeamSchedule","GET","/groups/{param}/team/schedule","matched","Get-MgGroupTeamSchedule" +"Cmdlets","GetMgGroupTeamScheduleDayNote_Get.g.cs","v1.0","Get-MgGroupTeamScheduleDayNote","GET","/groups/{param}/team/schedule/dayNotes/{param}","matched","Get-MgGroupTeamScheduleDayNote" +"Cmdlets","GetMgGroupTeamScheduleDayNote_List.g.cs","v1.0","Get-MgGroupTeamScheduleDayNote","GET","/groups/{param}/team/schedule/dayNotes","matched","Get-MgGroupTeamScheduleDayNote" +"Cmdlets","GetMgGroupTeamScheduleDayNote.g.cs","v1.0","Get-MgGroupTeamScheduleDayNote","","","dispatcher","" +"Cmdlets","GetMgGroupTeamScheduleDayNoteCount.g.cs","v1.0","Get-MgGroupTeamScheduleDayNoteCount","GET","/groups/{param}/team/schedule/dayNotes/$count","matched","Get-MgGroupTeamScheduleDayNoteCount" +"Cmdlets","GetMgGroupTeamScheduleOfferShiftRequest_Get.g.cs","v1.0","Get-MgGroupTeamScheduleOfferShiftRequest","GET","/groups/{param}/team/schedule/offerShiftRequests/{param}","matched","Get-MgGroupTeamScheduleOfferShiftRequest" +"Cmdlets","GetMgGroupTeamScheduleOfferShiftRequest_List.g.cs","v1.0","Get-MgGroupTeamScheduleOfferShiftRequest","GET","/groups/{param}/team/schedule/offerShiftRequests","matched","Get-MgGroupTeamScheduleOfferShiftRequest" +"Cmdlets","GetMgGroupTeamScheduleOfferShiftRequest.g.cs","v1.0","Get-MgGroupTeamScheduleOfferShiftRequest","","","dispatcher","" +"Cmdlets","GetMgGroupTeamScheduleOfferShiftRequestCount.g.cs","v1.0","Get-MgGroupTeamScheduleOfferShiftRequestCount","GET","/groups/{param}/team/schedule/offerShiftRequests/$count","matched","Get-MgGroupTeamScheduleOfferShiftRequestCount" +"Cmdlets","GetMgGroupTeamScheduleOpenShift_Get.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShift","GET","/groups/{param}/team/schedule/openShifts/{param}","matched","Get-MgGroupTeamScheduleOpenShift" +"Cmdlets","GetMgGroupTeamScheduleOpenShift_List.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShift","GET","/groups/{param}/team/schedule/openShifts","matched","Get-MgGroupTeamScheduleOpenShift" +"Cmdlets","GetMgGroupTeamScheduleOpenShift.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShift","","","dispatcher","" +"Cmdlets","GetMgGroupTeamScheduleOpenShiftChangeRequest_Get.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShiftChangeRequest","GET","/groups/{param}/team/schedule/openShiftChangeRequests/{param}","matched","Get-MgGroupTeamScheduleOpenShiftChangeRequest" +"Cmdlets","GetMgGroupTeamScheduleOpenShiftChangeRequest_List.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShiftChangeRequest","GET","/groups/{param}/team/schedule/openShiftChangeRequests","matched","Get-MgGroupTeamScheduleOpenShiftChangeRequest" +"Cmdlets","GetMgGroupTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShiftChangeRequest","","","dispatcher","" +"Cmdlets","GetMgGroupTeamScheduleOpenShiftChangeRequestCount.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShiftChangeRequestCount","GET","/groups/{param}/team/schedule/openShiftChangeRequests/$count","matched","Get-MgGroupTeamScheduleOpenShiftChangeRequestCount" +"Cmdlets","GetMgGroupTeamScheduleOpenShiftCount.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShiftCount","GET","/groups/{param}/team/schedule/openShifts/$count","matched","Get-MgGroupTeamScheduleOpenShiftCount" +"Cmdlets","GetMgGroupTeamScheduleSchedulingGroup_Get.g.cs","v1.0","Get-MgGroupTeamScheduleSchedulingGroup","GET","/groups/{param}/team/schedule/schedulingGroups/{param}","matched","Get-MgGroupTeamScheduleSchedulingGroup" +"Cmdlets","GetMgGroupTeamScheduleSchedulingGroup_List.g.cs","v1.0","Get-MgGroupTeamScheduleSchedulingGroup","GET","/groups/{param}/team/schedule/schedulingGroups","matched","Get-MgGroupTeamScheduleSchedulingGroup" +"Cmdlets","GetMgGroupTeamScheduleSchedulingGroup.g.cs","v1.0","Get-MgGroupTeamScheduleSchedulingGroup","","","dispatcher","" +"Cmdlets","GetMgGroupTeamScheduleSchedulingGroupCount.g.cs","v1.0","Get-MgGroupTeamScheduleSchedulingGroupCount","GET","/groups/{param}/team/schedule/schedulingGroups/$count","matched","Get-MgGroupTeamScheduleSchedulingGroupCount" +"Cmdlets","GetMgGroupTeamScheduleShift_Get.g.cs","v1.0","Get-MgGroupTeamScheduleShift","GET","/groups/{param}/team/schedule/shifts/{param}","matched","Get-MgGroupTeamScheduleShift" +"Cmdlets","GetMgGroupTeamScheduleShift_List.g.cs","v1.0","Get-MgGroupTeamScheduleShift","GET","/groups/{param}/team/schedule/shifts","matched","Get-MgGroupTeamScheduleShift" +"Cmdlets","GetMgGroupTeamScheduleShift.g.cs","v1.0","Get-MgGroupTeamScheduleShift","","","dispatcher","" +"Cmdlets","GetMgGroupTeamScheduleShiftCount.g.cs","v1.0","Get-MgGroupTeamScheduleShiftCount","GET","/groups/{param}/team/schedule/shifts/$count","matched","Get-MgGroupTeamScheduleShiftCount" +"Cmdlets","GetMgGroupTeamScheduleSwapShiftChangeRequest_Get.g.cs","v1.0","Get-MgGroupTeamScheduleSwapShiftChangeRequest","GET","/groups/{param}/team/schedule/swapShiftsChangeRequests/{param}","matched","Get-MgGroupTeamScheduleSwapShiftChangeRequest" +"Cmdlets","GetMgGroupTeamScheduleSwapShiftChangeRequest_List.g.cs","v1.0","Get-MgGroupTeamScheduleSwapShiftChangeRequest","GET","/groups/{param}/team/schedule/swapShiftsChangeRequests","matched","Get-MgGroupTeamScheduleSwapShiftChangeRequest" +"Cmdlets","GetMgGroupTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Get-MgGroupTeamScheduleSwapShiftChangeRequest","","","dispatcher","" +"Cmdlets","GetMgGroupTeamScheduleSwapShiftChangeRequestCount.g.cs","v1.0","Get-MgGroupTeamScheduleSwapShiftChangeRequestCount","GET","/groups/{param}/team/schedule/swapShiftsChangeRequests/$count","matched","Get-MgGroupTeamScheduleSwapShiftChangeRequestCount" +"Cmdlets","GetMgGroupTeamScheduleTimeCard_Get.g.cs","v1.0","Get-MgGroupTeamScheduleTimeCard","GET","/groups/{param}/team/schedule/timeCards/{param}","matched","Get-MgGroupTeamScheduleTimeCard" +"Cmdlets","GetMgGroupTeamScheduleTimeCard_List.g.cs","v1.0","Get-MgGroupTeamScheduleTimeCard","GET","/groups/{param}/team/schedule/timeCards","matched","Get-MgGroupTeamScheduleTimeCard" +"Cmdlets","GetMgGroupTeamScheduleTimeCard.g.cs","v1.0","Get-MgGroupTeamScheduleTimeCard","","","dispatcher","" +"Cmdlets","GetMgGroupTeamScheduleTimeCardCount.g.cs","v1.0","Get-MgGroupTeamScheduleTimeCardCount","GET","/groups/{param}/team/schedule/timeCards/$count","matched","Get-MgGroupTeamScheduleTimeCardCount" +"Cmdlets","GetMgGroupTeamScheduleTimeOff_Get.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOff","GET","/groups/{param}/team/schedule/timesOff/{param}","matched","Get-MgGroupTeamScheduleTimeOff" +"Cmdlets","GetMgGroupTeamScheduleTimeOff_List.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOff","GET","/groups/{param}/team/schedule/timesOff","matched","Get-MgGroupTeamScheduleTimeOff" +"Cmdlets","GetMgGroupTeamScheduleTimeOff.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOff","","","dispatcher","" +"Cmdlets","GetMgGroupTeamScheduleTimeOffCount.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffCount","GET","/groups/{param}/team/schedule/timesOff/$count","matched","Get-MgGroupTeamScheduleTimeOffCount" +"Cmdlets","GetMgGroupTeamScheduleTimeOffReason_Get.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffReason","GET","/groups/{param}/team/schedule/timeOffReasons/{param}","matched","Get-MgGroupTeamScheduleTimeOffReason" +"Cmdlets","GetMgGroupTeamScheduleTimeOffReason_List.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffReason","GET","/groups/{param}/team/schedule/timeOffReasons","matched","Get-MgGroupTeamScheduleTimeOffReason" +"Cmdlets","GetMgGroupTeamScheduleTimeOffReason.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffReason","","","dispatcher","" +"Cmdlets","GetMgGroupTeamScheduleTimeOffReasonCount.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffReasonCount","GET","/groups/{param}/team/schedule/timeOffReasons/$count","matched","Get-MgGroupTeamScheduleTimeOffReasonCount" +"Cmdlets","GetMgGroupTeamScheduleTimeOffRequest_Get.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffRequest","GET","/groups/{param}/team/schedule/timeOffRequests/{param}","matched","Get-MgGroupTeamScheduleTimeOffRequest" +"Cmdlets","GetMgGroupTeamScheduleTimeOffRequest_List.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffRequest","GET","/groups/{param}/team/schedule/timeOffRequests","matched","Get-MgGroupTeamScheduleTimeOffRequest" +"Cmdlets","GetMgGroupTeamScheduleTimeOffRequest.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffRequest","","","dispatcher","" +"Cmdlets","GetMgGroupTeamScheduleTimeOffRequestCount.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffRequestCount","GET","/groups/{param}/team/schedule/timeOffRequests/$count","matched","Get-MgGroupTeamScheduleTimeOffRequestCount" +"Cmdlets","GetMgGroupTeamTag_Get.g.cs","v1.0","Get-MgGroupTeamTag","GET","/groups/{param}/team/tags/{param}","matched","Get-MgGroupTeamTag" +"Cmdlets","GetMgGroupTeamTag_List.g.cs","v1.0","Get-MgGroupTeamTag","GET","/groups/{param}/team/tags","matched","Get-MgGroupTeamTag" +"Cmdlets","GetMgGroupTeamTag.g.cs","v1.0","Get-MgGroupTeamTag","","","dispatcher","" +"Cmdlets","GetMgGroupTeamTagCount.g.cs","v1.0","Get-MgGroupTeamTagCount","GET","/groups/{param}/team/tags/$count","matched","Get-MgGroupTeamTagCount" +"Cmdlets","GetMgGroupTeamTagMember_Get.g.cs","v1.0","Get-MgGroupTeamTagMember","GET","/groups/{param}/team/tags/{param}/members/{param}","matched","Get-MgGroupTeamTagMember" +"Cmdlets","GetMgGroupTeamTagMember_List.g.cs","v1.0","Get-MgGroupTeamTagMember","GET","/groups/{param}/team/tags/{param}/members","matched","Get-MgGroupTeamTagMember" +"Cmdlets","GetMgGroupTeamTagMember.g.cs","v1.0","Get-MgGroupTeamTagMember","","","dispatcher","" +"Cmdlets","GetMgGroupTeamTagMemberCount.g.cs","v1.0","Get-MgGroupTeamTagMemberCount","GET","/groups/{param}/team/tags/{param}/members/$count","matched","Get-MgGroupTeamTagMemberCount" +"Cmdlets","GetMgGroupTeamTemplate.g.cs","v1.0","Get-MgGroupTeamTemplate","GET","/groups/{param}/team/template","matched","Get-MgGroupTeamTemplate" +"Cmdlets","GetMgTeam_Get.g.cs","v1.0","Get-MgTeam","GET","/teams/{param}","matched","Get-MgTeam" +"Cmdlets","GetMgTeam_List.g.cs","v1.0","Get-MgTeam","GET","/teams","matched","Get-MgTeam" +"Cmdlets","GetMgTeam.g.cs","v1.0","Get-MgTeam","","","dispatcher","" +"Cmdlets","GetMgTeamAllChannel_Get.g.cs","v1.0","Get-MgTeamAllChannel","GET","/teams/{param}/allChannels/{param}","mismatch","Get-MgAllTeamChannel" +"Cmdlets","GetMgTeamAllChannel_List.g.cs","v1.0","Get-MgTeamAllChannel","GET","/teams/{param}/allChannels","mismatch","Get-MgAllTeamChannel" +"Cmdlets","GetMgTeamAllChannel.g.cs","v1.0","Get-MgTeamAllChannel","","","dispatcher","" +"Cmdlets","GetMgTeamAllChannelCount.g.cs","v1.0","Get-MgTeamAllChannelCount","GET","/teams/{param}/allChannels/$count","mismatch","Get-MgAllTeamChannelCount" +"Cmdlets","GetMgTeamChannel_Get.g.cs","v1.0","Get-MgTeamChannel","GET","/teams/{param}/channels/{param}","matched","Get-MgTeamChannel" +"Cmdlets","GetMgTeamChannel_List.g.cs","v1.0","Get-MgTeamChannel","GET","/teams/{param}/channels","matched","Get-MgTeamChannel" +"Cmdlets","GetMgTeamChannel.g.cs","v1.0","Get-MgTeamChannel","","","dispatcher","" +"Cmdlets","GetMgTeamChannelAllMember_Get.g.cs","v1.0","Get-MgTeamChannelAllMember","GET","/teams/{param}/channels/{param}/allMembers/{param}","mismatch","Get-MgTeamChannelMember" +"Cmdlets","GetMgTeamChannelAllMember_List.g.cs","v1.0","Get-MgTeamChannelAllMember","GET","/teams/{param}/channels/{param}/allMembers","mismatch","Get-MgTeamChannelMember" +"Cmdlets","GetMgTeamChannelAllMember.g.cs","v1.0","Get-MgTeamChannelAllMember","","","dispatcher","" +"Cmdlets","GetMgTeamChannelAllMemberCount.g.cs","v1.0","Get-MgTeamChannelAllMemberCount","GET","/teams/{param}/channels/{param}/allMembers/$count","matched","Get-MgTeamChannelAllMemberCount" +"Cmdlets","GetMgTeamChannelCount.g.cs","v1.0","Get-MgTeamChannelCount","GET","/teams/{param}/channels/$count","matched","Get-MgTeamChannelCount" +"Cmdlets","GetMgTeamChannelEnabledApp_Get.g.cs","v1.0","Get-MgTeamChannelEnabledApp","GET","/teams/{param}/channels/{param}/enabledApps/{param}","matched","Get-MgTeamChannelEnabledApp" +"Cmdlets","GetMgTeamChannelEnabledApp_List.g.cs","v1.0","Get-MgTeamChannelEnabledApp","GET","/teams/{param}/channels/{param}/enabledApps","matched","Get-MgTeamChannelEnabledApp" +"Cmdlets","GetMgTeamChannelEnabledApp.g.cs","v1.0","Get-MgTeamChannelEnabledApp","","","dispatcher","" +"Cmdlets","GetMgTeamChannelEnabledAppCount.g.cs","v1.0","Get-MgTeamChannelEnabledAppCount","GET","/teams/{param}/channels/{param}/enabledApps/$count","matched","Get-MgTeamChannelEnabledAppCount" +"Cmdlets","GetMgTeamChannelFileFolder.g.cs","v1.0","Get-MgTeamChannelFileFolder","GET","/teams/{param}/channels/{param}/filesFolder","matched","Get-MgTeamChannelFileFolder" +"Cmdlets","GetMgTeamChannelFileFolderContent.g.cs","v1.0","Get-MgTeamChannelFileFolderContent","GET","/teams/{param}/channels/{param}/filesFolder/content","matched","Get-MgTeamChannelFileFolderContent" +"Cmdlets","GetMgTeamChannelGetAllMessages.g.cs","v1.0","Get-MgTeamChannelGetAllMessages","GET","/teams/{param}/channels/getAllMessages","no-oracle","" +"Cmdlets","GetMgTeamChannelGetAllRetainedMessages.g.cs","v1.0","Get-MgTeamChannelGetAllRetainedMessages","GET","/teams/{param}/channels/getAllRetainedMessages","mismatch","Get-MgTeamChannelRetainedMessage" +"Cmdlets","GetMgTeamChannelMember_Get.g.cs","v1.0","Get-MgTeamChannelMember","GET","/teams/{param}/channels/{param}/members/{param}","no-oracle","" +"Cmdlets","GetMgTeamChannelMember_List.g.cs","v1.0","Get-MgTeamChannelMember","GET","/teams/{param}/channels/{param}/members","no-oracle","" +"Cmdlets","GetMgTeamChannelMember.g.cs","v1.0","Get-MgTeamChannelMember","","","dispatcher","" +"Cmdlets","GetMgTeamChannelMemberCount.g.cs","v1.0","Get-MgTeamChannelMemberCount","GET","/teams/{param}/channels/{param}/members/$count","matched","Get-MgTeamChannelMemberCount" +"Cmdlets","GetMgTeamChannelMessage_Get.g.cs","v1.0","Get-MgTeamChannelMessage","GET","/teams/{param}/channels/{param}/messages/{param}","matched","Get-MgTeamChannelMessage" +"Cmdlets","GetMgTeamChannelMessage_List.g.cs","v1.0","Get-MgTeamChannelMessage","GET","/teams/{param}/channels/{param}/messages","matched","Get-MgTeamChannelMessage" +"Cmdlets","GetMgTeamChannelMessage.g.cs","v1.0","Get-MgTeamChannelMessage","","","dispatcher","" +"Cmdlets","GetMgTeamChannelMessageCount.g.cs","v1.0","Get-MgTeamChannelMessageCount","GET","/teams/{param}/channels/{param}/messages/$count","matched","Get-MgTeamChannelMessageCount" +"Cmdlets","GetMgTeamChannelMessageDelta.g.cs","v1.0","Get-MgTeamChannelMessageDelta","GET","/teams/{param}/channels/{param}/messages/delta","matched","Get-MgTeamChannelMessageDelta" +"Cmdlets","GetMgTeamChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgTeamChannelMessageHostedContent","GET","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","matched","Get-MgTeamChannelMessageHostedContent" +"Cmdlets","GetMgTeamChannelMessageHostedContent_List.g.cs","v1.0","Get-MgTeamChannelMessageHostedContent","GET","/teams/{param}/channels/{param}/messages/{param}/hostedContents","matched","Get-MgTeamChannelMessageHostedContent" +"Cmdlets","GetMgTeamChannelMessageHostedContent.g.cs","v1.0","Get-MgTeamChannelMessageHostedContent","","","dispatcher","" +"Cmdlets","GetMgTeamChannelMessageHostedContentContent.g.cs","v1.0","Get-MgTeamChannelMessageHostedContentContent","GET","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgTeamChannelMessageHostedContentCount.g.cs","v1.0","Get-MgTeamChannelMessageHostedContentCount","GET","/teams/{param}/channels/{param}/messages/{param}/hostedContents/$count","matched","Get-MgTeamChannelMessageHostedContentCount" +"Cmdlets","GetMgTeamChannelMessageReply_Get.g.cs","v1.0","Get-MgTeamChannelMessageReply","GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}","matched","Get-MgTeamChannelMessageReply" +"Cmdlets","GetMgTeamChannelMessageReply_List.g.cs","v1.0","Get-MgTeamChannelMessageReply","GET","/teams/{param}/channels/{param}/messages/{param}/replies","matched","Get-MgTeamChannelMessageReply" +"Cmdlets","GetMgTeamChannelMessageReply.g.cs","v1.0","Get-MgTeamChannelMessageReply","","","dispatcher","" +"Cmdlets","GetMgTeamChannelMessageReplyCount.g.cs","v1.0","Get-MgTeamChannelMessageReplyCount","GET","/teams/{param}/channels/{param}/messages/{param}/replies/$count","matched","Get-MgTeamChannelMessageReplyCount" +"Cmdlets","GetMgTeamChannelMessageReplyDelta.g.cs","v1.0","Get-MgTeamChannelMessageReplyDelta","GET","/teams/{param}/channels/{param}/messages/{param}/replies/delta","matched","Get-MgTeamChannelMessageReplyDelta" +"Cmdlets","GetMgTeamChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgTeamChannelMessageReplyHostedContent","GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgTeamChannelMessageReplyHostedContent" +"Cmdlets","GetMgTeamChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgTeamChannelMessageReplyHostedContent","GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","matched","Get-MgTeamChannelMessageReplyHostedContent" +"Cmdlets","GetMgTeamChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgTeamChannelMessageReplyHostedContent","","","dispatcher","" +"Cmdlets","GetMgTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgTeamChannelMessageReplyHostedContentContent","GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgTeamChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgTeamChannelMessageReplyHostedContentCount","GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgTeamChannelMessageReplyHostedContentCount" +"Cmdlets","GetMgTeamChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgTeamChannelSharedWithTeam","GET","/teams/{param}/channels/{param}/sharedWithTeams/{param}","matched","Get-MgTeamChannelSharedWithTeam" +"Cmdlets","GetMgTeamChannelSharedWithTeam_List.g.cs","v1.0","Get-MgTeamChannelSharedWithTeam","GET","/teams/{param}/channels/{param}/sharedWithTeams","matched","Get-MgTeamChannelSharedWithTeam" +"Cmdlets","GetMgTeamChannelSharedWithTeam.g.cs","v1.0","Get-MgTeamChannelSharedWithTeam","","","dispatcher","" +"Cmdlets","GetMgTeamChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgTeamChannelSharedWithTeamAllowedMember","GET","/teams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param}","matched","Get-MgTeamChannelSharedWithTeamAllowedMember" +"Cmdlets","GetMgTeamChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgTeamChannelSharedWithTeamAllowedMember","GET","/teams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers","matched","Get-MgTeamChannelSharedWithTeamAllowedMember" +"Cmdlets","GetMgTeamChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgTeamChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Cmdlets","GetMgTeamChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgTeamChannelSharedWithTeamAllowedMemberCount","GET","/teams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count","matched","Get-MgTeamChannelSharedWithTeamAllowedMemberCount" +"Cmdlets","GetMgTeamChannelSharedWithTeamCount.g.cs","v1.0","Get-MgTeamChannelSharedWithTeamCount","GET","/teams/{param}/channels/{param}/sharedWithTeams/$count","matched","Get-MgTeamChannelSharedWithTeamCount" +"Cmdlets","GetMgTeamChannelTab_Get.g.cs","v1.0","Get-MgTeamChannelTab","GET","/teams/{param}/channels/{param}/tabs/{param}","matched","Get-MgTeamChannelTab" +"Cmdlets","GetMgTeamChannelTab_List.g.cs","v1.0","Get-MgTeamChannelTab","GET","/teams/{param}/channels/{param}/tabs","matched","Get-MgTeamChannelTab" +"Cmdlets","GetMgTeamChannelTab.g.cs","v1.0","Get-MgTeamChannelTab","","","dispatcher","" +"Cmdlets","GetMgTeamChannelTabCount.g.cs","v1.0","Get-MgTeamChannelTabCount","GET","/teams/{param}/channels/{param}/tabs/$count","matched","Get-MgTeamChannelTabCount" +"Cmdlets","GetMgTeamChannelTabTeamApp.g.cs","v1.0","Get-MgTeamChannelTabTeamApp","GET","/teams/{param}/channels/{param}/tabs/{param}/teamsApp","matched","Get-MgTeamChannelTabTeamApp" +"Cmdlets","GetMgTeamCount.g.cs","v1.0","Get-MgTeamCount","GET","/teams/$count","matched","Get-MgTeamCount" +"Cmdlets","GetMgTeamGetAllMessages.g.cs","v1.0","Get-MgTeamGetAllMessages","GET","/teams/getAllMessages","mismatch","Get-MgAllTeamMessage" +"Cmdlets","GetMgTeamGroup.g.cs","v1.0","Get-MgTeamGroup","GET","/teams/{param}/group","no-oracle","" +"Cmdlets","GetMgTeamGroupServiceProvisioningError.g.cs","v1.0","Get-MgTeamGroupServiceProvisioningError","GET","/teams/{param}/group/serviceProvisioningErrors","matched","Get-MgTeamGroupServiceProvisioningError" +"Cmdlets","GetMgTeamGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgTeamGroupServiceProvisioningErrorCount","GET","/teams/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgTeamGroupServiceProvisioningErrorCount" +"Cmdlets","GetMgTeamIncomingChannel_Get.g.cs","v1.0","Get-MgTeamIncomingChannel","GET","/teams/{param}/incomingChannels/{param}","matched","Get-MgTeamIncomingChannel" +"Cmdlets","GetMgTeamIncomingChannel_List.g.cs","v1.0","Get-MgTeamIncomingChannel","GET","/teams/{param}/incomingChannels","matched","Get-MgTeamIncomingChannel" +"Cmdlets","GetMgTeamIncomingChannel.g.cs","v1.0","Get-MgTeamIncomingChannel","","","dispatcher","" +"Cmdlets","GetMgTeamIncomingChannelCount.g.cs","v1.0","Get-MgTeamIncomingChannelCount","GET","/teams/{param}/incomingChannels/$count","matched","Get-MgTeamIncomingChannelCount" +"Cmdlets","GetMgTeamInstalledApp_Get.g.cs","v1.0","Get-MgTeamInstalledApp","GET","/teams/{param}/installedApps/{param}","matched","Get-MgTeamInstalledApp" +"Cmdlets","GetMgTeamInstalledApp_List.g.cs","v1.0","Get-MgTeamInstalledApp","GET","/teams/{param}/installedApps","matched","Get-MgTeamInstalledApp" +"Cmdlets","GetMgTeamInstalledApp.g.cs","v1.0","Get-MgTeamInstalledApp","","","dispatcher","" +"Cmdlets","GetMgTeamInstalledAppCount.g.cs","v1.0","Get-MgTeamInstalledAppCount","GET","/teams/{param}/installedApps/$count","matched","Get-MgTeamInstalledAppCount" +"Cmdlets","GetMgTeamInstalledAppTeamApp.g.cs","v1.0","Get-MgTeamInstalledAppTeamApp","GET","/teams/{param}/installedApps/{param}/teamsApp","matched","Get-MgTeamInstalledAppTeamApp" +"Cmdlets","GetMgTeamInstalledAppTeamAppDefinition.g.cs","v1.0","Get-MgTeamInstalledAppTeamAppDefinition","GET","/teams/{param}/installedApps/{param}/teamsAppDefinition","matched","Get-MgTeamInstalledAppTeamAppDefinition" +"Cmdlets","GetMgTeamMember_Get.g.cs","v1.0","Get-MgTeamMember","GET","/teams/{param}/members/{param}","matched","Get-MgTeamMember" +"Cmdlets","GetMgTeamMember_List.g.cs","v1.0","Get-MgTeamMember","GET","/teams/{param}/members","matched","Get-MgTeamMember" +"Cmdlets","GetMgTeamMember.g.cs","v1.0","Get-MgTeamMember","","","dispatcher","" +"Cmdlets","GetMgTeamMemberCount.g.cs","v1.0","Get-MgTeamMemberCount","GET","/teams/{param}/members/$count","matched","Get-MgTeamMemberCount" +"Cmdlets","GetMgTeamOperation_Get.g.cs","v1.0","Get-MgTeamOperation","GET","/teams/{param}/operations/{param}","matched","Get-MgTeamOperation" +"Cmdlets","GetMgTeamOperation_List.g.cs","v1.0","Get-MgTeamOperation","GET","/teams/{param}/operations","matched","Get-MgTeamOperation" +"Cmdlets","GetMgTeamOperation.g.cs","v1.0","Get-MgTeamOperation","","","dispatcher","" +"Cmdlets","GetMgTeamOperationCount.g.cs","v1.0","Get-MgTeamOperationCount","GET","/teams/{param}/operations/$count","matched","Get-MgTeamOperationCount" +"Cmdlets","GetMgTeamPermissionGrant_Get.g.cs","v1.0","Get-MgTeamPermissionGrant","GET","/teams/{param}/permissionGrants/{param}","matched","Get-MgTeamPermissionGrant" +"Cmdlets","GetMgTeamPermissionGrant_List.g.cs","v1.0","Get-MgTeamPermissionGrant","GET","/teams/{param}/permissionGrants","matched","Get-MgTeamPermissionGrant" +"Cmdlets","GetMgTeamPermissionGrant.g.cs","v1.0","Get-MgTeamPermissionGrant","","","dispatcher","" +"Cmdlets","GetMgTeamPermissionGrantCount.g.cs","v1.0","Get-MgTeamPermissionGrantCount","GET","/teams/{param}/permissionGrants/$count","matched","Get-MgTeamPermissionGrantCount" +"Cmdlets","GetMgTeamPhoto.g.cs","v1.0","Get-MgTeamPhoto","GET","/teams/{param}/photo","matched","Get-MgTeamPhoto" +"Cmdlets","GetMgTeamPhotoContent.g.cs","v1.0","Get-MgTeamPhotoContent","GET","/teams/{param}/photo/$value","matched","Get-MgTeamPhotoContent" +"Cmdlets","GetMgTeamPrimaryChannel.g.cs","v1.0","Get-MgTeamPrimaryChannel","GET","/teams/{param}/primaryChannel","matched","Get-MgTeamPrimaryChannel" +"Cmdlets","GetMgTeamPrimaryChannelAllMember_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelAllMember","GET","/teams/{param}/primaryChannel/allMembers/{param}","mismatch","Get-MgTeamPrimaryChannelMember" +"Cmdlets","GetMgTeamPrimaryChannelAllMember_List.g.cs","v1.0","Get-MgTeamPrimaryChannelAllMember","GET","/teams/{param}/primaryChannel/allMembers","mismatch","Get-MgTeamPrimaryChannelMember" +"Cmdlets","GetMgTeamPrimaryChannelAllMember.g.cs","v1.0","Get-MgTeamPrimaryChannelAllMember","","","dispatcher","" +"Cmdlets","GetMgTeamPrimaryChannelAllMemberCount.g.cs","v1.0","Get-MgTeamPrimaryChannelAllMemberCount","GET","/teams/{param}/primaryChannel/allMembers/$count","matched","Get-MgTeamPrimaryChannelAllMemberCount" +"Cmdlets","GetMgTeamPrimaryChannelEnabledApp_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelEnabledApp","GET","/teams/{param}/primaryChannel/enabledApps/{param}","matched","Get-MgTeamPrimaryChannelEnabledApp" +"Cmdlets","GetMgTeamPrimaryChannelEnabledApp_List.g.cs","v1.0","Get-MgTeamPrimaryChannelEnabledApp","GET","/teams/{param}/primaryChannel/enabledApps","matched","Get-MgTeamPrimaryChannelEnabledApp" +"Cmdlets","GetMgTeamPrimaryChannelEnabledApp.g.cs","v1.0","Get-MgTeamPrimaryChannelEnabledApp","","","dispatcher","" +"Cmdlets","GetMgTeamPrimaryChannelEnabledAppCount.g.cs","v1.0","Get-MgTeamPrimaryChannelEnabledAppCount","GET","/teams/{param}/primaryChannel/enabledApps/$count","matched","Get-MgTeamPrimaryChannelEnabledAppCount" +"Cmdlets","GetMgTeamPrimaryChannelFileFolder.g.cs","v1.0","Get-MgTeamPrimaryChannelFileFolder","GET","/teams/{param}/primaryChannel/filesFolder","matched","Get-MgTeamPrimaryChannelFileFolder" +"Cmdlets","GetMgTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Get-MgTeamPrimaryChannelFileFolderContent","GET","/teams/{param}/primaryChannel/filesFolder/content","matched","Get-MgTeamPrimaryChannelFileFolderContent" +"Cmdlets","GetMgTeamPrimaryChannelMember_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelMember","GET","/teams/{param}/primaryChannel/members/{param}","no-oracle","" +"Cmdlets","GetMgTeamPrimaryChannelMember_List.g.cs","v1.0","Get-MgTeamPrimaryChannelMember","GET","/teams/{param}/primaryChannel/members","no-oracle","" +"Cmdlets","GetMgTeamPrimaryChannelMember.g.cs","v1.0","Get-MgTeamPrimaryChannelMember","","","dispatcher","" +"Cmdlets","GetMgTeamPrimaryChannelMemberCount.g.cs","v1.0","Get-MgTeamPrimaryChannelMemberCount","GET","/teams/{param}/primaryChannel/members/$count","matched","Get-MgTeamPrimaryChannelMemberCount" +"Cmdlets","GetMgTeamPrimaryChannelMessage_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelMessage","GET","/teams/{param}/primaryChannel/messages/{param}","matched","Get-MgTeamPrimaryChannelMessage" +"Cmdlets","GetMgTeamPrimaryChannelMessage_List.g.cs","v1.0","Get-MgTeamPrimaryChannelMessage","GET","/teams/{param}/primaryChannel/messages","matched","Get-MgTeamPrimaryChannelMessage" +"Cmdlets","GetMgTeamPrimaryChannelMessage.g.cs","v1.0","Get-MgTeamPrimaryChannelMessage","","","dispatcher","" +"Cmdlets","GetMgTeamPrimaryChannelMessageCount.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageCount","GET","/teams/{param}/primaryChannel/messages/$count","matched","Get-MgTeamPrimaryChannelMessageCount" +"Cmdlets","GetMgTeamPrimaryChannelMessageDelta.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageDelta","GET","/teams/{param}/primaryChannel/messages/delta","matched","Get-MgTeamPrimaryChannelMessageDelta" +"Cmdlets","GetMgTeamPrimaryChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageHostedContent","GET","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","matched","Get-MgTeamPrimaryChannelMessageHostedContent" +"Cmdlets","GetMgTeamPrimaryChannelMessageHostedContent_List.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageHostedContent","GET","/teams/{param}/primaryChannel/messages/{param}/hostedContents","matched","Get-MgTeamPrimaryChannelMessageHostedContent" +"Cmdlets","GetMgTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageHostedContent","","","dispatcher","" +"Cmdlets","GetMgTeamPrimaryChannelMessageHostedContentContent.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageHostedContentContent","GET","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgTeamPrimaryChannelMessageHostedContentCount.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageHostedContentCount","GET","/teams/{param}/primaryChannel/messages/{param}/hostedContents/$count","matched","Get-MgTeamPrimaryChannelMessageHostedContentCount" +"Cmdlets","GetMgTeamPrimaryChannelMessageReply_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReply","GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}","matched","Get-MgTeamPrimaryChannelMessageReply" +"Cmdlets","GetMgTeamPrimaryChannelMessageReply_List.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReply","GET","/teams/{param}/primaryChannel/messages/{param}/replies","matched","Get-MgTeamPrimaryChannelMessageReply" +"Cmdlets","GetMgTeamPrimaryChannelMessageReply.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReply","","","dispatcher","" +"Cmdlets","GetMgTeamPrimaryChannelMessageReplyCount.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyCount","GET","/teams/{param}/primaryChannel/messages/{param}/replies/$count","matched","Get-MgTeamPrimaryChannelMessageReplyCount" +"Cmdlets","GetMgTeamPrimaryChannelMessageReplyDelta.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyDelta","GET","/teams/{param}/primaryChannel/messages/{param}/replies/delta","matched","Get-MgTeamPrimaryChannelMessageReplyDelta" +"Cmdlets","GetMgTeamPrimaryChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyHostedContent","GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgTeamPrimaryChannelMessageReplyHostedContent" +"Cmdlets","GetMgTeamPrimaryChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyHostedContent","GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents","matched","Get-MgTeamPrimaryChannelMessageReplyHostedContent" +"Cmdlets","GetMgTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyHostedContent","","","dispatcher","" +"Cmdlets","GetMgTeamPrimaryChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyHostedContentContent","GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgTeamPrimaryChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyHostedContentCount","GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgTeamPrimaryChannelMessageReplyHostedContentCount" +"Cmdlets","GetMgTeamPrimaryChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeam","GET","/teams/{param}/primaryChannel/sharedWithTeams/{param}","matched","Get-MgTeamPrimaryChannelSharedWithTeam" +"Cmdlets","GetMgTeamPrimaryChannelSharedWithTeam_List.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeam","GET","/teams/{param}/primaryChannel/sharedWithTeams","matched","Get-MgTeamPrimaryChannelSharedWithTeam" +"Cmdlets","GetMgTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeam","","","dispatcher","" +"Cmdlets","GetMgTeamPrimaryChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember","GET","/teams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/{param}","matched","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember" +"Cmdlets","GetMgTeamPrimaryChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember","GET","/teams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers","matched","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember" +"Cmdlets","GetMgTeamPrimaryChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Cmdlets","GetMgTeamPrimaryChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMemberCount","GET","/teams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/$count","matched","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMemberCount" +"Cmdlets","GetMgTeamPrimaryChannelSharedWithTeamCount.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeamCount","GET","/teams/{param}/primaryChannel/sharedWithTeams/$count","matched","Get-MgTeamPrimaryChannelSharedWithTeamCount" +"Cmdlets","GetMgTeamPrimaryChannelTab_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelTab","GET","/teams/{param}/primaryChannel/tabs/{param}","matched","Get-MgTeamPrimaryChannelTab" +"Cmdlets","GetMgTeamPrimaryChannelTab_List.g.cs","v1.0","Get-MgTeamPrimaryChannelTab","GET","/teams/{param}/primaryChannel/tabs","matched","Get-MgTeamPrimaryChannelTab" +"Cmdlets","GetMgTeamPrimaryChannelTab.g.cs","v1.0","Get-MgTeamPrimaryChannelTab","","","dispatcher","" +"Cmdlets","GetMgTeamPrimaryChannelTabCount.g.cs","v1.0","Get-MgTeamPrimaryChannelTabCount","GET","/teams/{param}/primaryChannel/tabs/$count","matched","Get-MgTeamPrimaryChannelTabCount" +"Cmdlets","GetMgTeamPrimaryChannelTabTeamApp.g.cs","v1.0","Get-MgTeamPrimaryChannelTabTeamApp","GET","/teams/{param}/primaryChannel/tabs/{param}/teamsApp","matched","Get-MgTeamPrimaryChannelTabTeamApp" +"Cmdlets","GetMgTeamSchedule.g.cs","v1.0","Get-MgTeamSchedule","GET","/teams/{param}/schedule","matched","Get-MgTeamSchedule" +"Cmdlets","GetMgTeamScheduleDayNote_Get.g.cs","v1.0","Get-MgTeamScheduleDayNote","GET","/teams/{param}/schedule/dayNotes/{param}","matched","Get-MgTeamScheduleDayNote" +"Cmdlets","GetMgTeamScheduleDayNote_List.g.cs","v1.0","Get-MgTeamScheduleDayNote","GET","/teams/{param}/schedule/dayNotes","matched","Get-MgTeamScheduleDayNote" +"Cmdlets","GetMgTeamScheduleDayNote.g.cs","v1.0","Get-MgTeamScheduleDayNote","","","dispatcher","" +"Cmdlets","GetMgTeamScheduleDayNoteCount.g.cs","v1.0","Get-MgTeamScheduleDayNoteCount","GET","/teams/{param}/schedule/dayNotes/$count","matched","Get-MgTeamScheduleDayNoteCount" +"Cmdlets","GetMgTeamScheduleOfferShiftRequest_Get.g.cs","v1.0","Get-MgTeamScheduleOfferShiftRequest","GET","/teams/{param}/schedule/offerShiftRequests/{param}","matched","Get-MgTeamScheduleOfferShiftRequest" +"Cmdlets","GetMgTeamScheduleOfferShiftRequest_List.g.cs","v1.0","Get-MgTeamScheduleOfferShiftRequest","GET","/teams/{param}/schedule/offerShiftRequests","matched","Get-MgTeamScheduleOfferShiftRequest" +"Cmdlets","GetMgTeamScheduleOfferShiftRequest.g.cs","v1.0","Get-MgTeamScheduleOfferShiftRequest","","","dispatcher","" +"Cmdlets","GetMgTeamScheduleOfferShiftRequestCount.g.cs","v1.0","Get-MgTeamScheduleOfferShiftRequestCount","GET","/teams/{param}/schedule/offerShiftRequests/$count","matched","Get-MgTeamScheduleOfferShiftRequestCount" +"Cmdlets","GetMgTeamScheduleOpenShift_Get.g.cs","v1.0","Get-MgTeamScheduleOpenShift","GET","/teams/{param}/schedule/openShifts/{param}","matched","Get-MgTeamScheduleOpenShift" +"Cmdlets","GetMgTeamScheduleOpenShift_List.g.cs","v1.0","Get-MgTeamScheduleOpenShift","GET","/teams/{param}/schedule/openShifts","matched","Get-MgTeamScheduleOpenShift" +"Cmdlets","GetMgTeamScheduleOpenShift.g.cs","v1.0","Get-MgTeamScheduleOpenShift","","","dispatcher","" +"Cmdlets","GetMgTeamScheduleOpenShiftChangeRequest_Get.g.cs","v1.0","Get-MgTeamScheduleOpenShiftChangeRequest","GET","/teams/{param}/schedule/openShiftChangeRequests/{param}","matched","Get-MgTeamScheduleOpenShiftChangeRequest" +"Cmdlets","GetMgTeamScheduleOpenShiftChangeRequest_List.g.cs","v1.0","Get-MgTeamScheduleOpenShiftChangeRequest","GET","/teams/{param}/schedule/openShiftChangeRequests","matched","Get-MgTeamScheduleOpenShiftChangeRequest" +"Cmdlets","GetMgTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Get-MgTeamScheduleOpenShiftChangeRequest","","","dispatcher","" +"Cmdlets","GetMgTeamScheduleOpenShiftChangeRequestCount.g.cs","v1.0","Get-MgTeamScheduleOpenShiftChangeRequestCount","GET","/teams/{param}/schedule/openShiftChangeRequests/$count","matched","Get-MgTeamScheduleOpenShiftChangeRequestCount" +"Cmdlets","GetMgTeamScheduleOpenShiftCount.g.cs","v1.0","Get-MgTeamScheduleOpenShiftCount","GET","/teams/{param}/schedule/openShifts/$count","matched","Get-MgTeamScheduleOpenShiftCount" +"Cmdlets","GetMgTeamScheduleSchedulingGroup_Get.g.cs","v1.0","Get-MgTeamScheduleSchedulingGroup","GET","/teams/{param}/schedule/schedulingGroups/{param}","matched","Get-MgTeamScheduleSchedulingGroup" +"Cmdlets","GetMgTeamScheduleSchedulingGroup_List.g.cs","v1.0","Get-MgTeamScheduleSchedulingGroup","GET","/teams/{param}/schedule/schedulingGroups","matched","Get-MgTeamScheduleSchedulingGroup" +"Cmdlets","GetMgTeamScheduleSchedulingGroup.g.cs","v1.0","Get-MgTeamScheduleSchedulingGroup","","","dispatcher","" +"Cmdlets","GetMgTeamScheduleSchedulingGroupCount.g.cs","v1.0","Get-MgTeamScheduleSchedulingGroupCount","GET","/teams/{param}/schedule/schedulingGroups/$count","matched","Get-MgTeamScheduleSchedulingGroupCount" +"Cmdlets","GetMgTeamScheduleShift_Get.g.cs","v1.0","Get-MgTeamScheduleShift","GET","/teams/{param}/schedule/shifts/{param}","matched","Get-MgTeamScheduleShift" +"Cmdlets","GetMgTeamScheduleShift_List.g.cs","v1.0","Get-MgTeamScheduleShift","GET","/teams/{param}/schedule/shifts","matched","Get-MgTeamScheduleShift" +"Cmdlets","GetMgTeamScheduleShift.g.cs","v1.0","Get-MgTeamScheduleShift","","","dispatcher","" +"Cmdlets","GetMgTeamScheduleShiftCount.g.cs","v1.0","Get-MgTeamScheduleShiftCount","GET","/teams/{param}/schedule/shifts/$count","matched","Get-MgTeamScheduleShiftCount" +"Cmdlets","GetMgTeamScheduleSwapShiftChangeRequest_Get.g.cs","v1.0","Get-MgTeamScheduleSwapShiftChangeRequest","GET","/teams/{param}/schedule/swapShiftsChangeRequests/{param}","matched","Get-MgTeamScheduleSwapShiftChangeRequest" +"Cmdlets","GetMgTeamScheduleSwapShiftChangeRequest_List.g.cs","v1.0","Get-MgTeamScheduleSwapShiftChangeRequest","GET","/teams/{param}/schedule/swapShiftsChangeRequests","matched","Get-MgTeamScheduleSwapShiftChangeRequest" +"Cmdlets","GetMgTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Get-MgTeamScheduleSwapShiftChangeRequest","","","dispatcher","" +"Cmdlets","GetMgTeamScheduleSwapShiftChangeRequestCount.g.cs","v1.0","Get-MgTeamScheduleSwapShiftChangeRequestCount","GET","/teams/{param}/schedule/swapShiftsChangeRequests/$count","matched","Get-MgTeamScheduleSwapShiftChangeRequestCount" +"Cmdlets","GetMgTeamScheduleTimeCard_Get.g.cs","v1.0","Get-MgTeamScheduleTimeCard","GET","/teams/{param}/schedule/timeCards/{param}","matched","Get-MgTeamScheduleTimeCard" +"Cmdlets","GetMgTeamScheduleTimeCard_List.g.cs","v1.0","Get-MgTeamScheduleTimeCard","GET","/teams/{param}/schedule/timeCards","matched","Get-MgTeamScheduleTimeCard" +"Cmdlets","GetMgTeamScheduleTimeCard.g.cs","v1.0","Get-MgTeamScheduleTimeCard","","","dispatcher","" +"Cmdlets","GetMgTeamScheduleTimeCardCount.g.cs","v1.0","Get-MgTeamScheduleTimeCardCount","GET","/teams/{param}/schedule/timeCards/$count","matched","Get-MgTeamScheduleTimeCardCount" +"Cmdlets","GetMgTeamScheduleTimeOff_Get.g.cs","v1.0","Get-MgTeamScheduleTimeOff","GET","/teams/{param}/schedule/timesOff/{param}","matched","Get-MgTeamScheduleTimeOff" +"Cmdlets","GetMgTeamScheduleTimeOff_List.g.cs","v1.0","Get-MgTeamScheduleTimeOff","GET","/teams/{param}/schedule/timesOff","matched","Get-MgTeamScheduleTimeOff" +"Cmdlets","GetMgTeamScheduleTimeOff.g.cs","v1.0","Get-MgTeamScheduleTimeOff","","","dispatcher","" +"Cmdlets","GetMgTeamScheduleTimeOffCount.g.cs","v1.0","Get-MgTeamScheduleTimeOffCount","GET","/teams/{param}/schedule/timesOff/$count","matched","Get-MgTeamScheduleTimeOffCount" +"Cmdlets","GetMgTeamScheduleTimeOffReason_Get.g.cs","v1.0","Get-MgTeamScheduleTimeOffReason","GET","/teams/{param}/schedule/timeOffReasons/{param}","matched","Get-MgTeamScheduleTimeOffReason" +"Cmdlets","GetMgTeamScheduleTimeOffReason_List.g.cs","v1.0","Get-MgTeamScheduleTimeOffReason","GET","/teams/{param}/schedule/timeOffReasons","matched","Get-MgTeamScheduleTimeOffReason" +"Cmdlets","GetMgTeamScheduleTimeOffReason.g.cs","v1.0","Get-MgTeamScheduleTimeOffReason","","","dispatcher","" +"Cmdlets","GetMgTeamScheduleTimeOffReasonCount.g.cs","v1.0","Get-MgTeamScheduleTimeOffReasonCount","GET","/teams/{param}/schedule/timeOffReasons/$count","matched","Get-MgTeamScheduleTimeOffReasonCount" +"Cmdlets","GetMgTeamScheduleTimeOffRequest_Get.g.cs","v1.0","Get-MgTeamScheduleTimeOffRequest","GET","/teams/{param}/schedule/timeOffRequests/{param}","matched","Get-MgTeamScheduleTimeOffRequest" +"Cmdlets","GetMgTeamScheduleTimeOffRequest_List.g.cs","v1.0","Get-MgTeamScheduleTimeOffRequest","GET","/teams/{param}/schedule/timeOffRequests","matched","Get-MgTeamScheduleTimeOffRequest" +"Cmdlets","GetMgTeamScheduleTimeOffRequest.g.cs","v1.0","Get-MgTeamScheduleTimeOffRequest","","","dispatcher","" +"Cmdlets","GetMgTeamScheduleTimeOffRequestCount.g.cs","v1.0","Get-MgTeamScheduleTimeOffRequestCount","GET","/teams/{param}/schedule/timeOffRequests/$count","matched","Get-MgTeamScheduleTimeOffRequestCount" +"Cmdlets","GetMgTeamTag_Get.g.cs","v1.0","Get-MgTeamTag","GET","/teams/{param}/tags/{param}","matched","Get-MgTeamTag" +"Cmdlets","GetMgTeamTag_List.g.cs","v1.0","Get-MgTeamTag","GET","/teams/{param}/tags","matched","Get-MgTeamTag" +"Cmdlets","GetMgTeamTag.g.cs","v1.0","Get-MgTeamTag","","","dispatcher","" +"Cmdlets","GetMgTeamTagCount.g.cs","v1.0","Get-MgTeamTagCount","GET","/teams/{param}/tags/$count","matched","Get-MgTeamTagCount" +"Cmdlets","GetMgTeamTagMember_Get.g.cs","v1.0","Get-MgTeamTagMember","GET","/teams/{param}/tags/{param}/members/{param}","matched","Get-MgTeamTagMember" +"Cmdlets","GetMgTeamTagMember_List.g.cs","v1.0","Get-MgTeamTagMember","GET","/teams/{param}/tags/{param}/members","matched","Get-MgTeamTagMember" +"Cmdlets","GetMgTeamTagMember.g.cs","v1.0","Get-MgTeamTagMember","","","dispatcher","" +"Cmdlets","GetMgTeamTagMemberCount.g.cs","v1.0","Get-MgTeamTagMemberCount","GET","/teams/{param}/tags/{param}/members/$count","matched","Get-MgTeamTagMemberCount" +"Cmdlets","GetMgTeamTemplate.g.cs","v1.0","Get-MgTeamTemplate","GET","/teams/{param}/template","matched","Get-MgTeamTemplate" +"Cmdlets","GetMgTeamwork.g.cs","v1.0","Get-MgTeamwork","GET","/teamwork","matched","Get-MgTeamwork" +"Cmdlets","GetMgTeamworkDeletedChat_Get.g.cs","v1.0","Get-MgTeamworkDeletedChat","GET","/teamwork/deletedChats/{param}","matched","Get-MgTeamworkDeletedChat" +"Cmdlets","GetMgTeamworkDeletedChat_List.g.cs","v1.0","Get-MgTeamworkDeletedChat","GET","/teamwork/deletedChats","matched","Get-MgTeamworkDeletedChat" +"Cmdlets","GetMgTeamworkDeletedChat.g.cs","v1.0","Get-MgTeamworkDeletedChat","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedChatCount.g.cs","v1.0","Get-MgTeamworkDeletedChatCount","GET","/teamwork/deletedChats/$count","matched","Get-MgTeamworkDeletedChatCount" +"Cmdlets","GetMgTeamworkDeletedTeam_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeam","GET","/teamwork/deletedTeams/{param}","matched","Get-MgTeamworkDeletedTeam" +"Cmdlets","GetMgTeamworkDeletedTeam_List.g.cs","v1.0","Get-MgTeamworkDeletedTeam","GET","/teamwork/deletedTeams","matched","Get-MgTeamworkDeletedTeam" +"Cmdlets","GetMgTeamworkDeletedTeam.g.cs","v1.0","Get-MgTeamworkDeletedTeam","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedTeamChannel_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannel","GET","/teamwork/deletedTeams/{param}/channels/{param}","matched","Get-MgTeamworkDeletedTeamChannel" +"Cmdlets","GetMgTeamworkDeletedTeamChannel_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannel","GET","/teamwork/deletedTeams/{param}/channels","matched","Get-MgTeamworkDeletedTeamChannel" +"Cmdlets","GetMgTeamworkDeletedTeamChannel.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannel","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelAllMember_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelAllMember","GET","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/{param}","mismatch","Get-MgTeamworkDeletedTeamChannelMember" +"Cmdlets","GetMgTeamworkDeletedTeamChannelAllMember_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelAllMember","GET","/teamwork/deletedTeams/{param}/channels/{param}/allMembers","mismatch","Get-MgTeamworkDeletedTeamChannelMember" +"Cmdlets","GetMgTeamworkDeletedTeamChannelAllMember.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelAllMember","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelAllMemberCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelAllMemberCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/$count","matched","Get-MgTeamworkDeletedTeamChannelAllMemberCount" +"Cmdlets","GetMgTeamworkDeletedTeamChannelCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelCount","GET","/teamwork/deletedTeams/{param}/channels/$count","matched","Get-MgTeamworkDeletedTeamChannelCount" +"Cmdlets","GetMgTeamworkDeletedTeamChannelEnabledApp_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelEnabledApp","GET","/teamwork/deletedTeams/{param}/channels/{param}/enabledApps/{param}","matched","Get-MgTeamworkDeletedTeamChannelEnabledApp" +"Cmdlets","GetMgTeamworkDeletedTeamChannelEnabledApp_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelEnabledApp","GET","/teamwork/deletedTeams/{param}/channels/{param}/enabledApps","matched","Get-MgTeamworkDeletedTeamChannelEnabledApp" +"Cmdlets","GetMgTeamworkDeletedTeamChannelEnabledApp.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelEnabledApp","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelEnabledAppCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelEnabledAppCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/enabledApps/$count","matched","Get-MgTeamworkDeletedTeamChannelEnabledAppCount" +"Cmdlets","GetMgTeamworkDeletedTeamChannelFileFolder.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelFileFolder","GET","/teamwork/deletedTeams/{param}/channels/{param}/filesFolder","matched","Get-MgTeamworkDeletedTeamChannelFileFolder" +"Cmdlets","GetMgTeamworkDeletedTeamChannelFileFolderContent.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelFileFolderContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/filesFolder/content","matched","Get-MgTeamworkDeletedTeamChannelFileFolderContent" +"Cmdlets","GetMgTeamworkDeletedTeamChannelGetAllMessages.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelGetAllMessages","GET","/teamwork/deletedTeams/{param}/channels/getAllMessages","no-oracle","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelGetAllRetainedMessages.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelGetAllRetainedMessages","GET","/teamwork/deletedTeams/{param}/channels/getAllRetainedMessages","mismatch","Get-MgTeamworkDeletedTeamChannelRetainedMessage" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMember_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMember","GET","/teamwork/deletedTeams/{param}/channels/{param}/members/{param}","no-oracle","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMember_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMember","GET","/teamwork/deletedTeams/{param}/channels/{param}/members","no-oracle","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMember.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMember","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMemberCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMemberCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/members/$count","matched","Get-MgTeamworkDeletedTeamChannelMemberCount" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessage_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessage","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}","matched","Get-MgTeamworkDeletedTeamChannelMessage" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessage_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessage","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages","matched","Get-MgTeamworkDeletedTeamChannelMessage" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessage.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessage","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/$count","matched","Get-MgTeamworkDeletedTeamChannelMessageCount" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageDelta.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageDelta","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/delta","matched","Get-MgTeamworkDeletedTeamChannelMessageDelta" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageHostedContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","matched","Get-MgTeamworkDeletedTeamChannelMessageHostedContent" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageHostedContent_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageHostedContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents","matched","Get-MgTeamworkDeletedTeamChannelMessageHostedContent" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageHostedContent.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageHostedContent","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageHostedContentContent.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageHostedContentContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageHostedContentCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageHostedContentCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/$count","matched","Get-MgTeamworkDeletedTeamChannelMessageHostedContentCount" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageReply_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReply","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","matched","Get-MgTeamworkDeletedTeamChannelMessageReply" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageReply_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReply","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies","matched","Get-MgTeamworkDeletedTeamChannelMessageReply" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageReply.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReply","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageReplyCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/$count","matched","Get-MgTeamworkDeletedTeamChannelMessageReplyCount" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageReplyDelta.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyDelta","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/delta","matched","Get-MgTeamworkDeletedTeamChannelMessageReplyDelta" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","matched","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentCount" +"Cmdlets","GetMgTeamworkDeletedTeamChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeam","GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}","matched","Get-MgTeamworkDeletedTeamChannelSharedWithTeam" +"Cmdlets","GetMgTeamworkDeletedTeamChannelSharedWithTeam_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeam","GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams","matched","Get-MgTeamworkDeletedTeamChannelSharedWithTeam" +"Cmdlets","GetMgTeamworkDeletedTeamChannelSharedWithTeam.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeam","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember","GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param}","matched","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember" +"Cmdlets","GetMgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember","GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers","matched","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember" +"Cmdlets","GetMgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count","matched","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount" +"Cmdlets","GetMgTeamworkDeletedTeamChannelSharedWithTeamCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeamCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/$count","matched","Get-MgTeamworkDeletedTeamChannelSharedWithTeamCount" +"Cmdlets","GetMgTeamworkDeletedTeamChannelTab_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelTab","GET","/teamwork/deletedTeams/{param}/channels/{param}/tabs/{param}","matched","Get-MgTeamworkDeletedTeamChannelTab" +"Cmdlets","GetMgTeamworkDeletedTeamChannelTab_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelTab","GET","/teamwork/deletedTeams/{param}/channels/{param}/tabs","matched","Get-MgTeamworkDeletedTeamChannelTab" +"Cmdlets","GetMgTeamworkDeletedTeamChannelTab.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelTab","","","dispatcher","" +"Cmdlets","GetMgTeamworkDeletedTeamChannelTabCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelTabCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/tabs/$count","matched","Get-MgTeamworkDeletedTeamChannelTabCount" +"Cmdlets","GetMgTeamworkDeletedTeamChannelTabTeamApp.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelTabTeamApp","GET","/teamwork/deletedTeams/{param}/channels/{param}/tabs/{param}/teamsApp","matched","Get-MgTeamworkDeletedTeamChannelTabTeamApp" +"Cmdlets","GetMgTeamworkDeletedTeamCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamCount","GET","/teamwork/deletedTeams/$count","matched","Get-MgTeamworkDeletedTeamCount" +"Cmdlets","GetMgTeamworkDeletedTeamGetAllMessages.g.cs","v1.0","Get-MgTeamworkDeletedTeamGetAllMessages","GET","/teamwork/deletedTeams/getAllMessages","mismatch","Get-MgAllTeamworkDeletedTeamMessage" +"Cmdlets","GetMgTeamworkTeamAppSetting.g.cs","v1.0","Get-MgTeamworkTeamAppSetting","GET","/teamwork/teamsAppSettings","matched","Get-MgTeamworkTeamAppSetting" +"Cmdlets","GetMgTeamworkWorkforceIntegration_Get.g.cs","v1.0","Get-MgTeamworkWorkforceIntegration","GET","/teamwork/workforceIntegrations/{param}","matched","Get-MgTeamworkWorkforceIntegration" +"Cmdlets","GetMgTeamworkWorkforceIntegration_List.g.cs","v1.0","Get-MgTeamworkWorkforceIntegration","GET","/teamwork/workforceIntegrations","matched","Get-MgTeamworkWorkforceIntegration" +"Cmdlets","GetMgTeamworkWorkforceIntegration.g.cs","v1.0","Get-MgTeamworkWorkforceIntegration","","","dispatcher","" +"Cmdlets","GetMgTeamworkWorkforceIntegrationCount.g.cs","v1.0","Get-MgTeamworkWorkforceIntegrationCount","GET","/teamwork/workforceIntegrations/$count","matched","Get-MgTeamworkWorkforceIntegrationCount" +"Cmdlets","GetMgUserChat_Get.g.cs","v1.0","Get-MgUserChat","GET","/users/{param}/chats/{param}","matched","Get-MgUserChat" +"Cmdlets","GetMgUserChat_List.g.cs","v1.0","Get-MgUserChat","GET","/users/{param}/chats","matched","Get-MgUserChat" +"Cmdlets","GetMgUserChat.g.cs","v1.0","Get-MgUserChat","","","dispatcher","" +"Cmdlets","GetMgUserChatCount.g.cs","v1.0","Get-MgUserChatCount","GET","/users/{param}/chats/$count","matched","Get-MgUserChatCount" +"Cmdlets","GetMgUserChatGetAllMessages.g.cs","v1.0","Get-MgUserChatGetAllMessages","GET","/users/{param}/chats/getAllMessages","no-oracle","" +"Cmdlets","GetMgUserChatGetAllRetainedMessages.g.cs","v1.0","Get-MgUserChatGetAllRetainedMessages","GET","/users/{param}/chats/getAllRetainedMessages","mismatch","Get-MgUserChatRetainedMessage" +"Cmdlets","GetMgUserChatInstalledApp_Get.g.cs","v1.0","Get-MgUserChatInstalledApp","GET","/users/{param}/chats/{param}/installedApps/{param}","matched","Get-MgUserChatInstalledApp" +"Cmdlets","GetMgUserChatInstalledApp_List.g.cs","v1.0","Get-MgUserChatInstalledApp","GET","/users/{param}/chats/{param}/installedApps","matched","Get-MgUserChatInstalledApp" +"Cmdlets","GetMgUserChatInstalledApp.g.cs","v1.0","Get-MgUserChatInstalledApp","","","dispatcher","" +"Cmdlets","GetMgUserChatInstalledAppCount.g.cs","v1.0","Get-MgUserChatInstalledAppCount","GET","/users/{param}/chats/{param}/installedApps/$count","matched","Get-MgUserChatInstalledAppCount" +"Cmdlets","GetMgUserChatInstalledAppTeamApp.g.cs","v1.0","Get-MgUserChatInstalledAppTeamApp","GET","/users/{param}/chats/{param}/installedApps/{param}/teamsApp","matched","Get-MgUserChatInstalledAppTeamApp" +"Cmdlets","GetMgUserChatInstalledAppTeamAppDefinition.g.cs","v1.0","Get-MgUserChatInstalledAppTeamAppDefinition","GET","/users/{param}/chats/{param}/installedApps/{param}/teamsAppDefinition","matched","Get-MgUserChatInstalledAppTeamAppDefinition" +"Cmdlets","GetMgUserChatLastMessagePreview.g.cs","v1.0","Get-MgUserChatLastMessagePreview","GET","/users/{param}/chats/{param}/lastMessagePreview","matched","Get-MgUserChatLastMessagePreview" +"Cmdlets","GetMgUserChatMember_Get.g.cs","v1.0","Get-MgUserChatMember","GET","/users/{param}/chats/{param}/members/{param}","matched","Get-MgUserChatMember" +"Cmdlets","GetMgUserChatMember_List.g.cs","v1.0","Get-MgUserChatMember","GET","/users/{param}/chats/{param}/members","matched","Get-MgUserChatMember" +"Cmdlets","GetMgUserChatMember.g.cs","v1.0","Get-MgUserChatMember","","","dispatcher","" +"Cmdlets","GetMgUserChatMemberCount.g.cs","v1.0","Get-MgUserChatMemberCount","GET","/users/{param}/chats/{param}/members/$count","matched","Get-MgUserChatMemberCount" +"Cmdlets","GetMgUserChatMessage_Get.g.cs","v1.0","Get-MgUserChatMessage","GET","/users/{param}/chats/{param}/messages/{param}","mismatch","Get-MgAllUserChatMessage" +"Cmdlets","GetMgUserChatMessage_List.g.cs","v1.0","Get-MgUserChatMessage","GET","/users/{param}/chats/{param}/messages","mismatch","Get-MgAllUserChatMessage" +"Cmdlets","GetMgUserChatMessage.g.cs","v1.0","Get-MgUserChatMessage","","","dispatcher","" +"Cmdlets","GetMgUserChatMessageCount.g.cs","v1.0","Get-MgUserChatMessageCount","GET","/users/{param}/chats/{param}/messages/$count","matched","Get-MgUserChatMessageCount" +"Cmdlets","GetMgUserChatMessageDelta.g.cs","v1.0","Get-MgUserChatMessageDelta","GET","/users/{param}/chats/{param}/messages/delta","matched","Get-MgUserChatMessageDelta" +"Cmdlets","GetMgUserChatMessageHostedContent_Get.g.cs","v1.0","Get-MgUserChatMessageHostedContent","GET","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}","matched","Get-MgUserChatMessageHostedContent" +"Cmdlets","GetMgUserChatMessageHostedContent_List.g.cs","v1.0","Get-MgUserChatMessageHostedContent","GET","/users/{param}/chats/{param}/messages/{param}/hostedContents","matched","Get-MgUserChatMessageHostedContent" +"Cmdlets","GetMgUserChatMessageHostedContent.g.cs","v1.0","Get-MgUserChatMessageHostedContent","","","dispatcher","" +"Cmdlets","GetMgUserChatMessageHostedContentContent.g.cs","v1.0","Get-MgUserChatMessageHostedContentContent","GET","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgUserChatMessageHostedContentCount.g.cs","v1.0","Get-MgUserChatMessageHostedContentCount","GET","/users/{param}/chats/{param}/messages/{param}/hostedContents/$count","matched","Get-MgUserChatMessageHostedContentCount" +"Cmdlets","GetMgUserChatMessageReply_Get.g.cs","v1.0","Get-MgUserChatMessageReply","GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}","matched","Get-MgUserChatMessageReply" +"Cmdlets","GetMgUserChatMessageReply_List.g.cs","v1.0","Get-MgUserChatMessageReply","GET","/users/{param}/chats/{param}/messages/{param}/replies","matched","Get-MgUserChatMessageReply" +"Cmdlets","GetMgUserChatMessageReply.g.cs","v1.0","Get-MgUserChatMessageReply","","","dispatcher","" +"Cmdlets","GetMgUserChatMessageReplyCount.g.cs","v1.0","Get-MgUserChatMessageReplyCount","GET","/users/{param}/chats/{param}/messages/{param}/replies/$count","matched","Get-MgUserChatMessageReplyCount" +"Cmdlets","GetMgUserChatMessageReplyDelta.g.cs","v1.0","Get-MgUserChatMessageReplyDelta","GET","/users/{param}/chats/{param}/messages/{param}/replies/delta","matched","Get-MgUserChatMessageReplyDelta" +"Cmdlets","GetMgUserChatMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgUserChatMessageReplyHostedContent","GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgUserChatMessageReplyHostedContent" +"Cmdlets","GetMgUserChatMessageReplyHostedContent_List.g.cs","v1.0","Get-MgUserChatMessageReplyHostedContent","GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents","matched","Get-MgUserChatMessageReplyHostedContent" +"Cmdlets","GetMgUserChatMessageReplyHostedContent.g.cs","v1.0","Get-MgUserChatMessageReplyHostedContent","","","dispatcher","" +"Cmdlets","GetMgUserChatMessageReplyHostedContentContent.g.cs","v1.0","Get-MgUserChatMessageReplyHostedContentContent","GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgUserChatMessageReplyHostedContentCount.g.cs","v1.0","Get-MgUserChatMessageReplyHostedContentCount","GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgUserChatMessageReplyHostedContentCount" +"Cmdlets","GetMgUserChatPermissionGrant_Get.g.cs","v1.0","Get-MgUserChatPermissionGrant","GET","/users/{param}/chats/{param}/permissionGrants/{param}","matched","Get-MgUserChatPermissionGrant" +"Cmdlets","GetMgUserChatPermissionGrant_List.g.cs","v1.0","Get-MgUserChatPermissionGrant","GET","/users/{param}/chats/{param}/permissionGrants","matched","Get-MgUserChatPermissionGrant" +"Cmdlets","GetMgUserChatPermissionGrant.g.cs","v1.0","Get-MgUserChatPermissionGrant","","","dispatcher","" +"Cmdlets","GetMgUserChatPermissionGrantCount.g.cs","v1.0","Get-MgUserChatPermissionGrantCount","GET","/users/{param}/chats/{param}/permissionGrants/$count","matched","Get-MgUserChatPermissionGrantCount" +"Cmdlets","GetMgUserChatPinnedMessage_Get.g.cs","v1.0","Get-MgUserChatPinnedMessage","GET","/users/{param}/chats/{param}/pinnedMessages/{param}","matched","Get-MgUserChatPinnedMessage" +"Cmdlets","GetMgUserChatPinnedMessage_List.g.cs","v1.0","Get-MgUserChatPinnedMessage","GET","/users/{param}/chats/{param}/pinnedMessages","matched","Get-MgUserChatPinnedMessage" +"Cmdlets","GetMgUserChatPinnedMessage.g.cs","v1.0","Get-MgUserChatPinnedMessage","","","dispatcher","" +"Cmdlets","GetMgUserChatPinnedMessageCount.g.cs","v1.0","Get-MgUserChatPinnedMessageCount","GET","/users/{param}/chats/{param}/pinnedMessages/$count","matched","Get-MgUserChatPinnedMessageCount" +"Cmdlets","GetMgUserChatTab_Get.g.cs","v1.0","Get-MgUserChatTab","GET","/users/{param}/chats/{param}/tabs/{param}","matched","Get-MgUserChatTab" +"Cmdlets","GetMgUserChatTab_List.g.cs","v1.0","Get-MgUserChatTab","GET","/users/{param}/chats/{param}/tabs","matched","Get-MgUserChatTab" +"Cmdlets","GetMgUserChatTab.g.cs","v1.0","Get-MgUserChatTab","","","dispatcher","" +"Cmdlets","GetMgUserChatTabCount.g.cs","v1.0","Get-MgUserChatTabCount","GET","/users/{param}/chats/{param}/tabs/$count","matched","Get-MgUserChatTabCount" +"Cmdlets","GetMgUserChatTabTeamApp.g.cs","v1.0","Get-MgUserChatTabTeamApp","GET","/users/{param}/chats/{param}/tabs/{param}/teamsApp","matched","Get-MgUserChatTabTeamApp" +"Cmdlets","GetMgUserChatTargetedMessage_Get.g.cs","v1.0","Get-MgUserChatTargetedMessage","GET","/users/{param}/chats/{param}/targetedMessages/{param}","matched","Get-MgUserChatTargetedMessage" +"Cmdlets","GetMgUserChatTargetedMessage_List.g.cs","v1.0","Get-MgUserChatTargetedMessage","GET","/users/{param}/chats/{param}/targetedMessages","matched","Get-MgUserChatTargetedMessage" +"Cmdlets","GetMgUserChatTargetedMessage.g.cs","v1.0","Get-MgUserChatTargetedMessage","","","dispatcher","" +"Cmdlets","GetMgUserChatTargetedMessageCount.g.cs","v1.0","Get-MgUserChatTargetedMessageCount","GET","/users/{param}/chats/{param}/targetedMessages/$count","matched","Get-MgUserChatTargetedMessageCount" +"Cmdlets","GetMgUserChatTargetedMessageHostedContent_Get.g.cs","v1.0","Get-MgUserChatTargetedMessageHostedContent","GET","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}","matched","Get-MgUserChatTargetedMessageHostedContent" +"Cmdlets","GetMgUserChatTargetedMessageHostedContent_List.g.cs","v1.0","Get-MgUserChatTargetedMessageHostedContent","GET","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents","matched","Get-MgUserChatTargetedMessageHostedContent" +"Cmdlets","GetMgUserChatTargetedMessageHostedContent.g.cs","v1.0","Get-MgUserChatTargetedMessageHostedContent","","","dispatcher","" +"Cmdlets","GetMgUserChatTargetedMessageHostedContentContent.g.cs","v1.0","Get-MgUserChatTargetedMessageHostedContentContent","GET","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgUserChatTargetedMessageHostedContentCount.g.cs","v1.0","Get-MgUserChatTargetedMessageHostedContentCount","GET","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/$count","matched","Get-MgUserChatTargetedMessageHostedContentCount" +"Cmdlets","GetMgUserChatTargetedMessageReply_Get.g.cs","v1.0","Get-MgUserChatTargetedMessageReply","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}","matched","Get-MgUserChatTargetedMessageReply" +"Cmdlets","GetMgUserChatTargetedMessageReply_List.g.cs","v1.0","Get-MgUserChatTargetedMessageReply","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies","matched","Get-MgUserChatTargetedMessageReply" +"Cmdlets","GetMgUserChatTargetedMessageReply.g.cs","v1.0","Get-MgUserChatTargetedMessageReply","","","dispatcher","" +"Cmdlets","GetMgUserChatTargetedMessageReplyCount.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyCount","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/$count","matched","Get-MgUserChatTargetedMessageReplyCount" +"Cmdlets","GetMgUserChatTargetedMessageReplyDelta.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyDelta","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/delta","matched","Get-MgUserChatTargetedMessageReplyDelta" +"Cmdlets","GetMgUserChatTargetedMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyHostedContent","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgUserChatTargetedMessageReplyHostedContent" +"Cmdlets","GetMgUserChatTargetedMessageReplyHostedContent_List.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyHostedContent","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents","matched","Get-MgUserChatTargetedMessageReplyHostedContent" +"Cmdlets","GetMgUserChatTargetedMessageReplyHostedContent.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyHostedContent","","","dispatcher","" +"Cmdlets","GetMgUserChatTargetedMessageReplyHostedContentContent.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyHostedContentContent","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgUserChatTargetedMessageReplyHostedContentCount.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyHostedContentCount","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgUserChatTargetedMessageReplyHostedContentCount" +"Cmdlets","GetMgUserJoinedTeam_Get.g.cs","v1.0","Get-MgUserJoinedTeam","GET","/users/{param}/joinedTeams/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeam_List.g.cs","v1.0","Get-MgUserJoinedTeam","GET","/users/{param}/joinedTeams","matched","Get-MgUserJoinedTeam" +"Cmdlets","GetMgUserJoinedTeam.g.cs","v1.0","Get-MgUserJoinedTeam","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamAllChannel_Get.g.cs","v1.0","Get-MgUserJoinedTeamAllChannel","GET","/users/{param}/joinedTeams/{param}/allChannels/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamAllChannel_List.g.cs","v1.0","Get-MgUserJoinedTeamAllChannel","GET","/users/{param}/joinedTeams/{param}/allChannels","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamAllChannel.g.cs","v1.0","Get-MgUserJoinedTeamAllChannel","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamAllChannelCount.g.cs","v1.0","Get-MgUserJoinedTeamAllChannelCount","GET","/users/{param}/joinedTeams/{param}/allChannels/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannel_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannel","GET","/users/{param}/joinedTeams/{param}/channels/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannel_List.g.cs","v1.0","Get-MgUserJoinedTeamChannel","GET","/users/{param}/joinedTeams/{param}/channels","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannel.g.cs","v1.0","Get-MgUserJoinedTeamChannel","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamChannelAllMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelAllMember","GET","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelAllMember_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelAllMember","GET","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelAllMember.g.cs","v1.0","Get-MgUserJoinedTeamChannelAllMember","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamChannelAllMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelAllMemberCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelCount","GET","/users/{param}/joinedTeams/{param}/channels/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelEnabledApp_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelEnabledApp","GET","/users/{param}/joinedTeams/{param}/channels/{param}/enabledApps/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelEnabledApp_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelEnabledApp","GET","/users/{param}/joinedTeams/{param}/channels/{param}/enabledApps","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelEnabledApp.g.cs","v1.0","Get-MgUserJoinedTeamChannelEnabledApp","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamChannelEnabledAppCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelEnabledAppCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/enabledApps/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelFileFolder.g.cs","v1.0","Get-MgUserJoinedTeamChannelFileFolder","GET","/users/{param}/joinedTeams/{param}/channels/{param}/filesFolder","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelFileFolderContent.g.cs","v1.0","Get-MgUserJoinedTeamChannelFileFolderContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/content","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelGetAllMessages.g.cs","v1.0","Get-MgUserJoinedTeamChannelGetAllMessages","GET","/users/{param}/joinedTeams/{param}/channels/getAllMessages","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelGetAllRetainedMessages.g.cs","v1.0","Get-MgUserJoinedTeamChannelGetAllRetainedMessages","GET","/users/{param}/joinedTeams/{param}/channels/getAllRetainedMessages","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelMember","GET","/users/{param}/joinedTeams/{param}/channels/{param}/members/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMember_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelMember","GET","/users/{param}/joinedTeams/{param}/channels/{param}/members","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMember.g.cs","v1.0","Get-MgUserJoinedTeamChannelMember","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamChannelMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelMemberCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/members/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessage_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessage","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessage_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessage","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessage.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessage","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageDelta.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageDelta","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/delta","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageHostedContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageHostedContent_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageHostedContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageHostedContent.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageHostedContent","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageHostedContentContent.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageHostedContentContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageHostedContentCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageHostedContentCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageReply_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReply","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageReply_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReply","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageReply.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReply","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageReplyCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageReplyDelta.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyDelta","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/delta","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyHostedContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyHostedContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyHostedContent","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyHostedContentContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyHostedContentCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeam","GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelSharedWithTeam_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeam","GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelSharedWithTeam.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeam","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember","GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember","GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMemberCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelSharedWithTeamCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeamCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelTab_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelTab","GET","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelTab_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelTab","GET","/users/{param}/joinedTeams/{param}/channels/{param}/tabs","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelTab.g.cs","v1.0","Get-MgUserJoinedTeamChannelTab","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamChannelTabCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelTabCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamChannelTabTeamApp.g.cs","v1.0","Get-MgUserJoinedTeamChannelTabTeamApp","GET","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}/teamsApp","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamCount.g.cs","v1.0","Get-MgUserJoinedTeamCount","GET","/users/{param}/joinedTeams/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamGetAllMessages.g.cs","v1.0","Get-MgUserJoinedTeamGetAllMessages","GET","/users/{param}/joinedTeams/getAllMessages","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamGroup.g.cs","v1.0","Get-MgUserJoinedTeamGroup","GET","/users/{param}/joinedTeams/{param}/group","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamGroupServiceProvisioningError.g.cs","v1.0","Get-MgUserJoinedTeamGroupServiceProvisioningError","GET","/users/{param}/joinedTeams/{param}/group/serviceProvisioningErrors","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgUserJoinedTeamGroupServiceProvisioningErrorCount","GET","/users/{param}/joinedTeams/{param}/group/serviceProvisioningErrors/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamIncomingChannel_Get.g.cs","v1.0","Get-MgUserJoinedTeamIncomingChannel","GET","/users/{param}/joinedTeams/{param}/incomingChannels/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamIncomingChannel_List.g.cs","v1.0","Get-MgUserJoinedTeamIncomingChannel","GET","/users/{param}/joinedTeams/{param}/incomingChannels","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamIncomingChannel.g.cs","v1.0","Get-MgUserJoinedTeamIncomingChannel","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamIncomingChannelCount.g.cs","v1.0","Get-MgUserJoinedTeamIncomingChannelCount","GET","/users/{param}/joinedTeams/{param}/incomingChannels/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamInstalledApp_Get.g.cs","v1.0","Get-MgUserJoinedTeamInstalledApp","GET","/users/{param}/joinedTeams/{param}/installedApps/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamInstalledApp_List.g.cs","v1.0","Get-MgUserJoinedTeamInstalledApp","GET","/users/{param}/joinedTeams/{param}/installedApps","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamInstalledApp.g.cs","v1.0","Get-MgUserJoinedTeamInstalledApp","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamInstalledAppCount.g.cs","v1.0","Get-MgUserJoinedTeamInstalledAppCount","GET","/users/{param}/joinedTeams/{param}/installedApps/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamInstalledAppTeamApp.g.cs","v1.0","Get-MgUserJoinedTeamInstalledAppTeamApp","GET","/users/{param}/joinedTeams/{param}/installedApps/{param}/teamsApp","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamInstalledAppTeamAppDefinition.g.cs","v1.0","Get-MgUserJoinedTeamInstalledAppTeamAppDefinition","GET","/users/{param}/joinedTeams/{param}/installedApps/{param}/teamsAppDefinition","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamMember","GET","/users/{param}/joinedTeams/{param}/members/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamMember_List.g.cs","v1.0","Get-MgUserJoinedTeamMember","GET","/users/{param}/joinedTeams/{param}/members","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamMember.g.cs","v1.0","Get-MgUserJoinedTeamMember","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamMemberCount","GET","/users/{param}/joinedTeams/{param}/members/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamOperation_Get.g.cs","v1.0","Get-MgUserJoinedTeamOperation","GET","/users/{param}/joinedTeams/{param}/operations/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamOperation_List.g.cs","v1.0","Get-MgUserJoinedTeamOperation","GET","/users/{param}/joinedTeams/{param}/operations","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamOperation.g.cs","v1.0","Get-MgUserJoinedTeamOperation","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamOperationCount.g.cs","v1.0","Get-MgUserJoinedTeamOperationCount","GET","/users/{param}/joinedTeams/{param}/operations/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPermissionGrant_Get.g.cs","v1.0","Get-MgUserJoinedTeamPermissionGrant","GET","/users/{param}/joinedTeams/{param}/permissionGrants/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPermissionGrant_List.g.cs","v1.0","Get-MgUserJoinedTeamPermissionGrant","GET","/users/{param}/joinedTeams/{param}/permissionGrants","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPermissionGrant.g.cs","v1.0","Get-MgUserJoinedTeamPermissionGrant","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamPermissionGrantCount.g.cs","v1.0","Get-MgUserJoinedTeamPermissionGrantCount","GET","/users/{param}/joinedTeams/{param}/permissionGrants/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPhoto.g.cs","v1.0","Get-MgUserJoinedTeamPhoto","GET","/users/{param}/joinedTeams/{param}/photo","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPhotoContent.g.cs","v1.0","Get-MgUserJoinedTeamPhotoContent","GET","/users/{param}/joinedTeams/{param}/photo/$value","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannel.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannel","GET","/users/{param}/joinedTeams/{param}/primaryChannel","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelAllMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelAllMember","GET","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelAllMember_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelAllMember","GET","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelAllMember.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelAllMember","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelAllMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelAllMemberCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelEnabledApp_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelEnabledApp","GET","/users/{param}/joinedTeams/{param}/primaryChannel/enabledApps/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelEnabledApp_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelEnabledApp","GET","/users/{param}/joinedTeams/{param}/primaryChannel/enabledApps","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelEnabledApp.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelEnabledApp","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelEnabledAppCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelEnabledAppCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/enabledApps/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelFileFolder.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelFileFolder","GET","/users/{param}/joinedTeams/{param}/primaryChannel/filesFolder","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelFileFolderContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/content","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMember","GET","/users/{param}/joinedTeams/{param}/primaryChannel/members/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMember_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMember","GET","/users/{param}/joinedTeams/{param}/primaryChannel/members","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMember.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMember","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMemberCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/members/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessage_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessage","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessage_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessage","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessage.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessage","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageDelta.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageDelta","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/delta","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageHostedContent_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageHostedContentContent.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageHostedContentContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageHostedContentCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageHostedContentCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageReply_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReply","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageReply_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReply","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageReply.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReply","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageReplyCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageReplyDelta.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyDelta","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/delta","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam","GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelSharedWithTeam_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam","GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember","GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember","GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMemberCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelSharedWithTeamCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelTab_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelTab","GET","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelTab_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelTab","GET","/users/{param}/joinedTeams/{param}/primaryChannel/tabs","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelTab.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelTab","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelTabCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelTabCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamPrimaryChannelTabTeamApp.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelTabTeamApp","GET","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}/teamsApp","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamSchedule.g.cs","v1.0","Get-MgUserJoinedTeamSchedule","GET","/users/{param}/joinedTeams/{param}/schedule","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleDayNote_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleDayNote","GET","/users/{param}/joinedTeams/{param}/schedule/dayNotes/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleDayNote_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleDayNote","GET","/users/{param}/joinedTeams/{param}/schedule/dayNotes","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleDayNote.g.cs","v1.0","Get-MgUserJoinedTeamScheduleDayNote","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamScheduleDayNoteCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleDayNoteCount","GET","/users/{param}/joinedTeams/{param}/schedule/dayNotes/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleOfferShiftRequest_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOfferShiftRequest","GET","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleOfferShiftRequest_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOfferShiftRequest","GET","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleOfferShiftRequest.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOfferShiftRequest","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamScheduleOfferShiftRequestCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOfferShiftRequestCount","GET","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleOpenShift_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShift","GET","/users/{param}/joinedTeams/{param}/schedule/openShifts/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleOpenShift_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShift","GET","/users/{param}/joinedTeams/{param}/schedule/openShifts","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleOpenShift.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShift","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamScheduleOpenShiftChangeRequest_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest","GET","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleOpenShiftChangeRequest_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest","GET","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamScheduleOpenShiftChangeRequestCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShiftChangeRequestCount","GET","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleOpenShiftCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShiftCount","GET","/users/{param}/joinedTeams/{param}/schedule/openShifts/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleSchedulingGroup_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSchedulingGroup","GET","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleSchedulingGroup_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSchedulingGroup","GET","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleSchedulingGroup.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSchedulingGroup","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamScheduleSchedulingGroupCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSchedulingGroupCount","GET","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleShift_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleShift","GET","/users/{param}/joinedTeams/{param}/schedule/shifts/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleShift_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleShift","GET","/users/{param}/joinedTeams/{param}/schedule/shifts","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleShift.g.cs","v1.0","Get-MgUserJoinedTeamScheduleShift","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamScheduleShiftCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleShiftCount","GET","/users/{param}/joinedTeams/{param}/schedule/shifts/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleSwapShiftChangeRequest_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest","GET","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleSwapShiftChangeRequest_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest","GET","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamScheduleSwapShiftChangeRequestCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSwapShiftChangeRequestCount","GET","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeCard_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeCard","GET","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeCard_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeCard","GET","/users/{param}/joinedTeams/{param}/schedule/timeCards","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeCard.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeCard","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeCardCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeCardCount","GET","/users/{param}/joinedTeams/{param}/schedule/timeCards/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeOff_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOff","GET","/users/{param}/joinedTeams/{param}/schedule/timesOff/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeOff_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOff","GET","/users/{param}/joinedTeams/{param}/schedule/timesOff","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeOff.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOff","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeOffCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffCount","GET","/users/{param}/joinedTeams/{param}/schedule/timesOff/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeOffReason_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffReason","GET","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeOffReason_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffReason","GET","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeOffReason.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffReason","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeOffReasonCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffReasonCount","GET","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeOffRequest_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffRequest","GET","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeOffRequest_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffRequest","GET","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeOffRequest.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffRequest","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamScheduleTimeOffRequestCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffRequestCount","GET","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamTag_Get.g.cs","v1.0","Get-MgUserJoinedTeamTag","GET","/users/{param}/joinedTeams/{param}/tags/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamTag_List.g.cs","v1.0","Get-MgUserJoinedTeamTag","GET","/users/{param}/joinedTeams/{param}/tags","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamTag.g.cs","v1.0","Get-MgUserJoinedTeamTag","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamTagCount.g.cs","v1.0","Get-MgUserJoinedTeamTagCount","GET","/users/{param}/joinedTeams/{param}/tags/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamTagMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamTagMember","GET","/users/{param}/joinedTeams/{param}/tags/{param}/members/{param}","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamTagMember_List.g.cs","v1.0","Get-MgUserJoinedTeamTagMember","GET","/users/{param}/joinedTeams/{param}/tags/{param}/members","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamTagMember.g.cs","v1.0","Get-MgUserJoinedTeamTagMember","","","dispatcher","" +"Cmdlets","GetMgUserJoinedTeamTagMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamTagMemberCount","GET","/users/{param}/joinedTeams/{param}/tags/{param}/members/$count","no-oracle","" +"Cmdlets","GetMgUserJoinedTeamTemplate.g.cs","v1.0","Get-MgUserJoinedTeamTemplate","GET","/users/{param}/joinedTeams/{param}/template","no-oracle","" +"Cmdlets","GetMgUserTeamwork.g.cs","v1.0","Get-MgUserTeamwork","GET","/users/{param}/teamwork","matched","Get-MgUserTeamwork" +"Cmdlets","GetMgUserTeamworkAssociatedTeam_Get.g.cs","v1.0","Get-MgUserTeamworkAssociatedTeam","GET","/users/{param}/teamwork/associatedTeams/{param}","matched","Get-MgUserTeamworkAssociatedTeam" +"Cmdlets","GetMgUserTeamworkAssociatedTeam_List.g.cs","v1.0","Get-MgUserTeamworkAssociatedTeam","GET","/users/{param}/teamwork/associatedTeams","matched","Get-MgUserTeamworkAssociatedTeam" +"Cmdlets","GetMgUserTeamworkAssociatedTeam.g.cs","v1.0","Get-MgUserTeamworkAssociatedTeam","","","dispatcher","" +"Cmdlets","GetMgUserTeamworkAssociatedTeamCount.g.cs","v1.0","Get-MgUserTeamworkAssociatedTeamCount","GET","/users/{param}/teamwork/associatedTeams/$count","matched","Get-MgUserTeamworkAssociatedTeamCount" +"Cmdlets","GetMgUserTeamworkGetAllRetainedTargetedMessages.g.cs","v1.0","Get-MgUserTeamworkGetAllRetainedTargetedMessages","GET","/users/{param}/teamwork/getAllRetainedTargetedMessages","mismatch","Get-MgUserTeamworkRetainedTargetedMessage" +"Cmdlets","GetMgUserTeamworkGetAllTargetedMessages.g.cs","v1.0","Get-MgUserTeamworkGetAllTargetedMessages","GET","/users/{param}/teamwork/getAllTargetedMessages","mismatch","Get-MgUserTeamworkTargetedMessage" +"Cmdlets","GetMgUserTeamworkInstalledApp_Get.g.cs","v1.0","Get-MgUserTeamworkInstalledApp","GET","/users/{param}/teamwork/installedApps/{param}","matched","Get-MgUserTeamworkInstalledApp" +"Cmdlets","GetMgUserTeamworkInstalledApp_List.g.cs","v1.0","Get-MgUserTeamworkInstalledApp","GET","/users/{param}/teamwork/installedApps","matched","Get-MgUserTeamworkInstalledApp" +"Cmdlets","GetMgUserTeamworkInstalledApp.g.cs","v1.0","Get-MgUserTeamworkInstalledApp","","","dispatcher","" +"Cmdlets","GetMgUserTeamworkInstalledAppChat.g.cs","v1.0","Get-MgUserTeamworkInstalledAppChat","GET","/users/{param}/teamwork/installedApps/{param}/chat","matched","Get-MgUserTeamworkInstalledAppChat" +"Cmdlets","GetMgUserTeamworkInstalledAppCount.g.cs","v1.0","Get-MgUserTeamworkInstalledAppCount","GET","/users/{param}/teamwork/installedApps/$count","matched","Get-MgUserTeamworkInstalledAppCount" +"Cmdlets","GetMgUserTeamworkInstalledAppTeamApp.g.cs","v1.0","Get-MgUserTeamworkInstalledAppTeamApp","GET","/users/{param}/teamwork/installedApps/{param}/teamsApp","matched","Get-MgUserTeamworkInstalledAppTeamApp" +"Cmdlets","GetMgUserTeamworkInstalledAppTeamAppDefinition.g.cs","v1.0","Get-MgUserTeamworkInstalledAppTeamAppDefinition","GET","/users/{param}/teamwork/installedApps/{param}/teamsAppDefinition","matched","Get-MgUserTeamworkInstalledAppTeamAppDefinition" +"Cmdlets","InvokeMgChatCompleteMigration.g.cs","v1.0","Invoke-MgChatCompleteMigration","POST","/chats/{param}/completeMigration","mismatch","Complete-MgChatMigration" +"Cmdlets","InvokeMgChatHideForUser.g.cs","v1.0","Invoke-MgChatHideForUser","POST","/chats/{param}/hideForUser","mismatch","Hide-MgChatForUser" +"Cmdlets","InvokeMgChatInstalledAppUpgrade.g.cs","v1.0","Invoke-MgChatInstalledAppUpgrade","POST","/chats/{param}/installedApps/{param}/upgrade","mismatch","Update-MgChatInstalledApp" +"Cmdlets","InvokeMgChatMarkChatReadForUser.g.cs","v1.0","Invoke-MgChatMarkChatReadForUser","POST","/chats/{param}/markChatReadForUser","mismatch","Invoke-MgMarkChatReadForUser" +"Cmdlets","InvokeMgChatMarkChatUnreadForUser.g.cs","v1.0","Invoke-MgChatMarkChatUnreadForUser","POST","/chats/{param}/markChatUnreadForUser","mismatch","Invoke-MgMarkChatUnreadForUser" +"Cmdlets","InvokeMgChatMemberAdd.g.cs","v1.0","Invoke-MgChatMemberAdd","POST","/chats/{param}/members/add","mismatch","Add-MgChatMember" +"Cmdlets","InvokeMgChatMemberRemove.g.cs","v1.0","Invoke-MgChatMemberRemove","POST","/chats/{param}/members/remove","no-oracle","" +"Cmdlets","InvokeMgChatMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgChatMessageReplyReplyWithQuote","POST","/chats/{param}/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphChatMessageReply" +"Cmdlets","InvokeMgChatMessageReplySetReaction.g.cs","v1.0","Invoke-MgChatMessageReplySetReaction","POST","/chats/{param}/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgChatMessageReplyReaction" +"Cmdlets","InvokeMgChatMessageReplySoftDelete.g.cs","v1.0","Invoke-MgChatMessageReplySoftDelete","POST","/chats/{param}/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftChatMessageReplyDelete" +"Cmdlets","InvokeMgChatMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgChatMessageReplyUndoSoftDelete","POST","/chats/{param}/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgChatMessageReplySoftDelete" +"Cmdlets","InvokeMgChatMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgChatMessageReplyUnsetReaction","POST","/chats/{param}/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgChatMessageReplyReaction" +"Cmdlets","InvokeMgChatMessageReplyWithQuote.g.cs","v1.0","Invoke-MgChatMessageReplyWithQuote","POST","/chats/{param}/messages/replyWithQuote","mismatch","Invoke-MgGraphChatMessage" +"Cmdlets","InvokeMgChatMessageSetReaction.g.cs","v1.0","Invoke-MgChatMessageSetReaction","POST","/chats/{param}/messages/{param}/setReaction","mismatch","Set-MgChatMessageReaction" +"Cmdlets","InvokeMgChatMessageSoftDelete.g.cs","v1.0","Invoke-MgChatMessageSoftDelete","POST","/chats/{param}/messages/{param}/softDelete","mismatch","Invoke-MgSoftChatMessageDelete" +"Cmdlets","InvokeMgChatMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgChatMessageUndoSoftDelete","POST","/chats/{param}/messages/{param}/undoSoftDelete","mismatch","Undo-MgChatMessageSoftDelete" +"Cmdlets","InvokeMgChatMessageUnsetReaction.g.cs","v1.0","Invoke-MgChatMessageUnsetReaction","POST","/chats/{param}/messages/{param}/unsetReaction","mismatch","Clear-MgChatMessageReaction" +"Cmdlets","InvokeMgChatRemoveAllAccessForUser.g.cs","v1.0","Invoke-MgChatRemoveAllAccessForUser","POST","/chats/{param}/removeAllAccessForUser","mismatch","Remove-MgChatAccessForUser" +"Cmdlets","InvokeMgChatSendActivityNotification.g.cs","v1.0","Invoke-MgChatSendActivityNotification","POST","/chats/{param}/sendActivityNotification","mismatch","Send-MgChatActivityNotification" +"Cmdlets","InvokeMgChatStartMigration.g.cs","v1.0","Invoke-MgChatStartMigration","POST","/chats/{param}/startMigration","mismatch","Start-MgChatMigration" +"Cmdlets","InvokeMgChatTargetedMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgChatTargetedMessageReplyReplyWithQuote","POST","/chats/{param}/targetedMessages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphChatTargetedMessageReply" +"Cmdlets","InvokeMgChatTargetedMessageReplySetReaction.g.cs","v1.0","Invoke-MgChatTargetedMessageReplySetReaction","POST","/chats/{param}/targetedMessages/{param}/replies/{param}/setReaction","mismatch","Set-MgChatTargetedMessageReplyReaction" +"Cmdlets","InvokeMgChatTargetedMessageReplySoftDelete.g.cs","v1.0","Invoke-MgChatTargetedMessageReplySoftDelete","POST","/chats/{param}/targetedMessages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftChatTargetedMessageReplyDelete" +"Cmdlets","InvokeMgChatTargetedMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgChatTargetedMessageReplyUndoSoftDelete","POST","/chats/{param}/targetedMessages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgChatTargetedMessageReplySoftDelete" +"Cmdlets","InvokeMgChatTargetedMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgChatTargetedMessageReplyUnsetReaction","POST","/chats/{param}/targetedMessages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgChatTargetedMessageReplyReaction" +"Cmdlets","InvokeMgChatUnhideForUser.g.cs","v1.0","Invoke-MgChatUnhideForUser","POST","/chats/{param}/unhideForUser","mismatch","Invoke-MgGraphChat" +"Cmdlets","InvokeMgGroupTeamArchive.g.cs","v1.0","Invoke-MgGroupTeamArchive","POST","/groups/{param}/team/archive","mismatch","Invoke-MgArchiveGroupTeam" +"Cmdlets","InvokeMgGroupTeamChannelAllMemberAdd.g.cs","v1.0","Invoke-MgGroupTeamChannelAllMemberAdd","POST","/groups/{param}/team/channels/{param}/allMembers/add","mismatch","Add-MgGroupTeamChannelAllMember" +"Cmdlets","InvokeMgGroupTeamChannelAllMemberRemove.g.cs","v1.0","Invoke-MgGroupTeamChannelAllMemberRemove","POST","/groups/{param}/team/channels/{param}/allMembers/remove","mismatch","Remove-MgGroupTeamChannelAllMember" +"Cmdlets","InvokeMgGroupTeamChannelArchive.g.cs","v1.0","Invoke-MgGroupTeamChannelArchive","POST","/groups/{param}/team/channels/{param}/archive","mismatch","Invoke-MgArchiveGroupTeamChannel" +"Cmdlets","InvokeMgGroupTeamChannelCompleteMigration.g.cs","v1.0","Invoke-MgGroupTeamChannelCompleteMigration","POST","/groups/{param}/team/channels/{param}/completeMigration","mismatch","Complete-MgGroupTeamChannelMigration" +"Cmdlets","InvokeMgGroupTeamChannelMemberAdd.g.cs","v1.0","Invoke-MgGroupTeamChannelMemberAdd","POST","/groups/{param}/team/channels/{param}/members/add","mismatch","Add-MgGroupTeamChannelMember" +"Cmdlets","InvokeMgGroupTeamChannelMemberRemove.g.cs","v1.0","Invoke-MgGroupTeamChannelMemberRemove","POST","/groups/{param}/team/channels/{param}/members/remove","no-oracle","" +"Cmdlets","InvokeMgGroupTeamChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageReplyReplyWithQuote","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphGroupTeamChannelMessageReply" +"Cmdlets","InvokeMgGroupTeamChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageReplySetReaction","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgGroupTeamChannelMessageReplyReaction" +"Cmdlets","InvokeMgGroupTeamChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageReplySoftDelete","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftGroupTeamChannelMessageReplyDelete" +"Cmdlets","InvokeMgGroupTeamChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageReplyUndoSoftDelete","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgGroupTeamChannelMessageReplySoftDelete" +"Cmdlets","InvokeMgGroupTeamChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageReplyUnsetReaction","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgGroupTeamChannelMessageReplyReaction" +"Cmdlets","InvokeMgGroupTeamChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageReplyWithQuote","POST","/groups/{param}/team/channels/{param}/messages/replyWithQuote","mismatch","Invoke-MgGraphGroupTeamChannelMessage" +"Cmdlets","InvokeMgGroupTeamChannelMessageSetReaction.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageSetReaction","POST","/groups/{param}/team/channels/{param}/messages/{param}/setReaction","mismatch","Set-MgGroupTeamChannelMessageReaction" +"Cmdlets","InvokeMgGroupTeamChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageSoftDelete","POST","/groups/{param}/team/channels/{param}/messages/{param}/softDelete","mismatch","Invoke-MgSoftGroupTeamChannelMessageDelete" +"Cmdlets","InvokeMgGroupTeamChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageUndoSoftDelete","POST","/groups/{param}/team/channels/{param}/messages/{param}/undoSoftDelete","mismatch","Undo-MgGroupTeamChannelMessageSoftDelete" +"Cmdlets","InvokeMgGroupTeamChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageUnsetReaction","POST","/groups/{param}/team/channels/{param}/messages/{param}/unsetReaction","mismatch","Clear-MgGroupTeamChannelMessageReaction" +"Cmdlets","InvokeMgGroupTeamChannelProvisionEmail.g.cs","v1.0","Invoke-MgGroupTeamChannelProvisionEmail","POST","/groups/{param}/team/channels/{param}/provisionEmail","mismatch","New-MgGroupTeamChannelEmail" +"Cmdlets","InvokeMgGroupTeamChannelRemoveEmail.g.cs","v1.0","Invoke-MgGroupTeamChannelRemoveEmail","POST","/groups/{param}/team/channels/{param}/removeEmail","mismatch","Remove-MgGroupTeamChannelEmail" +"Cmdlets","InvokeMgGroupTeamChannelStartMigration.g.cs","v1.0","Invoke-MgGroupTeamChannelStartMigration","POST","/groups/{param}/team/channels/{param}/startMigration","mismatch","Start-MgGroupTeamChannelMigration" +"Cmdlets","InvokeMgGroupTeamChannelUnarchive.g.cs","v1.0","Invoke-MgGroupTeamChannelUnarchive","POST","/groups/{param}/team/channels/{param}/unarchive","mismatch","Invoke-MgUnarchiveGroupTeamChannel" +"Cmdlets","InvokeMgGroupTeamClone.g.cs","v1.0","Invoke-MgGroupTeamClone","POST","/groups/{param}/team/clone","mismatch","Copy-MgGroupTeam" +"Cmdlets","InvokeMgGroupTeamCompleteMigration.g.cs","v1.0","Invoke-MgGroupTeamCompleteMigration","POST","/groups/{param}/team/completeMigration","mismatch","Complete-MgGroupTeamMigration" +"Cmdlets","InvokeMgGroupTeamInstalledAppUpgrade.g.cs","v1.0","Invoke-MgGroupTeamInstalledAppUpgrade","POST","/groups/{param}/team/installedApps/{param}/upgrade","mismatch","Update-MgGroupTeamInstalledApp" +"Cmdlets","InvokeMgGroupTeamMemberAdd.g.cs","v1.0","Invoke-MgGroupTeamMemberAdd","POST","/groups/{param}/team/members/add","mismatch","Add-MgGroupTeamMember" +"Cmdlets","InvokeMgGroupTeamMemberRemove.g.cs","v1.0","Invoke-MgGroupTeamMemberRemove","POST","/groups/{param}/team/members/remove","no-oracle","" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelAllMemberAdd.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelAllMemberAdd","POST","/groups/{param}/team/primaryChannel/allMembers/add","mismatch","Add-MgGroupTeamPrimaryChannelAllMember" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelAllMemberRemove.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelAllMemberRemove","POST","/groups/{param}/team/primaryChannel/allMembers/remove","mismatch","Remove-MgGroupTeamPrimaryChannelAllMember" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelArchive.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelArchive","POST","/groups/{param}/team/primaryChannel/archive","mismatch","Invoke-MgArchiveGroupTeamPrimaryChannel" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelCompleteMigration.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelCompleteMigration","POST","/groups/{param}/team/primaryChannel/completeMigration","mismatch","Complete-MgGroupTeamPrimaryChannelMigration" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelMemberAdd.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMemberAdd","POST","/groups/{param}/team/primaryChannel/members/add","mismatch","Add-MgGroupTeamPrimaryChannelMember" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelMemberRemove.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMemberRemove","POST","/groups/{param}/team/primaryChannel/members/remove","no-oracle","" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageReplyReplyWithQuote","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphGroupTeamPrimaryChannelMessageReply" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageReplySetReaction","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgGroupTeamPrimaryChannelMessageReplyReaction" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageReplySoftDelete","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftGroupTeamPrimaryChannelMessageReplyDelete" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageReplyUndoSoftDelete","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgGroupTeamPrimaryChannelMessageReplySoftDelete" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageReplyUnsetReaction","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgGroupTeamPrimaryChannelMessageReplyReaction" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageReplyWithQuote","POST","/groups/{param}/team/primaryChannel/messages/replyWithQuote","mismatch","Invoke-MgGraphGroupTeamPrimaryChannelMessage" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelMessageSetReaction.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageSetReaction","POST","/groups/{param}/team/primaryChannel/messages/{param}/setReaction","mismatch","Set-MgGroupTeamPrimaryChannelMessageReaction" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageSoftDelete","POST","/groups/{param}/team/primaryChannel/messages/{param}/softDelete","mismatch","Invoke-MgSoftGroupTeamPrimaryChannelMessageDelete" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageUndoSoftDelete","POST","/groups/{param}/team/primaryChannel/messages/{param}/undoSoftDelete","mismatch","Undo-MgGroupTeamPrimaryChannelMessageSoftDelete" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageUnsetReaction","POST","/groups/{param}/team/primaryChannel/messages/{param}/unsetReaction","mismatch","Clear-MgGroupTeamPrimaryChannelMessageReaction" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelProvisionEmail.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelProvisionEmail","POST","/groups/{param}/team/primaryChannel/provisionEmail","mismatch","New-MgGroupTeamPrimaryChannelEmail" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelRemoveEmail.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelRemoveEmail","POST","/groups/{param}/team/primaryChannel/removeEmail","mismatch","Remove-MgGroupTeamPrimaryChannelEmail" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelStartMigration.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelStartMigration","POST","/groups/{param}/team/primaryChannel/startMigration","mismatch","Start-MgGroupTeamPrimaryChannelMigration" +"Cmdlets","InvokeMgGroupTeamPrimaryChannelUnarchive.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelUnarchive","POST","/groups/{param}/team/primaryChannel/unarchive","mismatch","Invoke-MgUnarchiveGroupTeamPrimaryChannel" +"Cmdlets","InvokeMgGroupTeamScheduleShare.g.cs","v1.0","Invoke-MgGroupTeamScheduleShare","POST","/groups/{param}/team/schedule/share","mismatch","Invoke-MgShareGroupTeamSchedule" +"Cmdlets","InvokeMgGroupTeamScheduleTimeCardClockIn.g.cs","v1.0","Invoke-MgGroupTeamScheduleTimeCardClockIn","POST","/groups/{param}/team/schedule/timeCards/clockIn","mismatch","Invoke-MgClockGroupTeamScheduleTimeCardIn" +"Cmdlets","InvokeMgGroupTeamScheduleTimeCardClockOut.g.cs","v1.0","Invoke-MgGroupTeamScheduleTimeCardClockOut","POST","/groups/{param}/team/schedule/timeCards/{param}/clockOut","mismatch","Invoke-MgClockGroupTeamScheduleTimeCardOut" +"Cmdlets","InvokeMgGroupTeamScheduleTimeCardConfirm.g.cs","v1.0","Invoke-MgGroupTeamScheduleTimeCardConfirm","POST","/groups/{param}/team/schedule/timeCards/{param}/confirm","mismatch","Confirm-MgGroupTeamScheduleTimeCard" +"Cmdlets","InvokeMgGroupTeamScheduleTimeCardEndBreak.g.cs","v1.0","Invoke-MgGroupTeamScheduleTimeCardEndBreak","POST","/groups/{param}/team/schedule/timeCards/{param}/endBreak","mismatch","Stop-MgGroupTeamScheduleTimeCardBreak" +"Cmdlets","InvokeMgGroupTeamScheduleTimeCardStartBreak.g.cs","v1.0","Invoke-MgGroupTeamScheduleTimeCardStartBreak","POST","/groups/{param}/team/schedule/timeCards/{param}/startBreak","mismatch","Start-MgGroupTeamScheduleTimeCardBreak" +"Cmdlets","InvokeMgGroupTeamSendActivityNotification.g.cs","v1.0","Invoke-MgGroupTeamSendActivityNotification","POST","/groups/{param}/team/sendActivityNotification","mismatch","Send-MgGroupTeamActivityNotification" +"Cmdlets","InvokeMgGroupTeamUnarchive.g.cs","v1.0","Invoke-MgGroupTeamUnarchive","POST","/groups/{param}/team/unarchive","mismatch","Invoke-MgUnarchiveGroupTeam" +"Cmdlets","InvokeMgTeamArchive.g.cs","v1.0","Invoke-MgTeamArchive","POST","/teams/{param}/archive","mismatch","Invoke-MgArchiveTeam" +"Cmdlets","InvokeMgTeamChannelAllMemberAdd.g.cs","v1.0","Invoke-MgTeamChannelAllMemberAdd","POST","/teams/{param}/channels/{param}/allMembers/add","mismatch","Add-MgTeamChannelAllMember" +"Cmdlets","InvokeMgTeamChannelAllMemberRemove.g.cs","v1.0","Invoke-MgTeamChannelAllMemberRemove","POST","/teams/{param}/channels/{param}/allMembers/remove","mismatch","Remove-MgTeamChannelAllMember" +"Cmdlets","InvokeMgTeamChannelArchive.g.cs","v1.0","Invoke-MgTeamChannelArchive","POST","/teams/{param}/channels/{param}/archive","mismatch","Invoke-MgArchiveTeamChannel" +"Cmdlets","InvokeMgTeamChannelCompleteMigration.g.cs","v1.0","Invoke-MgTeamChannelCompleteMigration","POST","/teams/{param}/channels/{param}/completeMigration","mismatch","Complete-MgTeamChannelMigration" +"Cmdlets","InvokeMgTeamChannelMemberAdd.g.cs","v1.0","Invoke-MgTeamChannelMemberAdd","POST","/teams/{param}/channels/{param}/members/add","mismatch","Add-MgTeamChannelMember" +"Cmdlets","InvokeMgTeamChannelMemberRemove.g.cs","v1.0","Invoke-MgTeamChannelMemberRemove","POST","/teams/{param}/channels/{param}/members/remove","no-oracle","" +"Cmdlets","InvokeMgTeamChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgTeamChannelMessageReplyReplyWithQuote","POST","/teams/{param}/channels/{param}/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphTeamChannelMessageReply" +"Cmdlets","InvokeMgTeamChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgTeamChannelMessageReplySetReaction","POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgTeamChannelMessageReplyReaction" +"Cmdlets","InvokeMgTeamChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgTeamChannelMessageReplySoftDelete","POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftTeamChannelMessageReplyDelete" +"Cmdlets","InvokeMgTeamChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgTeamChannelMessageReplyUndoSoftDelete","POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgTeamChannelMessageReplySoftDelete" +"Cmdlets","InvokeMgTeamChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgTeamChannelMessageReplyUnsetReaction","POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgTeamChannelMessageReplyReaction" +"Cmdlets","InvokeMgTeamChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgTeamChannelMessageReplyWithQuote","POST","/teams/{param}/channels/{param}/messages/replyWithQuote","mismatch","Invoke-MgGraphTeamChannelMessage" +"Cmdlets","InvokeMgTeamChannelMessageSetReaction.g.cs","v1.0","Invoke-MgTeamChannelMessageSetReaction","POST","/teams/{param}/channels/{param}/messages/{param}/setReaction","mismatch","Set-MgTeamChannelMessageReaction" +"Cmdlets","InvokeMgTeamChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgTeamChannelMessageSoftDelete","POST","/teams/{param}/channels/{param}/messages/{param}/softDelete","mismatch","Invoke-MgSoftTeamChannelMessageDelete" +"Cmdlets","InvokeMgTeamChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgTeamChannelMessageUndoSoftDelete","POST","/teams/{param}/channels/{param}/messages/{param}/undoSoftDelete","mismatch","Undo-MgTeamChannelMessageSoftDelete" +"Cmdlets","InvokeMgTeamChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgTeamChannelMessageUnsetReaction","POST","/teams/{param}/channels/{param}/messages/{param}/unsetReaction","mismatch","Clear-MgTeamChannelMessageReaction" +"Cmdlets","InvokeMgTeamChannelProvisionEmail.g.cs","v1.0","Invoke-MgTeamChannelProvisionEmail","POST","/teams/{param}/channels/{param}/provisionEmail","mismatch","New-MgTeamChannelEmail" +"Cmdlets","InvokeMgTeamChannelRemoveEmail.g.cs","v1.0","Invoke-MgTeamChannelRemoveEmail","POST","/teams/{param}/channels/{param}/removeEmail","mismatch","Remove-MgTeamChannelEmail" +"Cmdlets","InvokeMgTeamChannelStartMigration.g.cs","v1.0","Invoke-MgTeamChannelStartMigration","POST","/teams/{param}/channels/{param}/startMigration","mismatch","Start-MgTeamChannelMigration" +"Cmdlets","InvokeMgTeamChannelUnarchive.g.cs","v1.0","Invoke-MgTeamChannelUnarchive","POST","/teams/{param}/channels/{param}/unarchive","mismatch","Invoke-MgUnarchiveTeamChannel" +"Cmdlets","InvokeMgTeamClone.g.cs","v1.0","Invoke-MgTeamClone","POST","/teams/{param}/clone","mismatch","Copy-MgTeam" +"Cmdlets","InvokeMgTeamCompleteMigration.g.cs","v1.0","Invoke-MgTeamCompleteMigration","POST","/teams/{param}/completeMigration","mismatch","Complete-MgTeamMigration" +"Cmdlets","InvokeMgTeamInstalledAppUpgrade.g.cs","v1.0","Invoke-MgTeamInstalledAppUpgrade","POST","/teams/{param}/installedApps/{param}/upgrade","mismatch","Update-MgTeamInstalledApp" +"Cmdlets","InvokeMgTeamMemberAdd.g.cs","v1.0","Invoke-MgTeamMemberAdd","POST","/teams/{param}/members/add","mismatch","Add-MgTeamMember" +"Cmdlets","InvokeMgTeamMemberRemove.g.cs","v1.0","Invoke-MgTeamMemberRemove","POST","/teams/{param}/members/remove","no-oracle","" +"Cmdlets","InvokeMgTeamPrimaryChannelAllMemberAdd.g.cs","v1.0","Invoke-MgTeamPrimaryChannelAllMemberAdd","POST","/teams/{param}/primaryChannel/allMembers/add","mismatch","Add-MgTeamPrimaryChannelAllMember" +"Cmdlets","InvokeMgTeamPrimaryChannelAllMemberRemove.g.cs","v1.0","Invoke-MgTeamPrimaryChannelAllMemberRemove","POST","/teams/{param}/primaryChannel/allMembers/remove","mismatch","Remove-MgTeamPrimaryChannelAllMember" +"Cmdlets","InvokeMgTeamPrimaryChannelArchive.g.cs","v1.0","Invoke-MgTeamPrimaryChannelArchive","POST","/teams/{param}/primaryChannel/archive","mismatch","Invoke-MgArchiveTeamPrimaryChannel" +"Cmdlets","InvokeMgTeamPrimaryChannelCompleteMigration.g.cs","v1.0","Invoke-MgTeamPrimaryChannelCompleteMigration","POST","/teams/{param}/primaryChannel/completeMigration","mismatch","Complete-MgTeamPrimaryChannelMigration" +"Cmdlets","InvokeMgTeamPrimaryChannelMemberAdd.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMemberAdd","POST","/teams/{param}/primaryChannel/members/add","mismatch","Add-MgTeamPrimaryChannelMember" +"Cmdlets","InvokeMgTeamPrimaryChannelMemberRemove.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMemberRemove","POST","/teams/{param}/primaryChannel/members/remove","no-oracle","" +"Cmdlets","InvokeMgTeamPrimaryChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageReplyReplyWithQuote","POST","/teams/{param}/primaryChannel/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphTeamPrimaryChannelMessageReply" +"Cmdlets","InvokeMgTeamPrimaryChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageReplySetReaction","POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgTeamPrimaryChannelMessageReplyReaction" +"Cmdlets","InvokeMgTeamPrimaryChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageReplySoftDelete","POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftTeamPrimaryChannelMessageReplyDelete" +"Cmdlets","InvokeMgTeamPrimaryChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageReplyUndoSoftDelete","POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgTeamPrimaryChannelMessageReplySoftDelete" +"Cmdlets","InvokeMgTeamPrimaryChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageReplyUnsetReaction","POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgTeamPrimaryChannelMessageReplyReaction" +"Cmdlets","InvokeMgTeamPrimaryChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageReplyWithQuote","POST","/teams/{param}/primaryChannel/messages/replyWithQuote","mismatch","Invoke-MgGraphTeamPrimaryChannelMessage" +"Cmdlets","InvokeMgTeamPrimaryChannelMessageSetReaction.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageSetReaction","POST","/teams/{param}/primaryChannel/messages/{param}/setReaction","mismatch","Set-MgTeamPrimaryChannelMessageReaction" +"Cmdlets","InvokeMgTeamPrimaryChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageSoftDelete","POST","/teams/{param}/primaryChannel/messages/{param}/softDelete","mismatch","Invoke-MgSoftTeamPrimaryChannelMessageDelete" +"Cmdlets","InvokeMgTeamPrimaryChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageUndoSoftDelete","POST","/teams/{param}/primaryChannel/messages/{param}/undoSoftDelete","mismatch","Undo-MgTeamPrimaryChannelMessageSoftDelete" +"Cmdlets","InvokeMgTeamPrimaryChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageUnsetReaction","POST","/teams/{param}/primaryChannel/messages/{param}/unsetReaction","mismatch","Clear-MgTeamPrimaryChannelMessageReaction" +"Cmdlets","InvokeMgTeamPrimaryChannelProvisionEmail.g.cs","v1.0","Invoke-MgTeamPrimaryChannelProvisionEmail","POST","/teams/{param}/primaryChannel/provisionEmail","mismatch","New-MgTeamPrimaryChannelEmail" +"Cmdlets","InvokeMgTeamPrimaryChannelRemoveEmail.g.cs","v1.0","Invoke-MgTeamPrimaryChannelRemoveEmail","POST","/teams/{param}/primaryChannel/removeEmail","mismatch","Remove-MgTeamPrimaryChannelEmail" +"Cmdlets","InvokeMgTeamPrimaryChannelStartMigration.g.cs","v1.0","Invoke-MgTeamPrimaryChannelStartMigration","POST","/teams/{param}/primaryChannel/startMigration","mismatch","Start-MgTeamPrimaryChannelMigration" +"Cmdlets","InvokeMgTeamPrimaryChannelUnarchive.g.cs","v1.0","Invoke-MgTeamPrimaryChannelUnarchive","POST","/teams/{param}/primaryChannel/unarchive","mismatch","Invoke-MgUnarchiveTeamPrimaryChannel" +"Cmdlets","InvokeMgTeamScheduleShare.g.cs","v1.0","Invoke-MgTeamScheduleShare","POST","/teams/{param}/schedule/share","mismatch","Invoke-MgShareTeamSchedule" +"Cmdlets","InvokeMgTeamScheduleTimeCardClockIn.g.cs","v1.0","Invoke-MgTeamScheduleTimeCardClockIn","POST","/teams/{param}/schedule/timeCards/clockIn","mismatch","Invoke-MgClockTeamScheduleTimeCardIn" +"Cmdlets","InvokeMgTeamScheduleTimeCardClockOut.g.cs","v1.0","Invoke-MgTeamScheduleTimeCardClockOut","POST","/teams/{param}/schedule/timeCards/{param}/clockOut","mismatch","Invoke-MgClockTeamScheduleTimeCardOut" +"Cmdlets","InvokeMgTeamScheduleTimeCardConfirm.g.cs","v1.0","Invoke-MgTeamScheduleTimeCardConfirm","POST","/teams/{param}/schedule/timeCards/{param}/confirm","mismatch","Confirm-MgTeamScheduleTimeCard" +"Cmdlets","InvokeMgTeamScheduleTimeCardEndBreak.g.cs","v1.0","Invoke-MgTeamScheduleTimeCardEndBreak","POST","/teams/{param}/schedule/timeCards/{param}/endBreak","mismatch","Stop-MgTeamScheduleTimeCardBreak" +"Cmdlets","InvokeMgTeamScheduleTimeCardStartBreak.g.cs","v1.0","Invoke-MgTeamScheduleTimeCardStartBreak","POST","/teams/{param}/schedule/timeCards/{param}/startBreak","mismatch","Start-MgTeamScheduleTimeCardBreak" +"Cmdlets","InvokeMgTeamSendActivityNotification.g.cs","v1.0","Invoke-MgTeamSendActivityNotification","POST","/teams/{param}/sendActivityNotification","mismatch","Send-MgTeamActivityNotification" +"Cmdlets","InvokeMgTeamUnarchive.g.cs","v1.0","Invoke-MgTeamUnarchive","POST","/teams/{param}/unarchive","mismatch","Invoke-MgUnarchiveTeam" +"Cmdlets","InvokeMgTeamworkDeletedChatUndoDelete.g.cs","v1.0","Invoke-MgTeamworkDeletedChatUndoDelete","POST","/teamwork/deletedChats/{param}/undoDelete","mismatch","Undo-MgTeamworkDeletedChatDelete" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelAllMemberAdd.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelAllMemberAdd","POST","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/add","mismatch","Add-MgTeamworkDeletedTeamChannelAllMember" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelAllMemberRemove.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelAllMemberRemove","POST","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/remove","mismatch","Remove-MgTeamworkDeletedTeamChannelAllMember" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelArchive.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelArchive","POST","/teamwork/deletedTeams/{param}/channels/{param}/archive","mismatch","Invoke-MgArchiveTeamworkDeletedTeamChannel" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelCompleteMigration.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelCompleteMigration","POST","/teamwork/deletedTeams/{param}/channels/{param}/completeMigration","mismatch","Complete-MgTeamworkDeletedTeamChannelMigration" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelMemberAdd.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMemberAdd","POST","/teamwork/deletedTeams/{param}/channels/{param}/members/add","mismatch","Add-MgTeamworkDeletedTeamChannelMember" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelMemberRemove.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMemberRemove","POST","/teamwork/deletedTeams/{param}/channels/{param}/members/remove","no-oracle","" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageReplyReplyWithQuote","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphTeamworkDeletedTeamChannelMessageReply" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageReplySetReaction","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgTeamworkDeletedTeamChannelMessageReplyReaction" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageReplySoftDelete","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftTeamworkDeletedTeamChannelMessageReplyDelete" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageReplyUndoSoftDelete","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgTeamworkDeletedTeamChannelMessageReplySoftDelete" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageReplyUnsetReaction","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgTeamworkDeletedTeamChannelMessageReplyReaction" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageReplyWithQuote","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/replyWithQuote","mismatch","Invoke-MgGraphTeamworkDeletedTeamChannelMessage" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelMessageSetReaction.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageSetReaction","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/setReaction","mismatch","Set-MgTeamworkDeletedTeamChannelMessageReaction" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageSoftDelete","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/softDelete","mismatch","Invoke-MgSoftTeamworkDeletedTeamChannelMessageDelete" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageUndoSoftDelete","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/undoSoftDelete","mismatch","Undo-MgTeamworkDeletedTeamChannelMessageSoftDelete" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageUnsetReaction","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/unsetReaction","mismatch","Clear-MgTeamworkDeletedTeamChannelMessageReaction" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelProvisionEmail.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelProvisionEmail","POST","/teamwork/deletedTeams/{param}/channels/{param}/provisionEmail","mismatch","New-MgTeamworkDeletedTeamChannelEmail" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelRemoveEmail.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelRemoveEmail","POST","/teamwork/deletedTeams/{param}/channels/{param}/removeEmail","mismatch","Remove-MgTeamworkDeletedTeamChannelEmail" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelStartMigration.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelStartMigration","POST","/teamwork/deletedTeams/{param}/channels/{param}/startMigration","mismatch","Start-MgTeamworkDeletedTeamChannelMigration" +"Cmdlets","InvokeMgTeamworkDeletedTeamChannelUnarchive.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelUnarchive","POST","/teamwork/deletedTeams/{param}/channels/{param}/unarchive","mismatch","Invoke-MgUnarchiveTeamworkDeletedTeamChannel" +"Cmdlets","InvokeMgTeamworkSendActivityNotificationToRecipients.g.cs","v1.0","Invoke-MgTeamworkSendActivityNotificationToRecipients","POST","/teamwork/sendActivityNotificationToRecipients","mismatch","Send-MgTeamworkActivityNotificationToRecipient" +"Cmdlets","InvokeMgUserChatCompleteMigration.g.cs","v1.0","Invoke-MgUserChatCompleteMigration","POST","/users/{param}/chats/{param}/completeMigration","mismatch","Complete-MgUserChatMigration" +"Cmdlets","InvokeMgUserChatHideForUser.g.cs","v1.0","Invoke-MgUserChatHideForUser","POST","/users/{param}/chats/{param}/hideForUser","mismatch","Hide-MgUserChatForUser" +"Cmdlets","InvokeMgUserChatInstalledAppUpgrade.g.cs","v1.0","Invoke-MgUserChatInstalledAppUpgrade","POST","/users/{param}/chats/{param}/installedApps/{param}/upgrade","mismatch","Update-MgUserChatInstalledApp" +"Cmdlets","InvokeMgUserChatMarkChatReadForUser.g.cs","v1.0","Invoke-MgUserChatMarkChatReadForUser","POST","/users/{param}/chats/{param}/markChatReadForUser","mismatch","Invoke-MgMarkUserChatReadForUser" +"Cmdlets","InvokeMgUserChatMarkChatUnreadForUser.g.cs","v1.0","Invoke-MgUserChatMarkChatUnreadForUser","POST","/users/{param}/chats/{param}/markChatUnreadForUser","mismatch","Invoke-MgMarkUserChatUnreadForUser" +"Cmdlets","InvokeMgUserChatMemberAdd.g.cs","v1.0","Invoke-MgUserChatMemberAdd","POST","/users/{param}/chats/{param}/members/add","mismatch","Add-MgUserChatMember" +"Cmdlets","InvokeMgUserChatMemberRemove.g.cs","v1.0","Invoke-MgUserChatMemberRemove","POST","/users/{param}/chats/{param}/members/remove","no-oracle","" +"Cmdlets","InvokeMgUserChatMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgUserChatMessageReplyReplyWithQuote","POST","/users/{param}/chats/{param}/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphUserChatMessageReply" +"Cmdlets","InvokeMgUserChatMessageReplySetReaction.g.cs","v1.0","Invoke-MgUserChatMessageReplySetReaction","POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgUserChatMessageReplyReaction" +"Cmdlets","InvokeMgUserChatMessageReplySoftDelete.g.cs","v1.0","Invoke-MgUserChatMessageReplySoftDelete","POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftUserChatMessageReplyDelete" +"Cmdlets","InvokeMgUserChatMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgUserChatMessageReplyUndoSoftDelete","POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgUserChatMessageReplySoftDelete" +"Cmdlets","InvokeMgUserChatMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgUserChatMessageReplyUnsetReaction","POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgUserChatMessageReplyReaction" +"Cmdlets","InvokeMgUserChatMessageReplyWithQuote.g.cs","v1.0","Invoke-MgUserChatMessageReplyWithQuote","POST","/users/{param}/chats/{param}/messages/replyWithQuote","mismatch","Invoke-MgGraphUserChatMessage" +"Cmdlets","InvokeMgUserChatMessageSetReaction.g.cs","v1.0","Invoke-MgUserChatMessageSetReaction","POST","/users/{param}/chats/{param}/messages/{param}/setReaction","mismatch","Set-MgUserChatMessageReaction" +"Cmdlets","InvokeMgUserChatMessageSoftDelete.g.cs","v1.0","Invoke-MgUserChatMessageSoftDelete","POST","/users/{param}/chats/{param}/messages/{param}/softDelete","mismatch","Invoke-MgSoftUserChatMessageDelete" +"Cmdlets","InvokeMgUserChatMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgUserChatMessageUndoSoftDelete","POST","/users/{param}/chats/{param}/messages/{param}/undoSoftDelete","mismatch","Undo-MgUserChatMessageSoftDelete" +"Cmdlets","InvokeMgUserChatMessageUnsetReaction.g.cs","v1.0","Invoke-MgUserChatMessageUnsetReaction","POST","/users/{param}/chats/{param}/messages/{param}/unsetReaction","mismatch","Clear-MgUserChatMessageReaction" +"Cmdlets","InvokeMgUserChatRemoveAllAccessForUser.g.cs","v1.0","Invoke-MgUserChatRemoveAllAccessForUser","POST","/users/{param}/chats/{param}/removeAllAccessForUser","mismatch","Remove-MgUserChatAccessForUser" +"Cmdlets","InvokeMgUserChatSendActivityNotification.g.cs","v1.0","Invoke-MgUserChatSendActivityNotification","POST","/users/{param}/chats/{param}/sendActivityNotification","mismatch","Send-MgUserChatActivityNotification" +"Cmdlets","InvokeMgUserChatStartMigration.g.cs","v1.0","Invoke-MgUserChatStartMigration","POST","/users/{param}/chats/{param}/startMigration","mismatch","Start-MgUserChatMigration" +"Cmdlets","InvokeMgUserChatTargetedMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgUserChatTargetedMessageReplyReplyWithQuote","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphUserChatTargetedMessageReply" +"Cmdlets","InvokeMgUserChatTargetedMessageReplySetReaction.g.cs","v1.0","Invoke-MgUserChatTargetedMessageReplySetReaction","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/setReaction","mismatch","Set-MgUserChatTargetedMessageReplyReaction" +"Cmdlets","InvokeMgUserChatTargetedMessageReplySoftDelete.g.cs","v1.0","Invoke-MgUserChatTargetedMessageReplySoftDelete","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftUserChatTargetedMessageReplyDelete" +"Cmdlets","InvokeMgUserChatTargetedMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgUserChatTargetedMessageReplyUndoSoftDelete","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgUserChatTargetedMessageReplySoftDelete" +"Cmdlets","InvokeMgUserChatTargetedMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgUserChatTargetedMessageReplyUnsetReaction","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgUserChatTargetedMessageReplyReaction" +"Cmdlets","InvokeMgUserChatUnhideForUser.g.cs","v1.0","Invoke-MgUserChatUnhideForUser","POST","/users/{param}/chats/{param}/unhideForUser","mismatch","Invoke-MgGraphUserChat" +"Cmdlets","InvokeMgUserJoinedTeamArchive.g.cs","v1.0","Invoke-MgUserJoinedTeamArchive","POST","/users/{param}/joinedTeams/{param}/archive","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelAllMemberAdd.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelAllMemberAdd","POST","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/add","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelAllMemberRemove.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelAllMemberRemove","POST","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/remove","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelArchive.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelArchive","POST","/users/{param}/joinedTeams/{param}/channels/{param}/archive","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelCompleteMigration.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelCompleteMigration","POST","/users/{param}/joinedTeams/{param}/channels/{param}/completeMigration","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelMemberAdd.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMemberAdd","POST","/users/{param}/joinedTeams/{param}/channels/{param}/members/add","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelMemberRemove.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMemberRemove","POST","/users/{param}/joinedTeams/{param}/channels/{param}/members/remove","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageReplyReplyWithQuote","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/replyWithQuote","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageReplySetReaction","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/setReaction","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageReplySoftDelete","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/softDelete","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageReplyUndoSoftDelete","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageReplyUnsetReaction","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/unsetReaction","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageReplyWithQuote","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/replyWithQuote","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelMessageSetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageSetReaction","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/setReaction","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageSoftDelete","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/softDelete","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageUndoSoftDelete","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/undoSoftDelete","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageUnsetReaction","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/unsetReaction","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelProvisionEmail.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelProvisionEmail","POST","/users/{param}/joinedTeams/{param}/channels/{param}/provisionEmail","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelRemoveEmail.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelRemoveEmail","POST","/users/{param}/joinedTeams/{param}/channels/{param}/removeEmail","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelStartMigration.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelStartMigration","POST","/users/{param}/joinedTeams/{param}/channels/{param}/startMigration","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamChannelUnarchive.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelUnarchive","POST","/users/{param}/joinedTeams/{param}/channels/{param}/unarchive","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamClone.g.cs","v1.0","Invoke-MgUserJoinedTeamClone","POST","/users/{param}/joinedTeams/{param}/clone","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamCompleteMigration.g.cs","v1.0","Invoke-MgUserJoinedTeamCompleteMigration","POST","/users/{param}/joinedTeams/{param}/completeMigration","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamInstalledAppUpgrade.g.cs","v1.0","Invoke-MgUserJoinedTeamInstalledAppUpgrade","POST","/users/{param}/joinedTeams/{param}/installedApps/{param}/upgrade","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamMemberAdd.g.cs","v1.0","Invoke-MgUserJoinedTeamMemberAdd","POST","/users/{param}/joinedTeams/{param}/members/add","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamMemberRemove.g.cs","v1.0","Invoke-MgUserJoinedTeamMemberRemove","POST","/users/{param}/joinedTeams/{param}/members/remove","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelAllMemberAdd.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelAllMemberAdd","POST","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/add","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelAllMemberRemove.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelAllMemberRemove","POST","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/remove","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelArchive.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelArchive","POST","/users/{param}/joinedTeams/{param}/primaryChannel/archive","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelCompleteMigration.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelCompleteMigration","POST","/users/{param}/joinedTeams/{param}/primaryChannel/completeMigration","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelMemberAdd.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMemberAdd","POST","/users/{param}/joinedTeams/{param}/primaryChannel/members/add","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelMemberRemove.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMemberRemove","POST","/users/{param}/joinedTeams/{param}/primaryChannel/members/remove","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyReplyWithQuote","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/replyWithQuote","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageReplySetReaction","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/setReaction","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageReplySoftDelete","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/softDelete","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyUndoSoftDelete","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/undoSoftDelete","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyUnsetReaction","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/unsetReaction","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyWithQuote","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/replyWithQuote","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelMessageSetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageSetReaction","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/setReaction","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageSoftDelete","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/softDelete","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageUndoSoftDelete","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/undoSoftDelete","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageUnsetReaction","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/unsetReaction","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelProvisionEmail.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelProvisionEmail","POST","/users/{param}/joinedTeams/{param}/primaryChannel/provisionEmail","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelRemoveEmail.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelRemoveEmail","POST","/users/{param}/joinedTeams/{param}/primaryChannel/removeEmail","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelStartMigration.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelStartMigration","POST","/users/{param}/joinedTeams/{param}/primaryChannel/startMigration","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamPrimaryChannelUnarchive.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelUnarchive","POST","/users/{param}/joinedTeams/{param}/primaryChannel/unarchive","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamScheduleShare.g.cs","v1.0","Invoke-MgUserJoinedTeamScheduleShare","POST","/users/{param}/joinedTeams/{param}/schedule/share","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamScheduleTimeCardClockIn.g.cs","v1.0","Invoke-MgUserJoinedTeamScheduleTimeCardClockIn","POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/clockIn","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamScheduleTimeCardClockOut.g.cs","v1.0","Invoke-MgUserJoinedTeamScheduleTimeCardClockOut","POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/clockOut","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamScheduleTimeCardConfirm.g.cs","v1.0","Invoke-MgUserJoinedTeamScheduleTimeCardConfirm","POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/confirm","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamScheduleTimeCardEndBreak.g.cs","v1.0","Invoke-MgUserJoinedTeamScheduleTimeCardEndBreak","POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/endBreak","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamScheduleTimeCardStartBreak.g.cs","v1.0","Invoke-MgUserJoinedTeamScheduleTimeCardStartBreak","POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/startBreak","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamSendActivityNotification.g.cs","v1.0","Invoke-MgUserJoinedTeamSendActivityNotification","POST","/users/{param}/joinedTeams/{param}/sendActivityNotification","no-oracle","" +"Cmdlets","InvokeMgUserJoinedTeamUnarchive.g.cs","v1.0","Invoke-MgUserJoinedTeamUnarchive","POST","/users/{param}/joinedTeams/{param}/unarchive","no-oracle","" +"Cmdlets","InvokeMgUserTeamworkDeleteTargetedMessage.g.cs","v1.0","Invoke-MgUserTeamworkDeleteTargetedMessage","POST","/users/{param}/teamwork/deleteTargetedMessage","mismatch","Remove-MgUserTeamworkTargetedMessage" +"Cmdlets","InvokeMgUserTeamworkSendActivityNotification.g.cs","v1.0","Invoke-MgUserTeamworkSendActivityNotification","POST","/users/{param}/teamwork/sendActivityNotification","mismatch","Send-MgUserTeamworkActivityNotification" +"Cmdlets","NewMgAppCatalogTeamApp.g.cs","v1.0","New-MgAppCatalogTeamApp","POST","/appCatalogs/teamsApps","matched","New-MgAppCatalogTeamApp" +"Cmdlets","NewMgAppCatalogTeamAppDefinition.g.cs","v1.0","New-MgAppCatalogTeamAppDefinition","POST","/appCatalogs/teamsApps/{param}/appDefinitions","matched","New-MgAppCatalogTeamAppDefinition" +"Cmdlets","NewMgChat.g.cs","v1.0","New-MgChat","POST","/chats","matched","New-MgChat" +"Cmdlets","NewMgChatInstalledApp.g.cs","v1.0","New-MgChatInstalledApp","POST","/chats/{param}/installedApps","matched","New-MgChatInstalledApp" +"Cmdlets","NewMgChatMember.g.cs","v1.0","New-MgChatMember","POST","/chats/{param}/members","matched","New-MgChatMember" +"Cmdlets","NewMgChatMessage.g.cs","v1.0","New-MgChatMessage","POST","/chats/{param}/messages","matched","New-MgChatMessage" +"Cmdlets","NewMgChatMessageHostedContent.g.cs","v1.0","New-MgChatMessageHostedContent","POST","/chats/{param}/messages/{param}/hostedContents","matched","New-MgChatMessageHostedContent" +"Cmdlets","NewMgChatMessageReply.g.cs","v1.0","New-MgChatMessageReply","POST","/chats/{param}/messages/{param}/replies","matched","New-MgChatMessageReply" +"Cmdlets","NewMgChatMessageReplyHostedContent.g.cs","v1.0","New-MgChatMessageReplyHostedContent","POST","/chats/{param}/messages/{param}/replies/{param}/hostedContents","matched","New-MgChatMessageReplyHostedContent" +"Cmdlets","NewMgChatPermissionGrant.g.cs","v1.0","New-MgChatPermissionGrant","POST","/chats/{param}/permissionGrants","matched","New-MgChatPermissionGrant" +"Cmdlets","NewMgChatPinnedMessage.g.cs","v1.0","New-MgChatPinnedMessage","POST","/chats/{param}/pinnedMessages","matched","New-MgChatPinnedMessage" +"Cmdlets","NewMgChatTab.g.cs","v1.0","New-MgChatTab","POST","/chats/{param}/tabs","matched","New-MgChatTab" +"Cmdlets","NewMgChatTargetedMessage.g.cs","v1.0","New-MgChatTargetedMessage","POST","/chats/{param}/targetedMessages","matched","New-MgChatTargetedMessage" +"Cmdlets","NewMgChatTargetedMessageHostedContent.g.cs","v1.0","New-MgChatTargetedMessageHostedContent","POST","/chats/{param}/targetedMessages/{param}/hostedContents","matched","New-MgChatTargetedMessageHostedContent" +"Cmdlets","NewMgChatTargetedMessageReply.g.cs","v1.0","New-MgChatTargetedMessageReply","POST","/chats/{param}/targetedMessages/{param}/replies","matched","New-MgChatTargetedMessageReply" +"Cmdlets","NewMgChatTargetedMessageReplyHostedContent.g.cs","v1.0","New-MgChatTargetedMessageReplyHostedContent","POST","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents","matched","New-MgChatTargetedMessageReplyHostedContent" +"Cmdlets","NewMgGroupTeamChannel.g.cs","v1.0","New-MgGroupTeamChannel","POST","/groups/{param}/team/channels","matched","New-MgGroupTeamChannel" +"Cmdlets","NewMgGroupTeamChannelAllMember.g.cs","v1.0","New-MgGroupTeamChannelAllMember","POST","/groups/{param}/team/channels/{param}/allMembers","mismatch","New-MgGroupTeamChannelMember" +"Cmdlets","NewMgGroupTeamChannelMember.g.cs","v1.0","New-MgGroupTeamChannelMember","POST","/groups/{param}/team/channels/{param}/members","no-oracle","" +"Cmdlets","NewMgGroupTeamChannelMessage.g.cs","v1.0","New-MgGroupTeamChannelMessage","POST","/groups/{param}/team/channels/{param}/messages","matched","New-MgGroupTeamChannelMessage" +"Cmdlets","NewMgGroupTeamChannelMessageHostedContent.g.cs","v1.0","New-MgGroupTeamChannelMessageHostedContent","POST","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents","matched","New-MgGroupTeamChannelMessageHostedContent" +"Cmdlets","NewMgGroupTeamChannelMessageReply.g.cs","v1.0","New-MgGroupTeamChannelMessageReply","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies","matched","New-MgGroupTeamChannelMessageReply" +"Cmdlets","NewMgGroupTeamChannelMessageReplyHostedContent.g.cs","v1.0","New-MgGroupTeamChannelMessageReplyHostedContent","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents","matched","New-MgGroupTeamChannelMessageReplyHostedContent" +"Cmdlets","NewMgGroupTeamChannelSharedWithTeam.g.cs","v1.0","New-MgGroupTeamChannelSharedWithTeam","POST","/groups/{param}/team/channels/{param}/sharedWithTeams","matched","New-MgGroupTeamChannelSharedWithTeam" +"Cmdlets","NewMgGroupTeamChannelTab.g.cs","v1.0","New-MgGroupTeamChannelTab","POST","/groups/{param}/team/channels/{param}/tabs","matched","New-MgGroupTeamChannelTab" +"Cmdlets","NewMgGroupTeamInstalledApp.g.cs","v1.0","New-MgGroupTeamInstalledApp","POST","/groups/{param}/team/installedApps","matched","New-MgGroupTeamInstalledApp" +"Cmdlets","NewMgGroupTeamMember.g.cs","v1.0","New-MgGroupTeamMember","POST","/groups/{param}/team/members","matched","New-MgGroupTeamMember" +"Cmdlets","NewMgGroupTeamOperation.g.cs","v1.0","New-MgGroupTeamOperation","POST","/groups/{param}/team/operations","matched","New-MgGroupTeamOperation" +"Cmdlets","NewMgGroupTeamPermissionGrant.g.cs","v1.0","New-MgGroupTeamPermissionGrant","POST","/groups/{param}/team/permissionGrants","matched","New-MgGroupTeamPermissionGrant" +"Cmdlets","NewMgGroupTeamPrimaryChannelAllMember.g.cs","v1.0","New-MgGroupTeamPrimaryChannelAllMember","POST","/groups/{param}/team/primaryChannel/allMembers","mismatch","New-MgGroupTeamPrimaryChannelMember" +"Cmdlets","NewMgGroupTeamPrimaryChannelMember.g.cs","v1.0","New-MgGroupTeamPrimaryChannelMember","POST","/groups/{param}/team/primaryChannel/members","no-oracle","" +"Cmdlets","NewMgGroupTeamPrimaryChannelMessage.g.cs","v1.0","New-MgGroupTeamPrimaryChannelMessage","POST","/groups/{param}/team/primaryChannel/messages","matched","New-MgGroupTeamPrimaryChannelMessage" +"Cmdlets","NewMgGroupTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","New-MgGroupTeamPrimaryChannelMessageHostedContent","POST","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents","matched","New-MgGroupTeamPrimaryChannelMessageHostedContent" +"Cmdlets","NewMgGroupTeamPrimaryChannelMessageReply.g.cs","v1.0","New-MgGroupTeamPrimaryChannelMessageReply","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies","matched","New-MgGroupTeamPrimaryChannelMessageReply" +"Cmdlets","NewMgGroupTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","New-MgGroupTeamPrimaryChannelMessageReplyHostedContent","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents","matched","New-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"Cmdlets","NewMgGroupTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","New-MgGroupTeamPrimaryChannelSharedWithTeam","POST","/groups/{param}/team/primaryChannel/sharedWithTeams","matched","New-MgGroupTeamPrimaryChannelSharedWithTeam" +"Cmdlets","NewMgGroupTeamPrimaryChannelTab.g.cs","v1.0","New-MgGroupTeamPrimaryChannelTab","POST","/groups/{param}/team/primaryChannel/tabs","matched","New-MgGroupTeamPrimaryChannelTab" +"Cmdlets","NewMgGroupTeamScheduleDayNote.g.cs","v1.0","New-MgGroupTeamScheduleDayNote","POST","/groups/{param}/team/schedule/dayNotes","matched","New-MgGroupTeamScheduleDayNote" +"Cmdlets","NewMgGroupTeamScheduleOfferShiftRequest.g.cs","v1.0","New-MgGroupTeamScheduleOfferShiftRequest","POST","/groups/{param}/team/schedule/offerShiftRequests","matched","New-MgGroupTeamScheduleOfferShiftRequest" +"Cmdlets","NewMgGroupTeamScheduleOpenShift.g.cs","v1.0","New-MgGroupTeamScheduleOpenShift","POST","/groups/{param}/team/schedule/openShifts","matched","New-MgGroupTeamScheduleOpenShift" +"Cmdlets","NewMgGroupTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","New-MgGroupTeamScheduleOpenShiftChangeRequest","POST","/groups/{param}/team/schedule/openShiftChangeRequests","matched","New-MgGroupTeamScheduleOpenShiftChangeRequest" +"Cmdlets","NewMgGroupTeamScheduleSchedulingGroup.g.cs","v1.0","New-MgGroupTeamScheduleSchedulingGroup","POST","/groups/{param}/team/schedule/schedulingGroups","matched","New-MgGroupTeamScheduleSchedulingGroup" +"Cmdlets","NewMgGroupTeamScheduleShift.g.cs","v1.0","New-MgGroupTeamScheduleShift","POST","/groups/{param}/team/schedule/shifts","matched","New-MgGroupTeamScheduleShift" +"Cmdlets","NewMgGroupTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","New-MgGroupTeamScheduleSwapShiftChangeRequest","POST","/groups/{param}/team/schedule/swapShiftsChangeRequests","matched","New-MgGroupTeamScheduleSwapShiftChangeRequest" +"Cmdlets","NewMgGroupTeamScheduleTimeCard.g.cs","v1.0","New-MgGroupTeamScheduleTimeCard","POST","/groups/{param}/team/schedule/timeCards","matched","New-MgGroupTeamScheduleTimeCard" +"Cmdlets","NewMgGroupTeamScheduleTimeOff.g.cs","v1.0","New-MgGroupTeamScheduleTimeOff","POST","/groups/{param}/team/schedule/timesOff","matched","New-MgGroupTeamScheduleTimeOff" +"Cmdlets","NewMgGroupTeamScheduleTimeOffReason.g.cs","v1.0","New-MgGroupTeamScheduleTimeOffReason","POST","/groups/{param}/team/schedule/timeOffReasons","matched","New-MgGroupTeamScheduleTimeOffReason" +"Cmdlets","NewMgGroupTeamScheduleTimeOffRequest.g.cs","v1.0","New-MgGroupTeamScheduleTimeOffRequest","POST","/groups/{param}/team/schedule/timeOffRequests","matched","New-MgGroupTeamScheduleTimeOffRequest" +"Cmdlets","NewMgGroupTeamTag.g.cs","v1.0","New-MgGroupTeamTag","POST","/groups/{param}/team/tags","matched","New-MgGroupTeamTag" +"Cmdlets","NewMgGroupTeamTagMember.g.cs","v1.0","New-MgGroupTeamTagMember","POST","/groups/{param}/team/tags/{param}/members","matched","New-MgGroupTeamTagMember" +"Cmdlets","NewMgTeam.g.cs","v1.0","New-MgTeam","POST","/teams","matched","New-MgTeam" +"Cmdlets","NewMgTeamChannel.g.cs","v1.0","New-MgTeamChannel","POST","/teams/{param}/channels","matched","New-MgTeamChannel" +"Cmdlets","NewMgTeamChannelAllMember.g.cs","v1.0","New-MgTeamChannelAllMember","POST","/teams/{param}/channels/{param}/allMembers","mismatch","New-MgTeamChannelMember" +"Cmdlets","NewMgTeamChannelMember.g.cs","v1.0","New-MgTeamChannelMember","POST","/teams/{param}/channels/{param}/members","no-oracle","" +"Cmdlets","NewMgTeamChannelMessage.g.cs","v1.0","New-MgTeamChannelMessage","POST","/teams/{param}/channels/{param}/messages","matched","New-MgTeamChannelMessage" +"Cmdlets","NewMgTeamChannelMessageHostedContent.g.cs","v1.0","New-MgTeamChannelMessageHostedContent","POST","/teams/{param}/channels/{param}/messages/{param}/hostedContents","matched","New-MgTeamChannelMessageHostedContent" +"Cmdlets","NewMgTeamChannelMessageReply.g.cs","v1.0","New-MgTeamChannelMessageReply","POST","/teams/{param}/channels/{param}/messages/{param}/replies","matched","New-MgTeamChannelMessageReply" +"Cmdlets","NewMgTeamChannelMessageReplyHostedContent.g.cs","v1.0","New-MgTeamChannelMessageReplyHostedContent","POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","matched","New-MgTeamChannelMessageReplyHostedContent" +"Cmdlets","NewMgTeamChannelSharedWithTeam.g.cs","v1.0","New-MgTeamChannelSharedWithTeam","POST","/teams/{param}/channels/{param}/sharedWithTeams","matched","New-MgTeamChannelSharedWithTeam" +"Cmdlets","NewMgTeamChannelTab.g.cs","v1.0","New-MgTeamChannelTab","POST","/teams/{param}/channels/{param}/tabs","matched","New-MgTeamChannelTab" +"Cmdlets","NewMgTeamInstalledApp.g.cs","v1.0","New-MgTeamInstalledApp","POST","/teams/{param}/installedApps","matched","New-MgTeamInstalledApp" +"Cmdlets","NewMgTeamMember.g.cs","v1.0","New-MgTeamMember","POST","/teams/{param}/members","matched","New-MgTeamMember" +"Cmdlets","NewMgTeamOperation.g.cs","v1.0","New-MgTeamOperation","POST","/teams/{param}/operations","matched","New-MgTeamOperation" +"Cmdlets","NewMgTeamPermissionGrant.g.cs","v1.0","New-MgTeamPermissionGrant","POST","/teams/{param}/permissionGrants","matched","New-MgTeamPermissionGrant" +"Cmdlets","NewMgTeamPrimaryChannelAllMember.g.cs","v1.0","New-MgTeamPrimaryChannelAllMember","POST","/teams/{param}/primaryChannel/allMembers","mismatch","New-MgTeamPrimaryChannelMember" +"Cmdlets","NewMgTeamPrimaryChannelMember.g.cs","v1.0","New-MgTeamPrimaryChannelMember","POST","/teams/{param}/primaryChannel/members","no-oracle","" +"Cmdlets","NewMgTeamPrimaryChannelMessage.g.cs","v1.0","New-MgTeamPrimaryChannelMessage","POST","/teams/{param}/primaryChannel/messages","matched","New-MgTeamPrimaryChannelMessage" +"Cmdlets","NewMgTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","New-MgTeamPrimaryChannelMessageHostedContent","POST","/teams/{param}/primaryChannel/messages/{param}/hostedContents","matched","New-MgTeamPrimaryChannelMessageHostedContent" +"Cmdlets","NewMgTeamPrimaryChannelMessageReply.g.cs","v1.0","New-MgTeamPrimaryChannelMessageReply","POST","/teams/{param}/primaryChannel/messages/{param}/replies","matched","New-MgTeamPrimaryChannelMessageReply" +"Cmdlets","NewMgTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","New-MgTeamPrimaryChannelMessageReplyHostedContent","POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents","matched","New-MgTeamPrimaryChannelMessageReplyHostedContent" +"Cmdlets","NewMgTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","New-MgTeamPrimaryChannelSharedWithTeam","POST","/teams/{param}/primaryChannel/sharedWithTeams","matched","New-MgTeamPrimaryChannelSharedWithTeam" +"Cmdlets","NewMgTeamPrimaryChannelTab.g.cs","v1.0","New-MgTeamPrimaryChannelTab","POST","/teams/{param}/primaryChannel/tabs","matched","New-MgTeamPrimaryChannelTab" +"Cmdlets","NewMgTeamScheduleDayNote.g.cs","v1.0","New-MgTeamScheduleDayNote","POST","/teams/{param}/schedule/dayNotes","matched","New-MgTeamScheduleDayNote" +"Cmdlets","NewMgTeamScheduleOfferShiftRequest.g.cs","v1.0","New-MgTeamScheduleOfferShiftRequest","POST","/teams/{param}/schedule/offerShiftRequests","matched","New-MgTeamScheduleOfferShiftRequest" +"Cmdlets","NewMgTeamScheduleOpenShift.g.cs","v1.0","New-MgTeamScheduleOpenShift","POST","/teams/{param}/schedule/openShifts","matched","New-MgTeamScheduleOpenShift" +"Cmdlets","NewMgTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","New-MgTeamScheduleOpenShiftChangeRequest","POST","/teams/{param}/schedule/openShiftChangeRequests","matched","New-MgTeamScheduleOpenShiftChangeRequest" +"Cmdlets","NewMgTeamScheduleSchedulingGroup.g.cs","v1.0","New-MgTeamScheduleSchedulingGroup","POST","/teams/{param}/schedule/schedulingGroups","matched","New-MgTeamScheduleSchedulingGroup" +"Cmdlets","NewMgTeamScheduleShift.g.cs","v1.0","New-MgTeamScheduleShift","POST","/teams/{param}/schedule/shifts","matched","New-MgTeamScheduleShift" +"Cmdlets","NewMgTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","New-MgTeamScheduleSwapShiftChangeRequest","POST","/teams/{param}/schedule/swapShiftsChangeRequests","matched","New-MgTeamScheduleSwapShiftChangeRequest" +"Cmdlets","NewMgTeamScheduleTimeCard.g.cs","v1.0","New-MgTeamScheduleTimeCard","POST","/teams/{param}/schedule/timeCards","matched","New-MgTeamScheduleTimeCard" +"Cmdlets","NewMgTeamScheduleTimeOff.g.cs","v1.0","New-MgTeamScheduleTimeOff","POST","/teams/{param}/schedule/timesOff","matched","New-MgTeamScheduleTimeOff" +"Cmdlets","NewMgTeamScheduleTimeOffReason.g.cs","v1.0","New-MgTeamScheduleTimeOffReason","POST","/teams/{param}/schedule/timeOffReasons","matched","New-MgTeamScheduleTimeOffReason" +"Cmdlets","NewMgTeamScheduleTimeOffRequest.g.cs","v1.0","New-MgTeamScheduleTimeOffRequest","POST","/teams/{param}/schedule/timeOffRequests","matched","New-MgTeamScheduleTimeOffRequest" +"Cmdlets","NewMgTeamTag.g.cs","v1.0","New-MgTeamTag","POST","/teams/{param}/tags","matched","New-MgTeamTag" +"Cmdlets","NewMgTeamTagMember.g.cs","v1.0","New-MgTeamTagMember","POST","/teams/{param}/tags/{param}/members","matched","New-MgTeamTagMember" +"Cmdlets","NewMgTeamworkDeletedChat.g.cs","v1.0","New-MgTeamworkDeletedChat","POST","/teamwork/deletedChats","matched","New-MgTeamworkDeletedChat" +"Cmdlets","NewMgTeamworkDeletedTeam.g.cs","v1.0","New-MgTeamworkDeletedTeam","POST","/teamwork/deletedTeams","matched","New-MgTeamworkDeletedTeam" +"Cmdlets","NewMgTeamworkDeletedTeamChannel.g.cs","v1.0","New-MgTeamworkDeletedTeamChannel","POST","/teamwork/deletedTeams/{param}/channels","matched","New-MgTeamworkDeletedTeamChannel" +"Cmdlets","NewMgTeamworkDeletedTeamChannelAllMember.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelAllMember","POST","/teamwork/deletedTeams/{param}/channels/{param}/allMembers","mismatch","New-MgTeamworkDeletedTeamChannelMember" +"Cmdlets","NewMgTeamworkDeletedTeamChannelMember.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelMember","POST","/teamwork/deletedTeams/{param}/channels/{param}/members","no-oracle","" +"Cmdlets","NewMgTeamworkDeletedTeamChannelMessage.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelMessage","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages","matched","New-MgTeamworkDeletedTeamChannelMessage" +"Cmdlets","NewMgTeamworkDeletedTeamChannelMessageHostedContent.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelMessageHostedContent","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents","matched","New-MgTeamworkDeletedTeamChannelMessageHostedContent" +"Cmdlets","NewMgTeamworkDeletedTeamChannelMessageReply.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelMessageReply","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies","matched","New-MgTeamworkDeletedTeamChannelMessageReply" +"Cmdlets","NewMgTeamworkDeletedTeamChannelMessageReplyHostedContent.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","matched","New-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"Cmdlets","NewMgTeamworkDeletedTeamChannelSharedWithTeam.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelSharedWithTeam","POST","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams","matched","New-MgTeamworkDeletedTeamChannelSharedWithTeam" +"Cmdlets","NewMgTeamworkDeletedTeamChannelTab.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelTab","POST","/teamwork/deletedTeams/{param}/channels/{param}/tabs","matched","New-MgTeamworkDeletedTeamChannelTab" +"Cmdlets","NewMgTeamworkWorkforceIntegration.g.cs","v1.0","New-MgTeamworkWorkforceIntegration","POST","/teamwork/workforceIntegrations","matched","New-MgTeamworkWorkforceIntegration" +"Cmdlets","NewMgUserChat.g.cs","v1.0","New-MgUserChat","POST","/users/{param}/chats","matched","New-MgUserChat" +"Cmdlets","NewMgUserChatInstalledApp.g.cs","v1.0","New-MgUserChatInstalledApp","POST","/users/{param}/chats/{param}/installedApps","matched","New-MgUserChatInstalledApp" +"Cmdlets","NewMgUserChatMember.g.cs","v1.0","New-MgUserChatMember","POST","/users/{param}/chats/{param}/members","matched","New-MgUserChatMember" +"Cmdlets","NewMgUserChatMessage.g.cs","v1.0","New-MgUserChatMessage","POST","/users/{param}/chats/{param}/messages","matched","New-MgUserChatMessage" +"Cmdlets","NewMgUserChatMessageHostedContent.g.cs","v1.0","New-MgUserChatMessageHostedContent","POST","/users/{param}/chats/{param}/messages/{param}/hostedContents","matched","New-MgUserChatMessageHostedContent" +"Cmdlets","NewMgUserChatMessageReply.g.cs","v1.0","New-MgUserChatMessageReply","POST","/users/{param}/chats/{param}/messages/{param}/replies","matched","New-MgUserChatMessageReply" +"Cmdlets","NewMgUserChatMessageReplyHostedContent.g.cs","v1.0","New-MgUserChatMessageReplyHostedContent","POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents","matched","New-MgUserChatMessageReplyHostedContent" +"Cmdlets","NewMgUserChatPermissionGrant.g.cs","v1.0","New-MgUserChatPermissionGrant","POST","/users/{param}/chats/{param}/permissionGrants","matched","New-MgUserChatPermissionGrant" +"Cmdlets","NewMgUserChatPinnedMessage.g.cs","v1.0","New-MgUserChatPinnedMessage","POST","/users/{param}/chats/{param}/pinnedMessages","matched","New-MgUserChatPinnedMessage" +"Cmdlets","NewMgUserChatTab.g.cs","v1.0","New-MgUserChatTab","POST","/users/{param}/chats/{param}/tabs","matched","New-MgUserChatTab" +"Cmdlets","NewMgUserChatTargetedMessage.g.cs","v1.0","New-MgUserChatTargetedMessage","POST","/users/{param}/chats/{param}/targetedMessages","matched","New-MgUserChatTargetedMessage" +"Cmdlets","NewMgUserChatTargetedMessageHostedContent.g.cs","v1.0","New-MgUserChatTargetedMessageHostedContent","POST","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents","matched","New-MgUserChatTargetedMessageHostedContent" +"Cmdlets","NewMgUserChatTargetedMessageReply.g.cs","v1.0","New-MgUserChatTargetedMessageReply","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies","matched","New-MgUserChatTargetedMessageReply" +"Cmdlets","NewMgUserChatTargetedMessageReplyHostedContent.g.cs","v1.0","New-MgUserChatTargetedMessageReplyHostedContent","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents","matched","New-MgUserChatTargetedMessageReplyHostedContent" +"Cmdlets","NewMgUserJoinedTeam.g.cs","v1.0","New-MgUserJoinedTeam","POST","/users/{param}/joinedTeams","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamChannel.g.cs","v1.0","New-MgUserJoinedTeamChannel","POST","/users/{param}/joinedTeams/{param}/channels","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamChannelAllMember.g.cs","v1.0","New-MgUserJoinedTeamChannelAllMember","POST","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamChannelMember.g.cs","v1.0","New-MgUserJoinedTeamChannelMember","POST","/users/{param}/joinedTeams/{param}/channels/{param}/members","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamChannelMessage.g.cs","v1.0","New-MgUserJoinedTeamChannelMessage","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamChannelMessageHostedContent.g.cs","v1.0","New-MgUserJoinedTeamChannelMessageHostedContent","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamChannelMessageReply.g.cs","v1.0","New-MgUserJoinedTeamChannelMessageReply","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamChannelMessageReplyHostedContent.g.cs","v1.0","New-MgUserJoinedTeamChannelMessageReplyHostedContent","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamChannelSharedWithTeam.g.cs","v1.0","New-MgUserJoinedTeamChannelSharedWithTeam","POST","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamChannelTab.g.cs","v1.0","New-MgUserJoinedTeamChannelTab","POST","/users/{param}/joinedTeams/{param}/channels/{param}/tabs","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamInstalledApp.g.cs","v1.0","New-MgUserJoinedTeamInstalledApp","POST","/users/{param}/joinedTeams/{param}/installedApps","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamMember.g.cs","v1.0","New-MgUserJoinedTeamMember","POST","/users/{param}/joinedTeams/{param}/members","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamOperation.g.cs","v1.0","New-MgUserJoinedTeamOperation","POST","/users/{param}/joinedTeams/{param}/operations","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamPermissionGrant.g.cs","v1.0","New-MgUserJoinedTeamPermissionGrant","POST","/users/{param}/joinedTeams/{param}/permissionGrants","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamPrimaryChannelAllMember.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelAllMember","POST","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamPrimaryChannelMember.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelMember","POST","/users/{param}/joinedTeams/{param}/primaryChannel/members","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamPrimaryChannelMessage.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelMessage","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelMessageHostedContent","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamPrimaryChannelMessageReply.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelMessageReply","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelSharedWithTeam","POST","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamPrimaryChannelTab.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelTab","POST","/users/{param}/joinedTeams/{param}/primaryChannel/tabs","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamScheduleDayNote.g.cs","v1.0","New-MgUserJoinedTeamScheduleDayNote","POST","/users/{param}/joinedTeams/{param}/schedule/dayNotes","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamScheduleOfferShiftRequest.g.cs","v1.0","New-MgUserJoinedTeamScheduleOfferShiftRequest","POST","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamScheduleOpenShift.g.cs","v1.0","New-MgUserJoinedTeamScheduleOpenShift","POST","/users/{param}/joinedTeams/{param}/schedule/openShifts","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","New-MgUserJoinedTeamScheduleOpenShiftChangeRequest","POST","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamScheduleSchedulingGroup.g.cs","v1.0","New-MgUserJoinedTeamScheduleSchedulingGroup","POST","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamScheduleShift.g.cs","v1.0","New-MgUserJoinedTeamScheduleShift","POST","/users/{param}/joinedTeams/{param}/schedule/shifts","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","New-MgUserJoinedTeamScheduleSwapShiftChangeRequest","POST","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamScheduleTimeCard.g.cs","v1.0","New-MgUserJoinedTeamScheduleTimeCard","POST","/users/{param}/joinedTeams/{param}/schedule/timeCards","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamScheduleTimeOff.g.cs","v1.0","New-MgUserJoinedTeamScheduleTimeOff","POST","/users/{param}/joinedTeams/{param}/schedule/timesOff","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamScheduleTimeOffReason.g.cs","v1.0","New-MgUserJoinedTeamScheduleTimeOffReason","POST","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamScheduleTimeOffRequest.g.cs","v1.0","New-MgUserJoinedTeamScheduleTimeOffRequest","POST","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamTag.g.cs","v1.0","New-MgUserJoinedTeamTag","POST","/users/{param}/joinedTeams/{param}/tags","no-oracle","" +"Cmdlets","NewMgUserJoinedTeamTagMember.g.cs","v1.0","New-MgUserJoinedTeamTagMember","POST","/users/{param}/joinedTeams/{param}/tags/{param}/members","no-oracle","" +"Cmdlets","NewMgUserTeamworkAssociatedTeam.g.cs","v1.0","New-MgUserTeamworkAssociatedTeam","POST","/users/{param}/teamwork/associatedTeams","matched","New-MgUserTeamworkAssociatedTeam" +"Cmdlets","NewMgUserTeamworkInstalledApp.g.cs","v1.0","New-MgUserTeamworkInstalledApp","POST","/users/{param}/teamwork/installedApps","matched","New-MgUserTeamworkInstalledApp" +"Cmdlets","RemoveMgAppCatalogTeamApp.g.cs","v1.0","Remove-MgAppCatalogTeamApp","DELETE","/appCatalogs/teamsApps/{param}","matched","Remove-MgAppCatalogTeamApp" +"Cmdlets","RemoveMgAppCatalogTeamAppDefinition.g.cs","v1.0","Remove-MgAppCatalogTeamAppDefinition","DELETE","/appCatalogs/teamsApps/{param}/appDefinitions/{param}","matched","Remove-MgAppCatalogTeamAppDefinition" +"Cmdlets","RemoveMgAppCatalogTeamAppDefinitionBot.g.cs","v1.0","Remove-MgAppCatalogTeamAppDefinitionBot","DELETE","/appCatalogs/teamsApps/{param}/appDefinitions/{param}/bot","matched","Remove-MgAppCatalogTeamAppDefinitionBot" +"Cmdlets","RemoveMgChat.g.cs","v1.0","Remove-MgChat","DELETE","/chats/{param}","matched","Remove-MgChat" +"Cmdlets","RemoveMgChatInstalledApp.g.cs","v1.0","Remove-MgChatInstalledApp","DELETE","/chats/{param}/installedApps/{param}","matched","Remove-MgChatInstalledApp" +"Cmdlets","RemoveMgChatLastMessagePreview.g.cs","v1.0","Remove-MgChatLastMessagePreview","DELETE","/chats/{param}/lastMessagePreview","matched","Remove-MgChatLastMessagePreview" +"Cmdlets","RemoveMgChatMember.g.cs","v1.0","Remove-MgChatMember","DELETE","/chats/{param}/members/{param}","matched","Remove-MgChatMember" +"Cmdlets","RemoveMgChatMessage.g.cs","v1.0","Remove-MgChatMessage","DELETE","/chats/{param}/messages/{param}","no-oracle","" +"Cmdlets","RemoveMgChatMessageHostedContent.g.cs","v1.0","Remove-MgChatMessageHostedContent","DELETE","/chats/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","RemoveMgChatMessageHostedContentContent.g.cs","v1.0","Remove-MgChatMessageHostedContentContent","DELETE","/chats/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgChatMessageReply.g.cs","v1.0","Remove-MgChatMessageReply","DELETE","/chats/{param}/messages/{param}/replies/{param}","no-oracle","" +"Cmdlets","RemoveMgChatMessageReplyHostedContent.g.cs","v1.0","Remove-MgChatMessageReplyHostedContent","DELETE","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgChatMessageReplyHostedContent" +"Cmdlets","RemoveMgChatMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgChatMessageReplyHostedContentContent","DELETE","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgChatPermissionGrant.g.cs","v1.0","Remove-MgChatPermissionGrant","DELETE","/chats/{param}/permissionGrants/{param}","matched","Remove-MgChatPermissionGrant" +"Cmdlets","RemoveMgChatPinnedMessage.g.cs","v1.0","Remove-MgChatPinnedMessage","DELETE","/chats/{param}/pinnedMessages/{param}","matched","Remove-MgChatPinnedMessage" +"Cmdlets","RemoveMgChatTab.g.cs","v1.0","Remove-MgChatTab","DELETE","/chats/{param}/tabs/{param}","matched","Remove-MgChatTab" +"Cmdlets","RemoveMgChatTargetedMessage.g.cs","v1.0","Remove-MgChatTargetedMessage","DELETE","/chats/{param}/targetedMessages/{param}","matched","Remove-MgChatTargetedMessage" +"Cmdlets","RemoveMgChatTargetedMessageHostedContent.g.cs","v1.0","Remove-MgChatTargetedMessageHostedContent","DELETE","/chats/{param}/targetedMessages/{param}/hostedContents/{param}","matched","Remove-MgChatTargetedMessageHostedContent" +"Cmdlets","RemoveMgChatTargetedMessageHostedContentContent.g.cs","v1.0","Remove-MgChatTargetedMessageHostedContentContent","DELETE","/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgChatTargetedMessageReply.g.cs","v1.0","Remove-MgChatTargetedMessageReply","DELETE","/chats/{param}/targetedMessages/{param}/replies/{param}","matched","Remove-MgChatTargetedMessageReply" +"Cmdlets","RemoveMgChatTargetedMessageReplyHostedContent.g.cs","v1.0","Remove-MgChatTargetedMessageReplyHostedContent","DELETE","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgChatTargetedMessageReplyHostedContent" +"Cmdlets","RemoveMgChatTargetedMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgChatTargetedMessageReplyHostedContentContent","DELETE","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgGroupTeam.g.cs","v1.0","Remove-MgGroupTeam","DELETE","/groups/{param}/team","matched","Remove-MgGroupTeam" +"Cmdlets","RemoveMgGroupTeamChannel.g.cs","v1.0","Remove-MgGroupTeamChannel","DELETE","/groups/{param}/team/channels/{param}","matched","Remove-MgGroupTeamChannel" +"Cmdlets","RemoveMgGroupTeamChannelAllMember.g.cs","v1.0","Remove-MgGroupTeamChannelAllMember","DELETE","/groups/{param}/team/channels/{param}/allMembers/{param}","mismatch","Remove-MgGroupTeamChannelMember" +"Cmdlets","RemoveMgGroupTeamChannelFileFolderContent.g.cs","v1.0","Remove-MgGroupTeamChannelFileFolderContent","DELETE","/groups/{param}/team/channels/{param}/filesFolder/content","matched","Remove-MgGroupTeamChannelFileFolderContent" +"Cmdlets","RemoveMgGroupTeamChannelMember.g.cs","v1.0","Remove-MgGroupTeamChannelMember","DELETE","/groups/{param}/team/channels/{param}/members/{param}","no-oracle","" +"Cmdlets","RemoveMgGroupTeamChannelMessage.g.cs","v1.0","Remove-MgGroupTeamChannelMessage","DELETE","/groups/{param}/team/channels/{param}/messages/{param}","matched","Remove-MgGroupTeamChannelMessage" +"Cmdlets","RemoveMgGroupTeamChannelMessageHostedContent.g.cs","v1.0","Remove-MgGroupTeamChannelMessageHostedContent","DELETE","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}","matched","Remove-MgGroupTeamChannelMessageHostedContent" +"Cmdlets","RemoveMgGroupTeamChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgGroupTeamChannelMessageHostedContentContent","DELETE","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgGroupTeamChannelMessageReply.g.cs","v1.0","Remove-MgGroupTeamChannelMessageReply","DELETE","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}","matched","Remove-MgGroupTeamChannelMessageReply" +"Cmdlets","RemoveMgGroupTeamChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgGroupTeamChannelMessageReplyHostedContent","DELETE","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgGroupTeamChannelMessageReplyHostedContent" +"Cmdlets","RemoveMgGroupTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgGroupTeamChannelMessageReplyHostedContentContent","DELETE","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgGroupTeamChannelSharedWithTeam.g.cs","v1.0","Remove-MgGroupTeamChannelSharedWithTeam","DELETE","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}","matched","Remove-MgGroupTeamChannelSharedWithTeam" +"Cmdlets","RemoveMgGroupTeamChannelTab.g.cs","v1.0","Remove-MgGroupTeamChannelTab","DELETE","/groups/{param}/team/channels/{param}/tabs/{param}","matched","Remove-MgGroupTeamChannelTab" +"Cmdlets","RemoveMgGroupTeamInstalledApp.g.cs","v1.0","Remove-MgGroupTeamInstalledApp","DELETE","/groups/{param}/team/installedApps/{param}","matched","Remove-MgGroupTeamInstalledApp" +"Cmdlets","RemoveMgGroupTeamMember.g.cs","v1.0","Remove-MgGroupTeamMember","DELETE","/groups/{param}/team/members/{param}","matched","Remove-MgGroupTeamMember" +"Cmdlets","RemoveMgGroupTeamOperation.g.cs","v1.0","Remove-MgGroupTeamOperation","DELETE","/groups/{param}/team/operations/{param}","matched","Remove-MgGroupTeamOperation" +"Cmdlets","RemoveMgGroupTeamPermissionGrant.g.cs","v1.0","Remove-MgGroupTeamPermissionGrant","DELETE","/groups/{param}/team/permissionGrants/{param}","matched","Remove-MgGroupTeamPermissionGrant" +"Cmdlets","RemoveMgGroupTeamPhotoContent.g.cs","v1.0","Remove-MgGroupTeamPhotoContent","DELETE","/groups/{param}/team/photo/$value","matched","Remove-MgGroupTeamPhotoContent" +"Cmdlets","RemoveMgGroupTeamPrimaryChannel.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannel","DELETE","/groups/{param}/team/primaryChannel","matched","Remove-MgGroupTeamPrimaryChannel" +"Cmdlets","RemoveMgGroupTeamPrimaryChannelAllMember.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelAllMember","DELETE","/groups/{param}/team/primaryChannel/allMembers/{param}","mismatch","Remove-MgGroupTeamPrimaryChannelMember" +"Cmdlets","RemoveMgGroupTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelFileFolderContent","DELETE","/groups/{param}/team/primaryChannel/filesFolder/content","matched","Remove-MgGroupTeamPrimaryChannelFileFolderContent" +"Cmdlets","RemoveMgGroupTeamPrimaryChannelMember.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMember","DELETE","/groups/{param}/team/primaryChannel/members/{param}","no-oracle","" +"Cmdlets","RemoveMgGroupTeamPrimaryChannelMessage.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMessage","DELETE","/groups/{param}/team/primaryChannel/messages/{param}","matched","Remove-MgGroupTeamPrimaryChannelMessage" +"Cmdlets","RemoveMgGroupTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMessageHostedContent","DELETE","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}","matched","Remove-MgGroupTeamPrimaryChannelMessageHostedContent" +"Cmdlets","RemoveMgGroupTeamPrimaryChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMessageHostedContentContent","DELETE","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgGroupTeamPrimaryChannelMessageReply.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMessageReply","DELETE","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}","matched","Remove-MgGroupTeamPrimaryChannelMessageReply" +"Cmdlets","RemoveMgGroupTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContent","DELETE","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"Cmdlets","RemoveMgGroupTeamPrimaryChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContentContent","DELETE","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgGroupTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelSharedWithTeam","DELETE","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}","matched","Remove-MgGroupTeamPrimaryChannelSharedWithTeam" +"Cmdlets","RemoveMgGroupTeamPrimaryChannelTab.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelTab","DELETE","/groups/{param}/team/primaryChannel/tabs/{param}","matched","Remove-MgGroupTeamPrimaryChannelTab" +"Cmdlets","RemoveMgGroupTeamSchedule.g.cs","v1.0","Remove-MgGroupTeamSchedule","DELETE","/groups/{param}/team/schedule","matched","Remove-MgGroupTeamSchedule" +"Cmdlets","RemoveMgGroupTeamScheduleDayNote.g.cs","v1.0","Remove-MgGroupTeamScheduleDayNote","DELETE","/groups/{param}/team/schedule/dayNotes/{param}","matched","Remove-MgGroupTeamScheduleDayNote" +"Cmdlets","RemoveMgGroupTeamScheduleOfferShiftRequest.g.cs","v1.0","Remove-MgGroupTeamScheduleOfferShiftRequest","DELETE","/groups/{param}/team/schedule/offerShiftRequests/{param}","matched","Remove-MgGroupTeamScheduleOfferShiftRequest" +"Cmdlets","RemoveMgGroupTeamScheduleOpenShift.g.cs","v1.0","Remove-MgGroupTeamScheduleOpenShift","DELETE","/groups/{param}/team/schedule/openShifts/{param}","matched","Remove-MgGroupTeamScheduleOpenShift" +"Cmdlets","RemoveMgGroupTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Remove-MgGroupTeamScheduleOpenShiftChangeRequest","DELETE","/groups/{param}/team/schedule/openShiftChangeRequests/{param}","matched","Remove-MgGroupTeamScheduleOpenShiftChangeRequest" +"Cmdlets","RemoveMgGroupTeamScheduleSchedulingGroup.g.cs","v1.0","Remove-MgGroupTeamScheduleSchedulingGroup","DELETE","/groups/{param}/team/schedule/schedulingGroups/{param}","matched","Remove-MgGroupTeamScheduleSchedulingGroup" +"Cmdlets","RemoveMgGroupTeamScheduleShift.g.cs","v1.0","Remove-MgGroupTeamScheduleShift","DELETE","/groups/{param}/team/schedule/shifts/{param}","matched","Remove-MgGroupTeamScheduleShift" +"Cmdlets","RemoveMgGroupTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Remove-MgGroupTeamScheduleSwapShiftChangeRequest","DELETE","/groups/{param}/team/schedule/swapShiftsChangeRequests/{param}","matched","Remove-MgGroupTeamScheduleSwapShiftChangeRequest" +"Cmdlets","RemoveMgGroupTeamScheduleTimeCard.g.cs","v1.0","Remove-MgGroupTeamScheduleTimeCard","DELETE","/groups/{param}/team/schedule/timeCards/{param}","matched","Remove-MgGroupTeamScheduleTimeCard" +"Cmdlets","RemoveMgGroupTeamScheduleTimeOff.g.cs","v1.0","Remove-MgGroupTeamScheduleTimeOff","DELETE","/groups/{param}/team/schedule/timesOff/{param}","matched","Remove-MgGroupTeamScheduleTimeOff" +"Cmdlets","RemoveMgGroupTeamScheduleTimeOffReason.g.cs","v1.0","Remove-MgGroupTeamScheduleTimeOffReason","DELETE","/groups/{param}/team/schedule/timeOffReasons/{param}","matched","Remove-MgGroupTeamScheduleTimeOffReason" +"Cmdlets","RemoveMgGroupTeamScheduleTimeOffRequest.g.cs","v1.0","Remove-MgGroupTeamScheduleTimeOffRequest","DELETE","/groups/{param}/team/schedule/timeOffRequests/{param}","matched","Remove-MgGroupTeamScheduleTimeOffRequest" +"Cmdlets","RemoveMgGroupTeamTag.g.cs","v1.0","Remove-MgGroupTeamTag","DELETE","/groups/{param}/team/tags/{param}","matched","Remove-MgGroupTeamTag" +"Cmdlets","RemoveMgGroupTeamTagMember.g.cs","v1.0","Remove-MgGroupTeamTagMember","DELETE","/groups/{param}/team/tags/{param}/members/{param}","matched","Remove-MgGroupTeamTagMember" +"Cmdlets","RemoveMgTeam.g.cs","v1.0","Remove-MgTeam","DELETE","/teams/{param}","matched","Remove-MgTeam" +"Cmdlets","RemoveMgTeamChannel.g.cs","v1.0","Remove-MgTeamChannel","DELETE","/teams/{param}/channels/{param}","matched","Remove-MgTeamChannel" +"Cmdlets","RemoveMgTeamChannelAllMember.g.cs","v1.0","Remove-MgTeamChannelAllMember","DELETE","/teams/{param}/channels/{param}/allMembers/{param}","mismatch","Remove-MgTeamChannelMember" +"Cmdlets","RemoveMgTeamChannelFileFolderContent.g.cs","v1.0","Remove-MgTeamChannelFileFolderContent","DELETE","/teams/{param}/channels/{param}/filesFolder/content","matched","Remove-MgTeamChannelFileFolderContent" +"Cmdlets","RemoveMgTeamChannelMember.g.cs","v1.0","Remove-MgTeamChannelMember","DELETE","/teams/{param}/channels/{param}/members/{param}","no-oracle","" +"Cmdlets","RemoveMgTeamChannelMessage.g.cs","v1.0","Remove-MgTeamChannelMessage","DELETE","/teams/{param}/channels/{param}/messages/{param}","no-oracle","" +"Cmdlets","RemoveMgTeamChannelMessageHostedContent.g.cs","v1.0","Remove-MgTeamChannelMessageHostedContent","DELETE","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","RemoveMgTeamChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgTeamChannelMessageHostedContentContent","DELETE","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgTeamChannelMessageReply.g.cs","v1.0","Remove-MgTeamChannelMessageReply","DELETE","/teams/{param}/channels/{param}/messages/{param}/replies/{param}","no-oracle","" +"Cmdlets","RemoveMgTeamChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgTeamChannelMessageReplyHostedContent","DELETE","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgTeamChannelMessageReplyHostedContent" +"Cmdlets","RemoveMgTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgTeamChannelMessageReplyHostedContentContent","DELETE","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgTeamChannelSharedWithTeam.g.cs","v1.0","Remove-MgTeamChannelSharedWithTeam","DELETE","/teams/{param}/channels/{param}/sharedWithTeams/{param}","matched","Remove-MgTeamChannelSharedWithTeam" +"Cmdlets","RemoveMgTeamChannelTab.g.cs","v1.0","Remove-MgTeamChannelTab","DELETE","/teams/{param}/channels/{param}/tabs/{param}","matched","Remove-MgTeamChannelTab" +"Cmdlets","RemoveMgTeamInstalledApp.g.cs","v1.0","Remove-MgTeamInstalledApp","DELETE","/teams/{param}/installedApps/{param}","matched","Remove-MgTeamInstalledApp" +"Cmdlets","RemoveMgTeamMember.g.cs","v1.0","Remove-MgTeamMember","DELETE","/teams/{param}/members/{param}","matched","Remove-MgTeamMember" +"Cmdlets","RemoveMgTeamOperation.g.cs","v1.0","Remove-MgTeamOperation","DELETE","/teams/{param}/operations/{param}","matched","Remove-MgTeamOperation" +"Cmdlets","RemoveMgTeamPermissionGrant.g.cs","v1.0","Remove-MgTeamPermissionGrant","DELETE","/teams/{param}/permissionGrants/{param}","matched","Remove-MgTeamPermissionGrant" +"Cmdlets","RemoveMgTeamPhotoContent.g.cs","v1.0","Remove-MgTeamPhotoContent","DELETE","/teams/{param}/photo/$value","matched","Remove-MgTeamPhotoContent" +"Cmdlets","RemoveMgTeamPrimaryChannel.g.cs","v1.0","Remove-MgTeamPrimaryChannel","DELETE","/teams/{param}/primaryChannel","matched","Remove-MgTeamPrimaryChannel" +"Cmdlets","RemoveMgTeamPrimaryChannelAllMember.g.cs","v1.0","Remove-MgTeamPrimaryChannelAllMember","DELETE","/teams/{param}/primaryChannel/allMembers/{param}","mismatch","Remove-MgTeamPrimaryChannelMember" +"Cmdlets","RemoveMgTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Remove-MgTeamPrimaryChannelFileFolderContent","DELETE","/teams/{param}/primaryChannel/filesFolder/content","matched","Remove-MgTeamPrimaryChannelFileFolderContent" +"Cmdlets","RemoveMgTeamPrimaryChannelMember.g.cs","v1.0","Remove-MgTeamPrimaryChannelMember","DELETE","/teams/{param}/primaryChannel/members/{param}","no-oracle","" +"Cmdlets","RemoveMgTeamPrimaryChannelMessage.g.cs","v1.0","Remove-MgTeamPrimaryChannelMessage","DELETE","/teams/{param}/primaryChannel/messages/{param}","no-oracle","" +"Cmdlets","RemoveMgTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Remove-MgTeamPrimaryChannelMessageHostedContent","DELETE","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","RemoveMgTeamPrimaryChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgTeamPrimaryChannelMessageHostedContentContent","DELETE","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgTeamPrimaryChannelMessageReply.g.cs","v1.0","Remove-MgTeamPrimaryChannelMessageReply","DELETE","/teams/{param}/primaryChannel/messages/{param}/replies/{param}","no-oracle","" +"Cmdlets","RemoveMgTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgTeamPrimaryChannelMessageReplyHostedContent","DELETE","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgTeamPrimaryChannelMessageReplyHostedContent" +"Cmdlets","RemoveMgTeamPrimaryChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgTeamPrimaryChannelMessageReplyHostedContentContent","DELETE","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Remove-MgTeamPrimaryChannelSharedWithTeam","DELETE","/teams/{param}/primaryChannel/sharedWithTeams/{param}","matched","Remove-MgTeamPrimaryChannelSharedWithTeam" +"Cmdlets","RemoveMgTeamPrimaryChannelTab.g.cs","v1.0","Remove-MgTeamPrimaryChannelTab","DELETE","/teams/{param}/primaryChannel/tabs/{param}","matched","Remove-MgTeamPrimaryChannelTab" +"Cmdlets","RemoveMgTeamSchedule.g.cs","v1.0","Remove-MgTeamSchedule","DELETE","/teams/{param}/schedule","matched","Remove-MgTeamSchedule" +"Cmdlets","RemoveMgTeamScheduleDayNote.g.cs","v1.0","Remove-MgTeamScheduleDayNote","DELETE","/teams/{param}/schedule/dayNotes/{param}","matched","Remove-MgTeamScheduleDayNote" +"Cmdlets","RemoveMgTeamScheduleOfferShiftRequest.g.cs","v1.0","Remove-MgTeamScheduleOfferShiftRequest","DELETE","/teams/{param}/schedule/offerShiftRequests/{param}","matched","Remove-MgTeamScheduleOfferShiftRequest" +"Cmdlets","RemoveMgTeamScheduleOpenShift.g.cs","v1.0","Remove-MgTeamScheduleOpenShift","DELETE","/teams/{param}/schedule/openShifts/{param}","matched","Remove-MgTeamScheduleOpenShift" +"Cmdlets","RemoveMgTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Remove-MgTeamScheduleOpenShiftChangeRequest","DELETE","/teams/{param}/schedule/openShiftChangeRequests/{param}","matched","Remove-MgTeamScheduleOpenShiftChangeRequest" +"Cmdlets","RemoveMgTeamScheduleSchedulingGroup.g.cs","v1.0","Remove-MgTeamScheduleSchedulingGroup","DELETE","/teams/{param}/schedule/schedulingGroups/{param}","matched","Remove-MgTeamScheduleSchedulingGroup" +"Cmdlets","RemoveMgTeamScheduleShift.g.cs","v1.0","Remove-MgTeamScheduleShift","DELETE","/teams/{param}/schedule/shifts/{param}","matched","Remove-MgTeamScheduleShift" +"Cmdlets","RemoveMgTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Remove-MgTeamScheduleSwapShiftChangeRequest","DELETE","/teams/{param}/schedule/swapShiftsChangeRequests/{param}","matched","Remove-MgTeamScheduleSwapShiftChangeRequest" +"Cmdlets","RemoveMgTeamScheduleTimeCard.g.cs","v1.0","Remove-MgTeamScheduleTimeCard","DELETE","/teams/{param}/schedule/timeCards/{param}","matched","Remove-MgTeamScheduleTimeCard" +"Cmdlets","RemoveMgTeamScheduleTimeOff.g.cs","v1.0","Remove-MgTeamScheduleTimeOff","DELETE","/teams/{param}/schedule/timesOff/{param}","matched","Remove-MgTeamScheduleTimeOff" +"Cmdlets","RemoveMgTeamScheduleTimeOffReason.g.cs","v1.0","Remove-MgTeamScheduleTimeOffReason","DELETE","/teams/{param}/schedule/timeOffReasons/{param}","matched","Remove-MgTeamScheduleTimeOffReason" +"Cmdlets","RemoveMgTeamScheduleTimeOffRequest.g.cs","v1.0","Remove-MgTeamScheduleTimeOffRequest","DELETE","/teams/{param}/schedule/timeOffRequests/{param}","matched","Remove-MgTeamScheduleTimeOffRequest" +"Cmdlets","RemoveMgTeamTag.g.cs","v1.0","Remove-MgTeamTag","DELETE","/teams/{param}/tags/{param}","matched","Remove-MgTeamTag" +"Cmdlets","RemoveMgTeamTagMember.g.cs","v1.0","Remove-MgTeamTagMember","DELETE","/teams/{param}/tags/{param}/members/{param}","matched","Remove-MgTeamTagMember" +"Cmdlets","RemoveMgTeamworkDeletedChat.g.cs","v1.0","Remove-MgTeamworkDeletedChat","DELETE","/teamwork/deletedChats/{param}","matched","Remove-MgTeamworkDeletedChat" +"Cmdlets","RemoveMgTeamworkDeletedTeam.g.cs","v1.0","Remove-MgTeamworkDeletedTeam","DELETE","/teamwork/deletedTeams/{param}","matched","Remove-MgTeamworkDeletedTeam" +"Cmdlets","RemoveMgTeamworkDeletedTeamChannel.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannel","DELETE","/teamwork/deletedTeams/{param}/channels/{param}","matched","Remove-MgTeamworkDeletedTeamChannel" +"Cmdlets","RemoveMgTeamworkDeletedTeamChannelAllMember.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelAllMember","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/{param}","mismatch","Remove-MgTeamworkDeletedTeamChannelMember" +"Cmdlets","RemoveMgTeamworkDeletedTeamChannelFileFolderContent.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelFileFolderContent","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/filesFolder/content","matched","Remove-MgTeamworkDeletedTeamChannelFileFolderContent" +"Cmdlets","RemoveMgTeamworkDeletedTeamChannelMember.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMember","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/members/{param}","no-oracle","" +"Cmdlets","RemoveMgTeamworkDeletedTeamChannelMessage.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMessage","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}","matched","Remove-MgTeamworkDeletedTeamChannelMessage" +"Cmdlets","RemoveMgTeamworkDeletedTeamChannelMessageHostedContent.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMessageHostedContent","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","matched","Remove-MgTeamworkDeletedTeamChannelMessageHostedContent" +"Cmdlets","RemoveMgTeamworkDeletedTeamChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMessageHostedContentContent","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgTeamworkDeletedTeamChannelMessageReply.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMessageReply","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","matched","Remove-MgTeamworkDeletedTeamChannelMessageReply" +"Cmdlets","RemoveMgTeamworkDeletedTeamChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"Cmdlets","RemoveMgTeamworkDeletedTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContentContent","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgTeamworkDeletedTeamChannelSharedWithTeam.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelSharedWithTeam","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}","matched","Remove-MgTeamworkDeletedTeamChannelSharedWithTeam" +"Cmdlets","RemoveMgTeamworkDeletedTeamChannelTab.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelTab","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/tabs/{param}","matched","Remove-MgTeamworkDeletedTeamChannelTab" +"Cmdlets","RemoveMgTeamworkTeamAppSetting.g.cs","v1.0","Remove-MgTeamworkTeamAppSetting","DELETE","/teamwork/teamsAppSettings","matched","Remove-MgTeamworkTeamAppSetting" +"Cmdlets","RemoveMgTeamworkWorkforceIntegration.g.cs","v1.0","Remove-MgTeamworkWorkforceIntegration","DELETE","/teamwork/workforceIntegrations/{param}","matched","Remove-MgTeamworkWorkforceIntegration" +"Cmdlets","RemoveMgUserChat.g.cs","v1.0","Remove-MgUserChat","DELETE","/users/{param}/chats/{param}","matched","Remove-MgUserChat" +"Cmdlets","RemoveMgUserChatInstalledApp.g.cs","v1.0","Remove-MgUserChatInstalledApp","DELETE","/users/{param}/chats/{param}/installedApps/{param}","matched","Remove-MgUserChatInstalledApp" +"Cmdlets","RemoveMgUserChatLastMessagePreview.g.cs","v1.0","Remove-MgUserChatLastMessagePreview","DELETE","/users/{param}/chats/{param}/lastMessagePreview","matched","Remove-MgUserChatLastMessagePreview" +"Cmdlets","RemoveMgUserChatMember.g.cs","v1.0","Remove-MgUserChatMember","DELETE","/users/{param}/chats/{param}/members/{param}","matched","Remove-MgUserChatMember" +"Cmdlets","RemoveMgUserChatMessage.g.cs","v1.0","Remove-MgUserChatMessage","DELETE","/users/{param}/chats/{param}/messages/{param}","matched","Remove-MgUserChatMessage" +"Cmdlets","RemoveMgUserChatMessageHostedContent.g.cs","v1.0","Remove-MgUserChatMessageHostedContent","DELETE","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}","matched","Remove-MgUserChatMessageHostedContent" +"Cmdlets","RemoveMgUserChatMessageHostedContentContent.g.cs","v1.0","Remove-MgUserChatMessageHostedContentContent","DELETE","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgUserChatMessageReply.g.cs","v1.0","Remove-MgUserChatMessageReply","DELETE","/users/{param}/chats/{param}/messages/{param}/replies/{param}","matched","Remove-MgUserChatMessageReply" +"Cmdlets","RemoveMgUserChatMessageReplyHostedContent.g.cs","v1.0","Remove-MgUserChatMessageReplyHostedContent","DELETE","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgUserChatMessageReplyHostedContent" +"Cmdlets","RemoveMgUserChatMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgUserChatMessageReplyHostedContentContent","DELETE","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgUserChatPermissionGrant.g.cs","v1.0","Remove-MgUserChatPermissionGrant","DELETE","/users/{param}/chats/{param}/permissionGrants/{param}","matched","Remove-MgUserChatPermissionGrant" +"Cmdlets","RemoveMgUserChatPinnedMessage.g.cs","v1.0","Remove-MgUserChatPinnedMessage","DELETE","/users/{param}/chats/{param}/pinnedMessages/{param}","matched","Remove-MgUserChatPinnedMessage" +"Cmdlets","RemoveMgUserChatTab.g.cs","v1.0","Remove-MgUserChatTab","DELETE","/users/{param}/chats/{param}/tabs/{param}","matched","Remove-MgUserChatTab" +"Cmdlets","RemoveMgUserChatTargetedMessage.g.cs","v1.0","Remove-MgUserChatTargetedMessage","DELETE","/users/{param}/chats/{param}/targetedMessages/{param}","matched","Remove-MgUserChatTargetedMessage" +"Cmdlets","RemoveMgUserChatTargetedMessageHostedContent.g.cs","v1.0","Remove-MgUserChatTargetedMessageHostedContent","DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}","matched","Remove-MgUserChatTargetedMessageHostedContent" +"Cmdlets","RemoveMgUserChatTargetedMessageHostedContentContent.g.cs","v1.0","Remove-MgUserChatTargetedMessageHostedContentContent","DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgUserChatTargetedMessageReply.g.cs","v1.0","Remove-MgUserChatTargetedMessageReply","DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}","matched","Remove-MgUserChatTargetedMessageReply" +"Cmdlets","RemoveMgUserChatTargetedMessageReplyHostedContent.g.cs","v1.0","Remove-MgUserChatTargetedMessageReplyHostedContent","DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgUserChatTargetedMessageReplyHostedContent" +"Cmdlets","RemoveMgUserChatTargetedMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgUserChatTargetedMessageReplyHostedContentContent","DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeam.g.cs","v1.0","Remove-MgUserJoinedTeam","DELETE","/users/{param}/joinedTeams/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamChannel.g.cs","v1.0","Remove-MgUserJoinedTeamChannel","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamChannelAllMember.g.cs","v1.0","Remove-MgUserJoinedTeamChannelAllMember","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamChannelFileFolderContent.g.cs","v1.0","Remove-MgUserJoinedTeamChannelFileFolderContent","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/content","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamChannelMember.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMember","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/members/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamChannelMessage.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMessage","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamChannelMessageHostedContent.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMessageHostedContent","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMessageHostedContentContent","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamChannelMessageReply.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMessageReply","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMessageReplyHostedContent","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMessageReplyHostedContentContent","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamChannelSharedWithTeam.g.cs","v1.0","Remove-MgUserJoinedTeamChannelSharedWithTeam","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamChannelTab.g.cs","v1.0","Remove-MgUserJoinedTeamChannelTab","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamInstalledApp.g.cs","v1.0","Remove-MgUserJoinedTeamInstalledApp","DELETE","/users/{param}/joinedTeams/{param}/installedApps/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamMember.g.cs","v1.0","Remove-MgUserJoinedTeamMember","DELETE","/users/{param}/joinedTeams/{param}/members/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamOperation.g.cs","v1.0","Remove-MgUserJoinedTeamOperation","DELETE","/users/{param}/joinedTeams/{param}/operations/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPermissionGrant.g.cs","v1.0","Remove-MgUserJoinedTeamPermissionGrant","DELETE","/users/{param}/joinedTeams/{param}/permissionGrants/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPhotoContent.g.cs","v1.0","Remove-MgUserJoinedTeamPhotoContent","DELETE","/users/{param}/joinedTeams/{param}/photo/$value","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPrimaryChannel.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannel","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPrimaryChannelAllMember.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelAllMember","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelFileFolderContent","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/content","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPrimaryChannelMember.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMember","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/members/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPrimaryChannelMessage.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMessage","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMessageHostedContent","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPrimaryChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMessageHostedContentContent","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPrimaryChannelMessageReply.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMessageReply","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelSharedWithTeam","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamPrimaryChannelTab.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelTab","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamSchedule.g.cs","v1.0","Remove-MgUserJoinedTeamSchedule","DELETE","/users/{param}/joinedTeams/{param}/schedule","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamScheduleDayNote.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleDayNote","DELETE","/users/{param}/joinedTeams/{param}/schedule/dayNotes/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamScheduleOfferShiftRequest.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleOfferShiftRequest","DELETE","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamScheduleOpenShift.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleOpenShift","DELETE","/users/{param}/joinedTeams/{param}/schedule/openShifts/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleOpenShiftChangeRequest","DELETE","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamScheduleSchedulingGroup.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleSchedulingGroup","DELETE","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamScheduleShift.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleShift","DELETE","/users/{param}/joinedTeams/{param}/schedule/shifts/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleSwapShiftChangeRequest","DELETE","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamScheduleTimeCard.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleTimeCard","DELETE","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamScheduleTimeOff.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleTimeOff","DELETE","/users/{param}/joinedTeams/{param}/schedule/timesOff/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamScheduleTimeOffReason.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleTimeOffReason","DELETE","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamScheduleTimeOffRequest.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleTimeOffRequest","DELETE","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamTag.g.cs","v1.0","Remove-MgUserJoinedTeamTag","DELETE","/users/{param}/joinedTeams/{param}/tags/{param}","no-oracle","" +"Cmdlets","RemoveMgUserJoinedTeamTagMember.g.cs","v1.0","Remove-MgUserJoinedTeamTagMember","DELETE","/users/{param}/joinedTeams/{param}/tags/{param}/members/{param}","no-oracle","" +"Cmdlets","RemoveMgUserTeamwork.g.cs","v1.0","Remove-MgUserTeamwork","DELETE","/users/{param}/teamwork","matched","Remove-MgUserTeamwork" +"Cmdlets","RemoveMgUserTeamworkAssociatedTeam.g.cs","v1.0","Remove-MgUserTeamworkAssociatedTeam","DELETE","/users/{param}/teamwork/associatedTeams/{param}","matched","Remove-MgUserTeamworkAssociatedTeam" +"Cmdlets","RemoveMgUserTeamworkInstalledApp.g.cs","v1.0","Remove-MgUserTeamworkInstalledApp","DELETE","/users/{param}/teamwork/installedApps/{param}","matched","Remove-MgUserTeamworkInstalledApp" +"Cmdlets","SetMgGroupTeam.g.cs","v1.0","Set-MgGroupTeam","PUT","/groups/{param}/team","matched","Set-MgGroupTeam" +"Cmdlets","SetMgGroupTeamChannelFileFolderContent.g.cs","v1.0","Set-MgGroupTeamChannelFileFolderContent","PUT","/groups/{param}/team/channels/{param}/filesFolder/content","matched","Set-MgGroupTeamChannelFileFolderContent" +"Cmdlets","SetMgGroupTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Set-MgGroupTeamPrimaryChannelFileFolderContent","PUT","/groups/{param}/team/primaryChannel/filesFolder/content","matched","Set-MgGroupTeamPrimaryChannelFileFolderContent" +"Cmdlets","SetMgGroupTeamSchedule.g.cs","v1.0","Set-MgGroupTeamSchedule","PUT","/groups/{param}/team/schedule","matched","Set-MgGroupTeamSchedule" +"Cmdlets","SetMgTeamChannelFileFolderContent.g.cs","v1.0","Set-MgTeamChannelFileFolderContent","PUT","/teams/{param}/channels/{param}/filesFolder/content","matched","Set-MgTeamChannelFileFolderContent" +"Cmdlets","SetMgTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Set-MgTeamPrimaryChannelFileFolderContent","PUT","/teams/{param}/primaryChannel/filesFolder/content","matched","Set-MgTeamPrimaryChannelFileFolderContent" +"Cmdlets","SetMgTeamSchedule.g.cs","v1.0","Set-MgTeamSchedule","PUT","/teams/{param}/schedule","matched","Set-MgTeamSchedule" +"Cmdlets","SetMgTeamworkDeletedTeamChannelFileFolderContent.g.cs","v1.0","Set-MgTeamworkDeletedTeamChannelFileFolderContent","PUT","/teamwork/deletedTeams/{param}/channels/{param}/filesFolder/content","matched","Set-MgTeamworkDeletedTeamChannelFileFolderContent" +"Cmdlets","SetMgUserJoinedTeamChannelFileFolderContent.g.cs","v1.0","Set-MgUserJoinedTeamChannelFileFolderContent","PUT","/users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/content","no-oracle","" +"Cmdlets","SetMgUserJoinedTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Set-MgUserJoinedTeamPrimaryChannelFileFolderContent","PUT","/users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/content","no-oracle","" +"Cmdlets","SetMgUserJoinedTeamSchedule.g.cs","v1.0","Set-MgUserJoinedTeamSchedule","PUT","/users/{param}/joinedTeams/{param}/schedule","no-oracle","" +"Cmdlets","UpdateMgAppCatalogTeamApp.g.cs","v1.0","Update-MgAppCatalogTeamApp","PATCH","/appCatalogs/teamsApps/{param}","matched","Update-MgAppCatalogTeamApp" +"Cmdlets","UpdateMgAppCatalogTeamAppDefinition.g.cs","v1.0","Update-MgAppCatalogTeamAppDefinition","PATCH","/appCatalogs/teamsApps/{param}/appDefinitions/{param}","matched","Update-MgAppCatalogTeamAppDefinition" +"Cmdlets","UpdateMgAppCatalogTeamAppDefinitionBot.g.cs","v1.0","Update-MgAppCatalogTeamAppDefinitionBot","PATCH","/appCatalogs/teamsApps/{param}/appDefinitions/{param}/bot","matched","Update-MgAppCatalogTeamAppDefinitionBot" +"Cmdlets","UpdateMgChat.g.cs","v1.0","Update-MgChat","PATCH","/chats/{param}","matched","Update-MgChat" +"Cmdlets","UpdateMgChatInstalledApp.g.cs","v1.0","Update-MgChatInstalledApp","PATCH","/chats/{param}/installedApps/{param}","no-oracle","" +"Cmdlets","UpdateMgChatLastMessagePreview.g.cs","v1.0","Update-MgChatLastMessagePreview","PATCH","/chats/{param}/lastMessagePreview","matched","Update-MgChatLastMessagePreview" +"Cmdlets","UpdateMgChatMember.g.cs","v1.0","Update-MgChatMember","PATCH","/chats/{param}/members/{param}","matched","Update-MgChatMember" +"Cmdlets","UpdateMgChatMessage.g.cs","v1.0","Update-MgChatMessage","PATCH","/chats/{param}/messages/{param}","matched","Update-MgChatMessage" +"Cmdlets","UpdateMgChatMessageHostedContent.g.cs","v1.0","Update-MgChatMessageHostedContent","PATCH","/chats/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","UpdateMgChatMessageReply.g.cs","v1.0","Update-MgChatMessageReply","PATCH","/chats/{param}/messages/{param}/replies/{param}","matched","Update-MgChatMessageReply" +"Cmdlets","UpdateMgChatMessageReplyHostedContent.g.cs","v1.0","Update-MgChatMessageReplyHostedContent","PATCH","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgChatMessageReplyHostedContent" +"Cmdlets","UpdateMgChatPermissionGrant.g.cs","v1.0","Update-MgChatPermissionGrant","PATCH","/chats/{param}/permissionGrants/{param}","matched","Update-MgChatPermissionGrant" +"Cmdlets","UpdateMgChatPinnedMessage.g.cs","v1.0","Update-MgChatPinnedMessage","PATCH","/chats/{param}/pinnedMessages/{param}","matched","Update-MgChatPinnedMessage" +"Cmdlets","UpdateMgChatTab.g.cs","v1.0","Update-MgChatTab","PATCH","/chats/{param}/tabs/{param}","matched","Update-MgChatTab" +"Cmdlets","UpdateMgChatTargetedMessage.g.cs","v1.0","Update-MgChatTargetedMessage","PATCH","/chats/{param}/targetedMessages/{param}","matched","Update-MgChatTargetedMessage" +"Cmdlets","UpdateMgChatTargetedMessageHostedContent.g.cs","v1.0","Update-MgChatTargetedMessageHostedContent","PATCH","/chats/{param}/targetedMessages/{param}/hostedContents/{param}","matched","Update-MgChatTargetedMessageHostedContent" +"Cmdlets","UpdateMgChatTargetedMessageReply.g.cs","v1.0","Update-MgChatTargetedMessageReply","PATCH","/chats/{param}/targetedMessages/{param}/replies/{param}","matched","Update-MgChatTargetedMessageReply" +"Cmdlets","UpdateMgChatTargetedMessageReplyHostedContent.g.cs","v1.0","Update-MgChatTargetedMessageReplyHostedContent","PATCH","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgChatTargetedMessageReplyHostedContent" +"Cmdlets","UpdateMgGroupTeamChannel.g.cs","v1.0","Update-MgGroupTeamChannel","PATCH","/groups/{param}/team/channels/{param}","matched","Update-MgGroupTeamChannel" +"Cmdlets","UpdateMgGroupTeamChannelAllMember.g.cs","v1.0","Update-MgGroupTeamChannelAllMember","PATCH","/groups/{param}/team/channels/{param}/allMembers/{param}","mismatch","Update-MgGroupTeamChannelMember" +"Cmdlets","UpdateMgGroupTeamChannelMember.g.cs","v1.0","Update-MgGroupTeamChannelMember","PATCH","/groups/{param}/team/channels/{param}/members/{param}","no-oracle","" +"Cmdlets","UpdateMgGroupTeamChannelMessage.g.cs","v1.0","Update-MgGroupTeamChannelMessage","PATCH","/groups/{param}/team/channels/{param}/messages/{param}","matched","Update-MgGroupTeamChannelMessage" +"Cmdlets","UpdateMgGroupTeamChannelMessageHostedContent.g.cs","v1.0","Update-MgGroupTeamChannelMessageHostedContent","PATCH","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}","matched","Update-MgGroupTeamChannelMessageHostedContent" +"Cmdlets","UpdateMgGroupTeamChannelMessageReply.g.cs","v1.0","Update-MgGroupTeamChannelMessageReply","PATCH","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}","matched","Update-MgGroupTeamChannelMessageReply" +"Cmdlets","UpdateMgGroupTeamChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgGroupTeamChannelMessageReplyHostedContent","PATCH","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgGroupTeamChannelMessageReplyHostedContent" +"Cmdlets","UpdateMgGroupTeamChannelSharedWithTeam.g.cs","v1.0","Update-MgGroupTeamChannelSharedWithTeam","PATCH","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}","matched","Update-MgGroupTeamChannelSharedWithTeam" +"Cmdlets","UpdateMgGroupTeamChannelTab.g.cs","v1.0","Update-MgGroupTeamChannelTab","PATCH","/groups/{param}/team/channels/{param}/tabs/{param}","matched","Update-MgGroupTeamChannelTab" +"Cmdlets","UpdateMgGroupTeamInstalledApp.g.cs","v1.0","Update-MgGroupTeamInstalledApp","PATCH","/groups/{param}/team/installedApps/{param}","no-oracle","" +"Cmdlets","UpdateMgGroupTeamMember.g.cs","v1.0","Update-MgGroupTeamMember","PATCH","/groups/{param}/team/members/{param}","matched","Update-MgGroupTeamMember" +"Cmdlets","UpdateMgGroupTeamOperation.g.cs","v1.0","Update-MgGroupTeamOperation","PATCH","/groups/{param}/team/operations/{param}","matched","Update-MgGroupTeamOperation" +"Cmdlets","UpdateMgGroupTeamPermissionGrant.g.cs","v1.0","Update-MgGroupTeamPermissionGrant","PATCH","/groups/{param}/team/permissionGrants/{param}","matched","Update-MgGroupTeamPermissionGrant" +"Cmdlets","UpdateMgGroupTeamPhoto.g.cs","v1.0","Update-MgGroupTeamPhoto","PATCH","/groups/{param}/team/photo","matched","Update-MgGroupTeamPhoto" +"Cmdlets","UpdateMgGroupTeamPrimaryChannel.g.cs","v1.0","Update-MgGroupTeamPrimaryChannel","PATCH","/groups/{param}/team/primaryChannel","matched","Update-MgGroupTeamPrimaryChannel" +"Cmdlets","UpdateMgGroupTeamPrimaryChannelAllMember.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelAllMember","PATCH","/groups/{param}/team/primaryChannel/allMembers/{param}","mismatch","Update-MgGroupTeamPrimaryChannelMember" +"Cmdlets","UpdateMgGroupTeamPrimaryChannelMember.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelMember","PATCH","/groups/{param}/team/primaryChannel/members/{param}","no-oracle","" +"Cmdlets","UpdateMgGroupTeamPrimaryChannelMessage.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelMessage","PATCH","/groups/{param}/team/primaryChannel/messages/{param}","matched","Update-MgGroupTeamPrimaryChannelMessage" +"Cmdlets","UpdateMgGroupTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelMessageHostedContent","PATCH","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}","matched","Update-MgGroupTeamPrimaryChannelMessageHostedContent" +"Cmdlets","UpdateMgGroupTeamPrimaryChannelMessageReply.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelMessageReply","PATCH","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}","matched","Update-MgGroupTeamPrimaryChannelMessageReply" +"Cmdlets","UpdateMgGroupTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelMessageReplyHostedContent","PATCH","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"Cmdlets","UpdateMgGroupTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelSharedWithTeam","PATCH","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}","matched","Update-MgGroupTeamPrimaryChannelSharedWithTeam" +"Cmdlets","UpdateMgGroupTeamPrimaryChannelTab.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelTab","PATCH","/groups/{param}/team/primaryChannel/tabs/{param}","matched","Update-MgGroupTeamPrimaryChannelTab" +"Cmdlets","UpdateMgGroupTeamScheduleDayNote.g.cs","v1.0","Update-MgGroupTeamScheduleDayNote","PATCH","/groups/{param}/team/schedule/dayNotes/{param}","matched","Update-MgGroupTeamScheduleDayNote" +"Cmdlets","UpdateMgGroupTeamScheduleOfferShiftRequest.g.cs","v1.0","Update-MgGroupTeamScheduleOfferShiftRequest","PATCH","/groups/{param}/team/schedule/offerShiftRequests/{param}","matched","Update-MgGroupTeamScheduleOfferShiftRequest" +"Cmdlets","UpdateMgGroupTeamScheduleOpenShift.g.cs","v1.0","Update-MgGroupTeamScheduleOpenShift","PATCH","/groups/{param}/team/schedule/openShifts/{param}","matched","Update-MgGroupTeamScheduleOpenShift" +"Cmdlets","UpdateMgGroupTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Update-MgGroupTeamScheduleOpenShiftChangeRequest","PATCH","/groups/{param}/team/schedule/openShiftChangeRequests/{param}","matched","Update-MgGroupTeamScheduleOpenShiftChangeRequest" +"Cmdlets","UpdateMgGroupTeamScheduleSchedulingGroup.g.cs","v1.0","Update-MgGroupTeamScheduleSchedulingGroup","PATCH","/groups/{param}/team/schedule/schedulingGroups/{param}","matched","Update-MgGroupTeamScheduleSchedulingGroup" +"Cmdlets","UpdateMgGroupTeamScheduleShift.g.cs","v1.0","Update-MgGroupTeamScheduleShift","PATCH","/groups/{param}/team/schedule/shifts/{param}","matched","Update-MgGroupTeamScheduleShift" +"Cmdlets","UpdateMgGroupTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Update-MgGroupTeamScheduleSwapShiftChangeRequest","PATCH","/groups/{param}/team/schedule/swapShiftsChangeRequests/{param}","matched","Update-MgGroupTeamScheduleSwapShiftChangeRequest" +"Cmdlets","UpdateMgGroupTeamScheduleTimeCard.g.cs","v1.0","Update-MgGroupTeamScheduleTimeCard","PATCH","/groups/{param}/team/schedule/timeCards/{param}","matched","Update-MgGroupTeamScheduleTimeCard" +"Cmdlets","UpdateMgGroupTeamScheduleTimeOff.g.cs","v1.0","Update-MgGroupTeamScheduleTimeOff","PATCH","/groups/{param}/team/schedule/timesOff/{param}","matched","Update-MgGroupTeamScheduleTimeOff" +"Cmdlets","UpdateMgGroupTeamScheduleTimeOffReason.g.cs","v1.0","Update-MgGroupTeamScheduleTimeOffReason","PATCH","/groups/{param}/team/schedule/timeOffReasons/{param}","matched","Update-MgGroupTeamScheduleTimeOffReason" +"Cmdlets","UpdateMgGroupTeamScheduleTimeOffRequest.g.cs","v1.0","Update-MgGroupTeamScheduleTimeOffRequest","PATCH","/groups/{param}/team/schedule/timeOffRequests/{param}","matched","Update-MgGroupTeamScheduleTimeOffRequest" +"Cmdlets","UpdateMgGroupTeamTag.g.cs","v1.0","Update-MgGroupTeamTag","PATCH","/groups/{param}/team/tags/{param}","matched","Update-MgGroupTeamTag" +"Cmdlets","UpdateMgGroupTeamTagMember.g.cs","v1.0","Update-MgGroupTeamTagMember","PATCH","/groups/{param}/team/tags/{param}/members/{param}","matched","Update-MgGroupTeamTagMember" +"Cmdlets","UpdateMgTeam.g.cs","v1.0","Update-MgTeam","PATCH","/teams/{param}","matched","Update-MgTeam" +"Cmdlets","UpdateMgTeamChannel.g.cs","v1.0","Update-MgTeamChannel","PATCH","/teams/{param}/channels/{param}","matched","Update-MgTeamChannel" +"Cmdlets","UpdateMgTeamChannelAllMember.g.cs","v1.0","Update-MgTeamChannelAllMember","PATCH","/teams/{param}/channels/{param}/allMembers/{param}","mismatch","Update-MgTeamChannelMember" +"Cmdlets","UpdateMgTeamChannelMember.g.cs","v1.0","Update-MgTeamChannelMember","PATCH","/teams/{param}/channels/{param}/members/{param}","no-oracle","" +"Cmdlets","UpdateMgTeamChannelMessage.g.cs","v1.0","Update-MgTeamChannelMessage","PATCH","/teams/{param}/channels/{param}/messages/{param}","matched","Update-MgTeamChannelMessage" +"Cmdlets","UpdateMgTeamChannelMessageHostedContent.g.cs","v1.0","Update-MgTeamChannelMessageHostedContent","PATCH","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","UpdateMgTeamChannelMessageReply.g.cs","v1.0","Update-MgTeamChannelMessageReply","PATCH","/teams/{param}/channels/{param}/messages/{param}/replies/{param}","matched","Update-MgTeamChannelMessageReply" +"Cmdlets","UpdateMgTeamChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgTeamChannelMessageReplyHostedContent","PATCH","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgTeamChannelMessageReplyHostedContent" +"Cmdlets","UpdateMgTeamChannelSharedWithTeam.g.cs","v1.0","Update-MgTeamChannelSharedWithTeam","PATCH","/teams/{param}/channels/{param}/sharedWithTeams/{param}","matched","Update-MgTeamChannelSharedWithTeam" +"Cmdlets","UpdateMgTeamChannelTab.g.cs","v1.0","Update-MgTeamChannelTab","PATCH","/teams/{param}/channels/{param}/tabs/{param}","matched","Update-MgTeamChannelTab" +"Cmdlets","UpdateMgTeamInstalledApp.g.cs","v1.0","Update-MgTeamInstalledApp","PATCH","/teams/{param}/installedApps/{param}","no-oracle","" +"Cmdlets","UpdateMgTeamMember.g.cs","v1.0","Update-MgTeamMember","PATCH","/teams/{param}/members/{param}","matched","Update-MgTeamMember" +"Cmdlets","UpdateMgTeamOperation.g.cs","v1.0","Update-MgTeamOperation","PATCH","/teams/{param}/operations/{param}","matched","Update-MgTeamOperation" +"Cmdlets","UpdateMgTeamPermissionGrant.g.cs","v1.0","Update-MgTeamPermissionGrant","PATCH","/teams/{param}/permissionGrants/{param}","matched","Update-MgTeamPermissionGrant" +"Cmdlets","UpdateMgTeamPhoto.g.cs","v1.0","Update-MgTeamPhoto","PATCH","/teams/{param}/photo","matched","Update-MgTeamPhoto" +"Cmdlets","UpdateMgTeamPrimaryChannel.g.cs","v1.0","Update-MgTeamPrimaryChannel","PATCH","/teams/{param}/primaryChannel","matched","Update-MgTeamPrimaryChannel" +"Cmdlets","UpdateMgTeamPrimaryChannelAllMember.g.cs","v1.0","Update-MgTeamPrimaryChannelAllMember","PATCH","/teams/{param}/primaryChannel/allMembers/{param}","mismatch","Update-MgTeamPrimaryChannelMember" +"Cmdlets","UpdateMgTeamPrimaryChannelMember.g.cs","v1.0","Update-MgTeamPrimaryChannelMember","PATCH","/teams/{param}/primaryChannel/members/{param}","no-oracle","" +"Cmdlets","UpdateMgTeamPrimaryChannelMessage.g.cs","v1.0","Update-MgTeamPrimaryChannelMessage","PATCH","/teams/{param}/primaryChannel/messages/{param}","matched","Update-MgTeamPrimaryChannelMessage" +"Cmdlets","UpdateMgTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Update-MgTeamPrimaryChannelMessageHostedContent","PATCH","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","UpdateMgTeamPrimaryChannelMessageReply.g.cs","v1.0","Update-MgTeamPrimaryChannelMessageReply","PATCH","/teams/{param}/primaryChannel/messages/{param}/replies/{param}","matched","Update-MgTeamPrimaryChannelMessageReply" +"Cmdlets","UpdateMgTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgTeamPrimaryChannelMessageReplyHostedContent","PATCH","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgTeamPrimaryChannelMessageReplyHostedContent" +"Cmdlets","UpdateMgTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Update-MgTeamPrimaryChannelSharedWithTeam","PATCH","/teams/{param}/primaryChannel/sharedWithTeams/{param}","matched","Update-MgTeamPrimaryChannelSharedWithTeam" +"Cmdlets","UpdateMgTeamPrimaryChannelTab.g.cs","v1.0","Update-MgTeamPrimaryChannelTab","PATCH","/teams/{param}/primaryChannel/tabs/{param}","matched","Update-MgTeamPrimaryChannelTab" +"Cmdlets","UpdateMgTeamScheduleDayNote.g.cs","v1.0","Update-MgTeamScheduleDayNote","PATCH","/teams/{param}/schedule/dayNotes/{param}","matched","Update-MgTeamScheduleDayNote" +"Cmdlets","UpdateMgTeamScheduleOfferShiftRequest.g.cs","v1.0","Update-MgTeamScheduleOfferShiftRequest","PATCH","/teams/{param}/schedule/offerShiftRequests/{param}","matched","Update-MgTeamScheduleOfferShiftRequest" +"Cmdlets","UpdateMgTeamScheduleOpenShift.g.cs","v1.0","Update-MgTeamScheduleOpenShift","PATCH","/teams/{param}/schedule/openShifts/{param}","matched","Update-MgTeamScheduleOpenShift" +"Cmdlets","UpdateMgTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Update-MgTeamScheduleOpenShiftChangeRequest","PATCH","/teams/{param}/schedule/openShiftChangeRequests/{param}","matched","Update-MgTeamScheduleOpenShiftChangeRequest" +"Cmdlets","UpdateMgTeamScheduleSchedulingGroup.g.cs","v1.0","Update-MgTeamScheduleSchedulingGroup","PATCH","/teams/{param}/schedule/schedulingGroups/{param}","matched","Update-MgTeamScheduleSchedulingGroup" +"Cmdlets","UpdateMgTeamScheduleShift.g.cs","v1.0","Update-MgTeamScheduleShift","PATCH","/teams/{param}/schedule/shifts/{param}","matched","Update-MgTeamScheduleShift" +"Cmdlets","UpdateMgTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Update-MgTeamScheduleSwapShiftChangeRequest","PATCH","/teams/{param}/schedule/swapShiftsChangeRequests/{param}","matched","Update-MgTeamScheduleSwapShiftChangeRequest" +"Cmdlets","UpdateMgTeamScheduleTimeCard.g.cs","v1.0","Update-MgTeamScheduleTimeCard","PATCH","/teams/{param}/schedule/timeCards/{param}","matched","Update-MgTeamScheduleTimeCard" +"Cmdlets","UpdateMgTeamScheduleTimeOff.g.cs","v1.0","Update-MgTeamScheduleTimeOff","PATCH","/teams/{param}/schedule/timesOff/{param}","matched","Update-MgTeamScheduleTimeOff" +"Cmdlets","UpdateMgTeamScheduleTimeOffReason.g.cs","v1.0","Update-MgTeamScheduleTimeOffReason","PATCH","/teams/{param}/schedule/timeOffReasons/{param}","matched","Update-MgTeamScheduleTimeOffReason" +"Cmdlets","UpdateMgTeamScheduleTimeOffRequest.g.cs","v1.0","Update-MgTeamScheduleTimeOffRequest","PATCH","/teams/{param}/schedule/timeOffRequests/{param}","matched","Update-MgTeamScheduleTimeOffRequest" +"Cmdlets","UpdateMgTeamTag.g.cs","v1.0","Update-MgTeamTag","PATCH","/teams/{param}/tags/{param}","matched","Update-MgTeamTag" +"Cmdlets","UpdateMgTeamTagMember.g.cs","v1.0","Update-MgTeamTagMember","PATCH","/teams/{param}/tags/{param}/members/{param}","matched","Update-MgTeamTagMember" +"Cmdlets","UpdateMgTeamwork.g.cs","v1.0","Update-MgTeamwork","PATCH","/teamwork","matched","Update-MgTeamwork" +"Cmdlets","UpdateMgTeamworkDeletedChat.g.cs","v1.0","Update-MgTeamworkDeletedChat","PATCH","/teamwork/deletedChats/{param}","matched","Update-MgTeamworkDeletedChat" +"Cmdlets","UpdateMgTeamworkDeletedTeam.g.cs","v1.0","Update-MgTeamworkDeletedTeam","PATCH","/teamwork/deletedTeams/{param}","matched","Update-MgTeamworkDeletedTeam" +"Cmdlets","UpdateMgTeamworkDeletedTeamChannel.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannel","PATCH","/teamwork/deletedTeams/{param}/channels/{param}","matched","Update-MgTeamworkDeletedTeamChannel" +"Cmdlets","UpdateMgTeamworkDeletedTeamChannelAllMember.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelAllMember","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/{param}","mismatch","Update-MgTeamworkDeletedTeamChannelMember" +"Cmdlets","UpdateMgTeamworkDeletedTeamChannelMember.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelMember","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/members/{param}","no-oracle","" +"Cmdlets","UpdateMgTeamworkDeletedTeamChannelMessage.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelMessage","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}","matched","Update-MgTeamworkDeletedTeamChannelMessage" +"Cmdlets","UpdateMgTeamworkDeletedTeamChannelMessageHostedContent.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelMessageHostedContent","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","matched","Update-MgTeamworkDeletedTeamChannelMessageHostedContent" +"Cmdlets","UpdateMgTeamworkDeletedTeamChannelMessageReply.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelMessageReply","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","matched","Update-MgTeamworkDeletedTeamChannelMessageReply" +"Cmdlets","UpdateMgTeamworkDeletedTeamChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"Cmdlets","UpdateMgTeamworkDeletedTeamChannelSharedWithTeam.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelSharedWithTeam","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}","matched","Update-MgTeamworkDeletedTeamChannelSharedWithTeam" +"Cmdlets","UpdateMgTeamworkDeletedTeamChannelTab.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelTab","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/tabs/{param}","matched","Update-MgTeamworkDeletedTeamChannelTab" +"Cmdlets","UpdateMgTeamworkTeamAppSetting.g.cs","v1.0","Update-MgTeamworkTeamAppSetting","PATCH","/teamwork/teamsAppSettings","matched","Update-MgTeamworkTeamAppSetting" +"Cmdlets","UpdateMgTeamworkWorkforceIntegration.g.cs","v1.0","Update-MgTeamworkWorkforceIntegration","PATCH","/teamwork/workforceIntegrations/{param}","matched","Update-MgTeamworkWorkforceIntegration" +"Cmdlets","UpdateMgUserChat.g.cs","v1.0","Update-MgUserChat","PATCH","/users/{param}/chats/{param}","matched","Update-MgUserChat" +"Cmdlets","UpdateMgUserChatInstalledApp.g.cs","v1.0","Update-MgUserChatInstalledApp","PATCH","/users/{param}/chats/{param}/installedApps/{param}","no-oracle","" +"Cmdlets","UpdateMgUserChatLastMessagePreview.g.cs","v1.0","Update-MgUserChatLastMessagePreview","PATCH","/users/{param}/chats/{param}/lastMessagePreview","matched","Update-MgUserChatLastMessagePreview" +"Cmdlets","UpdateMgUserChatMember.g.cs","v1.0","Update-MgUserChatMember","PATCH","/users/{param}/chats/{param}/members/{param}","matched","Update-MgUserChatMember" +"Cmdlets","UpdateMgUserChatMessage.g.cs","v1.0","Update-MgUserChatMessage","PATCH","/users/{param}/chats/{param}/messages/{param}","matched","Update-MgUserChatMessage" +"Cmdlets","UpdateMgUserChatMessageHostedContent.g.cs","v1.0","Update-MgUserChatMessageHostedContent","PATCH","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}","matched","Update-MgUserChatMessageHostedContent" +"Cmdlets","UpdateMgUserChatMessageReply.g.cs","v1.0","Update-MgUserChatMessageReply","PATCH","/users/{param}/chats/{param}/messages/{param}/replies/{param}","matched","Update-MgUserChatMessageReply" +"Cmdlets","UpdateMgUserChatMessageReplyHostedContent.g.cs","v1.0","Update-MgUserChatMessageReplyHostedContent","PATCH","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgUserChatMessageReplyHostedContent" +"Cmdlets","UpdateMgUserChatPermissionGrant.g.cs","v1.0","Update-MgUserChatPermissionGrant","PATCH","/users/{param}/chats/{param}/permissionGrants/{param}","matched","Update-MgUserChatPermissionGrant" +"Cmdlets","UpdateMgUserChatPinnedMessage.g.cs","v1.0","Update-MgUserChatPinnedMessage","PATCH","/users/{param}/chats/{param}/pinnedMessages/{param}","matched","Update-MgUserChatPinnedMessage" +"Cmdlets","UpdateMgUserChatTab.g.cs","v1.0","Update-MgUserChatTab","PATCH","/users/{param}/chats/{param}/tabs/{param}","matched","Update-MgUserChatTab" +"Cmdlets","UpdateMgUserChatTargetedMessage.g.cs","v1.0","Update-MgUserChatTargetedMessage","PATCH","/users/{param}/chats/{param}/targetedMessages/{param}","matched","Update-MgUserChatTargetedMessage" +"Cmdlets","UpdateMgUserChatTargetedMessageHostedContent.g.cs","v1.0","Update-MgUserChatTargetedMessageHostedContent","PATCH","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}","matched","Update-MgUserChatTargetedMessageHostedContent" +"Cmdlets","UpdateMgUserChatTargetedMessageReply.g.cs","v1.0","Update-MgUserChatTargetedMessageReply","PATCH","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}","matched","Update-MgUserChatTargetedMessageReply" +"Cmdlets","UpdateMgUserChatTargetedMessageReplyHostedContent.g.cs","v1.0","Update-MgUserChatTargetedMessageReplyHostedContent","PATCH","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgUserChatTargetedMessageReplyHostedContent" +"Cmdlets","UpdateMgUserJoinedTeam.g.cs","v1.0","Update-MgUserJoinedTeam","PATCH","/users/{param}/joinedTeams/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamChannel.g.cs","v1.0","Update-MgUserJoinedTeamChannel","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamChannelAllMember.g.cs","v1.0","Update-MgUserJoinedTeamChannelAllMember","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamChannelMember.g.cs","v1.0","Update-MgUserJoinedTeamChannelMember","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/members/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamChannelMessage.g.cs","v1.0","Update-MgUserJoinedTeamChannelMessage","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamChannelMessageHostedContent.g.cs","v1.0","Update-MgUserJoinedTeamChannelMessageHostedContent","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamChannelMessageReply.g.cs","v1.0","Update-MgUserJoinedTeamChannelMessageReply","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgUserJoinedTeamChannelMessageReplyHostedContent","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamChannelSharedWithTeam.g.cs","v1.0","Update-MgUserJoinedTeamChannelSharedWithTeam","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamChannelTab.g.cs","v1.0","Update-MgUserJoinedTeamChannelTab","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamInstalledApp.g.cs","v1.0","Update-MgUserJoinedTeamInstalledApp","PATCH","/users/{param}/joinedTeams/{param}/installedApps/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamMember.g.cs","v1.0","Update-MgUserJoinedTeamMember","PATCH","/users/{param}/joinedTeams/{param}/members/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamOperation.g.cs","v1.0","Update-MgUserJoinedTeamOperation","PATCH","/users/{param}/joinedTeams/{param}/operations/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamPermissionGrant.g.cs","v1.0","Update-MgUserJoinedTeamPermissionGrant","PATCH","/users/{param}/joinedTeams/{param}/permissionGrants/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamPhoto.g.cs","v1.0","Update-MgUserJoinedTeamPhoto","PATCH","/users/{param}/joinedTeams/{param}/photo","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamPrimaryChannel.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannel","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamPrimaryChannelAllMember.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelAllMember","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamPrimaryChannelMember.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelMember","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/members/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamPrimaryChannelMessage.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelMessage","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelMessageHostedContent","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamPrimaryChannelMessageReply.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelMessageReply","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelSharedWithTeam","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamPrimaryChannelTab.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelTab","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamScheduleDayNote.g.cs","v1.0","Update-MgUserJoinedTeamScheduleDayNote","PATCH","/users/{param}/joinedTeams/{param}/schedule/dayNotes/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamScheduleOfferShiftRequest.g.cs","v1.0","Update-MgUserJoinedTeamScheduleOfferShiftRequest","PATCH","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamScheduleOpenShift.g.cs","v1.0","Update-MgUserJoinedTeamScheduleOpenShift","PATCH","/users/{param}/joinedTeams/{param}/schedule/openShifts/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Update-MgUserJoinedTeamScheduleOpenShiftChangeRequest","PATCH","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamScheduleSchedulingGroup.g.cs","v1.0","Update-MgUserJoinedTeamScheduleSchedulingGroup","PATCH","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamScheduleShift.g.cs","v1.0","Update-MgUserJoinedTeamScheduleShift","PATCH","/users/{param}/joinedTeams/{param}/schedule/shifts/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Update-MgUserJoinedTeamScheduleSwapShiftChangeRequest","PATCH","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamScheduleTimeCard.g.cs","v1.0","Update-MgUserJoinedTeamScheduleTimeCard","PATCH","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamScheduleTimeOff.g.cs","v1.0","Update-MgUserJoinedTeamScheduleTimeOff","PATCH","/users/{param}/joinedTeams/{param}/schedule/timesOff/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamScheduleTimeOffReason.g.cs","v1.0","Update-MgUserJoinedTeamScheduleTimeOffReason","PATCH","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamScheduleTimeOffRequest.g.cs","v1.0","Update-MgUserJoinedTeamScheduleTimeOffRequest","PATCH","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamTag.g.cs","v1.0","Update-MgUserJoinedTeamTag","PATCH","/users/{param}/joinedTeams/{param}/tags/{param}","no-oracle","" +"Cmdlets","UpdateMgUserJoinedTeamTagMember.g.cs","v1.0","Update-MgUserJoinedTeamTagMember","PATCH","/users/{param}/joinedTeams/{param}/tags/{param}/members/{param}","no-oracle","" +"Cmdlets","UpdateMgUserTeamwork.g.cs","v1.0","Update-MgUserTeamwork","PATCH","/users/{param}/teamwork","matched","Update-MgUserTeamwork" +"Cmdlets","UpdateMgUserTeamworkAssociatedTeam.g.cs","v1.0","Update-MgUserTeamworkAssociatedTeam","PATCH","/users/{param}/teamwork/associatedTeams/{param}","matched","Update-MgUserTeamworkAssociatedTeam" +"Cmdlets","UpdateMgUserTeamworkInstalledApp.g.cs","v1.0","Update-MgUserTeamworkInstalledApp","PATCH","/users/{param}/teamwork/installedApps/{param}","no-oracle","" +"Cmdlets","GetMgUser_Get.g.cs","v1.0","Get-MgUser","GET","/users/{param}","matched","Get-MgUser" +"Cmdlets","GetMgUser_List.g.cs","v1.0","Get-MgUser","GET","/users","matched","Get-MgUser" +"Cmdlets","GetMgUser.g.cs","v1.0","Get-MgUser","","","dispatcher","" +"Cmdlets","GetMgUserCount.g.cs","v1.0","Get-MgUserCount","GET","/users/$count","matched","Get-MgUserCount" +"Cmdlets","GetMgUserCreatedObject_Get.g.cs","v1.0","Get-MgUserCreatedObject","GET","/users/{param}/createdObjects/{param}","matched","Get-MgUserCreatedObject" +"Cmdlets","GetMgUserCreatedObject_List.g.cs","v1.0","Get-MgUserCreatedObject","GET","/users/{param}/createdObjects","matched","Get-MgUserCreatedObject" +"Cmdlets","GetMgUserCreatedObject.g.cs","v1.0","Get-MgUserCreatedObject","","","dispatcher","" +"Cmdlets","GetMgUserCreatedObjectAsServicePrincipal_Get.g.cs","v1.0","Get-MgUserCreatedObjectAsServicePrincipal","GET","/users/{param}/createdObjects/{param}/servicePrincipal","matched","Get-MgUserCreatedObjectAsServicePrincipal" +"Cmdlets","GetMgUserCreatedObjectAsServicePrincipal_List.g.cs","v1.0","Get-MgUserCreatedObjectAsServicePrincipal","GET","/users/{param}/createdObjects/servicePrincipal","matched","Get-MgUserCreatedObjectAsServicePrincipal" +"Cmdlets","GetMgUserCreatedObjectAsServicePrincipal.g.cs","v1.0","Get-MgUserCreatedObjectAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgUserCreatedObjectCount.g.cs","v1.0","Get-MgUserCreatedObjectCount","GET","/users/{param}/createdObjects/$count","matched","Get-MgUserCreatedObjectCount" +"Cmdlets","GetMgUserCreatedObjectCountAsServicePrincipal.g.cs","v1.0","Get-MgUserCreatedObjectCountAsServicePrincipal","GET","/users/{param}/createdObjects/servicePrincipal/$count","matched","Get-MgUserCreatedObjectCountAsServicePrincipal" +"Cmdlets","GetMgUserDirectReport_Get.g.cs","v1.0","Get-MgUserDirectReport","GET","/users/{param}/directReports/{param}","matched","Get-MgUserDirectReport" +"Cmdlets","GetMgUserDirectReport_List.g.cs","v1.0","Get-MgUserDirectReport","GET","/users/{param}/directReports","matched","Get-MgUserDirectReport" +"Cmdlets","GetMgUserDirectReport.g.cs","v1.0","Get-MgUserDirectReport","","","dispatcher","" +"Cmdlets","GetMgUserDirectReportAsOrgContact_Get.g.cs","v1.0","Get-MgUserDirectReportAsOrgContact","GET","/users/{param}/directReports/{param}/orgContact","matched","Get-MgUserDirectReportAsOrgContact" +"Cmdlets","GetMgUserDirectReportAsOrgContact_List.g.cs","v1.0","Get-MgUserDirectReportAsOrgContact","GET","/users/{param}/directReports/orgContact","matched","Get-MgUserDirectReportAsOrgContact" +"Cmdlets","GetMgUserDirectReportAsOrgContact.g.cs","v1.0","Get-MgUserDirectReportAsOrgContact","","","dispatcher","" +"Cmdlets","GetMgUserDirectReportAsUser_Get.g.cs","v1.0","Get-MgUserDirectReportAsUser","GET","/users/{param}/directReports/{param}/user","matched","Get-MgUserDirectReportAsUser" +"Cmdlets","GetMgUserDirectReportAsUser_List.g.cs","v1.0","Get-MgUserDirectReportAsUser","GET","/users/{param}/directReports/user","matched","Get-MgUserDirectReportAsUser" +"Cmdlets","GetMgUserDirectReportAsUser.g.cs","v1.0","Get-MgUserDirectReportAsUser","","","dispatcher","" +"Cmdlets","GetMgUserDirectReportCount.g.cs","v1.0","Get-MgUserDirectReportCount","GET","/users/{param}/directReports/$count","matched","Get-MgUserDirectReportCount" +"Cmdlets","GetMgUserDirectReportCountAsOrgContact.g.cs","v1.0","Get-MgUserDirectReportCountAsOrgContact","GET","/users/{param}/directReports/orgContact/$count","matched","Get-MgUserDirectReportCountAsOrgContact" +"Cmdlets","GetMgUserDirectReportCountAsUser.g.cs","v1.0","Get-MgUserDirectReportCountAsUser","GET","/users/{param}/directReports/user/$count","matched","Get-MgUserDirectReportCountAsUser" +"Cmdlets","GetMgUserExtension_Get.g.cs","v1.0","Get-MgUserExtension","GET","/users/{param}/extensions/{param}","matched","Get-MgUserExtension" +"Cmdlets","GetMgUserExtension_List.g.cs","v1.0","Get-MgUserExtension","GET","/users/{param}/extensions","matched","Get-MgUserExtension" +"Cmdlets","GetMgUserExtension.g.cs","v1.0","Get-MgUserExtension","","","dispatcher","" +"Cmdlets","GetMgUserExtensionCount.g.cs","v1.0","Get-MgUserExtensionCount","GET","/users/{param}/extensions/$count","matched","Get-MgUserExtensionCount" +"Cmdlets","GetMgUserInsight.g.cs","v1.0","Get-MgUserInsight","GET","/users/{param}/insights","matched","Get-MgUserInsight" +"Cmdlets","GetMgUserInsightShared_Get.g.cs","v1.0","Get-MgUserInsightShared","GET","/users/{param}/insights/shared/{param}","matched","Get-MgUserInsightShared" +"Cmdlets","GetMgUserInsightShared_List.g.cs","v1.0","Get-MgUserInsightShared","GET","/users/{param}/insights/shared","matched","Get-MgUserInsightShared" +"Cmdlets","GetMgUserInsightShared.g.cs","v1.0","Get-MgUserInsightShared","","","dispatcher","" +"Cmdlets","GetMgUserInsightSharedCount.g.cs","v1.0","Get-MgUserInsightSharedCount","GET","/users/{param}/insights/shared/$count","matched","Get-MgUserInsightSharedCount" +"Cmdlets","GetMgUserInsightSharedLastSharedMethod.g.cs","v1.0","Get-MgUserInsightSharedLastSharedMethod","GET","/users/{param}/insights/shared/{param}/lastSharedMethod","matched","Get-MgUserInsightSharedLastSharedMethod" +"Cmdlets","GetMgUserInsightSharedResource.g.cs","v1.0","Get-MgUserInsightSharedResource","GET","/users/{param}/insights/shared/{param}/resource","matched","Get-MgUserInsightSharedResource" +"Cmdlets","GetMgUserInsightTrending_Get.g.cs","v1.0","Get-MgUserInsightTrending","GET","/users/{param}/insights/trending/{param}","matched","Get-MgUserInsightTrending" +"Cmdlets","GetMgUserInsightTrending_List.g.cs","v1.0","Get-MgUserInsightTrending","GET","/users/{param}/insights/trending","matched","Get-MgUserInsightTrending" +"Cmdlets","GetMgUserInsightTrending.g.cs","v1.0","Get-MgUserInsightTrending","","","dispatcher","" +"Cmdlets","GetMgUserInsightTrendingCount.g.cs","v1.0","Get-MgUserInsightTrendingCount","GET","/users/{param}/insights/trending/$count","matched","Get-MgUserInsightTrendingCount" +"Cmdlets","GetMgUserInsightTrendingResource.g.cs","v1.0","Get-MgUserInsightTrendingResource","GET","/users/{param}/insights/trending/{param}/resource","matched","Get-MgUserInsightTrendingResource" +"Cmdlets","GetMgUserInsightUsed_Get.g.cs","v1.0","Get-MgUserInsightUsed","GET","/users/{param}/insights/used/{param}","matched","Get-MgUserInsightUsed" +"Cmdlets","GetMgUserInsightUsed_List.g.cs","v1.0","Get-MgUserInsightUsed","GET","/users/{param}/insights/used","matched","Get-MgUserInsightUsed" +"Cmdlets","GetMgUserInsightUsed.g.cs","v1.0","Get-MgUserInsightUsed","","","dispatcher","" +"Cmdlets","GetMgUserInsightUsedCount.g.cs","v1.0","Get-MgUserInsightUsedCount","GET","/users/{param}/insights/used/$count","matched","Get-MgUserInsightUsedCount" +"Cmdlets","GetMgUserInsightUsedResource.g.cs","v1.0","Get-MgUserInsightUsedResource","GET","/users/{param}/insights/used/{param}/resource","matched","Get-MgUserInsightUsedResource" +"Cmdlets","GetMgUserLicenseDetail_Get.g.cs","v1.0","Get-MgUserLicenseDetail","GET","/users/{param}/licenseDetails/{param}","matched","Get-MgUserLicenseDetail" +"Cmdlets","GetMgUserLicenseDetail_List.g.cs","v1.0","Get-MgUserLicenseDetail","GET","/users/{param}/licenseDetails","matched","Get-MgUserLicenseDetail" +"Cmdlets","GetMgUserLicenseDetail.g.cs","v1.0","Get-MgUserLicenseDetail","","","dispatcher","" +"Cmdlets","GetMgUserLicenseDetailCount.g.cs","v1.0","Get-MgUserLicenseDetailCount","GET","/users/{param}/licenseDetails/$count","matched","Get-MgUserLicenseDetailCount" +"Cmdlets","GetMgUserLicenseDetailGetTeamsLicensingDetails.g.cs","v1.0","Get-MgUserLicenseDetailGetTeamsLicensingDetails","GET","/users/{param}/licenseDetails/getTeamsLicensingDetails","mismatch","Get-MgUserLicenseDetailTeamLicensingDetail" +"Cmdlets","GetMgUserMailboxSetting.g.cs","v1.0","Get-MgUserMailboxSetting","GET","/users/{param}/mailboxSettings","matched","Get-MgUserMailboxSetting" +"Cmdlets","GetMgUserManager.g.cs","v1.0","Get-MgUserManager","GET","/users/{param}/manager","matched","Get-MgUserManager" +"Cmdlets","GetMgUserManagerByRef.g.cs","v1.0","Get-MgUserManagerByRef","GET","/users/{param}/manager/$ref","matched","Get-MgUserManagerByRef" +"Cmdlets","GetMgUserMemberOf_Get.g.cs","v1.0","Get-MgUserMemberOf","GET","/users/{param}/memberOf/{param}","matched","Get-MgUserMemberOf" +"Cmdlets","GetMgUserMemberOf_List.g.cs","v1.0","Get-MgUserMemberOf","GET","/users/{param}/memberOf","matched","Get-MgUserMemberOf" +"Cmdlets","GetMgUserMemberOf.g.cs","v1.0","Get-MgUserMemberOf","","","dispatcher","" +"Cmdlets","GetMgUserMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgUserMemberOfAsAdministrativeUnit","GET","/users/{param}/memberOf/{param}/administrativeUnit","matched","Get-MgUserMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgUserMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgUserMemberOfAsAdministrativeUnit","GET","/users/{param}/memberOf/administrativeUnit","matched","Get-MgUserMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgUserMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgUserMemberOfAsAdministrativeUnit","","","dispatcher","" +"Cmdlets","GetMgUserMemberOfAsDirectoryRole_Get.g.cs","v1.0","Get-MgUserMemberOfAsDirectoryRole","GET","/users/{param}/memberOf/{param}/directoryRole","matched","Get-MgUserMemberOfAsDirectoryRole" +"Cmdlets","GetMgUserMemberOfAsDirectoryRole_List.g.cs","v1.0","Get-MgUserMemberOfAsDirectoryRole","GET","/users/{param}/memberOf/directoryRole","matched","Get-MgUserMemberOfAsDirectoryRole" +"Cmdlets","GetMgUserMemberOfAsDirectoryRole.g.cs","v1.0","Get-MgUserMemberOfAsDirectoryRole","","","dispatcher","" +"Cmdlets","GetMgUserMemberOfAsGroup_Get.g.cs","v1.0","Get-MgUserMemberOfAsGroup","GET","/users/{param}/memberOf/{param}/group","matched","Get-MgUserMemberOfAsGroup" +"Cmdlets","GetMgUserMemberOfAsGroup_List.g.cs","v1.0","Get-MgUserMemberOfAsGroup","GET","/users/{param}/memberOf/group","matched","Get-MgUserMemberOfAsGroup" +"Cmdlets","GetMgUserMemberOfAsGroup.g.cs","v1.0","Get-MgUserMemberOfAsGroup","","","dispatcher","" +"Cmdlets","GetMgUserMemberOfCount.g.cs","v1.0","Get-MgUserMemberOfCount","GET","/users/{param}/memberOf/$count","matched","Get-MgUserMemberOfCount" +"Cmdlets","GetMgUserMemberOfCountAsAdministrativeUnit.g.cs","v1.0","Get-MgUserMemberOfCountAsAdministrativeUnit","GET","/users/{param}/memberOf/administrativeUnit/$count","matched","Get-MgUserMemberOfCountAsAdministrativeUnit" +"Cmdlets","GetMgUserMemberOfCountAsDirectoryRole.g.cs","v1.0","Get-MgUserMemberOfCountAsDirectoryRole","GET","/users/{param}/memberOf/directoryRole/$count","matched","Get-MgUserMemberOfCountAsDirectoryRole" +"Cmdlets","GetMgUserMemberOfCountAsGroup.g.cs","v1.0","Get-MgUserMemberOfCountAsGroup","GET","/users/{param}/memberOf/group/$count","matched","Get-MgUserMemberOfCountAsGroup" +"Cmdlets","GetMgUserOauth2PermissionGrant_Get.g.cs","v1.0","Get-MgUserOauth2PermissionGrant","GET","/users/{param}/oauth2PermissionGrants/{param}","matched","Get-MgUserOauth2PermissionGrant" +"Cmdlets","GetMgUserOauth2PermissionGrant_List.g.cs","v1.0","Get-MgUserOauth2PermissionGrant","GET","/users/{param}/oauth2PermissionGrants","matched","Get-MgUserOauth2PermissionGrant" +"Cmdlets","GetMgUserOauth2PermissionGrant.g.cs","v1.0","Get-MgUserOauth2PermissionGrant","","","dispatcher","" +"Cmdlets","GetMgUserOauth2PermissionGrantCount.g.cs","v1.0","Get-MgUserOauth2PermissionGrantCount","GET","/users/{param}/oauth2PermissionGrants/$count","matched","Get-MgUserOauth2PermissionGrantCount" +"Cmdlets","GetMgUserOnPremiseSyncBehavior.g.cs","v1.0","Get-MgUserOnPremiseSyncBehavior","GET","/users/{param}/onPremisesSyncBehavior","matched","Get-MgUserOnPremiseSyncBehavior" +"Cmdlets","GetMgUserOutlook.g.cs","v1.0","Get-MgUserOutlook","GET","/users/{param}/outlook","no-oracle","" +"Cmdlets","GetMgUserOutlookMasterCategory_Get.g.cs","v1.0","Get-MgUserOutlookMasterCategory","GET","/users/{param}/outlook/masterCategories/{param}","matched","Get-MgUserOutlookMasterCategory" +"Cmdlets","GetMgUserOutlookMasterCategory_List.g.cs","v1.0","Get-MgUserOutlookMasterCategory","GET","/users/{param}/outlook/masterCategories","matched","Get-MgUserOutlookMasterCategory" +"Cmdlets","GetMgUserOutlookMasterCategory.g.cs","v1.0","Get-MgUserOutlookMasterCategory","","","dispatcher","" +"Cmdlets","GetMgUserOutlookMasterCategoryCount.g.cs","v1.0","Get-MgUserOutlookMasterCategoryCount","GET","/users/{param}/outlook/masterCategories/$count","matched","Get-MgUserOutlookMasterCategoryCount" +"Cmdlets","GetMgUserOutlookSupportedLanguages.g.cs","v1.0","Get-MgUserOutlookSupportedLanguages","GET","/users/{param}/outlook/supportedLanguages","mismatch","Invoke-MgSupportedUserOutlookLanguage" +"Cmdlets","GetMgUserOutlookSupportedTimeZones.g.cs","v1.0","Get-MgUserOutlookSupportedTimeZones","GET","/users/{param}/outlook/supportedTimeZones","mismatch","Invoke-MgTimeUserOutlook" +"Cmdlets","GetMgUserOutlookSupportedTimeZonesWithTimeZoneStandard.g.cs","v1.0","Get-MgUserOutlookSupportedTimeZonesWithTimeZoneStandard","GET","/users/{param}/outlook/supportedTimeZones(TimeZoneStandard='{TimeZoneStandard}')","no-oracle","" +"Cmdlets","GetMgUserOwnedDevice_Get.g.cs","v1.0","Get-MgUserOwnedDevice","GET","/users/{param}/ownedDevices/{param}","matched","Get-MgUserOwnedDevice" +"Cmdlets","GetMgUserOwnedDevice_List.g.cs","v1.0","Get-MgUserOwnedDevice","GET","/users/{param}/ownedDevices","matched","Get-MgUserOwnedDevice" +"Cmdlets","GetMgUserOwnedDevice.g.cs","v1.0","Get-MgUserOwnedDevice","","","dispatcher","" +"Cmdlets","GetMgUserOwnedDeviceAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgUserOwnedDeviceAsAppRoleAssignment","GET","/users/{param}/ownedDevices/{param}/appRoleAssignment","matched","Get-MgUserOwnedDeviceAsAppRoleAssignment" +"Cmdlets","GetMgUserOwnedDeviceAsAppRoleAssignment_List.g.cs","v1.0","Get-MgUserOwnedDeviceAsAppRoleAssignment","GET","/users/{param}/ownedDevices/appRoleAssignment","matched","Get-MgUserOwnedDeviceAsAppRoleAssignment" +"Cmdlets","GetMgUserOwnedDeviceAsAppRoleAssignment.g.cs","v1.0","Get-MgUserOwnedDeviceAsAppRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgUserOwnedDeviceAsDevice_Get.g.cs","v1.0","Get-MgUserOwnedDeviceAsDevice","GET","/users/{param}/ownedDevices/{param}/device","matched","Get-MgUserOwnedDeviceAsDevice" +"Cmdlets","GetMgUserOwnedDeviceAsDevice_List.g.cs","v1.0","Get-MgUserOwnedDeviceAsDevice","GET","/users/{param}/ownedDevices/device","matched","Get-MgUserOwnedDeviceAsDevice" +"Cmdlets","GetMgUserOwnedDeviceAsDevice.g.cs","v1.0","Get-MgUserOwnedDeviceAsDevice","","","dispatcher","" +"Cmdlets","GetMgUserOwnedDeviceAsEndpoint_Get.g.cs","v1.0","Get-MgUserOwnedDeviceAsEndpoint","GET","/users/{param}/ownedDevices/{param}/endpoint","matched","Get-MgUserOwnedDeviceAsEndpoint" +"Cmdlets","GetMgUserOwnedDeviceAsEndpoint_List.g.cs","v1.0","Get-MgUserOwnedDeviceAsEndpoint","GET","/users/{param}/ownedDevices/endpoint","matched","Get-MgUserOwnedDeviceAsEndpoint" +"Cmdlets","GetMgUserOwnedDeviceAsEndpoint.g.cs","v1.0","Get-MgUserOwnedDeviceAsEndpoint","","","dispatcher","" +"Cmdlets","GetMgUserOwnedDeviceCount.g.cs","v1.0","Get-MgUserOwnedDeviceCount","GET","/users/{param}/ownedDevices/$count","matched","Get-MgUserOwnedDeviceCount" +"Cmdlets","GetMgUserOwnedDeviceCountAsAppRoleAssignment.g.cs","v1.0","Get-MgUserOwnedDeviceCountAsAppRoleAssignment","GET","/users/{param}/ownedDevices/appRoleAssignment/$count","matched","Get-MgUserOwnedDeviceCountAsAppRoleAssignment" +"Cmdlets","GetMgUserOwnedDeviceCountAsDevice.g.cs","v1.0","Get-MgUserOwnedDeviceCountAsDevice","GET","/users/{param}/ownedDevices/device/$count","matched","Get-MgUserOwnedDeviceCountAsDevice" +"Cmdlets","GetMgUserOwnedDeviceCountAsEndpoint.g.cs","v1.0","Get-MgUserOwnedDeviceCountAsEndpoint","GET","/users/{param}/ownedDevices/endpoint/$count","matched","Get-MgUserOwnedDeviceCountAsEndpoint" +"Cmdlets","GetMgUserOwnedObject_Get.g.cs","v1.0","Get-MgUserOwnedObject","GET","/users/{param}/ownedObjects/{param}","matched","Get-MgUserOwnedObject" +"Cmdlets","GetMgUserOwnedObject_List.g.cs","v1.0","Get-MgUserOwnedObject","GET","/users/{param}/ownedObjects","matched","Get-MgUserOwnedObject" +"Cmdlets","GetMgUserOwnedObject.g.cs","v1.0","Get-MgUserOwnedObject","","","dispatcher","" +"Cmdlets","GetMgUserOwnedObjectAsApplication_Get.g.cs","v1.0","Get-MgUserOwnedObjectAsApplication","GET","/users/{param}/ownedObjects/{param}/application","matched","Get-MgUserOwnedObjectAsApplication" +"Cmdlets","GetMgUserOwnedObjectAsApplication_List.g.cs","v1.0","Get-MgUserOwnedObjectAsApplication","GET","/users/{param}/ownedObjects/application","matched","Get-MgUserOwnedObjectAsApplication" +"Cmdlets","GetMgUserOwnedObjectAsApplication.g.cs","v1.0","Get-MgUserOwnedObjectAsApplication","","","dispatcher","" +"Cmdlets","GetMgUserOwnedObjectAsGroup_Get.g.cs","v1.0","Get-MgUserOwnedObjectAsGroup","GET","/users/{param}/ownedObjects/{param}/group","matched","Get-MgUserOwnedObjectAsGroup" +"Cmdlets","GetMgUserOwnedObjectAsGroup_List.g.cs","v1.0","Get-MgUserOwnedObjectAsGroup","GET","/users/{param}/ownedObjects/group","matched","Get-MgUserOwnedObjectAsGroup" +"Cmdlets","GetMgUserOwnedObjectAsGroup.g.cs","v1.0","Get-MgUserOwnedObjectAsGroup","","","dispatcher","" +"Cmdlets","GetMgUserOwnedObjectAsServicePrincipal_Get.g.cs","v1.0","Get-MgUserOwnedObjectAsServicePrincipal","GET","/users/{param}/ownedObjects/{param}/servicePrincipal","matched","Get-MgUserOwnedObjectAsServicePrincipal" +"Cmdlets","GetMgUserOwnedObjectAsServicePrincipal_List.g.cs","v1.0","Get-MgUserOwnedObjectAsServicePrincipal","GET","/users/{param}/ownedObjects/servicePrincipal","matched","Get-MgUserOwnedObjectAsServicePrincipal" +"Cmdlets","GetMgUserOwnedObjectAsServicePrincipal.g.cs","v1.0","Get-MgUserOwnedObjectAsServicePrincipal","","","dispatcher","" +"Cmdlets","GetMgUserOwnedObjectCount.g.cs","v1.0","Get-MgUserOwnedObjectCount","GET","/users/{param}/ownedObjects/$count","matched","Get-MgUserOwnedObjectCount" +"Cmdlets","GetMgUserOwnedObjectCountAsApplication.g.cs","v1.0","Get-MgUserOwnedObjectCountAsApplication","GET","/users/{param}/ownedObjects/application/$count","matched","Get-MgUserOwnedObjectCountAsApplication" +"Cmdlets","GetMgUserOwnedObjectCountAsGroup.g.cs","v1.0","Get-MgUserOwnedObjectCountAsGroup","GET","/users/{param}/ownedObjects/group/$count","matched","Get-MgUserOwnedObjectCountAsGroup" +"Cmdlets","GetMgUserOwnedObjectCountAsServicePrincipal.g.cs","v1.0","Get-MgUserOwnedObjectCountAsServicePrincipal","GET","/users/{param}/ownedObjects/servicePrincipal/$count","matched","Get-MgUserOwnedObjectCountAsServicePrincipal" +"Cmdlets","GetMgUserPhoto.g.cs","v1.0","Get-MgUserPhoto","GET","/users/{param}/photo","matched","Get-MgUserPhoto" +"Cmdlets","GetMgUserPhotoContent.g.cs","v1.0","Get-MgUserPhotoContent","GET","/users/{param}/photo/$value","matched","Get-MgUserPhotoContent" +"Cmdlets","GetMgUserRegisteredDevice_Get.g.cs","v1.0","Get-MgUserRegisteredDevice","GET","/users/{param}/registeredDevices/{param}","matched","Get-MgUserRegisteredDevice" +"Cmdlets","GetMgUserRegisteredDevice_List.g.cs","v1.0","Get-MgUserRegisteredDevice","GET","/users/{param}/registeredDevices","matched","Get-MgUserRegisteredDevice" +"Cmdlets","GetMgUserRegisteredDevice.g.cs","v1.0","Get-MgUserRegisteredDevice","","","dispatcher","" +"Cmdlets","GetMgUserRegisteredDeviceAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgUserRegisteredDeviceAsAppRoleAssignment","GET","/users/{param}/registeredDevices/{param}/appRoleAssignment","matched","Get-MgUserRegisteredDeviceAsAppRoleAssignment" +"Cmdlets","GetMgUserRegisteredDeviceAsAppRoleAssignment_List.g.cs","v1.0","Get-MgUserRegisteredDeviceAsAppRoleAssignment","GET","/users/{param}/registeredDevices/appRoleAssignment","matched","Get-MgUserRegisteredDeviceAsAppRoleAssignment" +"Cmdlets","GetMgUserRegisteredDeviceAsAppRoleAssignment.g.cs","v1.0","Get-MgUserRegisteredDeviceAsAppRoleAssignment","","","dispatcher","" +"Cmdlets","GetMgUserRegisteredDeviceAsDevice_Get.g.cs","v1.0","Get-MgUserRegisteredDeviceAsDevice","GET","/users/{param}/registeredDevices/{param}/device","matched","Get-MgUserRegisteredDeviceAsDevice" +"Cmdlets","GetMgUserRegisteredDeviceAsDevice_List.g.cs","v1.0","Get-MgUserRegisteredDeviceAsDevice","GET","/users/{param}/registeredDevices/device","matched","Get-MgUserRegisteredDeviceAsDevice" +"Cmdlets","GetMgUserRegisteredDeviceAsDevice.g.cs","v1.0","Get-MgUserRegisteredDeviceAsDevice","","","dispatcher","" +"Cmdlets","GetMgUserRegisteredDeviceAsEndpoint_Get.g.cs","v1.0","Get-MgUserRegisteredDeviceAsEndpoint","GET","/users/{param}/registeredDevices/{param}/endpoint","matched","Get-MgUserRegisteredDeviceAsEndpoint" +"Cmdlets","GetMgUserRegisteredDeviceAsEndpoint_List.g.cs","v1.0","Get-MgUserRegisteredDeviceAsEndpoint","GET","/users/{param}/registeredDevices/endpoint","matched","Get-MgUserRegisteredDeviceAsEndpoint" +"Cmdlets","GetMgUserRegisteredDeviceAsEndpoint.g.cs","v1.0","Get-MgUserRegisteredDeviceAsEndpoint","","","dispatcher","" +"Cmdlets","GetMgUserRegisteredDeviceCount.g.cs","v1.0","Get-MgUserRegisteredDeviceCount","GET","/users/{param}/registeredDevices/$count","matched","Get-MgUserRegisteredDeviceCount" +"Cmdlets","GetMgUserRegisteredDeviceCountAsAppRoleAssignment.g.cs","v1.0","Get-MgUserRegisteredDeviceCountAsAppRoleAssignment","GET","/users/{param}/registeredDevices/appRoleAssignment/$count","matched","Get-MgUserRegisteredDeviceCountAsAppRoleAssignment" +"Cmdlets","GetMgUserRegisteredDeviceCountAsDevice.g.cs","v1.0","Get-MgUserRegisteredDeviceCountAsDevice","GET","/users/{param}/registeredDevices/device/$count","matched","Get-MgUserRegisteredDeviceCountAsDevice" +"Cmdlets","GetMgUserRegisteredDeviceCountAsEndpoint.g.cs","v1.0","Get-MgUserRegisteredDeviceCountAsEndpoint","GET","/users/{param}/registeredDevices/endpoint/$count","matched","Get-MgUserRegisteredDeviceCountAsEndpoint" +"Cmdlets","GetMgUserSetting.g.cs","v1.0","Get-MgUserSetting","GET","/users/{param}/settings","matched","Get-MgUserSetting" +"Cmdlets","GetMgUserSettingExchange.g.cs","v1.0","Get-MgUserSettingExchange","GET","/users/{param}/settings/exchange","matched","Get-MgUserSettingExchange" +"Cmdlets","GetMgUserSettingItemInsight.g.cs","v1.0","Get-MgUserSettingItemInsight","GET","/users/{param}/settings/itemInsights","matched","Get-MgUserSettingItemInsight" +"Cmdlets","GetMgUserSettingShiftPreference.g.cs","v1.0","Get-MgUserSettingShiftPreference","GET","/users/{param}/settings/shiftPreferences","matched","Get-MgUserSettingShiftPreference" +"Cmdlets","GetMgUserSettingStorage.g.cs","v1.0","Get-MgUserSettingStorage","GET","/users/{param}/settings/storage","matched","Get-MgUserSettingStorage" +"Cmdlets","GetMgUserSettingStorageQuota.g.cs","v1.0","Get-MgUserSettingStorageQuota","GET","/users/{param}/settings/storage/quota","matched","Get-MgUserSettingStorageQuota" +"Cmdlets","GetMgUserSettingStorageQuotaService_Get.g.cs","v1.0","Get-MgUserSettingStorageQuotaService","GET","/users/{param}/settings/storage/quota/services/{param}","matched","Get-MgUserSettingStorageQuotaService" +"Cmdlets","GetMgUserSettingStorageQuotaService_List.g.cs","v1.0","Get-MgUserSettingStorageQuotaService","GET","/users/{param}/settings/storage/quota/services","matched","Get-MgUserSettingStorageQuotaService" +"Cmdlets","GetMgUserSettingStorageQuotaService.g.cs","v1.0","Get-MgUserSettingStorageQuotaService","","","dispatcher","" +"Cmdlets","GetMgUserSettingStorageQuotaServiceCount.g.cs","v1.0","Get-MgUserSettingStorageQuotaServiceCount","GET","/users/{param}/settings/storage/quota/services/$count","matched","Get-MgUserSettingStorageQuotaServiceCount" +"Cmdlets","GetMgUserSettingWindows_Get.g.cs","v1.0","Get-MgUserSettingWindows","GET","/users/{param}/settings/windows/{param}","matched","Get-MgUserSettingWindows" +"Cmdlets","GetMgUserSettingWindows_List.g.cs","v1.0","Get-MgUserSettingWindows","GET","/users/{param}/settings/windows","matched","Get-MgUserSettingWindows" +"Cmdlets","GetMgUserSettingWindows.g.cs","v1.0","Get-MgUserSettingWindows","","","dispatcher","" +"Cmdlets","GetMgUserSettingWindowsCount.g.cs","v1.0","Get-MgUserSettingWindowsCount","GET","/users/{param}/settings/windows/$count","matched","Get-MgUserSettingWindowsCount" +"Cmdlets","GetMgUserSettingWindowsInstance_Get.g.cs","v1.0","Get-MgUserSettingWindowsInstance","GET","/users/{param}/settings/windows/{param}/instances/{param}","matched","Get-MgUserSettingWindowsInstance" +"Cmdlets","GetMgUserSettingWindowsInstance_List.g.cs","v1.0","Get-MgUserSettingWindowsInstance","GET","/users/{param}/settings/windows/{param}/instances","matched","Get-MgUserSettingWindowsInstance" +"Cmdlets","GetMgUserSettingWindowsInstance.g.cs","v1.0","Get-MgUserSettingWindowsInstance","","","dispatcher","" +"Cmdlets","GetMgUserSettingWindowsInstanceCount.g.cs","v1.0","Get-MgUserSettingWindowsInstanceCount","GET","/users/{param}/settings/windows/{param}/instances/$count","matched","Get-MgUserSettingWindowsInstanceCount" +"Cmdlets","GetMgUserSettingWorkHourAndLocation.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocation","GET","/users/{param}/settings/workHoursAndLocations","matched","Get-MgUserSettingWorkHourAndLocation" +"Cmdlets","GetMgUserSettingWorkHourAndLocationOccurrence_Get.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationOccurrence","GET","/users/{param}/settings/workHoursAndLocations/occurrences/{param}","matched","Get-MgUserSettingWorkHourAndLocationOccurrence" +"Cmdlets","GetMgUserSettingWorkHourAndLocationOccurrence_List.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationOccurrence","GET","/users/{param}/settings/workHoursAndLocations/occurrences","matched","Get-MgUserSettingWorkHourAndLocationOccurrence" +"Cmdlets","GetMgUserSettingWorkHourAndLocationOccurrence.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationOccurrence","","","dispatcher","" +"Cmdlets","GetMgUserSettingWorkHourAndLocationOccurrenceCount.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationOccurrenceCount","GET","/users/{param}/settings/workHoursAndLocations/occurrences/$count","matched","Get-MgUserSettingWorkHourAndLocationOccurrenceCount" +"Cmdlets","GetMgUserSettingWorkHourAndLocationOccurrencesViewWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationOccurrencesViewWithStartDateTimeWithEndDateTime","GET","/users/{param}/settings/workHoursAndLocations/occurrencesView(startDateTime='{startDateTime}',endDateTime='{endDateTime}')","mismatch","Invoke-MgViewUserSettingWorkHourAndLocationOccurrence" +"Cmdlets","GetMgUserSettingWorkHourAndLocationRecurrence_Get.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationRecurrence","GET","/users/{param}/settings/workHoursAndLocations/recurrences/{param}","matched","Get-MgUserSettingWorkHourAndLocationRecurrence" +"Cmdlets","GetMgUserSettingWorkHourAndLocationRecurrence_List.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationRecurrence","GET","/users/{param}/settings/workHoursAndLocations/recurrences","matched","Get-MgUserSettingWorkHourAndLocationRecurrence" +"Cmdlets","GetMgUserSettingWorkHourAndLocationRecurrence.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationRecurrence","","","dispatcher","" +"Cmdlets","GetMgUserSettingWorkHourAndLocationRecurrenceCount.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationRecurrenceCount","GET","/users/{param}/settings/workHoursAndLocations/recurrences/$count","matched","Get-MgUserSettingWorkHourAndLocationRecurrenceCount" +"Cmdlets","GetMgUserSponsor.g.cs","v1.0","Get-MgUserSponsor","GET","/users/{param}/sponsors","matched","Get-MgUserSponsor" +"Cmdlets","GetMgUserSponsorByRef.g.cs","v1.0","Get-MgUserSponsorByRef","GET","/users/{param}/sponsors/$ref","matched","Get-MgUserSponsorByRef" +"Cmdlets","GetMgUserSponsorCount.g.cs","v1.0","Get-MgUserSponsorCount","GET","/users/{param}/sponsors/$count","matched","Get-MgUserSponsorCount" +"Cmdlets","GetMgUserTodo.g.cs","v1.0","Get-MgUserTodo","GET","/users/{param}/todo","no-oracle","" +"Cmdlets","GetMgUserTodoList_Get.g.cs","v1.0","Get-MgUserTodoList","GET","/users/{param}/todo/lists/{param}","matched","Get-MgUserTodoList" +"Cmdlets","GetMgUserTodoList_List.g.cs","v1.0","Get-MgUserTodoList","GET","/users/{param}/todo/lists","matched","Get-MgUserTodoList" +"Cmdlets","GetMgUserTodoList.g.cs","v1.0","Get-MgUserTodoList","","","dispatcher","" +"Cmdlets","GetMgUserTodoListCount.g.cs","v1.0","Get-MgUserTodoListCount","GET","/users/{param}/todo/lists/$count","matched","Get-MgUserTodoListCount" +"Cmdlets","GetMgUserTodoListDelta.g.cs","v1.0","Get-MgUserTodoListDelta","GET","/users/{param}/todo/lists/delta","matched","Get-MgUserTodoListDelta" +"Cmdlets","GetMgUserTodoListExtension_Get.g.cs","v1.0","Get-MgUserTodoListExtension","GET","/users/{param}/todo/lists/{param}/extensions/{param}","matched","Get-MgUserTodoListExtension" +"Cmdlets","GetMgUserTodoListExtension_List.g.cs","v1.0","Get-MgUserTodoListExtension","GET","/users/{param}/todo/lists/{param}/extensions","matched","Get-MgUserTodoListExtension" +"Cmdlets","GetMgUserTodoListExtension.g.cs","v1.0","Get-MgUserTodoListExtension","","","dispatcher","" +"Cmdlets","GetMgUserTodoListExtensionCount.g.cs","v1.0","Get-MgUserTodoListExtensionCount","GET","/users/{param}/todo/lists/{param}/extensions/$count","matched","Get-MgUserTodoListExtensionCount" +"Cmdlets","GetMgUserTodoListTask_Get.g.cs","v1.0","Get-MgUserTodoListTask","GET","/users/{param}/todo/lists/{param}/tasks/{param}","mismatch","Get-MgUserTodoTask" +"Cmdlets","GetMgUserTodoListTask_List.g.cs","v1.0","Get-MgUserTodoListTask","GET","/users/{param}/todo/lists/{param}/tasks","mismatch","Get-MgUserTodoTask" +"Cmdlets","GetMgUserTodoListTask.g.cs","v1.0","Get-MgUserTodoListTask","","","dispatcher","" +"Cmdlets","GetMgUserTodoListTaskAttachment_Get.g.cs","v1.0","Get-MgUserTodoListTaskAttachment","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/{param}","mismatch","Get-MgUserTodoTaskAttachment" +"Cmdlets","GetMgUserTodoListTaskAttachment_List.g.cs","v1.0","Get-MgUserTodoListTaskAttachment","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachments","mismatch","Get-MgUserTodoTaskAttachment" +"Cmdlets","GetMgUserTodoListTaskAttachment.g.cs","v1.0","Get-MgUserTodoListTaskAttachment","","","dispatcher","" +"Cmdlets","GetMgUserTodoListTaskAttachmentContent.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentContent","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/{param}/$value","mismatch","Get-MgUserTodoTaskAttachmentContent" +"Cmdlets","GetMgUserTodoListTaskAttachmentCount.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentCount","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/$count","mismatch","Get-MgUserTodoTaskAttachmentCount" +"Cmdlets","GetMgUserTodoListTaskAttachmentSession_Get.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentSession","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}","mismatch","Get-MgUserTodoTaskAttachmentSession" +"Cmdlets","GetMgUserTodoListTaskAttachmentSession_List.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentSession","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions","mismatch","Get-MgUserTodoTaskAttachmentSession" +"Cmdlets","GetMgUserTodoListTaskAttachmentSession.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentSession","","","dispatcher","" +"Cmdlets","GetMgUserTodoListTaskAttachmentSessionContent.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentSessionContent","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}/content","mismatch","Get-MgUserTodoTaskAttachmentSessionContent" +"Cmdlets","GetMgUserTodoListTaskAttachmentSessionCount.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentSessionCount","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/$count","mismatch","Get-MgUserTodoTaskAttachmentSessionCount" +"Cmdlets","GetMgUserTodoListTaskChecklistItem_Get.g.cs","v1.0","Get-MgUserTodoListTaskChecklistItem","GET","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems/{param}","mismatch","Get-MgUserTodoTaskChecklistItem" +"Cmdlets","GetMgUserTodoListTaskChecklistItem_List.g.cs","v1.0","Get-MgUserTodoListTaskChecklistItem","GET","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems","mismatch","Get-MgUserTodoTaskChecklistItem" +"Cmdlets","GetMgUserTodoListTaskChecklistItem.g.cs","v1.0","Get-MgUserTodoListTaskChecklistItem","","","dispatcher","" +"Cmdlets","GetMgUserTodoListTaskChecklistItemCount.g.cs","v1.0","Get-MgUserTodoListTaskChecklistItemCount","GET","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems/$count","mismatch","Get-MgUserTodoTaskChecklistItemCount" +"Cmdlets","GetMgUserTodoListTaskCount.g.cs","v1.0","Get-MgUserTodoListTaskCount","GET","/users/{param}/todo/lists/{param}/tasks/$count","mismatch","Get-MgUserTodoTaskCount" +"Cmdlets","GetMgUserTodoListTaskDelta.g.cs","v1.0","Get-MgUserTodoListTaskDelta","GET","/users/{param}/todo/lists/{param}/tasks/delta","mismatch","Get-MgUserTodoTaskDelta" +"Cmdlets","GetMgUserTodoListTaskExtension_Get.g.cs","v1.0","Get-MgUserTodoListTaskExtension","GET","/users/{param}/todo/lists/{param}/tasks/{param}/extensions/{param}","mismatch","Get-MgUserTodoTaskExtension" +"Cmdlets","GetMgUserTodoListTaskExtension_List.g.cs","v1.0","Get-MgUserTodoListTaskExtension","GET","/users/{param}/todo/lists/{param}/tasks/{param}/extensions","mismatch","Get-MgUserTodoTaskExtension" +"Cmdlets","GetMgUserTodoListTaskExtension.g.cs","v1.0","Get-MgUserTodoListTaskExtension","","","dispatcher","" +"Cmdlets","GetMgUserTodoListTaskExtensionCount.g.cs","v1.0","Get-MgUserTodoListTaskExtensionCount","GET","/users/{param}/todo/lists/{param}/tasks/{param}/extensions/$count","mismatch","Get-MgUserTodoTaskExtensionCount" +"Cmdlets","GetMgUserTodoListTaskLinkedResource_Get.g.cs","v1.0","Get-MgUserTodoListTaskLinkedResource","GET","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources/{param}","mismatch","Get-MgUserTodoTaskLinkedResource" +"Cmdlets","GetMgUserTodoListTaskLinkedResource_List.g.cs","v1.0","Get-MgUserTodoListTaskLinkedResource","GET","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources","mismatch","Get-MgUserTodoTaskLinkedResource" +"Cmdlets","GetMgUserTodoListTaskLinkedResource.g.cs","v1.0","Get-MgUserTodoListTaskLinkedResource","","","dispatcher","" +"Cmdlets","GetMgUserTodoListTaskLinkedResourceCount.g.cs","v1.0","Get-MgUserTodoListTaskLinkedResourceCount","GET","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources/$count","mismatch","Get-MgUserTodoTaskLinkedResourceCount" +"Cmdlets","GetMgUserTransitiveMemberOf_Get.g.cs","v1.0","Get-MgUserTransitiveMemberOf","GET","/users/{param}/transitiveMemberOf/{param}","matched","Get-MgUserTransitiveMemberOf" +"Cmdlets","GetMgUserTransitiveMemberOf_List.g.cs","v1.0","Get-MgUserTransitiveMemberOf","GET","/users/{param}/transitiveMemberOf","matched","Get-MgUserTransitiveMemberOf" +"Cmdlets","GetMgUserTransitiveMemberOf.g.cs","v1.0","Get-MgUserTransitiveMemberOf","","","dispatcher","" +"Cmdlets","GetMgUserTransitiveMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsAdministrativeUnit","GET","/users/{param}/transitiveMemberOf/{param}/administrativeUnit","matched","Get-MgUserTransitiveMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgUserTransitiveMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsAdministrativeUnit","GET","/users/{param}/transitiveMemberOf/administrativeUnit","matched","Get-MgUserTransitiveMemberOfAsAdministrativeUnit" +"Cmdlets","GetMgUserTransitiveMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsAdministrativeUnit","","","dispatcher","" +"Cmdlets","GetMgUserTransitiveMemberOfAsDirectoryRole_Get.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsDirectoryRole","GET","/users/{param}/transitiveMemberOf/{param}/directoryRole","matched","Get-MgUserTransitiveMemberOfAsDirectoryRole" +"Cmdlets","GetMgUserTransitiveMemberOfAsDirectoryRole_List.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsDirectoryRole","GET","/users/{param}/transitiveMemberOf/directoryRole","matched","Get-MgUserTransitiveMemberOfAsDirectoryRole" +"Cmdlets","GetMgUserTransitiveMemberOfAsDirectoryRole.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsDirectoryRole","","","dispatcher","" +"Cmdlets","GetMgUserTransitiveMemberOfAsGroup_Get.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsGroup","GET","/users/{param}/transitiveMemberOf/{param}/group","matched","Get-MgUserTransitiveMemberOfAsGroup" +"Cmdlets","GetMgUserTransitiveMemberOfAsGroup_List.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsGroup","GET","/users/{param}/transitiveMemberOf/group","matched","Get-MgUserTransitiveMemberOfAsGroup" +"Cmdlets","GetMgUserTransitiveMemberOfAsGroup.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsGroup","","","dispatcher","" +"Cmdlets","GetMgUserTransitiveMemberOfCount.g.cs","v1.0","Get-MgUserTransitiveMemberOfCount","GET","/users/{param}/transitiveMemberOf/$count","matched","Get-MgUserTransitiveMemberOfCount" +"Cmdlets","GetMgUserTransitiveMemberOfCountAsAdministrativeUnit.g.cs","v1.0","Get-MgUserTransitiveMemberOfCountAsAdministrativeUnit","GET","/users/{param}/transitiveMemberOf/administrativeUnit/$count","matched","Get-MgUserTransitiveMemberOfCountAsAdministrativeUnit" +"Cmdlets","GetMgUserTransitiveMemberOfCountAsDirectoryRole.g.cs","v1.0","Get-MgUserTransitiveMemberOfCountAsDirectoryRole","GET","/users/{param}/transitiveMemberOf/directoryRole/$count","matched","Get-MgUserTransitiveMemberOfCountAsDirectoryRole" +"Cmdlets","GetMgUserTransitiveMemberOfCountAsGroup.g.cs","v1.0","Get-MgUserTransitiveMemberOfCountAsGroup","GET","/users/{param}/transitiveMemberOf/group/$count","matched","Get-MgUserTransitiveMemberOfCountAsGroup" +"Cmdlets","InvokeMgUserSettingWorkHourAndLocationOccurrenceSetCurrentLocation.g.cs","v1.0","Invoke-MgUserSettingWorkHourAndLocationOccurrenceSetCurrentLocation","POST","/users/{param}/settings/workHoursAndLocations/occurrences/setCurrentLocation","mismatch","Set-MgUserSettingWorkHourAndLocationOccurrenceCurrentLocation" +"Cmdlets","InvokeMgUserTodoListTaskAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgUserTodoListTaskAttachmentCreateUploadSession","POST","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/createUploadSession","mismatch","New-MgUserTodoListTaskAttachmentUploadSession" +"Cmdlets","NewMgUser.g.cs","v1.0","New-MgUser","POST","/users","matched","New-MgUser" +"Cmdlets","NewMgUserExtension.g.cs","v1.0","New-MgUserExtension","POST","/users/{param}/extensions","matched","New-MgUserExtension" +"Cmdlets","NewMgUserInsightShared.g.cs","v1.0","New-MgUserInsightShared","POST","/users/{param}/insights/shared","matched","New-MgUserInsightShared" +"Cmdlets","NewMgUserInsightTrending.g.cs","v1.0","New-MgUserInsightTrending","POST","/users/{param}/insights/trending","matched","New-MgUserInsightTrending" +"Cmdlets","NewMgUserInsightUsed.g.cs","v1.0","New-MgUserInsightUsed","POST","/users/{param}/insights/used","matched","New-MgUserInsightUsed" +"Cmdlets","NewMgUserLicenseDetail.g.cs","v1.0","New-MgUserLicenseDetail","POST","/users/{param}/licenseDetails","no-oracle","" +"Cmdlets","NewMgUserOutlookMasterCategory.g.cs","v1.0","New-MgUserOutlookMasterCategory","POST","/users/{param}/outlook/masterCategories","matched","New-MgUserOutlookMasterCategory" +"Cmdlets","NewMgUserSettingStorageQuotaService.g.cs","v1.0","New-MgUserSettingStorageQuotaService","POST","/users/{param}/settings/storage/quota/services","matched","New-MgUserSettingStorageQuotaService" +"Cmdlets","NewMgUserSettingWindows.g.cs","v1.0","New-MgUserSettingWindows","POST","/users/{param}/settings/windows","matched","New-MgUserSettingWindows" +"Cmdlets","NewMgUserSettingWindowsInstance.g.cs","v1.0","New-MgUserSettingWindowsInstance","POST","/users/{param}/settings/windows/{param}/instances","matched","New-MgUserSettingWindowsInstance" +"Cmdlets","NewMgUserSettingWorkHourAndLocationOccurrence.g.cs","v1.0","New-MgUserSettingWorkHourAndLocationOccurrence","POST","/users/{param}/settings/workHoursAndLocations/occurrences","matched","New-MgUserSettingWorkHourAndLocationOccurrence" +"Cmdlets","NewMgUserSettingWorkHourAndLocationRecurrence.g.cs","v1.0","New-MgUserSettingWorkHourAndLocationRecurrence","POST","/users/{param}/settings/workHoursAndLocations/recurrences","matched","New-MgUserSettingWorkHourAndLocationRecurrence" +"Cmdlets","NewMgUserSponsorByRef.g.cs","v1.0","New-MgUserSponsorByRef","POST","/users/{param}/sponsors/$ref","matched","New-MgUserSponsorByRef" +"Cmdlets","NewMgUserTodoList.g.cs","v1.0","New-MgUserTodoList","POST","/users/{param}/todo/lists","matched","New-MgUserTodoList" +"Cmdlets","NewMgUserTodoListExtension.g.cs","v1.0","New-MgUserTodoListExtension","POST","/users/{param}/todo/lists/{param}/extensions","matched","New-MgUserTodoListExtension" +"Cmdlets","NewMgUserTodoListTask.g.cs","v1.0","New-MgUserTodoListTask","POST","/users/{param}/todo/lists/{param}/tasks","matched","New-MgUserTodoListTask" +"Cmdlets","NewMgUserTodoListTaskAttachment.g.cs","v1.0","New-MgUserTodoListTaskAttachment","POST","/users/{param}/todo/lists/{param}/tasks/{param}/attachments","matched","New-MgUserTodoListTaskAttachment" +"Cmdlets","NewMgUserTodoListTaskChecklistItem.g.cs","v1.0","New-MgUserTodoListTaskChecklistItem","POST","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems","matched","New-MgUserTodoListTaskChecklistItem" +"Cmdlets","NewMgUserTodoListTaskExtension.g.cs","v1.0","New-MgUserTodoListTaskExtension","POST","/users/{param}/todo/lists/{param}/tasks/{param}/extensions","matched","New-MgUserTodoListTaskExtension" +"Cmdlets","NewMgUserTodoListTaskLinkedResource.g.cs","v1.0","New-MgUserTodoListTaskLinkedResource","POST","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources","matched","New-MgUserTodoListTaskLinkedResource" +"Cmdlets","RemoveMgUser.g.cs","v1.0","Remove-MgUser","DELETE","/users/{param}","matched","Remove-MgUser" +"Cmdlets","RemoveMgUserExtension.g.cs","v1.0","Remove-MgUserExtension","DELETE","/users/{param}/extensions/{param}","matched","Remove-MgUserExtension" +"Cmdlets","RemoveMgUserInsight.g.cs","v1.0","Remove-MgUserInsight","DELETE","/users/{param}/insights","matched","Remove-MgUserInsight" +"Cmdlets","RemoveMgUserInsightShared.g.cs","v1.0","Remove-MgUserInsightShared","DELETE","/users/{param}/insights/shared/{param}","matched","Remove-MgUserInsightShared" +"Cmdlets","RemoveMgUserInsightTrending.g.cs","v1.0","Remove-MgUserInsightTrending","DELETE","/users/{param}/insights/trending/{param}","matched","Remove-MgUserInsightTrending" +"Cmdlets","RemoveMgUserInsightUsed.g.cs","v1.0","Remove-MgUserInsightUsed","DELETE","/users/{param}/insights/used/{param}","matched","Remove-MgUserInsightUsed" +"Cmdlets","RemoveMgUserLicenseDetail.g.cs","v1.0","Remove-MgUserLicenseDetail","DELETE","/users/{param}/licenseDetails/{param}","matched","Remove-MgUserLicenseDetail" +"Cmdlets","RemoveMgUserManagerByRef.g.cs","v1.0","Remove-MgUserManagerByRef","DELETE","/users/{param}/manager/$ref","matched","Remove-MgUserManagerByRef" +"Cmdlets","RemoveMgUserOnPremiseSyncBehavior.g.cs","v1.0","Remove-MgUserOnPremiseSyncBehavior","DELETE","/users/{param}/onPremisesSyncBehavior","matched","Remove-MgUserOnPremiseSyncBehavior" +"Cmdlets","RemoveMgUserOutlookMasterCategory.g.cs","v1.0","Remove-MgUserOutlookMasterCategory","DELETE","/users/{param}/outlook/masterCategories/{param}","matched","Remove-MgUserOutlookMasterCategory" +"Cmdlets","RemoveMgUserPhoto.g.cs","v1.0","Remove-MgUserPhoto","DELETE","/users/{param}/photo","matched","Remove-MgUserPhoto" +"Cmdlets","RemoveMgUserPhotoContent.g.cs","v1.0","Remove-MgUserPhotoContent","DELETE","/users/{param}/photo/$value","matched","Remove-MgUserPhotoContent" +"Cmdlets","RemoveMgUserSetting.g.cs","v1.0","Remove-MgUserSetting","DELETE","/users/{param}/settings","matched","Remove-MgUserSetting" +"Cmdlets","RemoveMgUserSettingItemInsight.g.cs","v1.0","Remove-MgUserSettingItemInsight","DELETE","/users/{param}/settings/itemInsights","matched","Remove-MgUserSettingItemInsight" +"Cmdlets","RemoveMgUserSettingShiftPreference.g.cs","v1.0","Remove-MgUserSettingShiftPreference","DELETE","/users/{param}/settings/shiftPreferences","matched","Remove-MgUserSettingShiftPreference" +"Cmdlets","RemoveMgUserSettingStorage.g.cs","v1.0","Remove-MgUserSettingStorage","DELETE","/users/{param}/settings/storage","matched","Remove-MgUserSettingStorage" +"Cmdlets","RemoveMgUserSettingStorageQuota.g.cs","v1.0","Remove-MgUserSettingStorageQuota","DELETE","/users/{param}/settings/storage/quota","matched","Remove-MgUserSettingStorageQuota" +"Cmdlets","RemoveMgUserSettingStorageQuotaService.g.cs","v1.0","Remove-MgUserSettingStorageQuotaService","DELETE","/users/{param}/settings/storage/quota/services/{param}","matched","Remove-MgUserSettingStorageQuotaService" +"Cmdlets","RemoveMgUserSettingWindows.g.cs","v1.0","Remove-MgUserSettingWindows","DELETE","/users/{param}/settings/windows/{param}","matched","Remove-MgUserSettingWindows" +"Cmdlets","RemoveMgUserSettingWindowsInstance.g.cs","v1.0","Remove-MgUserSettingWindowsInstance","DELETE","/users/{param}/settings/windows/{param}/instances/{param}","matched","Remove-MgUserSettingWindowsInstance" +"Cmdlets","RemoveMgUserSettingWorkHourAndLocationOccurrence.g.cs","v1.0","Remove-MgUserSettingWorkHourAndLocationOccurrence","DELETE","/users/{param}/settings/workHoursAndLocations/occurrences/{param}","matched","Remove-MgUserSettingWorkHourAndLocationOccurrence" +"Cmdlets","RemoveMgUserSettingWorkHourAndLocationRecurrence.g.cs","v1.0","Remove-MgUserSettingWorkHourAndLocationRecurrence","DELETE","/users/{param}/settings/workHoursAndLocations/recurrences/{param}","matched","Remove-MgUserSettingWorkHourAndLocationRecurrence" +"Cmdlets","RemoveMgUserSponsorByRef.g.cs","v1.0","Remove-MgUserSponsorByRef","DELETE","/users/{param}/sponsors/{param}/$ref","mismatch","Remove-MgUserSponsorDirectoryObjectByRef" +"Cmdlets","RemoveMgUserTodo.g.cs","v1.0","Remove-MgUserTodo","DELETE","/users/{param}/todo","no-oracle","" +"Cmdlets","RemoveMgUserTodoList.g.cs","v1.0","Remove-MgUserTodoList","DELETE","/users/{param}/todo/lists/{param}","matched","Remove-MgUserTodoList" +"Cmdlets","RemoveMgUserTodoListExtension.g.cs","v1.0","Remove-MgUserTodoListExtension","DELETE","/users/{param}/todo/lists/{param}/extensions/{param}","matched","Remove-MgUserTodoListExtension" +"Cmdlets","RemoveMgUserTodoListTask.g.cs","v1.0","Remove-MgUserTodoListTask","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}","matched","Remove-MgUserTodoListTask" +"Cmdlets","RemoveMgUserTodoListTaskAttachment.g.cs","v1.0","Remove-MgUserTodoListTaskAttachment","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/{param}","matched","Remove-MgUserTodoListTaskAttachment" +"Cmdlets","RemoveMgUserTodoListTaskAttachmentContent.g.cs","v1.0","Remove-MgUserTodoListTaskAttachmentContent","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/{param}/$value","matched","Remove-MgUserTodoListTaskAttachmentContent" +"Cmdlets","RemoveMgUserTodoListTaskAttachmentSession.g.cs","v1.0","Remove-MgUserTodoListTaskAttachmentSession","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}","matched","Remove-MgUserTodoListTaskAttachmentSession" +"Cmdlets","RemoveMgUserTodoListTaskAttachmentSessionContent.g.cs","v1.0","Remove-MgUserTodoListTaskAttachmentSessionContent","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}/content","matched","Remove-MgUserTodoListTaskAttachmentSessionContent" +"Cmdlets","RemoveMgUserTodoListTaskChecklistItem.g.cs","v1.0","Remove-MgUserTodoListTaskChecklistItem","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems/{param}","matched","Remove-MgUserTodoListTaskChecklistItem" +"Cmdlets","RemoveMgUserTodoListTaskExtension.g.cs","v1.0","Remove-MgUserTodoListTaskExtension","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/extensions/{param}","matched","Remove-MgUserTodoListTaskExtension" +"Cmdlets","RemoveMgUserTodoListTaskLinkedResource.g.cs","v1.0","Remove-MgUserTodoListTaskLinkedResource","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources/{param}","matched","Remove-MgUserTodoListTaskLinkedResource" +"Cmdlets","SetMgUserManagerByRef.g.cs","v1.0","Set-MgUserManagerByRef","PUT","/users/{param}/manager/$ref","matched","Set-MgUserManagerByRef" +"Cmdlets","SetMgUserSettingWorkHourAndLocationOccurrence.g.cs","v1.0","Set-MgUserSettingWorkHourAndLocationOccurrence","PUT","/users/{param}/settings/workHoursAndLocations/occurrences/{param}","matched","Set-MgUserSettingWorkHourAndLocationOccurrence" +"Cmdlets","SetMgUserSettingWorkHourAndLocationRecurrence.g.cs","v1.0","Set-MgUserSettingWorkHourAndLocationRecurrence","PUT","/users/{param}/settings/workHoursAndLocations/recurrences/{param}","matched","Set-MgUserSettingWorkHourAndLocationRecurrence" +"Cmdlets","SetMgUserTodoListTaskAttachmentSessionContent.g.cs","v1.0","Set-MgUserTodoListTaskAttachmentSessionContent","PUT","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}/content","matched","Set-MgUserTodoListTaskAttachmentSessionContent" +"Cmdlets","UpdateMgUser.g.cs","v1.0","Update-MgUser","PATCH","/users/{param}","matched","Update-MgUser" +"Cmdlets","UpdateMgUserExtension.g.cs","v1.0","Update-MgUserExtension","PATCH","/users/{param}/extensions/{param}","matched","Update-MgUserExtension" +"Cmdlets","UpdateMgUserInsight.g.cs","v1.0","Update-MgUserInsight","PATCH","/users/{param}/insights","matched","Update-MgUserInsight" +"Cmdlets","UpdateMgUserInsightShared.g.cs","v1.0","Update-MgUserInsightShared","PATCH","/users/{param}/insights/shared/{param}","matched","Update-MgUserInsightShared" +"Cmdlets","UpdateMgUserInsightTrending.g.cs","v1.0","Update-MgUserInsightTrending","PATCH","/users/{param}/insights/trending/{param}","matched","Update-MgUserInsightTrending" +"Cmdlets","UpdateMgUserInsightUsed.g.cs","v1.0","Update-MgUserInsightUsed","PATCH","/users/{param}/insights/used/{param}","matched","Update-MgUserInsightUsed" +"Cmdlets","UpdateMgUserLicenseDetail.g.cs","v1.0","Update-MgUserLicenseDetail","PATCH","/users/{param}/licenseDetails/{param}","matched","Update-MgUserLicenseDetail" +"Cmdlets","UpdateMgUserMailboxSetting.g.cs","v1.0","Update-MgUserMailboxSetting","PATCH","/users/{param}/mailboxSettings","matched","Update-MgUserMailboxSetting" +"Cmdlets","UpdateMgUserOnPremiseSyncBehavior.g.cs","v1.0","Update-MgUserOnPremiseSyncBehavior","PATCH","/users/{param}/onPremisesSyncBehavior","matched","Update-MgUserOnPremiseSyncBehavior" +"Cmdlets","UpdateMgUserOutlookMasterCategory.g.cs","v1.0","Update-MgUserOutlookMasterCategory","PATCH","/users/{param}/outlook/masterCategories/{param}","matched","Update-MgUserOutlookMasterCategory" +"Cmdlets","UpdateMgUserPhoto.g.cs","v1.0","Update-MgUserPhoto","PATCH","/users/{param}/photo","no-oracle","" +"Cmdlets","UpdateMgUserSetting.g.cs","v1.0","Update-MgUserSetting","PATCH","/users/{param}/settings","matched","Update-MgUserSetting" +"Cmdlets","UpdateMgUserSettingItemInsight.g.cs","v1.0","Update-MgUserSettingItemInsight","PATCH","/users/{param}/settings/itemInsights","matched","Update-MgUserSettingItemInsight" +"Cmdlets","UpdateMgUserSettingShiftPreference.g.cs","v1.0","Update-MgUserSettingShiftPreference","PATCH","/users/{param}/settings/shiftPreferences","matched","Update-MgUserSettingShiftPreference" +"Cmdlets","UpdateMgUserSettingStorage.g.cs","v1.0","Update-MgUserSettingStorage","PATCH","/users/{param}/settings/storage","matched","Update-MgUserSettingStorage" +"Cmdlets","UpdateMgUserSettingStorageQuota.g.cs","v1.0","Update-MgUserSettingStorageQuota","PATCH","/users/{param}/settings/storage/quota","matched","Update-MgUserSettingStorageQuota" +"Cmdlets","UpdateMgUserSettingStorageQuotaService.g.cs","v1.0","Update-MgUserSettingStorageQuotaService","PATCH","/users/{param}/settings/storage/quota/services/{param}","matched","Update-MgUserSettingStorageQuotaService" +"Cmdlets","UpdateMgUserSettingWindows.g.cs","v1.0","Update-MgUserSettingWindows","PATCH","/users/{param}/settings/windows/{param}","matched","Update-MgUserSettingWindows" +"Cmdlets","UpdateMgUserSettingWindowsInstance.g.cs","v1.0","Update-MgUserSettingWindowsInstance","PATCH","/users/{param}/settings/windows/{param}/instances/{param}","matched","Update-MgUserSettingWindowsInstance" +"Cmdlets","UpdateMgUserSettingWorkHourAndLocation.g.cs","v1.0","Update-MgUserSettingWorkHourAndLocation","PATCH","/users/{param}/settings/workHoursAndLocations","matched","Update-MgUserSettingWorkHourAndLocation" +"Cmdlets","UpdateMgUserTodo.g.cs","v1.0","Update-MgUserTodo","PATCH","/users/{param}/todo","no-oracle","" +"Cmdlets","UpdateMgUserTodoList.g.cs","v1.0","Update-MgUserTodoList","PATCH","/users/{param}/todo/lists/{param}","matched","Update-MgUserTodoList" +"Cmdlets","UpdateMgUserTodoListExtension.g.cs","v1.0","Update-MgUserTodoListExtension","PATCH","/users/{param}/todo/lists/{param}/extensions/{param}","matched","Update-MgUserTodoListExtension" +"Cmdlets","UpdateMgUserTodoListTask.g.cs","v1.0","Update-MgUserTodoListTask","PATCH","/users/{param}/todo/lists/{param}/tasks/{param}","matched","Update-MgUserTodoListTask" +"Cmdlets","UpdateMgUserTodoListTaskAttachmentSession.g.cs","v1.0","Update-MgUserTodoListTaskAttachmentSession","PATCH","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}","matched","Update-MgUserTodoListTaskAttachmentSession" +"Cmdlets","UpdateMgUserTodoListTaskChecklistItem.g.cs","v1.0","Update-MgUserTodoListTaskChecklistItem","PATCH","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems/{param}","matched","Update-MgUserTodoListTaskChecklistItem" +"Cmdlets","UpdateMgUserTodoListTaskExtension.g.cs","v1.0","Update-MgUserTodoListTaskExtension","PATCH","/users/{param}/todo/lists/{param}/tasks/{param}/extensions/{param}","matched","Update-MgUserTodoListTaskExtension" +"Cmdlets","UpdateMgUserTodoListTaskLinkedResource.g.cs","v1.0","Update-MgUserTodoListTaskLinkedResource","PATCH","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources/{param}","matched","Update-MgUserTodoListTaskLinkedResource" +"Cmdlets","InvokeMgUserAssignLicense.g.cs","v1.0","Invoke-MgUserAssignLicense","POST","/users/{param}/assignLicense","mismatch","Set-MgUserLicense" +"Cmdlets","InvokeMgUserChangePassword.g.cs","v1.0","Invoke-MgUserChangePassword","POST","/users/{param}/changePassword","mismatch","Update-MgUserPassword" +"Cmdlets","InvokeMgUserCheckMemberGroups.g.cs","v1.0","Invoke-MgUserCheckMemberGroups","POST","/users/{param}/checkMemberGroups","mismatch","Confirm-MgUserMemberGroup" +"Cmdlets","InvokeMgUserCheckMemberObjects.g.cs","v1.0","Invoke-MgUserCheckMemberObjects","POST","/users/{param}/checkMemberObjects","mismatch","Confirm-MgUserMemberObject" +"Cmdlets","InvokeMgUserExportPersonalData.g.cs","v1.0","Invoke-MgUserExportPersonalData","POST","/users/{param}/exportPersonalData","mismatch","Export-MgUserPersonalData" +"Cmdlets","InvokeMgUserFindMeetingTimes.g.cs","v1.0","Invoke-MgUserFindMeetingTimes","POST","/users/{param}/findMeetingTimes","mismatch","Find-MgUserMeetingTime" +"Cmdlets","InvokeMgUserGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgUserGetAvailableExtensionProperties","POST","/users/getAvailableExtensionProperties","no-oracle","" +"Cmdlets","InvokeMgUserGetByIds.g.cs","v1.0","Invoke-MgUserGetByIds","POST","/users/getByIds","mismatch","Get-MgUserById" +"Cmdlets","InvokeMgUserGetMailTips.g.cs","v1.0","Invoke-MgUserGetMailTips","POST","/users/{param}/getMailTips","mismatch","Get-MgUserMailTip" +"Cmdlets","InvokeMgUserGetMemberGroups.g.cs","v1.0","Invoke-MgUserGetMemberGroups","POST","/users/{param}/getMemberGroups","mismatch","Get-MgUserMemberGroup" +"Cmdlets","InvokeMgUserGetMemberObjects.g.cs","v1.0","Invoke-MgUserGetMemberObjects","POST","/users/{param}/getMemberObjects","mismatch","Get-MgUserMemberObject" +"Cmdlets","InvokeMgUserRemoveAllDevicesFromManagement.g.cs","v1.0","Invoke-MgUserRemoveAllDevicesFromManagement","POST","/users/{param}/removeAllDevicesFromManagement","mismatch","Remove-MgAllUserDeviceFromManagement" +"Cmdlets","InvokeMgUserReprocessLicenseAssignment.g.cs","v1.0","Invoke-MgUserReprocessLicenseAssignment","POST","/users/{param}/reprocessLicenseAssignment","mismatch","Invoke-MgLicenseUser" +"Cmdlets","InvokeMgUserRestore.g.cs","v1.0","Invoke-MgUserRestore","POST","/users/{param}/restore","no-oracle","" +"Cmdlets","InvokeMgUserRetryServiceProvisioning.g.cs","v1.0","Invoke-MgUserRetryServiceProvisioning","POST","/users/{param}/retryServiceProvisioning","mismatch","Invoke-MgRetryUserServiceProvisioning" +"Cmdlets","InvokeMgUserRevokeSignInSessions.g.cs","v1.0","Invoke-MgUserRevokeSignInSessions","POST","/users/{param}/revokeSignInSessions","mismatch","Revoke-MgUserSignInSession" +"Cmdlets","InvokeMgUserSendMail.g.cs","v1.0","Invoke-MgUserSendMail","POST","/users/{param}/sendMail","mismatch","Send-MgUserMail" +"Cmdlets","InvokeMgUserTranslateExchangeIds.g.cs","v1.0","Invoke-MgUserTranslateExchangeIds","POST","/users/{param}/translateExchangeIds","mismatch","Invoke-MgTranslateUserExchangeId" +"Cmdlets","InvokeMgUserValidateProperties.g.cs","v1.0","Invoke-MgUserValidateProperties","POST","/users/validateProperties","mismatch","Test-MgUserProperty" +"Cmdlets","InvokeMgUserWipeManagedAppRegistrationsByDeviceTag.g.cs","v1.0","Invoke-MgUserWipeManagedAppRegistrationsByDeviceTag","POST","/users/{param}/wipeManagedAppRegistrationsByDeviceTag","no-oracle","" +"Cmdlets","GetMgUserDelta.g.cs","v1.0","Get-MgUserDelta","GET","/users/delta","matched","Get-MgUserDelta" +"Cmdlets","GetMgUserExportDeviceAndAppManagementData.g.cs","v1.0","Get-MgUserExportDeviceAndAppManagementData","GET","/users/{param}/exportDeviceAndAppManagementData","mismatch","Export-MgUserDeviceAndAppManagementData" +"Cmdlets","GetMgUserExportDeviceAndAppManagementDataWithSkipWithTop.g.cs","v1.0","Get-MgUserExportDeviceAndAppManagementDataWithSkipWithTop","GET","/users/{param}/exportDeviceAndAppManagementData(skip={skip},top={top})","no-oracle","" +"Cmdlets","GetMgUserGetManagedAppDiagnosticStatuses.g.cs","v1.0","Get-MgUserGetManagedAppDiagnosticStatuses","GET","/users/{param}/getManagedAppDiagnosticStatuses","mismatch","Get-MgUserManagedAppDiagnosticStatus" +"Cmdlets","GetMgUserGetManagedAppPolicies.g.cs","v1.0","Get-MgUserGetManagedAppPolicies","GET","/users/{param}/getManagedAppPolicies","mismatch","Get-MgUserManagedAppPolicy" +"Cmdlets","GetMgUserGetManagedDevicesWithAppFailures.g.cs","v1.0","Get-MgUserGetManagedDevicesWithAppFailures","GET","/users/{param}/getManagedDevicesWithAppFailures","mismatch","Get-MgUserManagedDeviceWithAppFailure" +"Cmdlets","GetMgUserReminderViewWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgUserReminderViewWithStartDateTimeWithEndDateTime","GET","/users/{param}/reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')","mismatch","Invoke-MgViewUserReminder" diff --git a/tools/WrapperGenerator/data/parity-renames.v1.0.json b/tools/WrapperGenerator/data/parity-renames.v1.0.json index f4c29fd47c5..a73094de80e 100644 --- a/tools/WrapperGenerator/data/parity-renames.v1.0.json +++ b/tools/WrapperGenerator/data/parity-renames.v1.0.json @@ -87,6 +87,160 @@ }, "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionDeploymentSummary" }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsIosLobAppAssignment", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppAssignment" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersion" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/containedapps/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/files/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/iosstoreapp/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsIoStoreAppAssignment" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/iosvppapp/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsIosVppAppAssignment", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsIoVppAppAssignment" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppAssignment" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/containedapps/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/files/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/containedapps/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/files/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile", + "oracle": "Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" + }, { "apiVersion": "v1.0", "method": "DELETE", @@ -307,6 +461,39 @@ }, "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/conditions/applications/includeapplications/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication", + "oracle": "Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" + }, + "replacementNoun": "IdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/onattributecollection/onattributecollectionexternalusersselfservicesignup/attributes/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef", + "oracle": "Remove-MgIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeIdentityUserFlowAttributeByRef" + }, + "replacementNoun": "IdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeIdentityUserFlowAttributeByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef", + "oracle": "Remove-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderBaseByRef" + }, + "replacementNoun": "IdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderBaseByRef" + }, { "apiVersion": "v1.0", "method": "DELETE", @@ -1539,6 +1726,105 @@ }, "replacementNoun": "OrganizationBrandingLocalizationCustomCss" }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/places/{}/building/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPlaceAsBuildingCheckIn", + "oracle": "Remove-MgPlaceAsBuildingCheck" + }, + "replacementNoun": "PlaceAsBuildingCheck" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/places/{}/desk/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPlaceAsDeskCheckIn", + "oracle": "Remove-MgPlaceAsDeskCheck" + }, + "replacementNoun": "PlaceAsDeskCheck" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/places/{}/floor/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPlaceAsFloorCheckIn", + "oracle": "Remove-MgPlaceAsFloorCheck" + }, + "replacementNoun": "PlaceAsFloorCheck" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/places/{}/room/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPlaceAsRoomCheckIn", + "oracle": "Remove-MgPlaceAsRoomCheck" + }, + "replacementNoun": "PlaceAsRoomCheck" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/places/{}/roomlist/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPlaceAsRoomListCheckIn", + "oracle": "Remove-MgPlaceAsRoomListCheck" + }, + "replacementNoun": "PlaceAsRoomListCheck" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/places/{}/roomlist/rooms/{}/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPlaceAsRoomListRoomCheckIn", + "oracle": "Remove-MgPlaceAsRoomListRoomCheck" + }, + "replacementNoun": "PlaceAsRoomListRoomCheck" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/places/{}/roomlist/workspaces/{}/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPlaceAsRoomListWorkspaceCheckIn", + "oracle": "Remove-MgPlaceAsRoomListWorkspaceCheck" + }, + "replacementNoun": "PlaceAsRoomListWorkspaceCheck" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/places/{}/section/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPlaceAsSectionCheckIn", + "oracle": "Remove-MgPlaceAsSectionCheck" + }, + "replacementNoun": "PlaceAsSectionCheck" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/places/{}/workspace/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPlaceAsWorkspaceCheckIn", + "oracle": "Remove-MgPlaceAsWorkspaceCheck" + }, + "replacementNoun": "PlaceAsWorkspaceCheck" + }, { "apiVersion": "v1.0", "method": "DELETE", @@ -1926,6 +2212,17 @@ }, "replacementNoun": "ServiceAnnouncementMessageAttachment" }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/messages/{}/attachments/{}/content", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementMessageAttachmentContent", + "oracle": "Get-MgServiceAnnouncementMessageAttachmentContent" + }, + "replacementNoun": "ServiceAnnouncementMessageAttachmentContent" + }, { "apiVersion": "v1.0", "method": "GET", @@ -1937,6 +2234,17 @@ }, "replacementNoun": "ServiceAnnouncementMessageAttachmentCount" }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/messages/{}/attachmentsarchive", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementMessageAttachmentArchive", + "oracle": "Get-MgServiceAnnouncementMessageAttachmentArchive" + }, + "replacementNoun": "ServiceAnnouncementMessageAttachmentArchive" + }, { "apiVersion": "v1.0", "method": "GET", @@ -2007,6 +2315,17 @@ }, "replacementNoun": "ChatRetainedMessage" }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/communications/callrecords/{}/participants_v2/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgCommunicationCallRecordParticipantV2Count", + "oracle": "Get-MgCommunicationCallRecordParticipant" + }, + "replacementNoun": "CommunicationCallRecordParticipant" + }, { "apiVersion": "v1.0", "method": "GET", @@ -2153,13665 +2472,17755 @@ { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/applepushnotificationcertificate/downloadapplepushnotificationcertificatesigningrequest", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/assignments", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequest", - "oracle": "Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignment", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" }, - "replacementNoun": "DownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/auditevents/getauditcategories", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/assignments/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementAuditEventGetAuditCategories", - "oracle": "Get-MgDeviceManagementAuditEventAuditCategory" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignment", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" }, - "replacementNoun": "DeviceManagementAuditEventAuditCategory" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/devicemanagementpartners/$count", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/assignments/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementDeviceManagementPartnerCount", - "oracle": "Get-MgDeviceManagementPartnerCount" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignmentCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppAssignmentCount" }, - "replacementNoun": "DeviceManagementPartnerCount" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppAssignmentCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/iosupdatestatuses", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/categories", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementIosUpdateStatus", - "oracle": "Get-MgDeviceManagementIoUpdateStatus" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppCategory", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppCategory" }, - "replacementNoun": "DeviceManagementIoUpdateStatus" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppCategory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/iosupdatestatuses/{}", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/categories/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementIosUpdateStatus", - "oracle": "Get-MgDeviceManagementIoUpdateStatus" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppCategory", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppCategory" }, - "replacementNoun": "DeviceManagementIoUpdateStatus" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppCategory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/iosupdatestatuses/$count", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/categories/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementIosUpdateStatusCount", - "oracle": "Get-MgDeviceManagementIoUpdateStatusCount" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppCategoryCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppCategoryCount" }, - "replacementNoun": "DeviceManagementIoUpdateStatusCount" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppCategoryCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/userexperienceanalyticssummarizeworkfromanywheredevices", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementUserExperienceAnalyticsSummarizeWorkFromAnywhereDevices", - "oracle": "Invoke-MgExperienceDeviceManagement" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" }, - "replacementNoun": "ExperienceDeviceManagement", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/virtualendpoint/auditevents/getauditactivitytypes", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementVirtualEndpointAuditEventGetAuditActivityTypes", - "oracle": "Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" }, - "replacementNoun": "DeviceManagementVirtualEndpointAuditEventAuditActivityType" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/virtualendpoint/cloudpcs", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/containedapps", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementVirtualEndpointCloudPCs", - "oracle": "Get-MgDeviceManagementVirtualEndpointCloudPc" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" }, - "replacementNoun": "DeviceManagementVirtualEndpointCloudPc" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/containedapps/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementVirtualEndpointCloudPCs", - "oracle": "Get-MgDeviceManagementVirtualEndpointCloudPc" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" }, - "replacementNoun": "DeviceManagementVirtualEndpointCloudPc" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/retrievecloudpclaunchdetail", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/containedapps/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementVirtualEndpointCloudPCsRetrieveCloudPcLaunchDetail", - "oracle": "Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedAppCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedAppCount" }, - "replacementNoun": "DeviceManagementVirtualEndpointCloudPcLaunchDetail" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedAppCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/virtualendpoint/cloudpcs/$count", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/files", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementVirtualEndpointCloudPCsCount", - "oracle": "Get-MgDeviceManagementVirtualEndpointCloudPcCount" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" }, - "replacementNoun": "DeviceManagementVirtualEndpointCloudPcCount" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/devicemanagement/virtualendpoint/deviceimages/getsourceimages", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/files/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgDeviceManagementVirtualEndpointDeviceImageGetSourceImages", - "oracle": "Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" }, - "replacementNoun": "DeviceManagementVirtualEndpointDeviceImageSourceImage" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/directory/federationconfigurations/availableprovidertypes", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/files/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgDirectoryFederationConfigurationAvailableProviderTypes", - "oracle": "Invoke-MgAvailableDirectoryFederationConfigurationProviderType" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFileCount" }, - "replacementNoun": "AvailableDirectoryFederationConfigurationProviderType", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionFileCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/analytics/alltime", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgDriveItemAnalyticAllTime", - "oracle": "Get-MgDriveItemAnalyticTime" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionCount" }, - "replacementNoun": "DriveItemAnalyticTime" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/getactivitiesbyinterval", + "uri": "/deviceappmanagement/mobileapps/{}/iosstoreapp/assignments", "action": "rename", "evidence": { - "ourCommand": "Get-MgDriveItemGetActivitiesByInterval", - "oracle": "Get-MgDriveItemActivityByInterval" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment", + "oracle": "Get-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" }, - "replacementNoun": "DriveItemActivityByInterval" + "replacementNoun": "DeviceAppManagementMobileAppAsIoStoreAppAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/list/contenttypes/{}/base", + "uri": "/deviceappmanagement/mobileapps/{}/iosstoreapp/assignments/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgDriveListContentTypeBase", - "oracle": "Get-MgDriveContentTypeBase" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment", + "oracle": "Get-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" }, - "replacementNoun": "DriveContentTypeBase" + "replacementNoun": "DeviceAppManagementMobileAppAsIoStoreAppAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/list/contenttypes/{}/basetypes", + "uri": "/deviceappmanagement/mobileapps/{}/iosstoreapp/assignments/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgDriveListContentTypeBaseType", - "oracle": "Get-MgDriveContentTypeBaseType" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignmentCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsIoStoreAppAssignmentCount" }, - "replacementNoun": "DriveContentTypeBaseType" + "replacementNoun": "DeviceAppManagementMobileAppAsIoStoreAppAssignmentCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/list/contenttypes/{}/basetypes/{}", + "uri": "/deviceappmanagement/mobileapps/{}/iosstoreapp/categories", "action": "rename", "evidence": { - "ourCommand": "Get-MgDriveListContentTypeBaseType", - "oracle": "Get-MgDriveContentTypeBaseType" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategory", + "oracle": "Get-MgDeviceAppManagementMobileAppAsIoStoreAppCategory" }, - "replacementNoun": "DriveContentTypeBaseType" + "replacementNoun": "DeviceAppManagementMobileAppAsIoStoreAppCategory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/list/contenttypes/{}/basetypes/$count", + "uri": "/deviceappmanagement/mobileapps/{}/iosstoreapp/categories/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgDriveListContentTypeBaseTypeCount", - "oracle": "Get-MgDriveContentTypeBaseTypeCount" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategory", + "oracle": "Get-MgDeviceAppManagementMobileAppAsIoStoreAppCategory" }, - "replacementNoun": "DriveContentTypeBaseTypeCount" + "replacementNoun": "DeviceAppManagementMobileAppAsIoStoreAppCategory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/list/contenttypes/{}/ispublished", + "uri": "/deviceappmanagement/mobileapps/{}/iosstoreapp/categories/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgDriveListContentTypeIsPublished", - "oracle": "Test-MgDriveListContentTypePublished" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategoryCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsIoStoreAppCategoryCount" }, - "replacementNoun": "DriveListContentTypePublished", - "replacementVerb": "Test" + "replacementNoun": "DeviceAppManagementMobileAppAsIoStoreAppCategoryCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/list/contenttypes/getcompatiblehubcontenttypes", + "uri": "/deviceappmanagement/mobileapps/{}/iosvppapp/assignments", "action": "rename", "evidence": { - "ourCommand": "Get-MgDriveListContentTypeGetCompatibleHubContentTypes", - "oracle": "Get-MgDriveListContentTypeCompatibleHubContentType" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignment", + "oracle": "Get-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" }, - "replacementNoun": "DriveListContentTypeCompatibleHubContentType" + "replacementNoun": "DeviceAppManagementMobileAppAsIoVppAppAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/list/items/{}/getactivitiesbyinterval", + "uri": "/deviceappmanagement/mobileapps/{}/iosvppapp/assignments/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgDriveListItemGetActivitiesByInterval", - "oracle": "Get-MgDriveListItemActivityByInterval" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignment", + "oracle": "Get-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" }, - "replacementNoun": "DriveListItemActivityByInterval" + "replacementNoun": "DeviceAppManagementMobileAppAsIoVppAppAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/recent", + "uri": "/deviceappmanagement/mobileapps/{}/iosvppapp/assignments/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgDriveRecent", - "oracle": "Invoke-MgRecentDrive" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignmentCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsIoVppAppAssignmentCount" }, - "replacementNoun": "RecentDrive", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsIoVppAppAssignmentCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/sharedwithme", + "uri": "/deviceappmanagement/mobileapps/{}/iosvppapp/categories", "action": "rename", "evidence": { - "ourCommand": "Get-MgDriveSharedWithMe", - "oracle": "Invoke-MgGraphDrive" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosVppAppCategory", + "oracle": "Get-MgDeviceAppManagementMobileAppAsIoVppAppCategory" }, - "replacementNoun": "GraphDrive", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsIoVppAppCategory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/education/classes/{}/getrecentlymodifiedsubmissions", + "uri": "/deviceappmanagement/mobileapps/{}/iosvppapp/categories/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgEducationClassGetRecentlyModifiedSubmissions", - "oracle": "Get-MgEducationClassRecentlyModifiedSubmission" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosVppAppCategory", + "oracle": "Get-MgDeviceAppManagementMobileAppAsIoVppAppCategory" }, - "replacementNoun": "EducationClassRecentlyModifiedSubmission" + "replacementNoun": "DeviceAppManagementMobileAppAsIoVppAppCategory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/education/reports/reflectcheckinresponses", + "uri": "/deviceappmanagement/mobileapps/{}/iosvppapp/categories/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgEducationReportReflectCheckInResponse", - "oracle": "Get-MgEducationReportReflectCheck" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsIosVppAppCategoryCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsIoVppAppCategoryCount" }, - "replacementNoun": "EducationReportReflectCheck" + "replacementNoun": "DeviceAppManagementMobileAppAsIoVppAppCategoryCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/education/reports/reflectcheckinresponses/{}", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/assignments", "action": "rename", "evidence": { - "ourCommand": "Get-MgEducationReportReflectCheckInResponse", - "oracle": "Get-MgEducationReportReflectCheck" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" }, - "replacementNoun": "EducationReportReflectCheck" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/preview", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/assignments/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupOnenoteNotebookSectionGroupSectionPagePreview", - "oracle": "Invoke-MgPreviewGroupOnenoteNotebookSectionGroupSectionPage" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" }, - "replacementNoun": "PreviewGroupOnenoteNotebookSectionGroupSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/pages/{}/preview", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/assignments/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupOnenoteNotebookSectionPagePreview", - "oracle": "Invoke-MgPreviewGroupOnenoteNotebookSectionPage" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignmentCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignmentCount" }, - "replacementNoun": "PreviewGroupOnenoteNotebookSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppAssignmentCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/onenote/pages/{}/preview", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/categories", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupOnenotePagePreview", - "oracle": "Invoke-MgPreviewGroupOnenotePage" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppCategory" }, - "replacementNoun": "PreviewGroupOnenotePage", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppCategory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/preview", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/categories/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupOnenoteSectionGroupSectionPagePreview", - "oracle": "Invoke-MgPreviewGroupOnenoteSectionGroupSectionPage" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppCategory" }, - "replacementNoun": "PreviewGroupOnenoteSectionGroupSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppCategory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/onenote/sections/{}/pages/{}/preview", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/categories/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupOnenoteSectionPagePreview", - "oracle": "Invoke-MgPreviewGroupOnenoteSectionPage" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategoryCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppCategoryCount" }, - "replacementNoun": "PreviewGroupOnenoteSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppCategoryCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/analytics/alltime", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteAnalyticAllTime", - "oracle": "Get-MgGroupSiteAnalyticTime" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" }, - "replacementNoun": "GroupSiteAnalyticTime" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/contenttypes/{}/ispublished", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteContentTypeIsPublished", - "oracle": "Test-MgGroupSiteContentTypePublished" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" }, - "replacementNoun": "GroupSiteContentTypePublished", - "replacementVerb": "Test" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/contenttypes/getcompatiblehubcontenttypes", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/containedapps", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteContentTypeGetCompatibleHubContentTypes", - "oracle": "Get-MgGroupSiteContentTypeCompatibleHubContentType" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" }, - "replacementNoun": "GroupSiteContentTypeCompatibleHubContentType" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/getactivitiesbyinterval", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/containedapps/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteGetActivitiesByInterval", - "oracle": "Get-MgGroupSiteActivityByInterval" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" }, - "replacementNoun": "GroupSiteActivityByInterval" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/ispublished", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/containedapps/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteListContentTypeIsPublished", - "oracle": "Test-MgGroupSiteListContentTypePublished" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedAppCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedAppCount" }, - "replacementNoun": "GroupSiteListContentTypePublished", - "replacementVerb": "Test" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedAppCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/getcompatiblehubcontenttypes", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/files", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteListContentTypeGetCompatibleHubContentTypes", - "oracle": "Get-MgGroupSiteListContentTypeCompatibleHubContentType" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" }, - "replacementNoun": "GroupSiteListContentTypeCompatibleHubContentType" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/lists/{}/items/{}/getactivitiesbyinterval", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/files/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteListItemGetActivitiesByInterval", - "oracle": "Get-MgGroupSiteListItemActivityByInterval" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" }, - "replacementNoun": "GroupSiteListItemActivityByInterval" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/lists/{}/items/{}/lastmodifiedbyuser", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/files/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteListItemLastModifiedByUser", - "oracle": "Get-MgGroupSiteItemLastModifiedByUser" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFileCount" }, - "replacementNoun": "GroupSiteItemLastModifiedByUser" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFileCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/mailboxsettings", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteListItemLastModifiedByUserMailboxSetting", - "oracle": "Get-MgGroupSiteItemLastModifiedByUserMailboxSetting" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionCount" }, - "replacementNoun": "GroupSiteItemLastModifiedByUserMailboxSetting" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/serviceprovisioningerrors", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/assignments", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteListItemLastModifiedByUserServiceProvisioningError", - "oracle": "Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningError" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" }, - "replacementNoun": "GroupSiteItemLastModifiedByUserServiceProvisioningError" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/serviceprovisioningerrors/$count", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/assignments/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteListItemLastModifiedByUserServiceProvisioningErrorCount", - "oracle": "Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningErrorCount" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" }, - "replacementNoun": "GroupSiteItemLastModifiedByUserServiceProvisioningErrorCount" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/preview", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/assignments/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPagePreview", - "oracle": "Invoke-MgPreviewGroupSiteOnenoteNotebookSectionGroupSectionPage" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignmentCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignmentCount" }, - "replacementNoun": "PreviewGroupSiteOnenoteNotebookSectionGroupSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiAssignmentCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/pages/{}/preview", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/categories", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteOnenoteNotebookSectionPagePreview", - "oracle": "Invoke-MgPreviewGroupSiteOnenoteNotebookSectionPage" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategory", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiCategory" }, - "replacementNoun": "PreviewGroupSiteOnenoteNotebookSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiCategory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/onenote/pages/{}/preview", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/categories/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteOnenotePagePreview", - "oracle": "Invoke-MgPreviewGroupSiteOnenotePage" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategory", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiCategory" }, - "replacementNoun": "PreviewGroupSiteOnenotePage", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiCategory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/preview", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/categories/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteOnenoteSectionGroupSectionPagePreview", - "oracle": "Invoke-MgPreviewGroupSiteOnenoteSectionGroupSectionPage" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategoryCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiCategoryCount" }, - "replacementNoun": "PreviewGroupSiteOnenoteSectionGroupSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiCategoryCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/onenote/sections/{}/pages/{}/preview", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteOnenoteSectionPagePreview", - "oracle": "Invoke-MgPreviewGroupSiteOnenoteSectionPage" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" }, - "replacementNoun": "PreviewGroupSiteOnenoteSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/sites/{}/sites/$count", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupSiteCount", - "oracle": "Get-MgGroupSubSiteCount" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" }, - "replacementNoun": "GroupSubSiteCount" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/team/allchannels", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/containedapps", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupTeamAllChannel", - "oracle": "Get-MgAllGroupTeamChannel" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" }, - "replacementNoun": "AllGroupTeamChannel" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/team/allchannels/{}", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/containedapps/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupTeamAllChannel", - "oracle": "Get-MgAllGroupTeamChannel" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" }, - "replacementNoun": "AllGroupTeamChannel" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/team/allchannels/$count", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/containedapps/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupTeamAllChannelCount", - "oracle": "Get-MgAllGroupTeamChannelCount" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedAppCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedAppCount" }, - "replacementNoun": "AllGroupTeamChannelCount" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedAppCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/team/channels/{}/allmembers", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/files", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupTeamChannelAllMember", - "oracle": "Get-MgGroupTeamChannelMember" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" }, - "replacementNoun": "GroupTeamChannelMember" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/team/channels/{}/allmembers/{}", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/files/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupTeamChannelAllMember", - "oracle": "Get-MgGroupTeamChannelMember" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" }, - "replacementNoun": "GroupTeamChannelMember" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/team/channels/getallretainedmessages", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/files/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupTeamChannelGetAllRetainedMessages", - "oracle": "Get-MgGroupTeamChannelRetainedMessage" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFileCount" }, - "replacementNoun": "GroupTeamChannelRetainedMessage" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFileCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/team/primarychannel/allmembers", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupTeamPrimaryChannelAllMember", - "oracle": "Get-MgGroupTeamPrimaryChannelMember" + "ourCommand": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionCount", + "oracle": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionCount" }, - "replacementNoun": "GroupTeamPrimaryChannelMember" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/groups/{}/team/primarychannel/allmembers/{}", + "uri": "/deviceappmanagement/mobileapps/ioslobapp/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgGroupTeamPrimaryChannelAllMember", - "oracle": "Get-MgGroupTeamPrimaryChannelMember" + "ourCommand": "Get-MgDeviceAppManagementMobileAppCountAsIosLobApp", + "oracle": "Get-MgDeviceAppManagementMobileAppCountAsiOSLobApp" }, - "replacementNoun": "GroupTeamPrimaryChannelMember" + "replacementNoun": "DeviceAppManagementMobileAppCountAsiOSLobApp" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications", + "uri": "/deviceappmanagement/mobileapps/iosstoreapp/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication", - "oracle": "Get-MgIdentityAuthenticationEventFlowIncludeApplication" + "ourCommand": "Get-MgDeviceAppManagementMobileAppCountAsIosStoreApp", + "oracle": "Get-MgDeviceAppManagementMobileAppCountAsIoStoreApp" }, - "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" + "replacementNoun": "DeviceAppManagementMobileAppCountAsIoStoreApp" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications/{}", + "uri": "/deviceappmanagement/mobileapps/iosvppapp/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication", - "oracle": "Get-MgIdentityAuthenticationEventFlowIncludeApplication" + "ourCommand": "Get-MgDeviceAppManagementMobileAppCountAsIosVppApp", + "oracle": "Get-MgDeviceAppManagementMobileAppCountAsIoVppApp" }, - "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" + "replacementNoun": "DeviceAppManagementMobileAppCountAsIoVppApp" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications/$count", + "uri": "/deviceappmanagement/mobileapps/managedioslobapp/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplicationCount", - "oracle": "Get-MgIdentityAuthenticationEventFlowIncludeApplicationCount" + "ourCommand": "Get-MgDeviceAppManagementMobileAppCountAsManagedIOSLobApp", + "oracle": "Get-MgDeviceAppManagementMobileAppCountAsManagediOSLobApp" }, - "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplicationCount" + "replacementNoun": "DeviceAppManagementMobileAppCountAsManagediOSLobApp" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows", + "uri": "/deviceappmanagement/mobileapps/windowsmobilemsi/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlow", - "oracle": "Get-MgIdentityB2XUserFlow" + "ourCommand": "Get-MgDeviceAppManagementMobileAppCountAsWindowsMobileMSI", + "oracle": "Get-MgDeviceAppManagementMobileAppCountAsWindowsMobileMsi" }, - "replacementNoun": "IdentityB2XUserFlow" + "replacementNoun": "DeviceAppManagementMobileAppCountAsWindowsMobileMsi" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}", + "uri": "/devicemanagement/applepushnotificationcertificate/downloadapplepushnotificationcertificatesigningrequest", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlow", - "oracle": "Get-MgIdentityB2XUserFlow" + "ourCommand": "Get-MgDeviceManagementApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequest", + "oracle": "Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest" }, - "replacementNoun": "IdentityB2XUserFlow" + "replacementNoun": "DownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration", + "uri": "/devicemanagement/auditevents/getauditactivitytypes(category='{category}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfiguration", - "oracle": "Get-MgIdentityB2XUserFlowApiConnectorConfiguration" + "ourCommand": "Get-MgDeviceManagementAuditEventGetAuditActivityTypesWithCategory", + "oracle": "Get-MgDeviceManagementAuditEventAuditActivityType" }, - "replacementNoun": "IdentityB2XUserFlowApiConnectorConfiguration" + "replacementNoun": "DeviceManagementAuditEventAuditActivityType" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection", + "uri": "/devicemanagement/auditevents/getauditcategories", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection", - "oracle": "Get-MgIdentityB2XUserFlowPostAttributeCollection" + "ourCommand": "Get-MgDeviceManagementAuditEventGetAuditCategories", + "oracle": "Get-MgDeviceManagementAuditEventAuditCategory" }, - "replacementNoun": "IdentityB2XUserFlowPostAttributeCollection" + "replacementNoun": "DeviceManagementAuditEventAuditCategory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection/$ref", + "uri": "/devicemanagement/deviceconfigurations/{}/getomasettingplaintextvalue(secretreferencevalueid='{secretreferencevalueid}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef", - "oracle": "Get-MgIdentityB2XUserFlowPostAttributeCollectionByRef" + "ourCommand": "Get-MgDeviceManagementDeviceConfigurationGetOmaSettingPlainTextValueWithSecretReferenceValueId", + "oracle": "Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue" }, - "replacementNoun": "IdentityB2XUserFlowPostAttributeCollectionByRef" + "replacementNoun": "DeviceManagementDeviceConfigurationOmaSettingPlainTextValue" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup", + "uri": "/devicemanagement/devicemanagementpartners/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup", - "oracle": "Get-MgIdentityB2XUserFlowPostFederationSignup" + "ourCommand": "Get-MgDeviceManagementDeviceManagementPartnerCount", + "oracle": "Get-MgDeviceManagementPartnerCount" }, - "replacementNoun": "IdentityB2XUserFlowPostFederationSignup" + "replacementNoun": "DeviceManagementPartnerCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup/$ref", + "uri": "/devicemanagement/geteffectivepermissions(scope='{scope}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef", - "oracle": "Get-MgIdentityB2XUserFlowPostFederationSignupByRef" + "ourCommand": "Get-MgDeviceManagementGetEffectivePermissionsWithScope", + "oracle": "Get-MgDeviceManagementEffectivePermission" }, - "replacementNoun": "IdentityB2XUserFlowPostFederationSignupByRef" + "replacementNoun": "DeviceManagementEffectivePermission" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/identityproviders", + "uri": "/devicemanagement/iosupdatestatuses", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowIdentityProvider", - "oracle": "Get-MgIdentityB2XUserFlowIdentityProvider" + "ourCommand": "Get-MgDeviceManagementIosUpdateStatus", + "oracle": "Get-MgDeviceManagementIoUpdateStatus" }, - "replacementNoun": "IdentityB2XUserFlowIdentityProvider" + "replacementNoun": "DeviceManagementIoUpdateStatus" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/identityproviders/{}", + "uri": "/devicemanagement/iosupdatestatuses/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowIdentityProvider", - "oracle": "Get-MgIdentityB2XUserFlowIdentityProvider" + "ourCommand": "Get-MgDeviceManagementIosUpdateStatus", + "oracle": "Get-MgDeviceManagementIoUpdateStatus" }, - "replacementNoun": "IdentityB2XUserFlowIdentityProvider" + "replacementNoun": "DeviceManagementIoUpdateStatus" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/identityproviders/$count", + "uri": "/devicemanagement/iosupdatestatuses/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowIdentityProviderCount", - "oracle": "Get-MgIdentityB2XUserFlowIdentityProviderCount" + "ourCommand": "Get-MgDeviceManagementIosUpdateStatusCount", + "oracle": "Get-MgDeviceManagementIoUpdateStatusCount" }, - "replacementNoun": "IdentityB2XUserFlowIdentityProviderCount" + "replacementNoun": "DeviceManagementIoUpdateStatusCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/languages", + "uri": "/devicemanagement/userexperienceanalyticssummarizeworkfromanywheredevices", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowLanguage", - "oracle": "Get-MgIdentityB2XUserFlowLanguage" + "ourCommand": "Get-MgDeviceManagementUserExperienceAnalyticsSummarizeWorkFromAnywhereDevices", + "oracle": "Invoke-MgExperienceDeviceManagement" }, - "replacementNoun": "IdentityB2XUserFlowLanguage" + "replacementNoun": "ExperienceDeviceManagement", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/languages/{}", + "uri": "/devicemanagement/verifywindowsenrollmentautodiscovery(domainname='{domainname}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowLanguage", - "oracle": "Get-MgIdentityB2XUserFlowLanguage" + "ourCommand": "Get-MgDeviceManagementVerifyWindowsEnrollmentAutoDiscoveryWithDomainName", + "oracle": "Confirm-MgDeviceManagementWindowsEnrollmentAutoDiscovery" }, - "replacementNoun": "IdentityB2XUserFlowLanguage" + "replacementNoun": "DeviceManagementWindowsEnrollmentAutoDiscovery", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages", + "uri": "/devicemanagement/virtualendpoint/auditevents/getauditactivitytypes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowLanguageDefaultPage", - "oracle": "Get-MgIdentityB2XUserFlowLanguageDefaultPage" + "ourCommand": "Get-MgDeviceManagementVirtualEndpointAuditEventGetAuditActivityTypes", + "oracle": "Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType" }, - "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPage" + "replacementNoun": "DeviceManagementVirtualEndpointAuditEventAuditActivityType" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/{}", + "uri": "/devicemanagement/virtualendpoint/cloudpcs", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowLanguageDefaultPage", - "oracle": "Get-MgIdentityB2XUserFlowLanguageDefaultPage" + "ourCommand": "Get-MgDeviceManagementVirtualEndpointCloudPCs", + "oracle": "Get-MgDeviceManagementVirtualEndpointCloudPc" }, - "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPage" + "replacementNoun": "DeviceManagementVirtualEndpointCloudPc" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/{}/$value", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowLanguageDefaultPageContent", - "oracle": "Get-MgIdentityB2XUserFlowLanguageDefaultPageContent" + "ourCommand": "Get-MgDeviceManagementVirtualEndpointCloudPCs", + "oracle": "Get-MgDeviceManagementVirtualEndpointCloudPc" }, - "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPageContent" + "replacementNoun": "DeviceManagementVirtualEndpointCloudPc" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/$count", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/retrievecloudpclaunchdetail", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowLanguageDefaultPageCount", - "oracle": "Get-MgIdentityB2XUserFlowLanguageDefaultPageCount" + "ourCommand": "Get-MgDeviceManagementVirtualEndpointCloudPCsRetrieveCloudPcLaunchDetail", + "oracle": "Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail" }, - "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPageCount" + "replacementNoun": "DeviceManagementVirtualEndpointCloudPcLaunchDetail" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowLanguageOverridePage", - "oracle": "Get-MgIdentityB2XUserFlowLanguageOverridePage" + "ourCommand": "Get-MgDeviceManagementVirtualEndpointCloudPCsCount", + "oracle": "Get-MgDeviceManagementVirtualEndpointCloudPcCount" }, - "replacementNoun": "IdentityB2XUserFlowLanguageOverridePage" + "replacementNoun": "DeviceManagementVirtualEndpointCloudPcCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/{}", + "uri": "/devicemanagement/virtualendpoint/deviceimages/getsourceimages", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowLanguageOverridePage", - "oracle": "Get-MgIdentityB2XUserFlowLanguageOverridePage" + "ourCommand": "Get-MgDeviceManagementVirtualEndpointDeviceImageGetSourceImages", + "oracle": "Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage" }, - "replacementNoun": "IdentityB2XUserFlowLanguageOverridePage" + "replacementNoun": "DeviceManagementVirtualEndpointDeviceImageSourceImage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/{}/$value", + "uri": "/directory/federationconfigurations/availableprovidertypes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowLanguageOverridePageContent", - "oracle": "Get-MgIdentityB2XUserFlowLanguageOverridePageContent" + "ourCommand": "Get-MgDirectoryFederationConfigurationAvailableProviderTypes", + "oracle": "Invoke-MgAvailableDirectoryFederationConfigurationProviderType" }, - "replacementNoun": "IdentityB2XUserFlowLanguageOverridePageContent" + "replacementNoun": "AvailableDirectoryFederationConfigurationProviderType", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/$count", + "uri": "/drives/{}/items/{}/analytics/alltime", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowLanguageOverridePageCount", - "oracle": "Get-MgIdentityB2XUserFlowLanguageOverridePageCount" + "ourCommand": "Get-MgDriveItemAnalyticAllTime", + "oracle": "Get-MgDriveItemAnalyticTime" }, - "replacementNoun": "IdentityB2XUserFlowLanguageOverridePageCount" + "replacementNoun": "DriveItemAnalyticTime" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/languages/$count", + "uri": "/drives/{}/items/{}/getactivitiesbyinterval", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowLanguageCount", - "oracle": "Get-MgIdentityB2XUserFlowLanguageCount" + "ourCommand": "Get-MgDriveItemGetActivitiesByInterval", + "oracle": "Get-MgDriveItemActivityByInterval" }, - "replacementNoun": "IdentityB2XUserFlowLanguageCount" + "replacementNoun": "DriveItemActivityByInterval" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/userattributeassignments", + "uri": "/drives/{}/items/{}/search(q='{q}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignment", - "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignment" + "ourCommand": "Get-MgDriveItemSearchWithQ", + "oracle": "Search-MgDriveItem" }, - "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignment" + "replacementNoun": "DriveItem", + "replacementVerb": "Search" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/userattributeassignments/{}", + "uri": "/drives/{}/list/contenttypes/{}/base", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignment", - "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignment" + "ourCommand": "Get-MgDriveListContentTypeBase", + "oracle": "Get-MgDriveContentTypeBase" }, - "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignment" + "replacementNoun": "DriveContentTypeBase" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/userattributeassignments/{}/userattribute", + "uri": "/drives/{}/list/contenttypes/{}/basetypes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignmentUserAttribute", - "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentUserAttribute" + "ourCommand": "Get-MgDriveListContentTypeBaseType", + "oracle": "Get-MgDriveContentTypeBaseType" }, - "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignmentUserAttribute" + "replacementNoun": "DriveContentTypeBaseType" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/userattributeassignments/$count", + "uri": "/drives/{}/list/contenttypes/{}/basetypes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignmentCount", - "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentCount" + "ourCommand": "Get-MgDriveListContentTypeBaseType", + "oracle": "Get-MgDriveContentTypeBaseType" }, - "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignmentCount" + "replacementNoun": "DriveContentTypeBaseType" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/userattributeassignments/getorder", + "uri": "/drives/{}/list/contenttypes/{}/basetypes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignmentGetOrder", - "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder" + "ourCommand": "Get-MgDriveListContentTypeBaseTypeCount", + "oracle": "Get-MgDriveContentTypeBaseTypeCount" }, - "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignmentOrder" + "replacementNoun": "DriveContentTypeBaseTypeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/{}/userflowidentityproviders/$ref", + "uri": "/drives/{}/list/contenttypes/{}/ispublished", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef", - "oracle": "Get-MgIdentityB2XUserFlowIdentityProviderByRef" + "ourCommand": "Get-MgDriveListContentTypeIsPublished", + "oracle": "Test-MgDriveListContentTypePublished" }, - "replacementNoun": "IdentityB2XUserFlowIdentityProviderByRef" + "replacementNoun": "DriveListContentTypePublished", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/b2xuserflows/$count", + "uri": "/drives/{}/list/contenttypes/getcompatiblehubcontenttypes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityB2xUserFlowCount", - "oracle": "Get-MgIdentityB2XUserFlowCount" + "ourCommand": "Get-MgDriveListContentTypeGetCompatibleHubContentTypes", + "oracle": "Get-MgDriveListContentTypeCompatibleHubContentType" }, - "replacementNoun": "IdentityB2XUserFlowCount" + "replacementNoun": "DriveListContentTypeCompatibleHubContentType" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/conditionalaccess/authenticationstrength/policies/{}/usage", + "uri": "/drives/{}/list/items/{}/getactivitiesbyinterval", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyUsage", - "oracle": "Invoke-MgUsageIdentityConditionalAccessAuthenticationStrengthPolicy" + "ourCommand": "Get-MgDriveListItemGetActivitiesByInterval", + "oracle": "Get-MgDriveListItemActivityByInterval" }, - "replacementNoun": "UsageIdentityConditionalAccessAuthenticationStrengthPolicy", - "replacementVerb": "Invoke" + "replacementNoun": "DriveListItemActivityByInterval" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identity/identityproviders/availableprovidertypes", + "uri": "/drives/{}/recent", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProviderAvailableProviderTypes", - "oracle": "Invoke-MgAvailableIdentityProviderType" + "ourCommand": "Get-MgDriveRecent", + "oracle": "Invoke-MgRecentDrive" }, - "replacementNoun": "AvailableIdentityProviderType", + "replacementNoun": "RecentDrive", "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/appconsent/appconsentrequests", + "uri": "/drives/{}/search(q='{q}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequest", - "oracle": "Get-MgIdentityGovernanceAppConsentRequest" + "ourCommand": "Get-MgDriveSearchWithQ", + "oracle": "Search-MgDrive" }, - "replacementNoun": "IdentityGovernanceAppConsentRequest" + "replacementNoun": "Drive", + "replacementVerb": "Search" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}", + "uri": "/drives/{}/sharedwithme", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequest", - "oracle": "Get-MgIdentityGovernanceAppConsentRequest" + "ourCommand": "Get-MgDriveSharedWithMe", + "oracle": "Invoke-MgGraphDrive" }, - "replacementNoun": "IdentityGovernanceAppConsentRequest" + "replacementNoun": "GraphDrive", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests", + "uri": "/education/classes/{}/getrecentlymodifiedsubmissions", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest", - "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest" + "ourCommand": "Get-MgEducationClassGetRecentlyModifiedSubmissions", + "oracle": "Get-MgEducationClassRecentlyModifiedSubmission" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequest" + "replacementNoun": "EducationClassRecentlyModifiedSubmission" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}", + "uri": "/education/reports/reflectcheckinresponses", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest", - "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest" + "ourCommand": "Get-MgEducationReportReflectCheckInResponse", + "oracle": "Get-MgEducationReportReflectCheck" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequest" + "replacementNoun": "EducationReportReflectCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval", + "uri": "/education/reports/reflectcheckinresponses/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval", - "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" + "ourCommand": "Get-MgEducationReportReflectCheckInResponse", + "oracle": "Get-MgEducationReportReflectCheck" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApproval" + "replacementNoun": "EducationReportReflectCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages", + "uri": "/groups/{}/calendar/allowedcalendarsharingroles(user='{user}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage", - "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + "ourCommand": "Get-MgGroupCalendarAllowedCalendarSharingRolesWithUser", + "oracle": "Invoke-MgCalendarGroupCalendar" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + "replacementNoun": "CalendarGroupCalendar", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages/{}", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/preview", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage", - "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + "ourCommand": "Get-MgGroupOnenoteNotebookSectionGroupSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupOnenoteNotebookSectionGroupSectionPage" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + "replacementNoun": "PreviewGroupOnenoteNotebookSectionGroupSectionPage", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages/$count", + "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/pages/{}/preview", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStageCount", - "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStageCount" + "ourCommand": "Get-MgGroupOnenoteNotebookSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupOnenoteNotebookSectionPage" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStageCount" + "replacementNoun": "PreviewGroupOnenoteNotebookSectionPage", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/$count", + "uri": "/groups/{}/onenote/notebooks/getrecentnotebooks(includepersonalnotebooks={includepersonalnotebooks})", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestCount", - "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestCount" + "ourCommand": "Get-MgGroupOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks", + "oracle": "Get-MgGroupOnenoteRecentNotebook" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestCount" + "replacementNoun": "GroupOnenoteRecentNotebook" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/appconsent/appconsentrequests/$count", + "uri": "/groups/{}/onenote/pages/{}/preview", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestCount", - "oracle": "Get-MgIdentityGovernanceAppConsentRequestCount" + "ourCommand": "Get-MgGroupOnenotePagePreview", + "oracle": "Invoke-MgPreviewGroupOnenotePage" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestCount" + "replacementNoun": "PreviewGroupOnenotePage", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages", + "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/preview", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage", - "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage" - }, - "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStage" + "ourCommand": "Get-MgGroupOnenoteSectionGroupSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupOnenoteSectionGroupSectionPage" + }, + "replacementNoun": "PreviewGroupOnenoteSectionGroupSectionPage", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages/{}", + "uri": "/groups/{}/onenote/sections/{}/pages/{}/preview", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage", - "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage" + "ourCommand": "Get-MgGroupOnenoteSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupOnenoteSectionPage" }, - "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStage" + "replacementNoun": "PreviewGroupOnenoteSectionPage", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages/$count", + "uri": "/groups/{}/sites/{}/analytics/alltime", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStageCount", - "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStageCount" + "ourCommand": "Get-MgGroupSiteAnalyticAllTime", + "oracle": "Get-MgGroupSiteAnalyticTime" }, - "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStageCount" + "replacementNoun": "GroupSiteAnalyticTime" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/$count", + "uri": "/groups/{}/sites/{}/contenttypes/{}/ispublished", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalCount", - "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalCount" + "ourCommand": "Get-MgGroupSiteContentTypeIsPublished", + "oracle": "Test-MgGroupSiteContentTypePublished" }, - "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalCount" + "replacementNoun": "GroupSiteContentTypePublished", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackages", + "uri": "/groups/{}/sites/{}/contenttypes/getcompatiblehubcontenttypes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackage", - "oracle": "Get-MgEntitlementManagementAccessPackage" + "ourCommand": "Get-MgGroupSiteContentTypeGetCompatibleHubContentTypes", + "oracle": "Get-MgGroupSiteContentTypeCompatibleHubContentType" }, - "replacementNoun": "EntitlementManagementAccessPackage" + "replacementNoun": "GroupSiteContentTypeCompatibleHubContentType" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}", + "uri": "/groups/{}/sites/{}/getactivitiesbyinterval", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackage", - "oracle": "Get-MgEntitlementManagementAccessPackage" + "ourCommand": "Get-MgGroupSiteGetActivitiesByInterval", + "oracle": "Get-MgGroupSiteActivityByInterval" }, - "replacementNoun": "EntitlementManagementAccessPackage" + "replacementNoun": "GroupSiteActivityByInterval" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/accesspackagesincompatiblewith", + "uri": "/groups/{}/sites/{}/getapplicablecontenttypesforlist(listid='{listid}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith", - "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleWith" + "ourCommand": "Get-MgGroupSiteGetApplicableContentTypesForListWithListId", + "oracle": "Get-MgGroupSiteApplicableContentTypeForList" }, - "replacementNoun": "EntitlementManagementAccessPackageIncompatibleWith" + "replacementNoun": "GroupSiteApplicableContentTypeForList" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/accesspackagesincompatiblewith/{}", + "uri": "/groups/{}/sites/{}/getbypath(path='{path}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith", - "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleWith" + "ourCommand": "Get-MgGroupSiteGetByPathWithPath", + "oracle": "Get-MgGroupSiteByPath" }, - "replacementNoun": "EntitlementManagementAccessPackageIncompatibleWith" + "replacementNoun": "GroupSiteByPath" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/ispublished", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy", - "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy" + "ourCommand": "Get-MgGroupSiteListContentTypeIsPublished", + "oracle": "Test-MgGroupSiteListContentTypePublished" }, - "replacementNoun": "EntitlementManagementAccessPackageAssignmentPolicy" + "replacementNoun": "GroupSiteListContentTypePublished", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/getcompatiblehubcontenttypes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy", - "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy" + "ourCommand": "Get-MgGroupSiteListContentTypeGetCompatibleHubContentTypes", + "oracle": "Get-MgGroupSiteListContentTypeCompatibleHubContentType" }, - "replacementNoun": "EntitlementManagementAccessPackageAssignmentPolicy" + "replacementNoun": "GroupSiteListContentTypeCompatibleHubContentType" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/catalog", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/getactivitiesbyinterval", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageCatalog", - "oracle": "Get-MgEntitlementManagementAccessPackageCatalog" + "ourCommand": "Get-MgGroupSiteListItemGetActivitiesByInterval", + "oracle": "Get-MgGroupSiteListItemActivityByInterval" }, - "replacementNoun": "EntitlementManagementAccessPackageCatalog" + "replacementNoun": "GroupSiteListItemActivityByInterval" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/lastmodifiedbyuser", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackage", - "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage" + "ourCommand": "Get-MgGroupSiteListItemLastModifiedByUser", + "oracle": "Get-MgGroupSiteItemLastModifiedByUser" }, - "replacementNoun": "EntitlementManagementAccessPackageIncompatibleAccessPackage" + "replacementNoun": "GroupSiteItemLastModifiedByUser" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/$ref", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/mailboxsettings", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", - "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" + "ourCommand": "Get-MgGroupSiteListItemLastModifiedByUserMailboxSetting", + "oracle": "Get-MgGroupSiteItemLastModifiedByUserMailboxSetting" }, - "replacementNoun": "EntitlementManagementAccessPackageIncompatibleAccessPackageByRef" + "replacementNoun": "GroupSiteItemLastModifiedByUserMailboxSetting" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/serviceprovisioningerrors", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroup", - "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleGroup" + "ourCommand": "Get-MgGroupSiteListItemLastModifiedByUserServiceProvisioningError", + "oracle": "Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningError" }, - "replacementNoun": "EntitlementManagementAccessPackageIncompatibleGroup" + "replacementNoun": "GroupSiteItemLastModifiedByUserServiceProvisioningError" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/$ref", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/serviceprovisioningerrors/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef", - "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" + "ourCommand": "Get-MgGroupSiteListItemLastModifiedByUserServiceProvisioningErrorCount", + "oracle": "Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningErrorCount" }, - "replacementNoun": "EntitlementManagementAccessPackageIncompatibleGroupByRef" + "replacementNoun": "GroupSiteItemLastModifiedByUserServiceProvisioningErrorCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/$count", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/preview", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageCount", - "oracle": "Get-MgEntitlementManagementAccessPackageCount" + "ourCommand": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupSiteOnenoteNotebookSectionGroupSectionPage" }, - "replacementNoun": "EntitlementManagementAccessPackageCount" + "replacementNoun": "PreviewGroupSiteOnenoteNotebookSectionGroupSectionPage", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/pages/{}/preview", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion", - "oracle": "Get-MgEntitlementManagementAccessPackageSuggestion" + "ourCommand": "Get-MgGroupSiteOnenoteNotebookSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupSiteOnenoteNotebookSectionPage" }, - "replacementNoun": "EntitlementManagementAccessPackageSuggestion" + "replacementNoun": "PreviewGroupSiteOnenoteNotebookSectionPage", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/{}", + "uri": "/groups/{}/sites/{}/onenote/notebooks/getrecentnotebooks(includepersonalnotebooks={includepersonalnotebooks})", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion", - "oracle": "Get-MgEntitlementManagementAccessPackageSuggestion" + "ourCommand": "Get-MgGroupSiteOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks", + "oracle": "Get-MgGroupSiteOnenoteNotebookRecentNotebook" }, - "replacementNoun": "EntitlementManagementAccessPackageSuggestion" + "replacementNoun": "GroupSiteOnenoteNotebookRecentNotebook" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/{}/accesspackage", + "uri": "/groups/{}/sites/{}/onenote/pages/{}/preview", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionAccessPackage", - "oracle": "Get-MgEntitlementManagementAccessPackageSuggestionAccessPackage" + "ourCommand": "Get-MgGroupSiteOnenotePagePreview", + "oracle": "Invoke-MgPreviewGroupSiteOnenotePage" }, - "replacementNoun": "EntitlementManagementAccessPackageSuggestionAccessPackage" + "replacementNoun": "PreviewGroupSiteOnenotePage", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/$count", + "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/preview", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionCount", - "oracle": "Get-MgEntitlementManagementAccessPackageSuggestionCount" + "ourCommand": "Get-MgGroupSiteOnenoteSectionGroupSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupSiteOnenoteSectionGroupSectionPage" }, - "replacementNoun": "EntitlementManagementAccessPackageSuggestionCount" + "replacementNoun": "PreviewGroupSiteOnenoteSectionGroupSectionPage", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies", + "uri": "/groups/{}/sites/{}/onenote/sections/{}/pages/{}/preview", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy", - "oracle": "Get-MgEntitlementManagementAssignmentPolicy" + "ourCommand": "Get-MgGroupSiteOnenoteSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupSiteOnenoteSectionPage" }, - "replacementNoun": "EntitlementManagementAssignmentPolicy" + "replacementNoun": "PreviewGroupSiteOnenoteSectionPage", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}", + "uri": "/groups/{}/sites/{}/sites/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy", - "oracle": "Get-MgEntitlementManagementAssignmentPolicy" + "ourCommand": "Get-MgGroupSiteCount", + "oracle": "Get-MgGroupSubSiteCount" }, - "replacementNoun": "EntitlementManagementAssignmentPolicy" + "replacementNoun": "GroupSubSiteCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/accesspackage", + "uri": "/groups/{}/team/allchannels", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyAccessPackage", - "oracle": "Get-MgEntitlementManagementAssignmentPolicyAccessPackage" + "ourCommand": "Get-MgGroupTeamAllChannel", + "oracle": "Get-MgAllGroupTeamChannel" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyAccessPackage" + "replacementNoun": "AllGroupTeamChannel" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/catalog", + "uri": "/groups/{}/team/allchannels/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCatalog", - "oracle": "Get-MgEntitlementManagementAssignmentPolicyCatalog" + "ourCommand": "Get-MgGroupTeamAllChannel", + "oracle": "Get-MgAllGroupTeamChannel" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyCatalog" + "replacementNoun": "AllGroupTeamChannel" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings", + "uri": "/groups/{}/team/allchannels/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", - "oracle": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + "ourCommand": "Get-MgGroupTeamAllChannelCount", + "oracle": "Get-MgAllGroupTeamChannelCount" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + "replacementNoun": "AllGroupTeamChannelCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings/{}", + "uri": "/groups/{}/team/channels/{}/allmembers", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", - "oracle": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + "ourCommand": "Get-MgGroupTeamChannelAllMember", + "oracle": "Get-MgGroupTeamChannelMember" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + "replacementNoun": "GroupTeamChannelMember" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings/{}/customextension", + "uri": "/groups/{}/team/channels/{}/allmembers/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension", - "oracle": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension" + "ourCommand": "Get-MgGroupTeamChannelAllMember", + "oracle": "Get-MgGroupTeamChannelMember" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension" + "replacementNoun": "GroupTeamChannelMember" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings/$count", + "uri": "/groups/{}/team/channels/getallretainedmessages", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount", - "oracle": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount" + "ourCommand": "Get-MgGroupTeamChannelGetAllRetainedMessages", + "oracle": "Get-MgGroupTeamChannelRetainedMessage" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount" + "replacementNoun": "GroupTeamChannelRetainedMessage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions", + "uri": "/groups/{}/team/primarychannel/allmembers", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion", - "oracle": "Get-MgEntitlementManagementAssignmentPolicyQuestion" + "ourCommand": "Get-MgGroupTeamPrimaryChannelAllMember", + "oracle": "Get-MgGroupTeamPrimaryChannelMember" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyQuestion" + "replacementNoun": "GroupTeamPrimaryChannelMember" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions/{}", + "uri": "/groups/{}/team/primarychannel/allmembers/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion", - "oracle": "Get-MgEntitlementManagementAssignmentPolicyQuestion" + "ourCommand": "Get-MgGroupTeamPrimaryChannelAllMember", + "oracle": "Get-MgGroupTeamPrimaryChannelMember" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyQuestion" + "replacementNoun": "GroupTeamPrimaryChannelMember" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions/$count", + "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestionCount", - "oracle": "Get-MgEntitlementManagementAssignmentPolicyQuestionCount" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication", + "oracle": "Get-MgIdentityAuthenticationEventFlowIncludeApplication" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyQuestionCount" + "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/$count", + "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCount", - "oracle": "Get-MgEntitlementManagementAssignmentPolicyCount" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication", + "oracle": "Get-MgIdentityAuthenticationEventFlowIncludeApplication" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyCount" + "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentrequests", + "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest", - "oracle": "Get-MgEntitlementManagementAssignmentRequest" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplicationCount", + "oracle": "Get-MgIdentityAuthenticationEventFlowIncludeApplicationCount" }, - "replacementNoun": "EntitlementManagementAssignmentRequest" + "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplicationCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/conditions/applications/includeapplications", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest", - "oracle": "Get-MgEntitlementManagementAssignmentRequest" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication", + "oracle": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" }, - "replacementNoun": "EntitlementManagementAssignmentRequest" + "replacementNoun": "IdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/$count", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/conditions/applications/includeapplications/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestCount", - "oracle": "Get-MgEntitlementManagementAssignmentRequestCount" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication", + "oracle": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" }, - "replacementNoun": "EntitlementManagementAssignmentRequestCount" + "replacementNoun": "IdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignments", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/conditions/applications/includeapplications/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignment", - "oracle": "Get-MgEntitlementManagementAssignment" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplicationCount", + "oracle": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplicationCount" }, - "replacementNoun": "EntitlementManagementAssignment" + "replacementNoun": "IdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplicationCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignments/{}", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/onattributecollection/onattributecollectionexternalusersselfservicesignup", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignment", - "oracle": "Get-MgEntitlementManagementAssignment" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp", + "oracle": "Get-MgIdentityAuthenticationEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp" }, - "replacementNoun": "EntitlementManagementAssignment" + "replacementNoun": "IdentityAuthenticationEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignments/$count", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/onattributecollection/onattributecollectionexternalusersselfservicesignup/attributes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentCount", - "oracle": "Get-MgEntitlementManagementAssignmentCount" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute", + "oracle": "Get-MgIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute" }, - "replacementNoun": "EntitlementManagementAssignmentCount" + "replacementNoun": "IdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/assignments/additionalaccess", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/onattributecollection/onattributecollectionexternalusersselfservicesignup/attributes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccess", - "oracle": "Get-MgEntitlementManagementAssignmentAdditional" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount", + "oracle": "Get-MgIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount" }, - "replacementNoun": "EntitlementManagementAssignmentAdditional" + "replacementNoun": "IdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/onattributecollection/onattributecollectionexternalusersselfservicesignup/attributes/$ref", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage", - "oracle": "Get-MgEntitlementManagementAvailableAccessPackage" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef", + "oracle": "Get-MgIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef" }, - "replacementNoun": "EntitlementManagementAvailableAccessPackage" + "replacementNoun": "IdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/onauthenticationmethodloadstartexternalusersselfservicesignup", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage", - "oracle": "Get-MgEntitlementManagementAvailableAccessPackage" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp", + "oracle": "Get-MgIdentityAuthenticationEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp" }, - "replacementNoun": "EntitlementManagementAvailableAccessPackage" + "replacementNoun": "IdentityAuthenticationEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}/resourcerolescopes", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope", - "oracle": "Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScope" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider", + "oracle": "Get-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider" }, - "replacementNoun": "EntitlementManagementAvailableAccessPackageResourceRoleScope" + "replacementNoun": "IdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}/resourcerolescopes/{}", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope", - "oracle": "Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScope" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount", + "oracle": "Get-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount" }, - "replacementNoun": "EntitlementManagementAvailableAccessPackageResourceRoleScope" + "replacementNoun": "IdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}/resourcerolescopes/$count", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/$ref", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScopeCount", - "oracle": "Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScopeCount" + "ourCommand": "Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef", + "oracle": "Get-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef" }, - "replacementNoun": "EntitlementManagementAvailableAccessPackageResourceRoleScopeCount" + "replacementNoun": "IdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/$count", + "uri": "/identity/b2xuserflows", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageCount", - "oracle": "Get-MgEntitlementManagementAvailableAccessPackageCount" + "ourCommand": "Get-MgIdentityB2xUserFlow", + "oracle": "Get-MgIdentityB2XUserFlow" }, - "replacementNoun": "EntitlementManagementAvailableAccessPackageCount" + "replacementNoun": "IdentityB2XUserFlow" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs", + "uri": "/identity/b2xuserflows/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalog", - "oracle": "Get-MgEntitlementManagementCatalog" + "ourCommand": "Get-MgIdentityB2xUserFlow", + "oracle": "Get-MgIdentityB2XUserFlow" }, - "replacementNoun": "EntitlementManagementCatalog" + "replacementNoun": "IdentityB2XUserFlow" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalog", - "oracle": "Get-MgEntitlementManagementCatalog" + "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfiguration", + "oracle": "Get-MgIdentityB2XUserFlowApiConnectorConfiguration" }, - "replacementNoun": "EntitlementManagementCatalog" + "replacementNoun": "IdentityB2XUserFlowApiConnectorConfiguration" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/accesspackages/$count", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackageCount", - "oracle": "Get-MgEntitlementManagementCatalogAccessPackageCount" + "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection", + "oracle": "Get-MgIdentityB2XUserFlowPostAttributeCollection" }, - "replacementNoun": "EntitlementManagementCatalogAccessPackageCount" + "replacementNoun": "IdentityB2XUserFlowPostAttributeCollection" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection/$ref", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension", - "oracle": "Get-MgEntitlementManagementCatalogCustomWorkflowExtension" + "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef", + "oracle": "Get-MgIdentityB2XUserFlowPostAttributeCollectionByRef" }, - "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtension" + "replacementNoun": "IdentityB2XUserFlowPostAttributeCollectionByRef" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions/{}", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension", - "oracle": "Get-MgEntitlementManagementCatalogCustomWorkflowExtension" + "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup", + "oracle": "Get-MgIdentityB2XUserFlowPostFederationSignup" }, - "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtension" + "replacementNoun": "IdentityB2XUserFlowPostFederationSignup" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions/$count", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup/$ref", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtensionCount", - "oracle": "Get-MgEntitlementManagementCatalogCustomWorkflowExtensionCount" + "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef", + "oracle": "Get-MgIdentityB2XUserFlowPostFederationSignupByRef" }, - "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtensionCount" + "replacementNoun": "IdentityB2XUserFlowPostFederationSignupByRef" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles", + "uri": "/identity/b2xuserflows/{}/identityproviders", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole", - "oracle": "Get-MgEntitlementManagementCatalogResourceRole" + "ourCommand": "Get-MgIdentityB2xUserFlowIdentityProvider", + "oracle": "Get-MgIdentityB2XUserFlowIdentityProvider" }, - "replacementNoun": "EntitlementManagementCatalogResourceRole" + "replacementNoun": "IdentityB2XUserFlowIdentityProvider" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource", + "uri": "/identity/b2xuserflows/{}/identityproviders/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource", - "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResource" + "ourCommand": "Get-MgIdentityB2xUserFlowIdentityProvider", + "oracle": "Get-MgIdentityB2XUserFlowIdentityProvider" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResource" + "replacementNoun": "IdentityB2XUserFlowIdentityProvider" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/environment", + "uri": "/identity/b2xuserflows/{}/identityproviders/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment", - "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment" + "ourCommand": "Get-MgIdentityB2xUserFlowIdentityProviderCount", + "oracle": "Get-MgIdentityB2XUserFlowIdentityProviderCount" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceEnvironment" + "replacementNoun": "IdentityB2XUserFlowIdentityProviderCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes", + "uri": "/identity/b2xuserflows/{}/languages", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityB2xUserFlowLanguage", + "oracle": "Get-MgIdentityB2XUserFlowLanguage" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + "replacementNoun": "IdentityB2XUserFlowLanguage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource", + "uri": "/identity/b2xuserflows/{}/languages/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource", - "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" + "ourCommand": "Get-MgIdentityB2xUserFlowLanguage", + "oracle": "Get-MgIdentityB2XUserFlowLanguage" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResource" + "replacementNoun": "IdentityB2XUserFlowLanguage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/environment", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment", - "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageDefaultPage", + "oracle": "Get-MgIdentityB2XUserFlowLanguageDefaultPage" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageDefaultPage", + "oracle": "Get-MgIdentityB2XUserFlowLanguageDefaultPage" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles/{}", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/{}/$value", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageDefaultPageContent", + "oracle": "Get-MgIdentityB2XUserFlowLanguageDefaultPageContent" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPageContent" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles/$count", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount", - "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount" + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageDefaultPageCount", + "oracle": "Get-MgIdentityB2XUserFlowLanguageDefaultPageCount" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount" + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPageCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/$count", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount", - "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeCount" + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageOverridePage", + "oracle": "Get-MgIdentityB2XUserFlowLanguageOverridePage" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeCount" + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/$count", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount", - "oracle": "Get-MgEntitlementManagementCatalogResourceRoleCount" + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageOverridePage", + "oracle": "Get-MgIdentityB2XUserFlowLanguageOverridePage" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleCount" + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/{}/$value", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResource", - "oracle": "Get-MgEntitlementManagementCatalogResource" + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageOverridePageContent", + "oracle": "Get-MgIdentityB2XUserFlowLanguageOverridePageContent" }, - "replacementNoun": "EntitlementManagementCatalogResource" + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePageContent" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResource", - "oracle": "Get-MgEntitlementManagementCatalogResource" + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageOverridePageCount", + "oracle": "Get-MgIdentityB2XUserFlowLanguageOverridePageCount" }, - "replacementNoun": "EntitlementManagementCatalogResource" + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePageCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/environment", + "uri": "/identity/b2xuserflows/{}/languages/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceEnvironment", - "oracle": "Get-MgEntitlementManagementCatalogResourceEnvironment" + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageCount", + "oracle": "Get-MgIdentityB2XUserFlowLanguageCount" }, - "replacementNoun": "EntitlementManagementCatalogResourceEnvironment" + "replacementNoun": "IdentityB2XUserFlowLanguageCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource", + "uri": "/identity/b2xuserflows/{}/userattributeassignments", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource", - "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResource" + "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignment", + "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignment" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResource" + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/environment", + "uri": "/identity/b2xuserflows/{}/userattributeassignments/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment", - "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment" + "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignment", + "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignment" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceEnvironment" + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles", + "uri": "/identity/b2xuserflows/{}/userattributeassignments/{}/userattribute", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignmentUserAttribute", + "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentUserAttribute" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignmentUserAttribute" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource", + "uri": "/identity/b2xuserflows/{}/userattributeassignments/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource", - "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" + "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignmentCount", + "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentCount" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResource" + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignmentCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment", + "uri": "/identity/b2xuserflows/{}/userattributeassignments/getorder", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment", - "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" + "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignmentGetOrder", + "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignmentOrder" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/$count", + "uri": "/identity/b2xuserflows/{}/userflowidentityproviders/$ref", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount", - "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleCount" + "ourCommand": "Get-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef", + "oracle": "Get-MgIdentityB2XUserFlowIdentityProviderByRef" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleCount" + "replacementNoun": "IdentityB2XUserFlowIdentityProviderByRef" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/$count", + "uri": "/identity/b2xuserflows/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount", - "oracle": "Get-MgEntitlementManagementCatalogResourceScopeCount" + "ourCommand": "Get-MgIdentityB2xUserFlowCount", + "oracle": "Get-MgIdentityB2XUserFlowCount" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeCount" + "replacementNoun": "IdentityB2XUserFlowCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/$count", + "uri": "/identity/conditionalaccess/authenticationstrength/policies/{}/usage", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceCount", - "oracle": "Get-MgEntitlementManagementCatalogResourceCount" + "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyUsage", + "oracle": "Invoke-MgUsageIdentityConditionalAccessAuthenticationStrengthPolicy" }, - "replacementNoun": "EntitlementManagementCatalogResourceCount" + "replacementNoun": "UsageIdentityConditionalAccessAuthenticationStrengthPolicy", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes", + "uri": "/identity/identityproviders/availableprovidertypes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityProviderAvailableProviderTypes", + "oracle": "Invoke-MgAvailableIdentityProviderType" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + "replacementNoun": "AvailableIdentityProviderType", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes/{}", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/decisions/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceDecisionByCurrentUser" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + "replacementNoun": "FilterIdentityGovernanceAccessReviewDefinitionInstanceDecisionByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes/$count", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/stages/{}/decisions/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount", - "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionByCurrentUser" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount" + "replacementNoun": "FilterIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/$count", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/stages/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogCount", - "oracle": "Get-MgEntitlementManagementCatalogCount" + "ourCommand": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceStageByCurrentUser" }, - "replacementNoun": "EntitlementManagementCatalogCount" + "replacementNoun": "FilterIdentityGovernanceAccessReviewDefinitionInstanceStageByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization", - "oracle": "Get-MgEntitlementManagementConnectedOrganization" + "ourCommand": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceByCurrentUser" }, - "replacementNoun": "EntitlementManagementConnectedOrganization" + "replacementNoun": "FilterIdentityGovernanceAccessReviewDefinitionInstanceByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}", + "uri": "/identitygovernance/accessreviews/definitions/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization", - "oracle": "Get-MgEntitlementManagementConnectedOrganization" + "ourCommand": "Get-MgIdentityGovernanceAccessReviewDefinitionFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionByCurrentUser" }, - "replacementNoun": "EntitlementManagementConnectedOrganization" + "replacementNoun": "FilterIdentityGovernanceAccessReviewDefinitionByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors", + "uri": "/identitygovernance/appconsent/appconsentrequests", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsor", - "oracle": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor" + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequest", + "oracle": "Get-MgIdentityGovernanceAppConsentRequest" }, - "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsor" + "replacementNoun": "IdentityGovernanceAppConsentRequest" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$count", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorCount", - "oracle": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsorCount" + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequest", + "oracle": "Get-MgIdentityGovernanceAppConsentRequest" }, - "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsorCount" + "replacementNoun": "IdentityGovernanceAppConsentRequest" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$ref", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef", - "oracle": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef" + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest" }, - "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsorByRef" + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequest" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsor", - "oracle": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor" + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest" }, - "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsor" + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequest" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$count", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorCount", - "oracle": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsorCount" + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" }, - "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsorCount" + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApproval" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$ref", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef", - "oracle": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef" + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" }, - "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsorByRef" + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/$count", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationCount", - "oracle": "Get-MgEntitlementManagementConnectedOrganizationCount" + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" }, - "replacementNoun": "EntitlementManagementConnectedOrganizationCount" + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/controlconfigurations", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementControlConfiguration", - "oracle": "Get-MgEntitlementManagementControlConfiguration" + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStageCount", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStageCount" }, - "replacementNoun": "EntitlementManagementControlConfiguration" + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStageCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/controlconfigurations/{}", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementControlConfiguration", - "oracle": "Get-MgEntitlementManagementControlConfiguration" + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestCount", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestCount" }, - "replacementNoun": "EntitlementManagementControlConfiguration" + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/controlconfigurations/$count", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementControlConfigurationCount", - "oracle": "Get-MgEntitlementManagementControlConfigurationCount" + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernanceAppConsentRequestUserConsentRequestByCurrentUser" }, - "replacementNoun": "EntitlementManagementControlConfigurationCount" + "replacementNoun": "FilterIdentityGovernanceAppConsentRequestUserConsentRequestByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments", + "uri": "/identitygovernance/appconsent/appconsentrequests/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestCount", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestCount" }, - "replacementNoun": "EntitlementManagementResourceEnvironment" + "replacementNoun": "IdentityGovernanceAppConsentRequestCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}", + "uri": "/identitygovernance/appconsent/appconsentrequests/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernanceAppConsentRequestByCurrentUser" }, - "replacementNoun": "EntitlementManagementResourceEnvironment" + "replacementNoun": "FilterIdentityGovernanceAppConsentRequestByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage", + "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResource" + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage", + "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResource" + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStageCount", + "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStageCount" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRole" + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStageCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalCount", + "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalCount" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRole" + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterEntitlementManagementAccessPackageAssignmentApprovalByCurrentUser" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResource" + "replacementNoun": "FilterEntitlementManagementAccessPackageAssignmentApprovalByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/accesspackages", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackage", + "oracle": "Get-MgEntitlementManagementAccessPackage" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment" + "replacementNoun": "EntitlementManagementAccessPackage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackage", + "oracle": "Get-MgEntitlementManagementAccessPackage" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementAccessPackage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/accesspackagesincompatiblewith", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith", + "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleWith" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleWith" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/accesspackagesincompatiblewith/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith", + "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleWith" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleWith" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy", + "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementAccessPackageAssignmentPolicy" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/$count", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy", + "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount" + "replacementNoun": "EntitlementManagementAccessPackageAssignmentPolicy" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/$count", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/catalog", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleCount", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageCatalog", + "oracle": "Get-MgEntitlementManagementAccessPackageCatalog" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleCount" + "replacementNoun": "EntitlementManagementAccessPackageCatalog" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackage", + "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScope" + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleAccessPackage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/$ref", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", + "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScope" + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleAccessPackageByRef" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroup", + "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleGroup" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResource" + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleGroup" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/$ref", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef", + "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleGroupByRef" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageCount", + "oracle": "Get-MgEntitlementManagementAccessPackageCount" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementAccessPackageCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterEntitlementManagementAccessPackageByCurrentUser" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRole" + "replacementNoun": "FilterEntitlementManagementAccessPackageByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion", + "oracle": "Get-MgEntitlementManagementAccessPackageSuggestion" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" + "replacementNoun": "EntitlementManagementAccessPackageSuggestion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion", + "oracle": "Get-MgEntitlementManagementAccessPackageSuggestion" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment" + "replacementNoun": "EntitlementManagementAccessPackageSuggestion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/$count", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/{}/accesspackage", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionAccessPackage", + "oracle": "Get-MgEntitlementManagementAccessPackageSuggestionAccessPackage" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount" + "replacementNoun": "EntitlementManagementAccessPackageSuggestionAccessPackage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/$count", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeCount", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionCount", + "oracle": "Get-MgEntitlementManagementAccessPackageSuggestionCount" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeCount" + "replacementNoun": "EntitlementManagementAccessPackageSuggestionCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/$count", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceCount", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterEntitlementManagementAccessPackageSuggestionByCurrentUser" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceCount" + "replacementNoun": "FilterEntitlementManagementAccessPackageSuggestionByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/$count", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentCount", - "oracle": "Get-MgEntitlementManagementResourceEnvironmentCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy", + "oracle": "Get-MgEntitlementManagementAssignmentPolicy" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentCount" + "replacementNoun": "EntitlementManagementAssignmentPolicy" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequest", - "oracle": "Get-MgEntitlementManagementResourceRequest" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy", + "oracle": "Get-MgEntitlementManagementAssignmentPolicy" }, - "replacementNoun": "EntitlementManagementResourceRequest" + "replacementNoun": "EntitlementManagementAssignmentPolicy" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/accesspackage", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequest", - "oracle": "Get-MgEntitlementManagementResourceRequest" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyAccessPackage", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyAccessPackage" }, - "replacementNoun": "EntitlementManagementResourceRequest" + "replacementNoun": "EntitlementManagementAssignmentPolicyAccessPackage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/catalog", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalog" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCatalog", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyCatalog" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalog" + "replacementNoun": "EntitlementManagementAssignmentPolicyCatalog" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/accesspackages", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackage" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogAccessPackage" + "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSetting" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/accesspackages/{}", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackage" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogAccessPackage" + "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSetting" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/accesspackages/$count", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings/{}/customextension", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackageCount", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackageCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogAccessPackageCount" + "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions/{}", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyQuestion" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + "replacementNoun": "EntitlementManagementAssignmentPolicyQuestion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions/$count", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyQuestion" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount" + "replacementNoun": "EntitlementManagementAssignmentPolicyQuestion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestionCount", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyQuestionCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + "replacementNoun": "EntitlementManagementAssignmentPolicyQuestionCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCount", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResource" + "replacementNoun": "EntitlementManagementAssignmentPolicyCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest", + "oracle": "Get-MgEntitlementManagementAssignmentRequest" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" + "replacementNoun": "EntitlementManagementAssignmentRequest" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest", + "oracle": "Get-MgEntitlementManagementAssignmentRequest" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementAssignmentRequest" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestCount", + "oracle": "Get-MgEntitlementManagementAssignmentRequestCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + "replacementNoun": "EntitlementManagementAssignmentRequestCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterEntitlementManagementAssignmentRequestByCurrentUser" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" + "replacementNoun": "FilterEntitlementManagementAssignmentRequestByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/assignments", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignment", + "oracle": "Get-MgEntitlementManagementAssignment" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/assignments/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignment", + "oracle": "Get-MgEntitlementManagementAssignment" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementAssignment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles/$count", + "uri": "/identitygovernance/entitlementmanagement/assignments/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentCount", + "oracle": "Get-MgEntitlementManagementAssignmentCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount" + "replacementNoun": "EntitlementManagementAssignmentCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/$count", + "uri": "/identitygovernance/entitlementmanagement/assignments/additionalaccess", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccess", + "oracle": "Get-MgEntitlementManagementAssignmentAdditional" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" + "replacementNoun": "EntitlementManagementAssignmentAdditional" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/$count", + "uri": "/identitygovernance/entitlementmanagement/assignments/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterEntitlementManagementAssignmentByCurrentUser" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleCount" + "replacementNoun": "FilterEntitlementManagementAssignmentByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage", + "oracle": "Get-MgEntitlementManagementAvailableAccessPackage" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResource" + "replacementNoun": "EntitlementManagementAvailableAccessPackage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage", + "oracle": "Get-MgEntitlementManagementAvailableAccessPackage" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResource" + "replacementNoun": "EntitlementManagementAvailableAccessPackage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/environment", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}/resourcerolescopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope", + "oracle": "Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScope" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceEnvironment" + "replacementNoun": "EntitlementManagementAvailableAccessPackageResourceRoleScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}/resourcerolescopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope", + "oracle": "Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScope" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResource" + "replacementNoun": "EntitlementManagementAvailableAccessPackageResourceRoleScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}/resourcerolescopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScopeCount", + "oracle": "Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScopeCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementAvailableAccessPackageResourceRoleScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageCount", + "oracle": "Get-MgEntitlementManagementAvailableAccessPackageCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementAvailableAccessPackageCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/catalogs", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalog", + "oracle": "Get-MgEntitlementManagementCatalog" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + "replacementNoun": "EntitlementManagementCatalog" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalog", + "oracle": "Get-MgEntitlementManagementCatalog" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" + "replacementNoun": "EntitlementManagementCatalog" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/$count", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/accesspackages/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackageCount", + "oracle": "Get-MgEntitlementManagementCatalogAccessPackageCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" + "replacementNoun": "EntitlementManagementCatalogAccessPackageCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/$count", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension", + "oracle": "Get-MgEntitlementManagementCatalogCustomWorkflowExtension" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeCount" + "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtension" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/$count", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceCount", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension", + "oracle": "Get-MgEntitlementManagementCatalogCustomWorkflowExtension" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceCount" + "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtension" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtensionCount", + "oracle": "Get-MgEntitlementManagementCatalogCustomWorkflowExtensionCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtensionCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes/{}", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole", + "oracle": "Get-MgEntitlementManagementCatalogResourceRole" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementCatalogResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes/$count", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount", - "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResource" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResource", - "oracle": "Get-MgEntitlementManagementResourceRequestResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment" }, - "replacementNoun": "EntitlementManagementResourceRequestResource" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceEnvironment" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRole" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRole" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResource" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceEnvironment" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeCount" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleCount" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeResource" + "replacementNoun": "EntitlementManagementCatalogResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResource", + "oracle": "Get-MgEntitlementManagementCatalogResource" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementCatalogResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/$count", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeCount", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResource", + "oracle": "Get-MgEntitlementManagementCatalogResource" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeCount" + "replacementNoun": "EntitlementManagementCatalogResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/$count", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleCount", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceEnvironment", + "oracle": "Get-MgEntitlementManagementCatalogResourceEnvironment" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRoleCount" + "replacementNoun": "EntitlementManagementCatalogResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResource" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScope" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScope" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResource" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleCount" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeCount" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleResource" + "replacementNoun": "EntitlementManagementCatalogResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceCount" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment" + "replacementNoun": "EntitlementManagementCatalogResourceCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/$count", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleCount", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleCount" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/$count", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeCount", - "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScopeCount" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/$count", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCount", - "oracle": "Get-MgEntitlementManagementResourceRequestCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCount" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes", + "uri": "/identitygovernance/entitlementmanagement/catalogs/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope", - "oracle": "Get-MgEntitlementManagementResourceRoleScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogCount", + "oracle": "Get-MgEntitlementManagementCatalogCount" }, - "replacementNoun": "EntitlementManagementResourceRoleScope" + "replacementNoun": "EntitlementManagementCatalogCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope", - "oracle": "Get-MgEntitlementManagementResourceRoleScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization", + "oracle": "Get-MgEntitlementManagementConnectedOrganization" }, - "replacementNoun": "EntitlementManagementResourceRoleScope" + "replacementNoun": "EntitlementManagementConnectedOrganization" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization", + "oracle": "Get-MgEntitlementManagementConnectedOrganization" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRole" + "replacementNoun": "EntitlementManagementConnectedOrganization" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsor", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResource" + "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsor" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorCount", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsorCount" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceEnvironment" + "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsorCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$ref", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRole" + "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsorByRef" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsor", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRole" + "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsor" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles/$count", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRoleCount", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRoleCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorCount", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsorCount" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRoleCount" + "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsorCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$ref", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScope" + "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsorByRef" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationCount", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationCount" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScope" + "replacementNoun": "EntitlementManagementConnectedOrganizationCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/controlconfigurations", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementControlConfiguration", + "oracle": "Get-MgEntitlementManagementControlConfiguration" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResource" + "replacementNoun": "EntitlementManagementControlConfiguration" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/controlconfigurations/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementControlConfiguration", + "oracle": "Get-MgEntitlementManagementControlConfiguration" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementControlConfiguration" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/controlconfigurations/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementControlConfigurationCount", + "oracle": "Get-MgEntitlementManagementControlConfigurationCount" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementControlConfigurationCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceEnvironment" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/$count", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceEnvironment" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount" + "replacementNoun": "EntitlementManagementResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/$count", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeCount", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResource" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeCount" + "replacementNoun": "EntitlementManagementResourceEnvironmentResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResource" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResource" + "replacementNoun": "EntitlementManagementResourceEnvironmentResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRole" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRole" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRole" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResource" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRole" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResource" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/{}", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/$count", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/$count", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleCount", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleCount" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleCount" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScope" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes/{}", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScope" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScope" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes/$count", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScopeCount", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScope" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScopeCount" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/$count", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeCount", - "oracle": "Get-MgEntitlementManagementResourceRoleScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResource" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeCount" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResource", - "oracle": "Get-MgEntitlementManagementResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment" }, - "replacementNoun": "EntitlementManagementResource" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResource", - "oracle": "Get-MgEntitlementManagementResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" }, - "replacementNoun": "EntitlementManagementResource" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" }, - "replacementNoun": "EntitlementManagementResourceRole" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRole", - "oracle": "Get-MgEntitlementManagementResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" }, - "replacementNoun": "EntitlementManagementResourceRole" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResource", - "oracle": "Get-MgEntitlementManagementResourceRoleResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment" }, - "replacementNoun": "EntitlementManagementResourceRoleResource" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRoleResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount" }, - "replacementNoun": "EntitlementManagementResourceRoleResourceEnvironment" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeCount" }, - "replacementNoun": "EntitlementManagementResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope", - "oracle": "Get-MgEntitlementManagementResourceRoleResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceCount", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceCount" }, - "replacementNoun": "EntitlementManagementResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource", - "oracle": "Get-MgEntitlementManagementResourceRoleResourceScopeResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentCount", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentCount" }, - "replacementNoun": "EntitlementManagementResourceRoleResourceScopeResource" + "replacementNoun": "EntitlementManagementResourceEnvironmentCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceRoleResourceScopeResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequest", + "oracle": "Get-MgEntitlementManagementResourceRequest" }, - "replacementNoun": "EntitlementManagementResourceRoleResourceScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementResourceRequest" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeCount", - "oracle": "Get-MgEntitlementManagementResourceRoleResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequest", + "oracle": "Get-MgEntitlementManagementResourceRequest" }, - "replacementNoun": "EntitlementManagementResourceRoleResourceScopeCount" + "replacementNoun": "EntitlementManagementResourceRequest" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleCount", - "oracle": "Get-MgEntitlementManagementResourceRoleCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalog" }, - "replacementNoun": "EntitlementManagementResourceRoleCount" + "replacementNoun": "EntitlementManagementResourceRequestCatalog" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/accesspackages", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScope", - "oracle": "Get-MgEntitlementManagementResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackage" }, - "replacementNoun": "EntitlementManagementResourceScope" + "replacementNoun": "EntitlementManagementResourceRequestCatalogAccessPackage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/accesspackages/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScope", - "oracle": "Get-MgEntitlementManagementResourceScope" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackage" }, - "replacementNoun": "EntitlementManagementResourceScope" + "replacementNoun": "EntitlementManagementResourceRequestCatalogAccessPackage" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/accesspackages/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResource", - "oracle": "Get-MgEntitlementManagementResourceScopeResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackageCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackageCount" }, - "replacementNoun": "EntitlementManagementResourceScopeResource" + "replacementNoun": "EntitlementManagementResourceRequestCatalogAccessPackageCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceScopeResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" }, - "replacementNoun": "EntitlementManagementResourceScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtension" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" }, - "replacementNoun": "EntitlementManagementResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtension" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole", - "oracle": "Get-MgEntitlementManagementResourceScopeResourceRole" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount" }, - "replacementNoun": "EntitlementManagementResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource", - "oracle": "Get-MgEntitlementManagementResourceScopeResourceRoleResource" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" }, - "replacementNoun": "EntitlementManagementResourceScopeResourceRoleResource" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}/resource/environment", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceEnvironment", - "oracle": "Get-MgEntitlementManagementResourceScopeResourceRoleResourceEnvironment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" }, - "replacementNoun": "EntitlementManagementResourceScopeResourceRoleResourceEnvironment" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleCount", - "oracle": "Get-MgEntitlementManagementResourceScopeResourceRoleCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" }, - "replacementNoun": "EntitlementManagementResourceScopeResourceRoleCount" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeCount", - "oracle": "Get-MgEntitlementManagementResourceScopeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" }, - "replacementNoun": "EntitlementManagementResourceScopeCount" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resources/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceCount", - "oracle": "Get-MgEntitlementManagementResourceCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" }, - "replacementNoun": "EntitlementManagementResourceCount" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/settings", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSetting", - "oracle": "Get-MgEntitlementManagementSetting" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" }, - "replacementNoun": "EntitlementManagementSetting" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/subjects", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSubject", - "oracle": "Get-MgEntitlementManagementSubject" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" }, - "replacementNoun": "EntitlementManagementSubject" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/subjects/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSubject", - "oracle": "Get-MgEntitlementManagementSubject" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" }, - "replacementNoun": "EntitlementManagementSubject" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/subjects/{}/connectedorganization", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSubjectConnectedOrganization", - "oracle": "Get-MgEntitlementManagementSubjectConnectedOrganization" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount" }, - "replacementNoun": "EntitlementManagementSubjectConnectedOrganization" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/subjects/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSubjectCount", - "oracle": "Get-MgEntitlementManagementSubjectCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" }, - "replacementNoun": "EntitlementManagementSubjectCount" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreementacceptances", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementAcceptance", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleCount" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptance" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreementacceptances/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementAcceptance", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResource" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptance" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreementacceptances/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementAcceptanceCount", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptanceCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResource" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptanceCount" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreement", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreement" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceEnvironment" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreement" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreement", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreement" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreement" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalization" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalization" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersionCount", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationCount", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeCount" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationCount" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/{}/files", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFile", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFile" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceCount" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFile" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileVersion", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersion" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileVersion", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersion" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileVersionCount", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersionCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersionCount" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/{}/files/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileCount", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResource", + "oracle": "Get-MgEntitlementManagementResourceRequestResource" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileCount" + "replacementNoun": "EntitlementManagementResourceRequestResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identitygovernance/termsofuse/agreements/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementCount", - "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceEnvironment" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementCount" + "replacementNoun": "EntitlementManagementResourceRequestResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskdetections", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskDetection", - "oracle": "Get-MgRiskDetection" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRole" }, - "replacementNoun": "RiskDetection" + "replacementNoun": "EntitlementManagementResourceRequestResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskdetections/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskDetection", - "oracle": "Get-MgRiskDetection" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRole" }, - "replacementNoun": "RiskDetection" + "replacementNoun": "EntitlementManagementResourceRequestResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskdetections/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskDetectionCount", - "oracle": "Get-MgRiskDetectionCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResource" }, - "replacementNoun": "RiskDetectionCount" + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskyserviceprincipals", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipal", - "oracle": "Get-MgRiskyServicePrincipal" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceEnvironment" }, - "replacementNoun": "RiskyServicePrincipal" + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskyserviceprincipals/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipal", - "oracle": "Get-MgRiskyServicePrincipal" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope" }, - "replacementNoun": "RiskyServicePrincipal" + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskyserviceprincipals/{}/history", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipalHistory", - "oracle": "Get-MgRiskyServicePrincipalHistory" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope" }, - "replacementNoun": "RiskyServicePrincipalHistory" + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskyserviceprincipals/{}/history/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipalHistory", - "oracle": "Get-MgRiskyServicePrincipalHistory" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" }, - "replacementNoun": "RiskyServicePrincipalHistory" + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskyserviceprincipals/{}/history/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipalHistoryCount", - "oracle": "Get-MgRiskyServicePrincipalHistoryCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment" }, - "replacementNoun": "RiskyServicePrincipalHistoryCount" + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskyserviceprincipals/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipalCount", - "oracle": "Get-MgRiskyServicePrincipalCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeCount" }, - "replacementNoun": "RiskyServicePrincipalCount" + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskyusers", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskyUser", - "oracle": "Get-MgRiskyUser" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleCount" }, - "replacementNoun": "RiskyUser" + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskyusers/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskyUser", - "oracle": "Get-MgRiskyUser" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScope" }, - "replacementNoun": "RiskyUser" + "replacementNoun": "EntitlementManagementResourceRequestResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskyusers/{}/history", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskyUserHistory", - "oracle": "Get-MgRiskyUserHistory" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScope" }, - "replacementNoun": "RiskyUserHistory" + "replacementNoun": "EntitlementManagementResourceRequestResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskyusers/{}/history/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskyUserHistory", - "oracle": "Get-MgRiskyUserHistory" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResource" }, - "replacementNoun": "RiskyUserHistory" + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskyusers/{}/history/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskyUserHistoryCount", - "oracle": "Get-MgRiskyUserHistoryCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceEnvironment" }, - "replacementNoun": "RiskyUserHistoryCount" + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/riskyusers/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionRiskyUserCount", - "oracle": "Get-MgRiskyUserCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole" }, - "replacementNoun": "RiskyUserCount" + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/serviceprincipalriskdetections", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionServicePrincipalRiskDetection", - "oracle": "Get-MgServicePrincipalRiskDetection" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole" }, - "replacementNoun": "ServicePrincipalRiskDetection" + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/serviceprincipalriskdetections/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionServicePrincipalRiskDetection", - "oracle": "Get-MgServicePrincipalRiskDetection" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" }, - "replacementNoun": "ServicePrincipalRiskDetection" + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/identityprotection/serviceprincipalriskdetections/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgIdentityProtectionServicePrincipalRiskDetectionCount", - "oracle": "Get-MgServicePrincipalRiskDetectionCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment" }, - "replacementNoun": "ServicePrincipalRiskDetectionCount" + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/places/{}/descendants", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgPlaceDescendants", - "oracle": "Invoke-MgDescendantPlace" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleCount" }, - "replacementNoun": "DescendantPlace", - "replacementVerb": "Invoke" + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/policies/authenticationstrengthpolicies/{}/usage", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgPolicyAuthenticationStrengthPolicyUsage", - "oracle": "Invoke-MgUsagePolicyAuthenticationStrengthPolicy" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeCount" }, - "replacementNoun": "UsagePolicyAuthenticationStrengthPolicy", - "replacementVerb": "Invoke" + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinter", - "oracle": "Get-MgPrintPrinter" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCount" }, - "replacementNoun": "PrintPrinter" + "replacementNoun": "EntitlementManagementResourceRequestCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinter", - "oracle": "Get-MgPrintPrinter" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScope" }, - "replacementNoun": "PrintPrinter" + "replacementNoun": "EntitlementManagementResourceRoleScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/connectors", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterConnector", - "oracle": "Get-MgPrintPrinterConnector" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScope" }, - "replacementNoun": "PrintPrinterConnector" + "replacementNoun": "EntitlementManagementResourceRoleScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/connectors/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterConnector", - "oracle": "Get-MgPrintPrinterConnector" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRole" }, - "replacementNoun": "PrintPrinterConnector" + "replacementNoun": "EntitlementManagementResourceRoleScopeRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/connectors/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterConnectorCount", - "oracle": "Get-MgPrintPrinterConnectorCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResource" }, - "replacementNoun": "PrintPrinterConnectorCount" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/jobs", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterJob", - "oracle": "Get-MgPrintPrinterJob" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceEnvironment" }, - "replacementNoun": "PrintPrinterJob" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/jobs/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterJob", - "oracle": "Get-MgPrintPrinterJob" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole" }, - "replacementNoun": "PrintPrinterJob" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/jobs/{}/documents", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterJobDocument", - "oracle": "Get-MgPrintPrinterJobDocument" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole" }, - "replacementNoun": "PrintPrinterJobDocument" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/jobs/{}/documents/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterJobDocument", - "oracle": "Get-MgPrintPrinterJobDocument" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRoleCount" }, - "replacementNoun": "PrintPrinterJobDocument" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/jobs/{}/documents/{}/$value", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterJobDocumentContent", - "oracle": "Get-MgPrintPrinterJobDocumentContent" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope" }, - "replacementNoun": "PrintPrinterJobDocumentContent" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/jobs/{}/documents/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterJobDocumentCount", - "oracle": "Get-MgPrintPrinterJobDocumentCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope" }, - "replacementNoun": "PrintPrinterJobDocumentCount" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/jobs/{}/tasks", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterJobTask", - "oracle": "Get-MgPrintPrinterJobTask" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" }, - "replacementNoun": "PrintPrinterJobTask" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/jobs/{}/tasks/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterJobTask", - "oracle": "Get-MgPrintPrinterJobTask" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment" }, - "replacementNoun": "PrintPrinterJobTask" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/jobs/{}/tasks/{}/definition", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterJobTaskDefinition", - "oracle": "Get-MgPrintPrinterJobTaskDefinition" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" }, - "replacementNoun": "PrintPrinterJobTaskDefinition" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/jobs/{}/tasks/{}/trigger", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterJobTaskTrigger", - "oracle": "Get-MgPrintPrinterJobTaskTrigger" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" }, - "replacementNoun": "PrintPrinterJobTaskTrigger" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/jobs/{}/tasks/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterJobTaskCount", - "oracle": "Get-MgPrintPrinterJobTaskCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount" }, - "replacementNoun": "PrintPrinterJobTaskCount" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/jobs/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterJobCount", - "oracle": "Get-MgPrintPrinterJobCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeCount" }, - "replacementNoun": "PrintPrinterJobCount" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/shares", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterShare", - "oracle": "Get-MgPrintPrinterShare" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResource" }, - "replacementNoun": "PrintPrinterShare" + "replacementNoun": "EntitlementManagementResourceRoleScopeResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/shares/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterShare", - "oracle": "Get-MgPrintPrinterShare" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceEnvironment" }, - "replacementNoun": "PrintPrinterShare" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/shares/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterShareCount", - "oracle": "Get-MgPrintPrinterShareCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRole" }, - "replacementNoun": "PrintPrinterShareCount" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/tasktriggers", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterTaskTrigger", - "oracle": "Get-MgPrintPrinterTaskTrigger" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRole" }, - "replacementNoun": "PrintPrinterTaskTrigger" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/tasktriggers/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterTaskTrigger", - "oracle": "Get-MgPrintPrinterTaskTrigger" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResource" }, - "replacementNoun": "PrintPrinterTaskTrigger" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/tasktriggers/{}/definition", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterTaskTriggerDefinition", - "oracle": "Get-MgPrintPrinterTaskTriggerDefinition" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment" }, - "replacementNoun": "PrintPrinterTaskTriggerDefinition" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/{}/tasktriggers/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterTaskTriggerCount", - "oracle": "Get-MgPrintPrinterTaskTriggerCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" }, - "replacementNoun": "PrintPrinterTaskTriggerCount" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/print/printers/$count", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrinterCount", - "oracle": "Get-MgPrintPrinterCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" }, - "replacementNoun": "PrintPrinterCount" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/privacy/subjectrightsrequests/{}/getfinalattachment", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrivacySubjectRightsRequestGetFinalAttachment", - "oracle": "Get-MgPrivacySubjectRightsRequestFinalAttachment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount" }, - "replacementNoun": "PrivacySubjectRightsRequestFinalAttachment" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/privacy/subjectrightsrequests/{}/getfinalreport", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgPrivacySubjectRightsRequestGetFinalReport", - "oracle": "Get-MgPrivacySubjectRightsRequestFinalReport" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleCount" }, - "replacementNoun": "PrivacySubjectRightsRequestFinalReport" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/reports/authenticationmethods/usersregisteredbyfeature", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgReportAuthenticationMethodUsersRegisteredByFeature", - "oracle": "Invoke-MgGraphReportAuthenticationMethod" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceScope" }, - "replacementNoun": "GraphReportAuthenticationMethod", - "replacementVerb": "Invoke" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/reports/getoffice365activationcounts", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgReportGetOffice365ActivationCounts", - "oracle": "Get-MgReportOffice365ActivationCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceScope" }, - "replacementNoun": "ReportOffice365ActivationCount" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/reports/getoffice365activationsusercounts", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgReportGetOffice365ActivationsUserCounts", - "oracle": "Get-MgReportOffice365ActivationUserCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceScopeCount" }, - "replacementNoun": "ReportOffice365ActivationUserCount" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/reports/getoffice365activationsuserdetail", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgReportGetOffice365ActivationsUserDetail", - "oracle": "Get-MgReportOffice365ActivationUserDetail" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeCount" }, - "replacementNoun": "ReportOffice365ActivationUserDetail" + "replacementNoun": "EntitlementManagementResourceRoleScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/reports/manageddeviceenrollmentfailuredetails", + "uri": "/identitygovernance/entitlementmanagement/resources", "action": "rename", "evidence": { - "ourCommand": "Get-MgReportManagedDeviceEnrollmentFailureDetails", - "oracle": "Get-MgReportManagedDeviceEnrollmentFailureDetail" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResource", + "oracle": "Get-MgEntitlementManagementResource" }, - "replacementNoun": "ReportManagedDeviceEnrollmentFailureDetail" + "replacementNoun": "EntitlementManagementResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/reports/manageddeviceenrollmenttopfailures", + "uri": "/identitygovernance/entitlementmanagement/resources/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgReportManagedDeviceEnrollmentTopFailures", - "oracle": "Get-MgReportManagedDeviceEnrollmentTopFailure" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResource", + "oracle": "Get-MgEntitlementManagementResource" }, - "replacementNoun": "ReportManagedDeviceEnrollmentTopFailure" + "replacementNoun": "EntitlementManagementResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/reports/security/getattacksimulationrepeatoffenders", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgReportSecurityGetAttackSimulationRepeatOffenders", - "oracle": "Get-MgReportSecurityAttackSimulationRepeatOffender" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRole" }, - "replacementNoun": "ReportSecurityAttackSimulationRepeatOffender" + "replacementNoun": "EntitlementManagementResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/reports/security/getattacksimulationsimulationusercoverage", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgReportSecurityGetAttackSimulationSimulationUserCoverage", - "oracle": "Get-MgReportSecurityAttackSimulationUserCoverage" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRole" }, - "replacementNoun": "ReportSecurityAttackSimulationUserCoverage" + "replacementNoun": "EntitlementManagementResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/reports/security/getattacksimulationtrainingusercoverage", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgReportSecurityGetAttackSimulationTrainingUserCoverage", - "oracle": "Get-MgReportSecurityAttackSimulationTrainingUserCoverage" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRoleResource" }, - "replacementNoun": "ReportSecurityAttackSimulationTrainingUserCoverage" + "replacementNoun": "EntitlementManagementResourceRoleResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/security/labels/retentionlabels/{}/retentioneventtype", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgSecurityLabelRetentionLabelRetentionEventType", - "oracle": "Get-MgSecurityLabelRetentionEventType" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRoleResourceEnvironment" }, - "replacementNoun": "SecurityLabelRetentionEventType" + "replacementNoun": "EntitlementManagementResourceRoleResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/security/subjectrightsrequests/{}/getfinalattachment", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgSecuritySubjectRightsRequestGetFinalAttachment", - "oracle": "Get-MgSecuritySubjectRightsRequestFinalAttachment" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleResourceScope" }, - "replacementNoun": "SecuritySubjectRightsRequestFinalAttachment" + "replacementNoun": "EntitlementManagementResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/security/subjectrightsrequests/{}/getfinalreport", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgSecuritySubjectRightsRequestGetFinalReport", - "oracle": "Get-MgSecuritySubjectRightsRequestFinalReport" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleResourceScope" }, - "replacementNoun": "SecuritySubjectRightsRequestFinalReport" + "replacementNoun": "EntitlementManagementResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/security/triggers/retentionevents/{}/retentioneventtype", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgSecurityTriggerRetentionEventRetentionEventType", - "oracle": "Get-MgSecurityTriggerRetentionEventType" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRoleResourceScopeResource" }, - "replacementNoun": "SecurityTriggerRetentionEventType" + "replacementNoun": "EntitlementManagementResourceRoleResourceScopeResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/serviceprincipals/{}/synchronization/jobs/{}/schema/filteroperators", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgServicePrincipalSynchronizationJobSchemaFilterOperators", - "oracle": "Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRoleResourceScopeResourceEnvironment" }, - "replacementNoun": "FilterServicePrincipalSynchronizationJobSchemaOperator", - "replacementVerb": "Invoke" + "replacementNoun": "EntitlementManagementResourceRoleResourceScopeResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/serviceprincipals/{}/synchronization/jobs/{}/schema/functions", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgServicePrincipalSynchronizationJobSchemaFunctions", - "oracle": "Invoke-MgFunctionServicePrincipalSynchronizationJobSchema" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRoleResourceScopeCount" }, - "replacementNoun": "FunctionServicePrincipalSynchronizationJobSchema", - "replacementVerb": "Invoke" + "replacementNoun": "EntitlementManagementResourceRoleResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/serviceprincipals/{}/synchronization/templates/{}/schema/filteroperators", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgServicePrincipalSynchronizationTemplateSchemaFilterOperators", - "oracle": "Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRoleCount" }, - "replacementNoun": "FilterServicePrincipalSynchronizationTemplateSchemaOperator", - "replacementVerb": "Invoke" + "replacementNoun": "EntitlementManagementResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/serviceprincipals/{}/synchronization/templates/{}/schema/functions", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes", "action": "rename", "evidence": { - "ourCommand": "Get-MgServicePrincipalSynchronizationTemplateSchemaFunctions", - "oracle": "Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScope", + "oracle": "Get-MgEntitlementManagementResourceScope" }, - "replacementNoun": "FunctionServicePrincipalSynchronizationTemplateSchema", - "replacementVerb": "Invoke" + "replacementNoun": "EntitlementManagementResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/shares/{}/list/contenttypes/{}/base", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgShareListContentTypeBase", - "oracle": "Get-MgShareContentTypeBase" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScope", + "oracle": "Get-MgEntitlementManagementResourceScope" }, - "replacementNoun": "ShareContentTypeBase" + "replacementNoun": "EntitlementManagementResourceScope" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/shares/{}/list/contenttypes/{}/basetypes", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgShareListContentTypeBaseType", - "oracle": "Get-MgShareContentTypeBaseType" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceScopeResource" }, - "replacementNoun": "ShareContentTypeBaseType" + "replacementNoun": "EntitlementManagementResourceScopeResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/shares/{}/list/contenttypes/{}/basetypes/{}", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgShareListContentTypeBaseType", - "oracle": "Get-MgShareContentTypeBaseType" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceScopeResourceEnvironment" }, - "replacementNoun": "ShareContentTypeBaseType" + "replacementNoun": "EntitlementManagementResourceScopeResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/shares/{}/list/contenttypes/{}/basetypes/$count", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Get-MgShareListContentTypeBaseTypeCount", - "oracle": "Get-MgShareContentTypeBaseTypeCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceScopeResourceRole" }, - "replacementNoun": "ShareContentTypeBaseTypeCount" + "replacementNoun": "EntitlementManagementResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/shares/{}/list/contenttypes/{}/ispublished", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgShareListContentTypeIsPublished", - "oracle": "Test-MgShareListContentTypePublished" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceScopeResourceRole" }, - "replacementNoun": "ShareListContentTypePublished", - "replacementVerb": "Test" + "replacementNoun": "EntitlementManagementResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/shares/{}/list/contenttypes/getcompatiblehubcontenttypes", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}/resource", "action": "rename", "evidence": { - "ourCommand": "Get-MgShareListContentTypeGetCompatibleHubContentTypes", - "oracle": "Get-MgShareListContentTypeCompatibleHubContentType" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceScopeResourceRoleResource" }, - "replacementNoun": "ShareListContentTypeCompatibleHubContentType" + "replacementNoun": "EntitlementManagementResourceScopeResourceRoleResource" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/shares/{}/list/items/{}/getactivitiesbyinterval", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}/resource/environment", "action": "rename", "evidence": { - "ourCommand": "Get-MgShareListItemGetActivitiesByInterval", - "oracle": "Get-MgShareListItemActivityByInterval" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceScopeResourceRoleResourceEnvironment" }, - "replacementNoun": "ShareListItemActivityByInterval" + "replacementNoun": "EntitlementManagementResourceScopeResourceRoleResourceEnvironment" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/shares/{}/list/items/{}/lastmodifiedbyuser", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgShareListItemLastModifiedByUser", - "oracle": "Get-MgShareItemLastModifiedByUser" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceScopeResourceRoleCount" }, - "replacementNoun": "ShareItemLastModifiedByUser" + "replacementNoun": "EntitlementManagementResourceScopeResourceRoleCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/shares/{}/list/items/{}/lastmodifiedbyuser/mailboxsettings", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgShareListItemLastModifiedByUserMailboxSetting", - "oracle": "Get-MgShareItemLastModifiedByUserMailboxSetting" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceScopeCount" }, - "replacementNoun": "ShareItemLastModifiedByUserMailboxSetting" + "replacementNoun": "EntitlementManagementResourceScopeCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/shares/{}/list/items/{}/lastmodifiedbyuser/serviceprovisioningerrors", + "uri": "/identitygovernance/entitlementmanagement/resources/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgShareListItemLastModifiedByUserServiceProvisioningError", - "oracle": "Get-MgShareItemLastModifiedByUserServiceProvisioningError" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceCount", + "oracle": "Get-MgEntitlementManagementResourceCount" }, - "replacementNoun": "ShareItemLastModifiedByUserServiceProvisioningError" + "replacementNoun": "EntitlementManagementResourceCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/shares/{}/list/items/{}/lastmodifiedbyuser/serviceprovisioningerrors/$count", + "uri": "/identitygovernance/entitlementmanagement/settings", "action": "rename", "evidence": { - "ourCommand": "Get-MgShareListItemLastModifiedByUserServiceProvisioningErrorCount", - "oracle": "Get-MgShareItemLastModifiedByUserServiceProvisioningErrorCount" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSetting", + "oracle": "Get-MgEntitlementManagementSetting" }, - "replacementNoun": "ShareItemLastModifiedByUserServiceProvisioningErrorCount" + "replacementNoun": "EntitlementManagementSetting" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/analytics/alltime", + "uri": "/identitygovernance/entitlementmanagement/subjects", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteAnalyticAllTime", - "oracle": "Get-MgSiteAnalyticTime" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSubject", + "oracle": "Get-MgEntitlementManagementSubject" }, - "replacementNoun": "SiteAnalyticTime" + "replacementNoun": "EntitlementManagementSubject" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/contenttypes/{}/ispublished", + "uri": "/identitygovernance/entitlementmanagement/subjects/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteContentTypeIsPublished", - "oracle": "Test-MgSiteContentTypePublished" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSubject", + "oracle": "Get-MgEntitlementManagementSubject" }, - "replacementNoun": "SiteContentTypePublished", - "replacementVerb": "Test" + "replacementNoun": "EntitlementManagementSubject" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/contenttypes/getcompatiblehubcontenttypes", + "uri": "/identitygovernance/entitlementmanagement/subjects/{}/connectedorganization", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteContentTypeGetCompatibleHubContentTypes", - "oracle": "Get-MgSiteContentTypeCompatibleHubContentType" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSubjectConnectedOrganization", + "oracle": "Get-MgEntitlementManagementSubjectConnectedOrganization" }, - "replacementNoun": "SiteContentTypeCompatibleHubContentType" + "replacementNoun": "EntitlementManagementSubjectConnectedOrganization" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/getactivitiesbyinterval", + "uri": "/identitygovernance/entitlementmanagement/subjects/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteGetActivitiesByInterval", - "oracle": "Get-MgSiteActivityByInterval" + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSubjectCount", + "oracle": "Get-MgEntitlementManagementSubjectCount" }, - "replacementNoun": "SiteActivityByInterval" + "replacementNoun": "EntitlementManagementSubjectCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/lists/{}/contenttypes/{}/ispublished", + "uri": "/identitygovernance/lifecycleworkflows/insights/toptasksprocessedsummary(startdatetime={startdatetime},enddatetime={enddatetime})", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteListContentTypeIsPublished", - "oracle": "Test-MgSiteListContentTypePublished" + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowInsightTopTasksProcessedSummaryWithStartDateTimeWithEndDateTime", + "oracle": "Invoke-MgTopIdentityGovernanceLifecycleWorkflowInsightTaskProcessedSummary" }, - "replacementNoun": "SiteListContentTypePublished", - "replacementVerb": "Test" + "replacementNoun": "TopIdentityGovernanceLifecycleWorkflowInsightTaskProcessedSummary", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/lists/{}/contenttypes/getcompatiblehubcontenttypes", + "uri": "/identitygovernance/lifecycleworkflows/insights/topworkflowsprocessedsummary(startdatetime={startdatetime},enddatetime={enddatetime})", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteListContentTypeGetCompatibleHubContentTypes", - "oracle": "Get-MgSiteListContentTypeCompatibleHubContentType" + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowInsightTopWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime", + "oracle": "Invoke-MgTopIdentityGovernanceLifecycleWorkflowInsightWorkflowProcessedSummary" }, - "replacementNoun": "SiteListContentTypeCompatibleHubContentType" + "replacementNoun": "TopIdentityGovernanceLifecycleWorkflowInsightWorkflowProcessedSummary", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/lists/{}/items/{}/getactivitiesbyinterval", + "uri": "/identitygovernance/lifecycleworkflows/insights/workflowsprocessedbycategory(startdatetime={startdatetime},enddatetime={enddatetime})", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteListItemGetActivitiesByInterval", - "oracle": "Get-MgSiteListItemActivityByInterval" + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowInsightWorkflowsProcessedByCategoryWithStartDateTimeWithEndDateTime", + "oracle": "Invoke-MgGraphIdentityGovernanceLifecycleWorkflowInsight" }, - "replacementNoun": "SiteListItemActivityByInterval" + "replacementNoun": "GraphIdentityGovernanceLifecycleWorkflowInsight", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/lists/{}/items/{}/lastmodifiedbyuser", + "uri": "/identitygovernance/lifecycleworkflows/insights/workflowsprocessedsummary(startdatetime={startdatetime},enddatetime={enddatetime})", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteListItemLastModifiedByUser", - "oracle": "Get-MgSiteItemLastModifiedByUser" + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowInsightWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime", + "oracle": "Invoke-MgWorkflowIdentityGovernanceLifecycleWorkflowInsightProcessedSummary" }, - "replacementNoun": "SiteItemLastModifiedByUser" + "replacementNoun": "WorkflowIdentityGovernanceLifecycleWorkflowInsightProcessedSummary", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/mailboxsettings", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/runs/{}/userprocessingresults/summary(startdatetime={startdatetime},enddatetime={enddatetime})", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteListItemLastModifiedByUserMailboxSetting", - "oracle": "Get-MgSiteItemLastModifiedByUserMailboxSetting" + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime", + "oracle": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowRunUserProcessingResult" }, - "replacementNoun": "SiteItemLastModifiedByUserMailboxSetting" + "replacementNoun": "SummaryIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/serviceprovisioningerrors", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/runs/summary(startdatetime={startdatetime},enddatetime={enddatetime})", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteListItemLastModifiedByUserServiceProvisioningError", - "oracle": "Get-MgSiteItemLastModifiedByUserServiceProvisioningError" + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowRunSummaryWithStartDateTimeWithEndDateTime", + "oracle": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowRun" }, - "replacementNoun": "SiteItemLastModifiedByUserServiceProvisioningError" + "replacementNoun": "SummaryIdentityGovernanceLifecycleWorkflowRun", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/serviceprovisioningerrors/$count", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/taskreports/summary(startdatetime={startdatetime},enddatetime={enddatetime})", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteListItemLastModifiedByUserServiceProvisioningErrorCount", - "oracle": "Get-MgSiteItemLastModifiedByUserServiceProvisioningErrorCount" + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime", + "oracle": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowTaskReport" }, - "replacementNoun": "SiteItemLastModifiedByUserServiceProvisioningErrorCount" + "replacementNoun": "SummaryIdentityGovernanceLifecycleWorkflowTaskReport", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/lists/{}/lastmodifiedbyuser", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/userprocessingresults/summary(startdatetime={startdatetime},enddatetime={enddatetime})", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteListLastModifiedByUser", - "oracle": "Get-MgSiteLastModifiedByUser" + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime", + "oracle": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowUserProcessingResult" }, - "replacementNoun": "SiteLastModifiedByUser" + "replacementNoun": "SummaryIdentityGovernanceLifecycleWorkflowUserProcessingResult", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/lists/{}/lastmodifiedbyuser/mailboxsettings", + "uri": "/identitygovernance/privilegedaccess/group/assignmentapprovals/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteListLastModifiedByUserMailboxSetting", - "oracle": "Get-MgSiteLastModifiedByUserMailboxSetting" + "ourCommand": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentApprovalByCurrentUser" }, - "replacementNoun": "SiteLastModifiedByUserMailboxSetting" + "replacementNoun": "FilterIdentityGovernancePrivilegedAccessGroupAssignmentApprovalByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/lists/{}/lastmodifiedbyuser/serviceprovisioningerrors", + "uri": "/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteListLastModifiedByUserServiceProvisioningError", - "oracle": "Get-MgSiteLastModifiedByUserServiceProvisioningError" + "ourCommand": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceByCurrentUser" }, - "replacementNoun": "SiteLastModifiedByUserServiceProvisioningError" + "replacementNoun": "FilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/lists/{}/lastmodifiedbyuser/serviceprovisioningerrors/$count", + "uri": "/identitygovernance/privilegedaccess/group/assignmentschedulerequests/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteListLastModifiedByUserServiceProvisioningErrorCount", - "oracle": "Get-MgSiteLastModifiedByUserServiceProvisioningErrorCount" + "ourCommand": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestByCurrentUser" }, - "replacementNoun": "SiteLastModifiedByUserServiceProvisioningErrorCount" + "replacementNoun": "FilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestByCurrentUser", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/preview", + "uri": "/identitygovernance/privilegedaccess/group/assignmentschedules/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteOnenoteNotebookSectionGroupSectionPagePreview", - "oracle": "Invoke-MgPreviewSiteOnenoteNotebookSectionGroupSectionPage" + "ourCommand": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleByCurrentUser" }, - "replacementNoun": "PreviewSiteOnenoteNotebookSectionGroupSectionPage", + "replacementNoun": "FilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleByCurrentUser", "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/onenote/notebooks/{}/sections/{}/pages/{}/preview", + "uri": "/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteOnenoteNotebookSectionPagePreview", - "oracle": "Invoke-MgPreviewSiteOnenoteNotebookSectionPage" + "ourCommand": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceByCurrentUser" }, - "replacementNoun": "PreviewSiteOnenoteNotebookSectionPage", + "replacementNoun": "FilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceByCurrentUser", "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/onenote/pages/{}/preview", + "uri": "/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteOnenotePagePreview", - "oracle": "Invoke-MgPreviewSiteOnenotePage" + "ourCommand": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestByCurrentUser" }, - "replacementNoun": "PreviewSiteOnenotePage", + "replacementNoun": "FilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestByCurrentUser", "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/preview", + "uri": "/identitygovernance/privilegedaccess/group/eligibilityschedules/filterbycurrentuser(on='{on}')", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteOnenoteSectionGroupSectionPagePreview", - "oracle": "Invoke-MgPreviewSiteOnenoteSectionGroupSectionPage" + "ourCommand": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleByCurrentUser" }, - "replacementNoun": "PreviewSiteOnenoteSectionGroupSectionPage", + "replacementNoun": "FilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleByCurrentUser", "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/onenote/sections/{}/pages/{}/preview", + "uri": "/identitygovernance/termsofuse/agreementacceptances", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteOnenoteSectionPagePreview", - "oracle": "Invoke-MgPreviewSiteOnenoteSectionPage" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementAcceptance", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance" }, - "replacementNoun": "PreviewSiteOnenoteSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptance" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/{}/sites/$count", + "uri": "/identitygovernance/termsofuse/agreementacceptances/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteCount", - "oracle": "Get-MgSubSiteCount" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementAcceptance", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance" }, - "replacementNoun": "SubSiteCount" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptance" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/sites/getallsites", + "uri": "/identitygovernance/termsofuse/agreementacceptances/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgSiteGetAllSites", - "oracle": "Get-MgAllSite" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementAcceptanceCount", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptanceCount" }, - "replacementNoun": "AllSite" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptanceCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teams/{}/allchannels", + "uri": "/identitygovernance/termsofuse/agreements", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamAllChannel", - "oracle": "Get-MgAllTeamChannel" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreement", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreement" }, - "replacementNoun": "AllTeamChannel" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreement" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teams/{}/allchannels/{}", + "uri": "/identitygovernance/termsofuse/agreements/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamAllChannel", - "oracle": "Get-MgAllTeamChannel" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreement", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreement" }, - "replacementNoun": "AllTeamChannel" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreement" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teams/{}/allchannels/$count", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamAllChannelCount", - "oracle": "Get-MgAllTeamChannelCount" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" }, - "replacementNoun": "AllTeamChannelCount" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalization" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teams/{}/channels/{}/allmembers", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamChannelAllMember", - "oracle": "Get-MgTeamChannelMember" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" }, - "replacementNoun": "TeamChannelMember" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalization" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teams/{}/channels/{}/allmembers/{}", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamChannelAllMember", - "oracle": "Get-MgTeamChannelMember" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" }, - "replacementNoun": "TeamChannelMember" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teams/{}/channels/getallretainedmessages", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamChannelGetAllRetainedMessages", - "oracle": "Get-MgTeamChannelRetainedMessage" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" }, - "replacementNoun": "TeamChannelRetainedMessage" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teams/{}/primarychannel/allmembers", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamPrimaryChannelAllMember", - "oracle": "Get-MgTeamPrimaryChannelMember" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersionCount", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount" }, - "replacementNoun": "TeamPrimaryChannelMember" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teams/{}/primarychannel/allmembers/{}", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamPrimaryChannelAllMember", - "oracle": "Get-MgTeamPrimaryChannelMember" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationCount", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationCount" }, - "replacementNoun": "TeamPrimaryChannelMember" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teams/getallmessages", + "uri": "/identitygovernance/termsofuse/agreements/{}/files", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamGetAllMessages", - "oracle": "Get-MgAllTeamMessage" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFile", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFile" }, - "replacementNoun": "AllTeamMessage" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFile" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teamwork/deletedteams/{}/channels/{}/allmembers", + "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamworkDeletedTeamChannelAllMember", - "oracle": "Get-MgTeamworkDeletedTeamChannelMember" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileVersion", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion" }, - "replacementNoun": "TeamworkDeletedTeamChannelMember" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teamwork/deletedteams/{}/channels/{}/allmembers/{}", + "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamworkDeletedTeamChannelAllMember", - "oracle": "Get-MgTeamworkDeletedTeamChannelMember" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileVersion", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion" }, - "replacementNoun": "TeamworkDeletedTeamChannelMember" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersion" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teamwork/deletedteams/{}/channels/getallretainedmessages", + "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamworkDeletedTeamChannelGetAllRetainedMessages", - "oracle": "Get-MgTeamworkDeletedTeamChannelRetainedMessage" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileVersionCount", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersionCount" }, - "replacementNoun": "TeamworkDeletedTeamChannelRetainedMessage" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersionCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/teamwork/deletedteams/getallmessages", + "uri": "/identitygovernance/termsofuse/agreements/{}/files/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgTeamworkDeletedTeamGetAllMessages", - "oracle": "Get-MgAllTeamworkDeletedTeamMessage" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileCount", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileCount" }, - "replacementNoun": "AllTeamworkDeletedTeamMessage" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/activities/recent", + "uri": "/identitygovernance/termsofuse/agreements/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserActivityRecent", - "oracle": "Invoke-MgRecentUserActivity" + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementCount", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementCount" }, - "replacementNoun": "RecentUserActivity", - "replacementVerb": "Invoke" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/authentication/fido2methods/creationoptions", + "uri": "/identityprotection/riskdetections", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserAuthenticationFido2MethodCreationOptions", - "oracle": "Invoke-MgCreationUserAuthenticationFido2MethodOption" + "ourCommand": "Get-MgIdentityProtectionRiskDetection", + "oracle": "Get-MgRiskDetection" }, - "replacementNoun": "CreationUserAuthenticationFido2MethodOption", - "replacementVerb": "Invoke" + "replacementNoun": "RiskDetection" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/chats/{}/messages", + "uri": "/identityprotection/riskdetections/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserChatMessage", - "oracle": "Get-MgAllUserChatMessage" + "ourCommand": "Get-MgIdentityProtectionRiskDetection", + "oracle": "Get-MgRiskDetection" }, - "replacementNoun": "AllUserChatMessage" + "replacementNoun": "RiskDetection" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/chats/{}/messages/{}", + "uri": "/identityprotection/riskdetections/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserChatMessage", - "oracle": "Get-MgAllUserChatMessage" + "ourCommand": "Get-MgIdentityProtectionRiskDetectionCount", + "oracle": "Get-MgRiskDetectionCount" }, - "replacementNoun": "AllUserChatMessage" + "replacementNoun": "RiskDetectionCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/chats/getallretainedmessages", + "uri": "/identityprotection/riskyserviceprincipals", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserChatGetAllRetainedMessages", - "oracle": "Get-MgUserChatRetainedMessage" + "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipal", + "oracle": "Get-MgRiskyServicePrincipal" }, - "replacementNoun": "UserChatRetainedMessage" + "replacementNoun": "RiskyServicePrincipal" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/exportdeviceandappmanagementdata", + "uri": "/identityprotection/riskyserviceprincipals/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserExportDeviceAndAppManagementData", - "oracle": "Export-MgUserDeviceAndAppManagementData" + "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipal", + "oracle": "Get-MgRiskyServicePrincipal" }, - "replacementNoun": "UserDeviceAndAppManagementData", - "replacementVerb": "Export" + "replacementNoun": "RiskyServicePrincipal" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/getmanagedappdiagnosticstatuses", + "uri": "/identityprotection/riskyserviceprincipals/{}/history", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserGetManagedAppDiagnosticStatuses", - "oracle": "Get-MgUserManagedAppDiagnosticStatus" + "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipalHistory", + "oracle": "Get-MgRiskyServicePrincipalHistory" }, - "replacementNoun": "UserManagedAppDiagnosticStatus" + "replacementNoun": "RiskyServicePrincipalHistory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/getmanagedapppolicies", + "uri": "/identityprotection/riskyserviceprincipals/{}/history/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserGetManagedAppPolicies", - "oracle": "Get-MgUserManagedAppPolicy" + "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipalHistory", + "oracle": "Get-MgRiskyServicePrincipalHistory" }, - "replacementNoun": "UserManagedAppPolicy" + "replacementNoun": "RiskyServicePrincipalHistory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/getmanageddeviceswithappfailures", + "uri": "/identityprotection/riskyserviceprincipals/{}/history/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserGetManagedDevicesWithAppFailures", - "oracle": "Get-MgUserManagedDeviceWithAppFailure" + "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipalHistoryCount", + "oracle": "Get-MgRiskyServicePrincipalHistoryCount" }, - "replacementNoun": "UserManagedDeviceWithAppFailure" + "replacementNoun": "RiskyServicePrincipalHistoryCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/licensedetails/getteamslicensingdetails", + "uri": "/identityprotection/riskyserviceprincipals/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserLicenseDetailGetTeamsLicensingDetails", - "oracle": "Get-MgUserLicenseDetailTeamLicensingDetail" + "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipalCount", + "oracle": "Get-MgRiskyServicePrincipalCount" }, - "replacementNoun": "UserLicenseDetailTeamLicensingDetail" + "replacementNoun": "RiskyServicePrincipalCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/manageddevices/{}/logcollectionrequests", + "uri": "/identityprotection/riskyusers", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserManagedDeviceLogCollectionRequest", - "oracle": "Get-MgUserManagedDeviceLogCollectionResponse" + "ourCommand": "Get-MgIdentityProtectionRiskyUser", + "oracle": "Get-MgRiskyUser" }, - "replacementNoun": "UserManagedDeviceLogCollectionResponse" + "replacementNoun": "RiskyUser" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/manageddevices/{}/logcollectionrequests/{}", + "uri": "/identityprotection/riskyusers/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserManagedDeviceLogCollectionRequest", - "oracle": "Get-MgUserManagedDeviceLogCollectionResponse" + "ourCommand": "Get-MgIdentityProtectionRiskyUser", + "oracle": "Get-MgRiskyUser" }, - "replacementNoun": "UserManagedDeviceLogCollectionResponse" + "replacementNoun": "RiskyUser" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/preview", + "uri": "/identityprotection/riskyusers/{}/history", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserOnenoteNotebookSectionGroupSectionPagePreview", - "oracle": "Invoke-MgPreviewUserOnenoteNotebookSectionGroupSectionPage" + "ourCommand": "Get-MgIdentityProtectionRiskyUserHistory", + "oracle": "Get-MgRiskyUserHistory" }, - "replacementNoun": "PreviewUserOnenoteNotebookSectionGroupSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "RiskyUserHistory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/onenote/notebooks/{}/sections/{}/pages/{}/preview", + "uri": "/identityprotection/riskyusers/{}/history/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserOnenoteNotebookSectionPagePreview", - "oracle": "Invoke-MgPreviewUserOnenoteNotebookSectionPage" + "ourCommand": "Get-MgIdentityProtectionRiskyUserHistory", + "oracle": "Get-MgRiskyUserHistory" }, - "replacementNoun": "PreviewUserOnenoteNotebookSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "RiskyUserHistory" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/onenote/pages/{}/preview", + "uri": "/identityprotection/riskyusers/{}/history/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserOnenotePagePreview", - "oracle": "Invoke-MgPreviewUserOnenotePage" + "ourCommand": "Get-MgIdentityProtectionRiskyUserHistoryCount", + "oracle": "Get-MgRiskyUserHistoryCount" }, - "replacementNoun": "PreviewUserOnenotePage", - "replacementVerb": "Invoke" + "replacementNoun": "RiskyUserHistoryCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/preview", + "uri": "/identityprotection/riskyusers/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserOnenoteSectionGroupSectionPagePreview", - "oracle": "Invoke-MgPreviewUserOnenoteSectionGroupSectionPage" + "ourCommand": "Get-MgIdentityProtectionRiskyUserCount", + "oracle": "Get-MgRiskyUserCount" }, - "replacementNoun": "PreviewUserOnenoteSectionGroupSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "RiskyUserCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/onenote/sections/{}/pages/{}/preview", + "uri": "/identityprotection/serviceprincipalriskdetections", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserOnenoteSectionPagePreview", - "oracle": "Invoke-MgPreviewUserOnenoteSectionPage" + "ourCommand": "Get-MgIdentityProtectionServicePrincipalRiskDetection", + "oracle": "Get-MgServicePrincipalRiskDetection" }, - "replacementNoun": "PreviewUserOnenoteSectionPage", - "replacementVerb": "Invoke" + "replacementNoun": "ServicePrincipalRiskDetection" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/onlinemeetings/{}/getvirtualappointmentjoinweburl", + "uri": "/identityprotection/serviceprincipalriskdetections/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserOnlineMeetingGetVirtualAppointmentJoinWebUrl", - "oracle": "Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl" + "ourCommand": "Get-MgIdentityProtectionServicePrincipalRiskDetection", + "oracle": "Get-MgServicePrincipalRiskDetection" }, - "replacementNoun": "UserOnlineMeetingVirtualAppointmentJoinWebUrl" + "replacementNoun": "ServicePrincipalRiskDetection" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/outlook/supportedlanguages", + "uri": "/identityprotection/serviceprincipalriskdetections/$count", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserOutlookSupportedLanguages", - "oracle": "Invoke-MgSupportedUserOutlookLanguage" + "ourCommand": "Get-MgIdentityProtectionServicePrincipalRiskDetectionCount", + "oracle": "Get-MgServicePrincipalRiskDetectionCount" }, - "replacementNoun": "SupportedUserOutlookLanguage", - "replacementVerb": "Invoke" + "replacementNoun": "ServicePrincipalRiskDetectionCount" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/outlook/supportedtimezones", + "uri": "/organization/{}/branding/customcss", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserOutlookSupportedTimeZones", - "oracle": "Invoke-MgTimeUserOutlook" + "ourCommand": "Get-MgOrganizationBrandingCustomCSS", + "oracle": "Get-MgOrganizationBrandingCustomCss" }, - "replacementNoun": "TimeUserOutlook", - "replacementVerb": "Invoke" + "replacementNoun": "OrganizationBrandingCustomCss" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/teamwork/getallretainedtargetedmessages", + "uri": "/organization/{}/branding/localizations/{}/customcss", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTeamworkGetAllRetainedTargetedMessages", - "oracle": "Get-MgUserTeamworkRetainedTargetedMessage" + "ourCommand": "Get-MgOrganizationBrandingLocalizationCustomCSS", + "oracle": "Get-MgOrganizationBrandingLocalizationCustomCss" }, - "replacementNoun": "UserTeamworkRetainedTargetedMessage" + "replacementNoun": "OrganizationBrandingLocalizationCustomCss" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/teamwork/getalltargetedmessages", + "uri": "/places/{}/building/checkins", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTeamworkGetAllTargetedMessages", - "oracle": "Get-MgUserTeamworkTargetedMessage" + "ourCommand": "Get-MgPlaceAsBuildingCheckIn", + "oracle": "Get-MgPlaceAsBuildingCheck" }, - "replacementNoun": "UserTeamworkTargetedMessage" + "replacementNoun": "PlaceAsBuildingCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks", + "uri": "/places/{}/building/checkins/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTask", - "oracle": "Get-MgUserTodoTask" + "ourCommand": "Get-MgPlaceAsBuildingCheckIn", + "oracle": "Get-MgPlaceAsBuildingCheck" }, - "replacementNoun": "UserTodoTask" + "replacementNoun": "PlaceAsBuildingCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}", + "uri": "/places/{}/descendants", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTask", - "oracle": "Get-MgUserTodoTask" + "ourCommand": "Get-MgPlaceDescendants", + "oracle": "Invoke-MgDescendantPlace" }, - "replacementNoun": "UserTodoTask" + "replacementNoun": "DescendantPlace", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/attachments", + "uri": "/places/{}/desk/checkins", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskAttachment", - "oracle": "Get-MgUserTodoTaskAttachment" + "ourCommand": "Get-MgPlaceAsDeskCheckIn", + "oracle": "Get-MgPlaceAsDeskCheck" }, - "replacementNoun": "UserTodoTaskAttachment" + "replacementNoun": "PlaceAsDeskCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/attachments/{}", + "uri": "/places/{}/desk/checkins/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskAttachment", - "oracle": "Get-MgUserTodoTaskAttachment" + "ourCommand": "Get-MgPlaceAsDeskCheckIn", + "oracle": "Get-MgPlaceAsDeskCheck" }, - "replacementNoun": "UserTodoTaskAttachment" + "replacementNoun": "PlaceAsDeskCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/attachments/{}/$value", + "uri": "/places/{}/floor/checkins", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskAttachmentContent", - "oracle": "Get-MgUserTodoTaskAttachmentContent" + "ourCommand": "Get-MgPlaceAsFloorCheckIn", + "oracle": "Get-MgPlaceAsFloorCheck" }, - "replacementNoun": "UserTodoTaskAttachmentContent" + "replacementNoun": "PlaceAsFloorCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/attachments/$count", + "uri": "/places/{}/floor/checkins/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskAttachmentCount", - "oracle": "Get-MgUserTodoTaskAttachmentCount" + "ourCommand": "Get-MgPlaceAsFloorCheckIn", + "oracle": "Get-MgPlaceAsFloorCheck" }, - "replacementNoun": "UserTodoTaskAttachmentCount" + "replacementNoun": "PlaceAsFloorCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/attachmentsessions", + "uri": "/places/{}/room/checkins", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskAttachmentSession", - "oracle": "Get-MgUserTodoTaskAttachmentSession" + "ourCommand": "Get-MgPlaceAsRoomCheckIn", + "oracle": "Get-MgPlaceAsRoomCheck" }, - "replacementNoun": "UserTodoTaskAttachmentSession" + "replacementNoun": "PlaceAsRoomCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/attachmentsessions/{}", + "uri": "/places/{}/room/checkins/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskAttachmentSession", - "oracle": "Get-MgUserTodoTaskAttachmentSession" + "ourCommand": "Get-MgPlaceAsRoomCheckIn", + "oracle": "Get-MgPlaceAsRoomCheck" }, - "replacementNoun": "UserTodoTaskAttachmentSession" + "replacementNoun": "PlaceAsRoomCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/attachmentsessions/$count", + "uri": "/places/{}/roomlist/checkins", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskAttachmentSessionCount", - "oracle": "Get-MgUserTodoTaskAttachmentSessionCount" + "ourCommand": "Get-MgPlaceAsRoomListCheckIn", + "oracle": "Get-MgPlaceAsRoomListCheck" }, - "replacementNoun": "UserTodoTaskAttachmentSessionCount" + "replacementNoun": "PlaceAsRoomListCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/checklistitems", + "uri": "/places/{}/roomlist/checkins/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskChecklistItem", - "oracle": "Get-MgUserTodoTaskChecklistItem" + "ourCommand": "Get-MgPlaceAsRoomListCheckIn", + "oracle": "Get-MgPlaceAsRoomListCheck" }, - "replacementNoun": "UserTodoTaskChecklistItem" + "replacementNoun": "PlaceAsRoomListCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/checklistitems/{}", + "uri": "/places/{}/roomlist/rooms/{}/checkins", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskChecklistItem", - "oracle": "Get-MgUserTodoTaskChecklistItem" + "ourCommand": "Get-MgPlaceAsRoomListRoomCheckIn", + "oracle": "Get-MgPlaceAsRoomListRoomCheck" }, - "replacementNoun": "UserTodoTaskChecklistItem" + "replacementNoun": "PlaceAsRoomListRoomCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/checklistitems/$count", + "uri": "/places/{}/roomlist/rooms/{}/checkins/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskChecklistItemCount", - "oracle": "Get-MgUserTodoTaskChecklistItemCount" + "ourCommand": "Get-MgPlaceAsRoomListRoomCheckIn", + "oracle": "Get-MgPlaceAsRoomListRoomCheck" }, - "replacementNoun": "UserTodoTaskChecklistItemCount" + "replacementNoun": "PlaceAsRoomListRoomCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/extensions", + "uri": "/places/{}/roomlist/workspaces/{}/checkins", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskExtension", - "oracle": "Get-MgUserTodoTaskExtension" + "ourCommand": "Get-MgPlaceAsRoomListWorkspaceCheckIn", + "oracle": "Get-MgPlaceAsRoomListWorkspaceCheck" }, - "replacementNoun": "UserTodoTaskExtension" + "replacementNoun": "PlaceAsRoomListWorkspaceCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/extensions/{}", + "uri": "/places/{}/roomlist/workspaces/{}/checkins/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskExtension", - "oracle": "Get-MgUserTodoTaskExtension" + "ourCommand": "Get-MgPlaceAsRoomListWorkspaceCheckIn", + "oracle": "Get-MgPlaceAsRoomListWorkspaceCheck" }, - "replacementNoun": "UserTodoTaskExtension" + "replacementNoun": "PlaceAsRoomListWorkspaceCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/extensions/$count", + "uri": "/places/{}/section/checkins", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskExtensionCount", - "oracle": "Get-MgUserTodoTaskExtensionCount" + "ourCommand": "Get-MgPlaceAsSectionCheckIn", + "oracle": "Get-MgPlaceAsSectionCheck" }, - "replacementNoun": "UserTodoTaskExtensionCount" + "replacementNoun": "PlaceAsSectionCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/linkedresources", + "uri": "/places/{}/section/checkins/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskLinkedResource", - "oracle": "Get-MgUserTodoTaskLinkedResource" + "ourCommand": "Get-MgPlaceAsSectionCheckIn", + "oracle": "Get-MgPlaceAsSectionCheck" }, - "replacementNoun": "UserTodoTaskLinkedResource" + "replacementNoun": "PlaceAsSectionCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/linkedresources/{}", + "uri": "/places/{}/workspace/checkins", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskLinkedResource", - "oracle": "Get-MgUserTodoTaskLinkedResource" + "ourCommand": "Get-MgPlaceAsWorkspaceCheckIn", + "oracle": "Get-MgPlaceAsWorkspaceCheck" }, - "replacementNoun": "UserTodoTaskLinkedResource" + "replacementNoun": "PlaceAsWorkspaceCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/{}/linkedresources/$count", + "uri": "/places/{}/workspace/checkins/{}", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskLinkedResourceCount", - "oracle": "Get-MgUserTodoTaskLinkedResourceCount" + "ourCommand": "Get-MgPlaceAsWorkspaceCheckIn", + "oracle": "Get-MgPlaceAsWorkspaceCheck" }, - "replacementNoun": "UserTodoTaskLinkedResourceCount" + "replacementNoun": "PlaceAsWorkspaceCheck" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/$count", + "uri": "/policies/authenticationstrengthpolicies/{}/usage", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskCount", - "oracle": "Get-MgUserTodoTaskCount" + "ourCommand": "Get-MgPolicyAuthenticationStrengthPolicyUsage", + "oracle": "Invoke-MgUsagePolicyAuthenticationStrengthPolicy" }, - "replacementNoun": "UserTodoTaskCount" + "replacementNoun": "UsagePolicyAuthenticationStrengthPolicy", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/users/{}/todo/lists/{}/tasks/delta", + "uri": "/print/printers", "action": "rename", "evidence": { - "ourCommand": "Get-MgUserTodoListTaskDelta", - "oracle": "Get-MgUserTodoTaskDelta" + "ourCommand": "Get-MgPrinter", + "oracle": "Get-MgPrintPrinter" }, - "replacementNoun": "UserTodoTaskDelta" + "replacementNoun": "PrintPrinter" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/deviceappmanagement/iosmanagedappprotections/{}", + "method": "GET", + "uri": "/print/printers/{}", "action": "rename", "evidence": { - "ourCommand": "Update-MgDeviceAppManagementIosManagedAppProtection", - "oracle": "Update-MgDeviceAppManagementiOSManagedAppProtection" + "ourCommand": "Get-MgPrinter", + "oracle": "Get-MgPrintPrinter" }, - "replacementNoun": "DeviceAppManagementiOSManagedAppProtection" + "replacementNoun": "PrintPrinter" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/deviceappmanagement/iosmanagedappprotections/{}/apps/{}", + "method": "GET", + "uri": "/print/printers/{}/connectors", "action": "rename", "evidence": { - "ourCommand": "Update-MgDeviceAppManagementIosManagedAppProtectionApp", - "oracle": "Update-MgDeviceAppManagementiOSManagedAppProtectionApp" + "ourCommand": "Get-MgPrinterConnector", + "oracle": "Get-MgPrintPrinterConnector" }, - "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionApp" + "replacementNoun": "PrintPrinterConnector" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/deviceappmanagement/iosmanagedappprotections/{}/assignments/{}", + "method": "GET", + "uri": "/print/printers/{}/connectors/{}", "action": "rename", "evidence": { - "ourCommand": "Update-MgDeviceAppManagementIosManagedAppProtectionAssignment", - "oracle": "Update-MgDeviceAppManagementiOSManagedAppProtectionAssignment" + "ourCommand": "Get-MgPrinterConnector", + "oracle": "Get-MgPrintPrinterConnector" }, - "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionAssignment" + "replacementNoun": "PrintPrinterConnector" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/deviceappmanagement/iosmanagedappprotections/{}/deploymentsummary", + "method": "GET", + "uri": "/print/printers/{}/connectors/$count", "action": "rename", "evidence": { - "ourCommand": "Update-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary", - "oracle": "Update-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" + "ourCommand": "Get-MgPrinterConnectorCount", + "oracle": "Get-MgPrintPrinterConnectorCount" }, - "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionDeploymentSummary" + "replacementNoun": "PrintPrinterConnectorCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/deviceappmanagement/mobileapprelationships/{}", + "method": "GET", + "uri": "/print/printers/{}/jobs", "action": "rename", "evidence": { - "ourCommand": "Update-MgDeviceAppManagementMobileAppRelationship", - "oracle": "Update-MgDeviceAppManagementMultipleMobileAppRelationship" + "ourCommand": "Get-MgPrinterJob", + "oracle": "Get-MgPrintPrinterJob" }, - "replacementNoun": "DeviceAppManagementMultipleMobileAppRelationship" + "replacementNoun": "PrintPrinterJob" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/devicemanagement/iosupdatestatuses/{}", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}", "action": "rename", "evidence": { - "ourCommand": "Update-MgDeviceManagementIosUpdateStatus", - "oracle": "Update-MgDeviceManagementIoUpdateStatus" + "ourCommand": "Get-MgPrinterJob", + "oracle": "Get-MgPrintPrinterJob" }, - "replacementNoun": "DeviceManagementIoUpdateStatus" + "replacementNoun": "PrintPrinterJob" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/education/reports/reflectcheckinresponses/{}", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/documents", "action": "rename", "evidence": { - "ourCommand": "Update-MgEducationReportReflectCheckInResponse", - "oracle": "Update-MgEducationReportReflectCheck" + "ourCommand": "Get-MgPrinterJobDocument", + "oracle": "Get-MgPrintPrinterJobDocument" }, - "replacementNoun": "EducationReportReflectCheck" + "replacementNoun": "PrintPrinterJobDocument" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/groups/{}/team/channels/{}/allmembers/{}", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/documents/{}", "action": "rename", "evidence": { - "ourCommand": "Update-MgGroupTeamChannelAllMember", - "oracle": "Update-MgGroupTeamChannelMember" + "ourCommand": "Get-MgPrinterJobDocument", + "oracle": "Get-MgPrintPrinterJobDocument" }, - "replacementNoun": "GroupTeamChannelMember" + "replacementNoun": "PrintPrinterJobDocument" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/groups/{}/team/primarychannel/allmembers/{}", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/documents/{}/$value", "action": "rename", "evidence": { - "ourCommand": "Update-MgGroupTeamPrimaryChannelAllMember", - "oracle": "Update-MgGroupTeamPrimaryChannelMember" + "ourCommand": "Get-MgPrinterJobDocumentContent", + "oracle": "Get-MgPrintPrinterJobDocumentContent" }, - "replacementNoun": "GroupTeamPrimaryChannelMember" + "replacementNoun": "PrintPrinterJobDocumentContent" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications/{}", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/documents/$count", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication", - "oracle": "Update-MgIdentityAuthenticationEventFlowIncludeApplication" + "ourCommand": "Get-MgPrinterJobDocumentCount", + "oracle": "Get-MgPrintPrinterJobDocumentCount" }, - "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" + "replacementNoun": "PrintPrinterJobDocumentCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identity/b2xuserflows/{}", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/tasks", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityB2xUserFlow", - "oracle": "Update-MgIdentityB2XUserFlow" + "ourCommand": "Get-MgPrinterJobTask", + "oracle": "Get-MgPrintPrinterJobTask" }, - "replacementNoun": "IdentityB2XUserFlow" + "replacementNoun": "PrintPrinterJobTask" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/tasks/{}", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection", - "oracle": "Update-MgIdentityB2XUserFlowPostAttributeCollection" + "ourCommand": "Get-MgPrinterJobTask", + "oracle": "Get-MgPrintPrinterJobTask" }, - "replacementNoun": "IdentityB2XUserFlowPostAttributeCollection" + "replacementNoun": "PrintPrinterJobTask" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/tasks/{}/definition", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup", - "oracle": "Update-MgIdentityB2XUserFlowPostFederationSignup" + "ourCommand": "Get-MgPrinterJobTaskDefinition", + "oracle": "Get-MgPrintPrinterJobTaskDefinition" }, - "replacementNoun": "IdentityB2XUserFlowPostFederationSignup" + "replacementNoun": "PrintPrinterJobTaskDefinition" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identity/b2xuserflows/{}/languages/{}", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/tasks/{}/trigger", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityB2xUserFlowLanguage", - "oracle": "Update-MgIdentityB2XUserFlowLanguage" + "ourCommand": "Get-MgPrinterJobTaskTrigger", + "oracle": "Get-MgPrintPrinterJobTaskTrigger" }, - "replacementNoun": "IdentityB2XUserFlowLanguage" + "replacementNoun": "PrintPrinterJobTaskTrigger" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/{}", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/tasks/$count", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityB2xUserFlowLanguageDefaultPage", - "oracle": "Update-MgIdentityB2XUserFlowLanguageDefaultPage" + "ourCommand": "Get-MgPrinterJobTaskCount", + "oracle": "Get-MgPrintPrinterJobTaskCount" }, - "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPage" + "replacementNoun": "PrintPrinterJobTaskCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/{}", + "method": "GET", + "uri": "/print/printers/{}/jobs/$count", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityB2xUserFlowLanguageOverridePage", - "oracle": "Update-MgIdentityB2XUserFlowLanguageOverridePage" + "ourCommand": "Get-MgPrinterJobCount", + "oracle": "Get-MgPrintPrinterJobCount" }, - "replacementNoun": "IdentityB2XUserFlowLanguageOverridePage" + "replacementNoun": "PrintPrinterJobCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identity/b2xuserflows/{}/userattributeassignments/{}", + "method": "GET", + "uri": "/print/printers/{}/shares", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityB2xUserFlowUserAttributeAssignment", - "oracle": "Update-MgIdentityB2XUserFlowUserAttributeAssignment" + "ourCommand": "Get-MgPrinterShare", + "oracle": "Get-MgPrintPrinterShare" }, - "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignment" + "replacementNoun": "PrintPrinterShare" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}", + "method": "GET", + "uri": "/print/printers/{}/shares/{}", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceAppConsentAppConsentRequest", - "oracle": "Update-MgIdentityGovernanceAppConsentRequest" + "ourCommand": "Get-MgPrinterShare", + "oracle": "Get-MgPrintPrinterShare" }, - "replacementNoun": "IdentityGovernanceAppConsentRequest" + "replacementNoun": "PrintPrinterShare" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}", + "method": "GET", + "uri": "/print/printers/{}/shares/$count", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest", - "oracle": "Update-MgIdentityGovernanceAppConsentRequestUserConsentRequest" + "ourCommand": "Get-MgPrinterShareCount", + "oracle": "Get-MgPrintPrinterShareCount" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequest" + "replacementNoun": "PrintPrinterShareCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval", + "method": "GET", + "uri": "/print/printers/{}/tasktriggers", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval", - "oracle": "Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" + "ourCommand": "Get-MgPrinterTaskTrigger", + "oracle": "Get-MgPrintPrinterTaskTrigger" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApproval" + "replacementNoun": "PrintPrinterTaskTrigger" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages/{}", + "method": "GET", + "uri": "/print/printers/{}/tasktriggers/{}", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage", - "oracle": "Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + "ourCommand": "Get-MgPrinterTaskTrigger", + "oracle": "Get-MgPrintPrinterTaskTrigger" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + "replacementNoun": "PrintPrinterTaskTrigger" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}", + "method": "GET", + "uri": "/print/printers/{}/tasktriggers/{}/definition", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval", - "oracle": "Update-MgEntitlementManagementAccessPackageAssignmentApproval" + "ourCommand": "Get-MgPrinterTaskTriggerDefinition", + "oracle": "Get-MgPrintPrinterTaskTriggerDefinition" }, - "replacementNoun": "EntitlementManagementAccessPackageAssignmentApproval" + "replacementNoun": "PrintPrinterTaskTriggerDefinition" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages/{}", + "method": "GET", + "uri": "/print/printers/{}/tasktriggers/$count", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage", - "oracle": "Update-MgEntitlementManagementAccessPackageAssignmentApprovalStage" + "ourCommand": "Get-MgPrinterTaskTriggerCount", + "oracle": "Get-MgPrintPrinterTaskTriggerCount" }, - "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStage" + "replacementNoun": "PrintPrinterTaskTriggerCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}", + "method": "GET", + "uri": "/print/printers/$count", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackage", - "oracle": "Update-MgEntitlementManagementAccessPackage" + "ourCommand": "Get-MgPrinterCount", + "oracle": "Get-MgPrintPrinterCount" }, - "replacementNoun": "EntitlementManagementAccessPackage" + "replacementNoun": "PrintPrinterCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}", + "method": "GET", + "uri": "/privacy/subjectrightsrequests/{}/getfinalattachment", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy", - "oracle": "Update-MgEntitlementManagementAccessPackageAssignmentPolicy" + "ourCommand": "Get-MgPrivacySubjectRightsRequestGetFinalAttachment", + "oracle": "Get-MgPrivacySubjectRightsRequestFinalAttachment" }, - "replacementNoun": "EntitlementManagementAccessPackageAssignmentPolicy" + "replacementNoun": "PrivacySubjectRightsRequestFinalAttachment" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}", + "method": "GET", + "uri": "/privacy/subjectrightsrequests/{}/getfinalreport", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope", - "oracle": "Update-MgEntitlementManagementAccessPackageResourceRoleScope" + "ourCommand": "Get-MgPrivacySubjectRightsRequestGetFinalReport", + "oracle": "Get-MgPrivacySubjectRightsRequestFinalReport" }, - "replacementNoun": "EntitlementManagementAccessPackageResourceRoleScope" + "replacementNoun": "PrivacySubjectRightsRequestFinalReport" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/{}", + "method": "GET", + "uri": "/reports/authenticationmethods/usersregisteredbyfeature", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion", - "oracle": "Update-MgEntitlementManagementAccessPackageSuggestion" + "ourCommand": "Get-MgReportAuthenticationMethodUsersRegisteredByFeature", + "oracle": "Invoke-MgGraphReportAuthenticationMethod" }, - "replacementNoun": "EntitlementManagementAccessPackageSuggestion" + "replacementNoun": "GraphReportAuthenticationMethod", + "replacementVerb": "Invoke" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings/{}", + "method": "GET", + "uri": "/reports/getemailactivitycounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", - "oracle": "Update-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + "ourCommand": "Get-MgReportGetEmailActivityCountsWithPeriod", + "oracle": "Get-MgReportEmailActivityCount" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + "replacementNoun": "ReportEmailActivityCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions/{}", + "method": "GET", + "uri": "/reports/getemailactivityusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion", - "oracle": "Update-MgEntitlementManagementAssignmentPolicyQuestion" + "ourCommand": "Get-MgReportGetEmailActivityUserCountsWithPeriod", + "oracle": "Get-MgReportEmailActivityUserCount" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyQuestion" + "replacementNoun": "ReportEmailActivityUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}", + "method": "GET", + "uri": "/reports/getemailactivityuserdetail(date={date})", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage", - "oracle": "Update-MgEntitlementManagementAvailableAccessPackage" + "ourCommand": "Get-MgReportGetEmailActivityUserDetailWithDate", + "oracle": "Get-MgReportEmailActivityUserDetail" }, - "replacementNoun": "EntitlementManagementAvailableAccessPackage" + "replacementNoun": "ReportEmailActivityUserDetail" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}", + "method": "GET", + "uri": "/reports/getemailappusageappsusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalog", - "oracle": "Update-MgEntitlementManagementCatalog" + "ourCommand": "Get-MgReportGetEmailAppUsageAppsUserCountsWithPeriod", + "oracle": "Get-MgReportEmailAppUsageAppUserCount" }, - "replacementNoun": "EntitlementManagementCatalog" + "replacementNoun": "ReportEmailAppUsageAppUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions/{}", + "method": "GET", + "uri": "/reports/getemailappusageusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension", - "oracle": "Update-MgEntitlementManagementCatalogCustomWorkflowExtension" + "ourCommand": "Get-MgReportGetEmailAppUsageUserCountsWithPeriod", + "oracle": "Get-MgReportEmailAppUsageUserCount" }, - "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtension" + "replacementNoun": "ReportEmailAppUsageUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}", + "method": "GET", + "uri": "/reports/getemailappusageuserdetail(date={date})", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole", - "oracle": "Update-MgEntitlementManagementCatalogResourceRole" + "ourCommand": "Get-MgReportGetEmailAppUsageUserDetailWithDate", + "oracle": "Get-MgReportEmailAppUsageUserDetail" }, - "replacementNoun": "EntitlementManagementCatalogResourceRole" + "replacementNoun": "ReportEmailAppUsageUserDetail" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}", + "method": "GET", + "uri": "/reports/getemailappusageversionsusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope", - "oracle": "Update-MgEntitlementManagementCatalogResourceRoleResourceScope" + "ourCommand": "Get-MgReportGetEmailAppUsageVersionsUserCountsWithPeriod", + "oracle": "Get-MgReportEmailAppUsageVersionUserCount" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + "replacementNoun": "ReportEmailAppUsageVersionUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles/{}", + "method": "GET", + "uri": "/reports/getgrouparchivedprintjobs(groupid='{groupid}',startdatetime={startdatetime},enddatetime={enddatetime})", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", - "oracle": "Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + "ourCommand": "Get-MgReportGetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTime", + "oracle": "Get-MgReportGroupArchivedPrintJob" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + "replacementNoun": "ReportGroupArchivedPrintJob" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}", + "method": "GET", + "uri": "/reports/getm365appplatformusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole", - "oracle": "Update-MgEntitlementManagementCatalogResourceScopeResourceRole" + "ourCommand": "Get-MgReportGetM365AppPlatformUserCountsWithPeriod", + "oracle": "Get-MgReportM365AppPlatformUserCount" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + "replacementNoun": "ReportM365AppPlatformUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes/{}", + "method": "GET", + "uri": "/reports/getm365appusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", - "oracle": "Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + "ourCommand": "Get-MgReportGetM365AppUserCountsWithPeriod", + "oracle": "Get-MgReportM365AppUserCount" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + "replacementNoun": "ReportM365AppUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}", + "method": "GET", + "uri": "/reports/getm365appuserdetail(date={date})", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementConnectedOrganization", - "oracle": "Update-MgEntitlementManagementConnectedOrganization" + "ourCommand": "Get-MgReportGetM365AppUserDetailWithDate", + "oracle": "Get-MgReportM365AppUserDetail" }, - "replacementNoun": "EntitlementManagementConnectedOrganization" + "replacementNoun": "ReportM365AppUserDetail" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}", + "method": "GET", + "uri": "/reports/getmailboxusagedetail(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironment", - "oracle": "Update-MgEntitlementManagementResourceEnvironment" + "ourCommand": "Get-MgReportGetMailboxUsageDetailWithPeriod", + "oracle": "Get-MgReportMailboxUsageDetail" }, - "replacementNoun": "EntitlementManagementResourceEnvironment" + "replacementNoun": "ReportMailboxUsageDetail" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}", + "method": "GET", + "uri": "/reports/getmailboxusagemailboxcounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole", - "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceRole" + "ourCommand": "Get-MgReportGetMailboxUsageMailboxCountsWithPeriod", + "oracle": "Get-MgReportMailboxUsageMailboxCount" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRole" + "replacementNoun": "ReportMailboxUsageMailboxCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}", + "method": "GET", + "uri": "/reports/getmailboxusagequotastatusmailboxcounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope", - "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" + "ourCommand": "Get-MgReportGetMailboxUsageQuotaStatusMailboxCountsWithPeriod", + "oracle": "Get-MgReportMailboxUsageQuotaStatusMailboxCount" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScope" + "replacementNoun": "ReportMailboxUsageQuotaStatusMailboxCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}", + "method": "GET", + "uri": "/reports/getmailboxusagestorage(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope", - "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceScope" + "ourCommand": "Get-MgReportGetMailboxUsageStorageWithPeriod", + "oracle": "Get-MgReportMailboxUsageStorage" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScope" + "replacementNoun": "ReportMailboxUsageStorage" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}", + "method": "GET", + "uri": "/reports/getoffice365activationcounts", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole", - "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" + "ourCommand": "Get-MgReportGetOffice365ActivationCounts", + "oracle": "Get-MgReportOffice365ActivationCount" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRole" + "replacementNoun": "ReportOffice365ActivationCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}", + "method": "GET", + "uri": "/reports/getoffice365activationsusercounts", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequest", - "oracle": "Update-MgEntitlementManagementResourceRequest" + "ourCommand": "Get-MgReportGetOffice365ActivationsUserCounts", + "oracle": "Get-MgReportOffice365ActivationUserCount" }, - "replacementNoun": "EntitlementManagementResourceRequest" + "replacementNoun": "ReportOffice365ActivationUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog", + "method": "GET", + "uri": "/reports/getoffice365activationsuserdetail", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog", - "oracle": "Update-MgEntitlementManagementResourceRequestCatalog" + "ourCommand": "Get-MgReportGetOffice365ActivationsUserDetail", + "oracle": "Get-MgReportOffice365ActivationUserDetail" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalog" + "replacementNoun": "ReportOffice365ActivationUserDetail" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions/{}", + "method": "GET", + "uri": "/reports/getoffice365activeusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", - "oracle": "Update-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + "ourCommand": "Get-MgReportGetOffice365ActiveUserCountsWithPeriod", + "oracle": "Get-MgReportOffice365ActiveUserCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + "replacementNoun": "ReportOffice365ActiveUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}", + "method": "GET", + "uri": "/reports/getoffice365activeuserdetail(date={date})", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole", - "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceRole" + "ourCommand": "Get-MgReportGetOffice365ActiveUserDetailWithDate", + "oracle": "Get-MgReportOffice365ActiveUserDetail" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + "replacementNoun": "ReportOffice365ActiveUserDetail" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}", + "method": "GET", + "uri": "/reports/getoffice365groupsactivitycounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", - "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "ourCommand": "Get-MgReportGetOffice365GroupsActivityCountsWithPeriod", + "oracle": "Get-MgReportOffice365GroupActivityCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "replacementNoun": "ReportOffice365GroupActivityCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles/{}", + "method": "GET", + "uri": "/reports/getoffice365groupsactivitydetail(date={date})", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", - "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + "ourCommand": "Get-MgReportGetOffice365GroupsActivityDetailWithDate", + "oracle": "Get-MgReportOffice365GroupActivityDetail" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + "replacementNoun": "ReportOffice365GroupActivityDetail" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}", + "method": "GET", + "uri": "/reports/getoffice365groupsactivityfilecounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", - "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "ourCommand": "Get-MgReportGetOffice365GroupsActivityFileCountsWithPeriod", + "oracle": "Get-MgReportOffice365GroupActivityFileCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "replacementNoun": "ReportOffice365GroupActivityFileCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes/{}", + "method": "GET", + "uri": "/reports/getoffice365groupsactivitygroupcounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", - "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + "ourCommand": "Get-MgReportGetOffice365GroupsActivityGroupCountsWithPeriod", + "oracle": "Get-MgReportOffice365GroupActivityGroupCount" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + "replacementNoun": "ReportOffice365GroupActivityGroupCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}", + "method": "GET", + "uri": "/reports/getoffice365groupsactivitystorage(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole", - "oracle": "Update-MgEntitlementManagementResourceRequestResourceRole" + "ourCommand": "Get-MgReportGetOffice365GroupsActivityStorageWithPeriod", + "oracle": "Get-MgReportOffice365GroupActivityStorage" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRole" + "replacementNoun": "ReportOffice365GroupActivityStorage" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}", + "method": "GET", + "uri": "/reports/getoffice365servicesusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope", - "oracle": "Update-MgEntitlementManagementResourceRequestResourceRoleResourceScope" + "ourCommand": "Get-MgReportGetOffice365ServicesUserCountsWithPeriod", + "oracle": "Get-MgReportOffice365ServiceUserCount" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScope" + "replacementNoun": "ReportOffice365ServiceUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}", + "method": "GET", + "uri": "/reports/getonedriveactivityfilecounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope", - "oracle": "Update-MgEntitlementManagementResourceRequestResourceScope" + "ourCommand": "Get-MgReportGetOneDriveActivityFileCountsWithPeriod", + "oracle": "Get-MgReportOneDriveActivityFileCount" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScope" + "replacementNoun": "ReportOneDriveActivityFileCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}", + "method": "GET", + "uri": "/reports/getonedriveactivityusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole", - "oracle": "Update-MgEntitlementManagementResourceRequestResourceScopeResourceRole" + "ourCommand": "Get-MgReportGetOneDriveActivityUserCountsWithPeriod", + "oracle": "Get-MgReportOneDriveActivityUserCount" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRole" + "replacementNoun": "ReportOneDriveActivityUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}", + "method": "GET", + "uri": "/reports/getonedriveactivityuserdetail(date={date})", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScope", - "oracle": "Update-MgEntitlementManagementResourceRoleScope" + "ourCommand": "Get-MgReportGetOneDriveActivityUserDetailWithDate", + "oracle": "Get-MgReportOneDriveActivityUserDetail" }, - "replacementNoun": "EntitlementManagementResourceRoleScope" + "replacementNoun": "ReportOneDriveActivityUserDetail" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role", + "method": "GET", + "uri": "/reports/getonedriveusageaccountcounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole", - "oracle": "Update-MgEntitlementManagementResourceRoleScopeRole" + "ourCommand": "Get-MgReportGetOneDriveUsageAccountCountsWithPeriod", + "oracle": "Get-MgReportOneDriveUsageAccountCount" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRole" + "replacementNoun": "ReportOneDriveUsageAccountCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles/{}", + "method": "GET", + "uri": "/reports/getonedriveusageaccountdetail(date={date})", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole", - "oracle": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceRole" + "ourCommand": "Get-MgReportGetOneDriveUsageAccountDetailWithDate", + "oracle": "Get-MgReportOneDriveUsageAccountDetail" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRole" + "replacementNoun": "ReportOneDriveUsageAccountDetail" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}", + "method": "GET", + "uri": "/reports/getonedriveusagefilecounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope", - "oracle": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScope" + "ourCommand": "Get-MgReportGetOneDriveUsageFileCountsWithPeriod", + "oracle": "Get-MgReportOneDriveUsageFileCount" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScope" + "replacementNoun": "ReportOneDriveUsageFileCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/{}", + "method": "GET", + "uri": "/reports/getonedriveusagestorage(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", - "oracle": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + "ourCommand": "Get-MgReportGetOneDriveUsageStorageWithPeriod", + "oracle": "Get-MgReportOneDriveUsageStorage" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + "replacementNoun": "ReportOneDriveUsageStorage" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}", + "method": "GET", + "uri": "/reports/getprinterarchivedprintjobs(printerid='{printerid}',startdatetime={startdatetime},enddatetime={enddatetime})", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole", - "oracle": "Update-MgEntitlementManagementResourceRoleScopeResourceRole" + "ourCommand": "Get-MgReportGetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTime", + "oracle": "Get-MgReportPrinterArchivedPrintJob" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRole" + "replacementNoun": "ReportPrinterArchivedPrintJob" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/{}", + "method": "GET", + "uri": "/reports/getrelyingpartydetailedsummary(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope", - "oracle": "Update-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" + "ourCommand": "Get-MgReportGetRelyingPartyDetailedSummaryWithPeriod", + "oracle": "Get-MgReportRelyingPartyDetailedSummary" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScope" + "replacementNoun": "ReportRelyingPartyDetailedSummary" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes/{}", + "method": "GET", + "uri": "/reports/getsharepointactivityfilecounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope", - "oracle": "Update-MgEntitlementManagementResourceRoleScopeResourceScope" + "ourCommand": "Get-MgReportGetSharePointActivityFileCountsWithPeriod", + "oracle": "Get-MgReportSharePointActivityFileCount" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScope" + "replacementNoun": "ReportSharePointActivityFileCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}", + "method": "GET", + "uri": "/reports/getsharepointactivitypages(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRole", - "oracle": "Update-MgEntitlementManagementResourceRole" + "ourCommand": "Get-MgReportGetSharePointActivityPagesWithPeriod", + "oracle": "Get-MgReportSharePointActivityPage" }, - "replacementNoun": "EntitlementManagementResourceRole" + "replacementNoun": "ReportSharePointActivityPage" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}", + "method": "GET", + "uri": "/reports/getsharepointactivityusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope", - "oracle": "Update-MgEntitlementManagementResourceRoleResourceScope" + "ourCommand": "Get-MgReportGetSharePointActivityUserCountsWithPeriod", + "oracle": "Get-MgReportSharePointActivityUserCount" }, - "replacementNoun": "EntitlementManagementResourceRoleResourceScope" + "replacementNoun": "ReportSharePointActivityUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}", + "method": "GET", + "uri": "/reports/getsharepointactivityuserdetail(date={date})", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceScope", - "oracle": "Update-MgEntitlementManagementResourceScope" + "ourCommand": "Get-MgReportGetSharePointActivityUserDetailWithDate", + "oracle": "Get-MgReportSharePointActivityUserDetail" }, - "replacementNoun": "EntitlementManagementResourceScope" + "replacementNoun": "ReportSharePointActivityUserDetail" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}", + "method": "GET", + "uri": "/reports/getsharepointsiteusagedetail(date={date})", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole", - "oracle": "Update-MgEntitlementManagementResourceScopeResourceRole" + "ourCommand": "Get-MgReportGetSharePointSiteUsageDetailWithDate", + "oracle": "Get-MgReportSharePointSiteUsageDetail" }, - "replacementNoun": "EntitlementManagementResourceScopeResourceRole" + "replacementNoun": "ReportSharePointSiteUsageDetail" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/settings", + "method": "GET", + "uri": "/reports/getsharepointsiteusagefilecounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementSetting", - "oracle": "Update-MgEntitlementManagementSetting" + "ourCommand": "Get-MgReportGetSharePointSiteUsageFileCountsWithPeriod", + "oracle": "Get-MgReportSharePointSiteUsageFileCount" }, - "replacementNoun": "EntitlementManagementSetting" + "replacementNoun": "ReportSharePointSiteUsageFileCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/subjects/{}", + "method": "GET", + "uri": "/reports/getsharepointsiteusagepages(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementSubject", - "oracle": "Update-MgEntitlementManagementSubject" + "ourCommand": "Get-MgReportGetSharePointSiteUsagePagesWithPeriod", + "oracle": "Get-MgReportSharePointSiteUsagePage" }, - "replacementNoun": "EntitlementManagementSubject" + "replacementNoun": "ReportSharePointSiteUsagePage" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/termsofuse/agreementacceptances/{}", + "method": "GET", + "uri": "/reports/getsharepointsiteusagesitecounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceTermOfUseAgreementAcceptance", - "oracle": "Update-MgIdentityGovernanceTermsOfUseAgreementAcceptance" + "ourCommand": "Get-MgReportGetSharePointSiteUsageSiteCountsWithPeriod", + "oracle": "Get-MgReportSharePointSiteUsageSiteCount" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptance" + "replacementNoun": "ReportSharePointSiteUsageSiteCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/termsofuse/agreements/{}", + "method": "GET", + "uri": "/reports/getsharepointsiteusagestorage(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceTermOfUseAgreement", - "oracle": "Update-MgIdentityGovernanceTermsOfUseAgreement" + "ourCommand": "Get-MgReportGetSharePointSiteUsageStorageWithPeriod", + "oracle": "Get-MgReportSharePointSiteUsageStorage" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreement" + "replacementNoun": "ReportSharePointSiteUsageStorage" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/termsofuse/agreements/{}/file", + "method": "GET", + "uri": "/reports/getskypeforbusinessactivitycounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceTermOfUseAgreementFile", - "oracle": "Update-MgIdentityGovernanceTermsOfUseAgreementFile" + "ourCommand": "Get-MgReportGetSkypeForBusinessActivityCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessActivityCount" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFile" + "replacementNoun": "ReportSkypeForBusinessActivityCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}", + "method": "GET", + "uri": "/reports/getskypeforbusinessactivityusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceTermOfUseAgreementFileLocalization", - "oracle": "Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" + "ourCommand": "Get-MgReportGetSkypeForBusinessActivityUserCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessActivityUserCount" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalization" + "replacementNoun": "ReportSkypeForBusinessActivityUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions/{}", + "method": "GET", + "uri": "/reports/getskypeforbusinessactivityuserdetail(date={date})", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion", - "oracle": "Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + "ourCommand": "Get-MgReportGetSkypeForBusinessActivityUserDetailWithDate", + "oracle": "Get-MgReportSkypeForBusinessActivityUserDetail" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + "replacementNoun": "ReportSkypeForBusinessActivityUserDetail" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions/{}", + "method": "GET", + "uri": "/reports/getskypeforbusinessdeviceusagedistributionusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityGovernanceTermOfUseAgreementFileVersion", - "oracle": "Update-MgIdentityGovernanceTermsOfUseAgreementFileVersion" + "ourCommand": "Get-MgReportGetSkypeForBusinessDeviceUsageDistributionUserCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessDeviceUsageDistributionUserCount" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersion" + "replacementNoun": "ReportSkypeForBusinessDeviceUsageDistributionUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identityprotection/riskdetections/{}", + "method": "GET", + "uri": "/reports/getskypeforbusinessdeviceusageusercounts(period='{period}')", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityProtectionRiskDetection", - "oracle": "Update-MgRiskDetection" + "ourCommand": "Get-MgReportGetSkypeForBusinessDeviceUsageUserCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessDeviceUsageUserCount" }, - "replacementNoun": "RiskDetection" + "replacementNoun": "ReportSkypeForBusinessDeviceUsageUserCount" }, { "apiVersion": "v1.0", - "method": "PATCH", + "method": "GET", + "uri": "/reports/getskypeforbusinessdeviceusageuserdetail(date={date})", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetSkypeForBusinessDeviceUsageUserDetailWithDate", + "oracle": "Get-MgReportSkypeForBusinessDeviceUsageUserDetail" + }, + "replacementNoun": "ReportSkypeForBusinessDeviceUsageUserDetail" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getskypeforbusinessorganizeractivitycounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetSkypeForBusinessOrganizerActivityCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessOrganizerActivityCount" + }, + "replacementNoun": "ReportSkypeForBusinessOrganizerActivityCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getskypeforbusinessorganizeractivityminutecounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetSkypeForBusinessOrganizerActivityMinuteCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessOrganizerActivityMinuteCount" + }, + "replacementNoun": "ReportSkypeForBusinessOrganizerActivityMinuteCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getskypeforbusinessorganizeractivityusercounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetSkypeForBusinessOrganizerActivityUserCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessOrganizerActivityUserCount" + }, + "replacementNoun": "ReportSkypeForBusinessOrganizerActivityUserCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getskypeforbusinessparticipantactivitycounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetSkypeForBusinessParticipantActivityCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessParticipantActivityCount" + }, + "replacementNoun": "ReportSkypeForBusinessParticipantActivityCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getskypeforbusinessparticipantactivityminutecounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetSkypeForBusinessParticipantActivityMinuteCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessParticipantActivityMinuteCount" + }, + "replacementNoun": "ReportSkypeForBusinessParticipantActivityMinuteCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getskypeforbusinessparticipantactivityusercounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetSkypeForBusinessParticipantActivityUserCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessParticipantActivityUserCount" + }, + "replacementNoun": "ReportSkypeForBusinessParticipantActivityUserCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getskypeforbusinesspeertopeeractivitycounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetSkypeForBusinessPeerToPeerActivityCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessPeerToPeerActivityCount" + }, + "replacementNoun": "ReportSkypeForBusinessPeerToPeerActivityCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getskypeforbusinesspeertopeeractivityminutecounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetSkypeForBusinessPeerToPeerActivityMinuteCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessPeerToPeerActivityMinuteCount" + }, + "replacementNoun": "ReportSkypeForBusinessPeerToPeerActivityMinuteCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getskypeforbusinesspeertopeeractivityusercounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetSkypeForBusinessPeerToPeerActivityUserCountsWithPeriod", + "oracle": "Get-MgReportSkypeForBusinessPeerToPeerActivityUserCount" + }, + "replacementNoun": "ReportSkypeForBusinessPeerToPeerActivityUserCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsdeviceusagedistributionusercounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsDeviceUsageDistributionUserCountsWithPeriod", + "oracle": "Get-MgReportTeamDeviceUsageDistributionUserCount" + }, + "replacementNoun": "ReportTeamDeviceUsageDistributionUserCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsdeviceusageusercounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsDeviceUsageUserCountsWithPeriod", + "oracle": "Get-MgReportTeamDeviceUsageUserCount" + }, + "replacementNoun": "ReportTeamDeviceUsageUserCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsdeviceusageuserdetail(date={date})", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsDeviceUsageUserDetailWithDate", + "oracle": "Get-MgReportTeamDeviceUsageUserDetail" + }, + "replacementNoun": "ReportTeamDeviceUsageUserDetail" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsteamactivitycounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsTeamActivityCountsWithPeriod", + "oracle": "Get-MgReportTeamActivityCount" + }, + "replacementNoun": "ReportTeamActivityCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsteamactivitydetail(date={date})", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsTeamActivityDetailWithDate", + "oracle": "Get-MgReportTeamActivityDetail" + }, + "replacementNoun": "ReportTeamActivityDetail" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsteamactivitydistributioncounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsTeamActivityDistributionCountsWithPeriod", + "oracle": "Get-MgReportTeamActivityDistributionCount" + }, + "replacementNoun": "ReportTeamActivityDistributionCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsteamcounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsTeamCountsWithPeriod", + "oracle": "Get-MgReportTeamCount" + }, + "replacementNoun": "ReportTeamCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsuseractivitycounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsUserActivityCountsWithPeriod", + "oracle": "Get-MgReportTeamUserActivityCount" + }, + "replacementNoun": "ReportTeamUserActivityCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsuseractivityusercounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsUserActivityUserCountsWithPeriod", + "oracle": "Get-MgReportTeamUserActivityUserCount" + }, + "replacementNoun": "ReportTeamUserActivityUserCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsuseractivityuserdetail(date={date})", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsUserActivityUserDetailWithDate", + "oracle": "Get-MgReportTeamUserActivityUserDetail" + }, + "replacementNoun": "ReportTeamUserActivityUserDetail" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getuserarchivedprintjobs(userid='{userid}',startdatetime={startdatetime},enddatetime={enddatetime})", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTime", + "oracle": "Get-MgReportUserArchivedPrintJob" + }, + "replacementNoun": "ReportUserArchivedPrintJob" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getyammeractivitycounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetYammerActivityCountsWithPeriod", + "oracle": "Get-MgReportYammerActivityCount" + }, + "replacementNoun": "ReportYammerActivityCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getyammeractivityusercounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetYammerActivityUserCountsWithPeriod", + "oracle": "Get-MgReportYammerActivityUserCount" + }, + "replacementNoun": "ReportYammerActivityUserCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getyammeractivityuserdetail(date={date})", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetYammerActivityUserDetailWithDate", + "oracle": "Get-MgReportYammerActivityUserDetail" + }, + "replacementNoun": "ReportYammerActivityUserDetail" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getyammerdeviceusagedistributionusercounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetYammerDeviceUsageDistributionUserCountsWithPeriod", + "oracle": "Get-MgReportYammerDeviceUsageDistributionUserCount" + }, + "replacementNoun": "ReportYammerDeviceUsageDistributionUserCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getyammerdeviceusageusercounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetYammerDeviceUsageUserCountsWithPeriod", + "oracle": "Get-MgReportYammerDeviceUsageUserCount" + }, + "replacementNoun": "ReportYammerDeviceUsageUserCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getyammerdeviceusageuserdetail(date={date})", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetYammerDeviceUsageUserDetailWithDate", + "oracle": "Get-MgReportYammerDeviceUsageUserDetail" + }, + "replacementNoun": "ReportYammerDeviceUsageUserDetail" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getyammergroupsactivitycounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetYammerGroupsActivityCountsWithPeriod", + "oracle": "Get-MgReportYammerGroupActivityCount" + }, + "replacementNoun": "ReportYammerGroupActivityCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getyammergroupsactivitydetail(date={date})", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetYammerGroupsActivityDetailWithDate", + "oracle": "Get-MgReportYammerGroupActivityDetail" + }, + "replacementNoun": "ReportYammerGroupActivityDetail" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getyammergroupsactivitygroupcounts(period='{period}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetYammerGroupsActivityGroupCountsWithPeriod", + "oracle": "Get-MgReportYammerGroupActivityGroupCount" + }, + "replacementNoun": "ReportYammerGroupActivityGroupCount" + }, + { + "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": "/rolemanagement/directory/roleassignmentscheduleinstances/filterbycurrentuser(on='{on}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleInstanceByCurrentUser" + }, + "replacementNoun": "FilterRoleManagementDirectoryRoleAssignmentScheduleInstanceByCurrentUser", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/rolemanagement/directory/roleassignmentschedulerequests/filterbycurrentuser(on='{on}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleRequestByCurrentUser" + }, + "replacementNoun": "FilterRoleManagementDirectoryRoleAssignmentScheduleRequestByCurrentUser", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/rolemanagement/directory/roleassignmentschedules/filterbycurrentuser(on='{on}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleByCurrentUser" + }, + "replacementNoun": "FilterRoleManagementDirectoryRoleAssignmentScheduleByCurrentUser", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/rolemanagement/directory/roleeligibilityscheduleinstances/filterbycurrentuser(on='{on}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleInstanceByCurrentUser" + }, + "replacementNoun": "FilterRoleManagementDirectoryRoleEligibilityScheduleInstanceByCurrentUser", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/rolemanagement/directory/roleeligibilityschedulerequests/filterbycurrentuser(on='{on}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleRequestByCurrentUser" + }, + "replacementNoun": "FilterRoleManagementDirectoryRoleEligibilityScheduleRequestByCurrentUser", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/rolemanagement/directory/roleeligibilityschedules/filterbycurrentuser(on='{on}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleByCurrentUser" + }, + "replacementNoun": "FilterRoleManagementDirectoryRoleEligibilityScheduleByCurrentUser", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/filterbycurrentuser(on='{on}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceByCurrentUser" + }, + "replacementNoun": "FilterRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceByCurrentUser", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/filterbycurrentuser(on='{on}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleRequestByCurrentUser" + }, + "replacementNoun": "FilterRoleManagementEntitlementManagementRoleAssignmentScheduleRequestByCurrentUser", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/rolemanagement/entitlementmanagement/roleassignmentschedules/filterbycurrentuser(on='{on}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleByCurrentUser" + }, + "replacementNoun": "FilterRoleManagementEntitlementManagementRoleAssignmentScheduleByCurrentUser", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/filterbycurrentuser(on='{on}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceByCurrentUser" + }, + "replacementNoun": "FilterRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceByCurrentUser", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/filterbycurrentuser(on='{on}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleRequestByCurrentUser" + }, + "replacementNoun": "FilterRoleManagementEntitlementManagementRoleEligibilityScheduleRequestByCurrentUser", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/rolemanagement/entitlementmanagement/roleeligibilityschedules/filterbycurrentuser(on='{on}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleFilterByCurrentUserWithOn", + "oracle": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleByCurrentUser" + }, + "replacementNoun": "FilterRoleManagementEntitlementManagementRoleEligibilityScheduleByCurrentUser", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security/alerts_v2/{}/comments/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSecurityAlertV2CommentCount", + "oracle": "Invoke-MgCommentSecurityAlert" + }, + "replacementNoun": "CommentSecurityAlert", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security/cases/ediscoverycases/{}/tags/ashierarchy", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSecurityCaseEdiscoveryCaseTagAsHierarchy", + "oracle": "Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy" + }, + "replacementNoun": "AsSecurityCaseEdiscoveryCaseTagHierarchy", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security/datasecurityandgovernance/sensitivitylabels/{}/sublabels/computeinheritance(labelids={labelids},locale='{locale}',contentformats={contentformats})", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelComputeInheritanceWithLabelIdsWithLocaleWithContentFormats", + "oracle": "Invoke-MgComputeSecurityDataSecurityAndGovernanceSensitivityLabelSublabelInheritance" + }, + "replacementNoun": "ComputeSecurityDataSecurityAndGovernanceSensitivityLabelSublabelInheritance", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security/datasecurityandgovernance/sensitivitylabels/computeinheritance(labelids={labelids},locale='{locale}',contentformats={contentformats})", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelComputeInheritanceWithLabelIdsWithLocaleWithContentFormats", + "oracle": "Invoke-MgComputeSecurityDataSecurityAndGovernanceSensitivityLabelInheritance" + }, + "replacementNoun": "ComputeSecurityDataSecurityAndGovernanceSensitivityLabelInheritance", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security/identities/sensors/getdeploymentaccesskey", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSecurityIdentitySensorGetDeploymentAccessKey", + "oracle": "Get-MgSecurityIdentitySensorDeploymentAccessKey" + }, + "replacementNoun": "SecurityIdentitySensorDeploymentAccessKey" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security/identities/sensors/getdeploymentpackageuri", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSecurityIdentitySensorGetDeploymentPackageUri", + "oracle": "Get-MgSecurityIdentitySensorDeploymentPackageUri" + }, + "replacementNoun": "SecurityIdentitySensorDeploymentPackageUri" + }, + { + "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/{}/getapplicablecontenttypesforlist(listid='{listid}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteGetApplicableContentTypesForListWithListId", + "oracle": "Get-MgSiteApplicableContentTypeForList" + }, + "replacementNoun": "SiteApplicableContentTypeForList" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/getbypath(path='{path}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteGetByPathWithPath", + "oracle": "Get-MgSiteByPath" + }, + "replacementNoun": "SiteByPath" + }, + { + "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/notebooks/getrecentnotebooks(includepersonalnotebooks={includepersonalnotebooks})", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks", + "oracle": "Get-MgSiteOnenoteNotebookRecentNotebook" + }, + "replacementNoun": "SiteOnenoteNotebookRecentNotebook" + }, + { + "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": "/solutions/virtualevents/townhalls/getbyuseridandrole(userid='{userid}',role='{role}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgVirtualEventTownhallGetByUserIdAndRoleWithUserIdWithRole", + "oracle": "Get-MgVirtualEventTownhallByUserIdAndRole" + }, + "replacementNoun": "VirtualEventTownhallByUserIdAndRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/solutions/virtualevents/townhalls/getbyuserrole(role='{role}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgVirtualEventTownhallGetByUserRoleWithRole", + "oracle": "Get-MgVirtualEventTownhallByUserRole" + }, + "replacementNoun": "VirtualEventTownhallByUserRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/solutions/virtualevents/webinars/getbyuseridandrole(userid='{userid}',role='{role}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgVirtualEventWebinarGetByUserIdAndRoleWithUserIdWithRole", + "oracle": "Get-MgVirtualEventWebinarByUserIdAndRole" + }, + "replacementNoun": "VirtualEventWebinarByUserIdAndRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/solutions/virtualevents/webinars/getbyuserrole(role='{role}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgVirtualEventWebinarGetByUserRoleWithRole", + "oracle": "Get-MgVirtualEventWebinarByUserRole" + }, + "replacementNoun": "VirtualEventWebinarByUserRole" + }, + { + "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": "/tenantrelationships/findtenantinformationbydomainname(domainname='{domainname}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTenantRelationshipFindTenantInformationByDomainNameWithDomainName", + "oracle": "Find-MgTenantRelationshipTenantInformationByDomainName" + }, + "replacementNoun": "TenantRelationshipTenantInformationByDomainName", + "replacementVerb": "Find" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/tenantrelationships/findtenantinformationbytenantid(tenantid='{tenantid}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTenantRelationshipFindTenantInformationByTenantIdWithTenantId", + "oracle": "Find-MgTenantRelationshipTenantInformationByTenantId" + }, + "replacementNoun": "TenantRelationshipTenantInformationByTenantId", + "replacementVerb": "Find" + }, + { + "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/{}/calendar/allowedcalendarsharingroles(user='{user}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserCalendarAllowedCalendarSharingRolesWithUser", + "oracle": "Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles" + }, + "replacementNoun": "CalendarUserCalendarAllowedCalendarSharingRoles", + "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/notebooks/getrecentnotebooks(includepersonalnotebooks={includepersonalnotebooks})", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks", + "oracle": "Get-MgUserOnenoteNotebookRecentNotebook" + }, + "replacementNoun": "UserOnenoteNotebookRecentNotebook" + }, + { + "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/{}/reminderview(startdatetime='{startdatetime}',enddatetime='{enddatetime}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserReminderViewWithStartDateTimeWithEndDateTime", + "oracle": "Invoke-MgViewUserReminder" + }, + "replacementNoun": "ViewUserReminder", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/settings/workhoursandlocations/occurrencesview(startdatetime='{startdatetime}',enddatetime='{enddatetime}')", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserSettingWorkHourAndLocationOccurrencesViewWithStartDateTimeWithEndDateTime", + "oracle": "Invoke-MgViewUserSettingWorkHourAndLocationOccurrence" + }, + "replacementNoun": "ViewUserSettingWorkHourAndLocationOccurrence", + "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/{}/content", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskAttachmentSessionContent", + "oracle": "Get-MgUserTodoTaskAttachmentSessionContent" + }, + "replacementNoun": "UserTodoTaskAttachmentSessionContent" + }, + { + "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": "/deviceappmanagement/mobileapps/{}/ioslobapp/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsIosLobAppAssignment", + "oracle": "Update-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppAssignment" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion", + "oracle": "Update-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersion" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/containedapps/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp", + "oracle": "Update-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/files/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile", + "oracle": "Update-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/iosstoreapp/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment", + "oracle": "Update-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsIoStoreAppAssignment" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/iosvppapp/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsIosVppAppAssignment", + "oracle": "Update-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsIoVppAppAssignment" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment", + "oracle": "Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppAssignment" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion", + "oracle": "Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/containedapps/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp", + "oracle": "Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/files/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile", + "oracle": "Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment", + "oracle": "Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion", + "oracle": "Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/containedapps/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp", + "oracle": "Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/files/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile", + "oracle": "Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" + }, + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" + }, + { + "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/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/conditions/applications/includeapplications/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication", + "oracle": "Update-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" + }, + "replacementNoun": "IdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" + }, + { + "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" + "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": "/places/{}/building/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPlaceAsBuildingCheckIn", + "oracle": "Update-MgPlaceAsBuildingCheck" + }, + "replacementNoun": "PlaceAsBuildingCheck" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/places/{}/desk/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPlaceAsDeskCheckIn", + "oracle": "Update-MgPlaceAsDeskCheck" + }, + "replacementNoun": "PlaceAsDeskCheck" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/places/{}/floor/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPlaceAsFloorCheckIn", + "oracle": "Update-MgPlaceAsFloorCheck" + }, + "replacementNoun": "PlaceAsFloorCheck" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/places/{}/room/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPlaceAsRoomCheckIn", + "oracle": "Update-MgPlaceAsRoomCheck" + }, + "replacementNoun": "PlaceAsRoomCheck" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/places/{}/roomlist/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPlaceAsRoomListCheckIn", + "oracle": "Update-MgPlaceAsRoomListCheck" + }, + "replacementNoun": "PlaceAsRoomListCheck" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/places/{}/roomlist/rooms/{}/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPlaceAsRoomListRoomCheckIn", + "oracle": "Update-MgPlaceAsRoomListRoomCheck" + }, + "replacementNoun": "PlaceAsRoomListRoomCheck" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/places/{}/roomlist/workspaces/{}/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPlaceAsRoomListWorkspaceCheckIn", + "oracle": "Update-MgPlaceAsRoomListWorkspaceCheck" + }, + "replacementNoun": "PlaceAsRoomListWorkspaceCheck" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/places/{}/section/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPlaceAsSectionCheckIn", + "oracle": "Update-MgPlaceAsSectionCheck" + }, + "replacementNoun": "PlaceAsSectionCheck" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/places/{}/workspace/checkins/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPlaceAsWorkspaceCheckIn", + "oracle": "Update-MgPlaceAsWorkspaceCheck" + }, + "replacementNoun": "PlaceAsWorkspaceCheck" + }, + { + "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": "RiskyServicePrincipal" + "replacementNoun": "RedirectCommunicationCall" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identityprotection/riskyserviceprincipals/{}/history/{}", + "method": "POST", + "uri": "/communications/calls/{}/reject", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityProtectionRiskyServicePrincipalHistory", - "oracle": "Update-MgRiskyServicePrincipalHistory" + "ourCommand": "Invoke-MgCommunicationCallReject", + "oracle": "Invoke-MgRejectCommunicationCall" }, - "replacementNoun": "RiskyServicePrincipalHistory" + "replacementNoun": "RejectCommunicationCall" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identityprotection/riskyusers/{}", + "method": "POST", + "uri": "/communications/calls/{}/senddtmftones", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityProtectionRiskyUser", - "oracle": "Update-MgRiskyUser" + "ourCommand": "Invoke-MgCommunicationCallSendDtmfTones", + "oracle": "Send-MgCommunicationCallDtmfTone" }, - "replacementNoun": "RiskyUser" + "replacementNoun": "CommunicationCallDtmfTone", + "replacementVerb": "Send" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identityprotection/riskyusers/{}/history/{}", + "method": "POST", + "uri": "/communications/calls/{}/subscribetotone", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityProtectionRiskyUserHistory", - "oracle": "Update-MgRiskyUserHistory" + "ourCommand": "Invoke-MgCommunicationCallSubscribeToTone", + "oracle": "Invoke-MgSubscribeCommunicationCallToTone" }, - "replacementNoun": "RiskyUserHistory" + "replacementNoun": "SubscribeCommunicationCallToTone" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/identityprotection/serviceprincipalriskdetections/{}", + "method": "POST", + "uri": "/communications/calls/{}/transfer", "action": "rename", "evidence": { - "ourCommand": "Update-MgIdentityProtectionServicePrincipalRiskDetection", - "oracle": "Update-MgServicePrincipalRiskDetection" + "ourCommand": "Invoke-MgCommunicationCallTransfer", + "oracle": "Move-MgCommunicationCall" }, - "replacementNoun": "ServicePrincipalRiskDetection" + "replacementNoun": "CommunicationCall", + "replacementVerb": "Move" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/print/printers/{}", + "method": "POST", + "uri": "/communications/calls/{}/unmute", "action": "rename", "evidence": { - "ourCommand": "Update-MgPrinter", - "oracle": "Update-MgPrintPrinter" + "ourCommand": "Invoke-MgCommunicationCallUnmute", + "oracle": "Invoke-MgUnmuteCommunicationCall" }, - "replacementNoun": "PrintPrinter" + "replacementNoun": "UnmuteCommunicationCall" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/print/printers/{}/jobs/{}", + "method": "POST", + "uri": "/communications/calls/{}/updaterecordingstatus", "action": "rename", "evidence": { - "ourCommand": "Update-MgPrinterJob", - "oracle": "Update-MgPrintPrinterJob" + "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": "PrintPrinterJob" + "replacementNoun": "ContactMemberObject", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/print/printers/{}/jobs/{}/documents/{}", + "method": "POST", + "uri": "/contacts/{}/getmembergroups", "action": "rename", "evidence": { - "ourCommand": "Update-MgPrinterJobDocument", - "oracle": "Update-MgPrintPrinterJobDocument" + "ourCommand": "Invoke-MgContactGetMemberGroups", + "oracle": "Get-MgContactMemberGroup" }, - "replacementNoun": "PrintPrinterJobDocument" + "replacementNoun": "ContactMemberGroup", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/print/printers/{}/jobs/{}/tasks/{}", + "method": "POST", + "uri": "/contacts/{}/getmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Update-MgPrinterJobTask", - "oracle": "Update-MgPrintPrinterJobTask" + "ourCommand": "Invoke-MgContactGetMemberObjects", + "oracle": "Get-MgContactMemberObject" }, - "replacementNoun": "PrintPrinterJobTask" + "replacementNoun": "ContactMemberObject", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/print/printers/{}/tasktriggers/{}", + "method": "POST", + "uri": "/contacts/{}/retryserviceprovisioning", "action": "rename", "evidence": { - "ourCommand": "Update-MgPrinterTaskTrigger", - "oracle": "Update-MgPrintPrinterTaskTrigger" + "ourCommand": "Invoke-MgContactRetryServiceProvisioning", + "oracle": "Invoke-MgRetryContactServiceProvisioning" }, - "replacementNoun": "PrintPrinterTaskTrigger" + "replacementNoun": "RetryContactServiceProvisioning" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/teams/{}/channels/{}/allmembers/{}", + "method": "POST", + "uri": "/contacts/getbyids", "action": "rename", "evidence": { - "ourCommand": "Update-MgTeamChannelAllMember", - "oracle": "Update-MgTeamChannelMember" + "ourCommand": "Invoke-MgContactGetByIds", + "oracle": "Get-MgContactById" }, - "replacementNoun": "TeamChannelMember" + "replacementNoun": "ContactById", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/teams/{}/primarychannel/allmembers/{}", + "method": "POST", + "uri": "/contacts/validateproperties", "action": "rename", "evidence": { - "ourCommand": "Update-MgTeamPrimaryChannelAllMember", - "oracle": "Update-MgTeamPrimaryChannelMember" + "ourCommand": "Invoke-MgContactValidateProperties", + "oracle": "Test-MgContactProperty" }, - "replacementNoun": "TeamPrimaryChannelMember" + "replacementNoun": "ContactProperty", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/teamwork/deletedteams/{}/channels/{}/allmembers/{}", + "method": "POST", + "uri": "/contracts/{}/checkmembergroups", "action": "rename", "evidence": { - "ourCommand": "Update-MgTeamworkDeletedTeamChannelAllMember", - "oracle": "Update-MgTeamworkDeletedTeamChannelMember" + "ourCommand": "Invoke-MgContractCheckMemberGroups", + "oracle": "Confirm-MgContractMemberGroup" }, - "replacementNoun": "TeamworkDeletedTeamChannelMember" + "replacementNoun": "ContractMemberGroup", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", - "method": "PATCH", - "uri": "/users/{}/manageddevices/{}/logcollectionrequests/{}", + "method": "POST", + "uri": "/contracts/{}/checkmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Update-MgUserManagedDeviceLogCollectionRequest", - "oracle": "Update-MgUserManagedDeviceLogCollectionResponse" + "ourCommand": "Invoke-MgContractCheckMemberObjects", + "oracle": "Confirm-MgContractMemberObject" }, - "replacementNoun": "UserManagedDeviceLogCollectionResponse" + "replacementNoun": "ContractMemberObject", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/admin/edge/internetexplorermode/sitelists/{}/publish", + "uri": "/contracts/{}/getmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgAdminEdgeInternetExplorerModeSiteListPublish", - "oracle": "Publish-MgAdminEdgeInternetExplorerModeSiteList" + "ourCommand": "Invoke-MgContractGetMemberGroups", + "oracle": "Get-MgContractMemberGroup" }, - "replacementNoun": "AdminEdgeInternetExplorerModeSiteList", - "replacementVerb": "Publish" + "replacementNoun": "ContractMemberGroup", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/admin/serviceannouncement/messages/archive", + "uri": "/contracts/{}/getmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgAdminServiceAnnouncementMessageArchive", - "oracle": "Invoke-MgArchiveServiceAnnouncementMessage" + "ourCommand": "Invoke-MgContractGetMemberObjects", + "oracle": "Get-MgContractMemberObject" }, - "replacementNoun": "ArchiveServiceAnnouncementMessage" + "replacementNoun": "ContractMemberObject", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/admin/serviceannouncement/messages/favorite", + "uri": "/contracts/getbyids", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgAdminServiceAnnouncementMessageFavorite", - "oracle": "Invoke-MgFavoriteServiceAnnouncementMessage" + "ourCommand": "Invoke-MgContractGetByIds", + "oracle": "Get-MgContractById" }, - "replacementNoun": "FavoriteServiceAnnouncementMessage" + "replacementNoun": "ContractById", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/admin/serviceannouncement/messages/markread", + "uri": "/contracts/validateproperties", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgAdminServiceAnnouncementMessageMarkRead", - "oracle": "Invoke-MgMarkServiceAnnouncementMessageRead" + "ourCommand": "Invoke-MgContractValidateProperties", + "oracle": "Test-MgContractProperty" }, - "replacementNoun": "MarkServiceAnnouncementMessageRead" + "replacementNoun": "ContractProperty", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/admin/serviceannouncement/messages/markunread", + "uri": "/deviceappmanagement/iosmanagedappprotections", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgAdminServiceAnnouncementMessageMarkUnread", - "oracle": "Invoke-MgMarkServiceAnnouncementMessageUnread" + "ourCommand": "New-MgDeviceAppManagementIosManagedAppProtection", + "oracle": "New-MgDeviceAppManagementiOSManagedAppProtection" }, - "replacementNoun": "MarkServiceAnnouncementMessageUnread" + "replacementNoun": "DeviceAppManagementiOSManagedAppProtection" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/admin/serviceannouncement/messages/unarchive", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/apps", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgAdminServiceAnnouncementMessageUnarchive", - "oracle": "Invoke-MgUnarchiveServiceAnnouncementMessage" + "ourCommand": "New-MgDeviceAppManagementIosManagedAppProtectionApp", + "oracle": "New-MgDeviceAppManagementiOSManagedAppProtectionApp" }, - "replacementNoun": "UnarchiveServiceAnnouncementMessage" + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionApp" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/admin/serviceannouncement/messages/unfavorite", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/assignments", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgAdminServiceAnnouncementMessageUnfavorite", - "oracle": "Invoke-MgUnfavoriteServiceAnnouncementMessage" + "ourCommand": "New-MgDeviceAppManagementIosManagedAppProtectionAssignment", + "oracle": "New-MgDeviceAppManagementiOSManagedAppProtectionAssignment" }, - "replacementNoun": "UnfavoriteServiceAnnouncementMessage" + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionAssignment" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/addkey", + "uri": "/deviceappmanagement/managedapppolicies/{}/targetapps", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationAddKey", - "oracle": "Add-MgApplicationKey" + "ourCommand": "Invoke-MgDeviceAppManagementManagedAppPolicyTargetApps", + "oracle": "Invoke-MgTargetDeviceAppManagementManagedAppPolicyApp" }, - "replacementNoun": "ApplicationKey", - "replacementVerb": "Add" + "replacementNoun": "TargetDeviceAppManagementManagedAppPolicyApp" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/addpassword", + "uri": "/deviceappmanagement/managedappregistrations/{}/appliedpolicies/{}/targetapps", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationAddPassword", - "oracle": "Add-MgApplicationPassword" + "ourCommand": "Invoke-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyTargetApps", + "oracle": "Invoke-MgTargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp" }, - "replacementNoun": "ApplicationPassword", - "replacementVerb": "Add" + "replacementNoun": "TargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/checkmembergroups", + "uri": "/deviceappmanagement/managedappregistrations/{}/intendedpolicies/{}/targetapps", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationCheckMemberGroups", - "oracle": "Confirm-MgApplicationMemberGroup" + "ourCommand": "Invoke-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyTargetApps", + "oracle": "Invoke-MgTargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp" }, - "replacementNoun": "ApplicationMemberGroup", - "replacementVerb": "Confirm" + "replacementNoun": "TargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/checkmemberobjects", + "uri": "/deviceappmanagement/managedebooks/{}/assign", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationCheckMemberObjects", - "oracle": "Confirm-MgApplicationMemberObject" + "ourCommand": "Invoke-MgDeviceAppManagementManagedEBookAssign", + "oracle": "Set-MgDeviceAppManagementManagedEBook" }, - "replacementNoun": "ApplicationMemberObject", - "replacementVerb": "Confirm" + "replacementNoun": "DeviceAppManagementManagedEBook", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/getmembergroups", + "uri": "/deviceappmanagement/mobileappconfigurations/{}/assign", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationGetMemberGroups", - "oracle": "Get-MgApplicationMemberGroup" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppConfigurationAssign", + "oracle": "Set-MgDeviceAppManagementMobileAppConfiguration" }, - "replacementNoun": "ApplicationMemberGroup", - "replacementVerb": "Get" + "replacementNoun": "DeviceAppManagementMobileAppConfiguration", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/getmemberobjects", + "uri": "/deviceappmanagement/mobileapps/{}/androidlobapp/contentversions/{}/files/{}/commit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationGetMemberObjects", - "oracle": "Get-MgApplicationMemberObject" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCommit", + "oracle": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFile" }, - "replacementNoun": "ApplicationMemberObject", - "replacementVerb": "Get" + "replacementNoun": "CommitDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/removekey", + "uri": "/deviceappmanagement/mobileapps/{}/androidlobapp/contentversions/{}/files/{}/renewupload", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationRemoveKey", - "oracle": "Remove-MgApplicationKey" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileRenewUpload", + "oracle": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFileUpload" }, - "replacementNoun": "ApplicationKey", - "replacementVerb": "Remove" + "replacementNoun": "RenewDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFileUpload" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/removepassword", + "uri": "/deviceappmanagement/mobileapps/{}/assign", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationRemovePassword", - "oracle": "Remove-MgApplicationPassword" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAssign", + "oracle": "Set-MgDeviceAppManagementMobileApp" }, - "replacementNoun": "ApplicationPassword", - "replacementVerb": "Remove" + "replacementNoun": "DeviceAppManagementMobileApp", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/setverifiedpublisher", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/assignments", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationSetVerifiedPublisher", - "oracle": "Set-MgApplicationVerifiedPublisher" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsIosLobAppAssignment", + "oracle": "New-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" }, - "replacementNoun": "ApplicationVerifiedPublisher", - "replacementVerb": "Set" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppAssignment" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/synchronization/acquireaccesstoken", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationSynchronizationAcquireAccessToken", - "oracle": "Get-MgApplicationSynchronizationAccessToken" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion", + "oracle": "New-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" }, - "replacementNoun": "ApplicationSynchronizationAccessToken", - "replacementVerb": "Get" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersion" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/synchronization/jobs/{}/pause", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/containedapps", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationSynchronizationJobPause", - "oracle": "Suspend-MgApplicationSynchronizationJob" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp", + "oracle": "New-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" }, - "replacementNoun": "ApplicationSynchronizationJob", - "replacementVerb": "Suspend" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/synchronization/jobs/{}/provisionondemand", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/files", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationSynchronizationJobProvisionOnDemand", - "oracle": "New-MgApplicationSynchronizationJobOnDemand" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile", + "oracle": "New-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" }, - "replacementNoun": "ApplicationSynchronizationJobOnDemand", - "replacementVerb": "New" + "replacementNoun": "DeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/synchronization/jobs/{}/restart", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/files/{}/commit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationSynchronizationJobRestart", - "oracle": "Restart-MgApplicationSynchronizationJob" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileCommit", + "oracle": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFile" }, - "replacementNoun": "ApplicationSynchronizationJob", - "replacementVerb": "Restart" + "replacementNoun": "CommitDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/synchronization/jobs/{}/schema/directories/{}/discover", + "uri": "/deviceappmanagement/mobileapps/{}/ioslobapp/contentversions/{}/files/{}/renewupload", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationSynchronizationJobSchemaDirectoryDiscover", - "oracle": "Find-MgApplicationSynchronizationJobSchemaDirectory" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileRenewUpload", + "oracle": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFileUpload" }, - "replacementNoun": "ApplicationSynchronizationJobSchemaDirectory", - "replacementVerb": "Find" + "replacementNoun": "RenewDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFileUpload" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/synchronization/jobs/{}/schema/parseexpression", + "uri": "/deviceappmanagement/mobileapps/{}/iosstoreapp/assignments", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationSynchronizationJobSchemaParseExpression", - "oracle": "Invoke-MgParseApplicationSynchronizationJobSchemaExpression" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment", + "oracle": "New-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" }, - "replacementNoun": "ParseApplicationSynchronizationJobSchemaExpression" + "replacementNoun": "DeviceAppManagementMobileAppAsIoStoreAppAssignment" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/synchronization/jobs/{}/start", + "uri": "/deviceappmanagement/mobileapps/{}/iosvppapp/assignments", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationSynchronizationJobStart", - "oracle": "Start-MgApplicationSynchronizationJob" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsIosVppAppAssignment", + "oracle": "New-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" }, - "replacementNoun": "ApplicationSynchronizationJob", - "replacementVerb": "Start" + "replacementNoun": "DeviceAppManagementMobileAppAsIoVppAppAssignment" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/synchronization/jobs/{}/validatecredentials", + "uri": "/deviceappmanagement/mobileapps/{}/macosdmgapp/contentversions/{}/files/{}/commit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationSynchronizationJobValidateCredentials", - "oracle": "Test-MgApplicationSynchronizationJobCredential" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCommit", + "oracle": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFile" }, - "replacementNoun": "ApplicationSynchronizationJobCredential", - "replacementVerb": "Test" + "replacementNoun": "CommitDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/synchronization/templates/{}/schema/directories/{}/discover", + "uri": "/deviceappmanagement/mobileapps/{}/macosdmgapp/contentversions/{}/files/{}/renewupload", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationSynchronizationTemplateSchemaDirectoryDiscover", - "oracle": "Find-MgApplicationSynchronizationTemplateSchemaDirectory" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileRenewUpload", + "oracle": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFileUpload" }, - "replacementNoun": "ApplicationSynchronizationTemplateSchemaDirectory", - "replacementVerb": "Find" + "replacementNoun": "RenewDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFileUpload" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/synchronization/templates/{}/schema/parseexpression", + "uri": "/deviceappmanagement/mobileapps/{}/macoslobapp/contentversions/{}/files/{}/commit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationSynchronizationTemplateSchemaParseExpression", - "oracle": "Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCommit", + "oracle": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFile" }, - "replacementNoun": "ParseApplicationSynchronizationTemplateSchemaExpression" + "replacementNoun": "CommitDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/{}/unsetverifiedpublisher", + "uri": "/deviceappmanagement/mobileapps/{}/macoslobapp/contentversions/{}/files/{}/renewupload", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationUnsetVerifiedPublisher", - "oracle": "Clear-MgApplicationVerifiedPublisher" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileRenewUpload", + "oracle": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFileUpload" }, - "replacementNoun": "ApplicationVerifiedPublisher", - "replacementVerb": "Clear" + "replacementNoun": "RenewDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFileUpload" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/getbyids", + "uri": "/deviceappmanagement/mobileapps/{}/managedandroidlobapp/contentversions/{}/files/{}/commit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationGetByIds", - "oracle": "Get-MgApplicationById" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCommit", + "oracle": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFile" }, - "replacementNoun": "ApplicationById", - "replacementVerb": "Get" + "replacementNoun": "CommitDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applications/validateproperties", + "uri": "/deviceappmanagement/mobileapps/{}/managedandroidlobapp/contentversions/{}/files/{}/renewupload", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationValidateProperties", - "oracle": "Test-MgApplicationProperty" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileRenewUpload", + "oracle": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFileUpload" }, - "replacementNoun": "ApplicationProperty", - "replacementVerb": "Test" + "replacementNoun": "RenewDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFileUpload" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/applicationtemplates/{}/instantiate", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/assignments", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgApplicationTemplateInstantiate", - "oracle": "Invoke-MgInstantiateApplicationTemplate" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment", + "oracle": "New-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" }, - "replacementNoun": "InstantiateApplicationTemplate" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppAssignment" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/auditlogs/signins/confirmcompromised", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgAuditLogSignInConfirmCompromised", - "oracle": "Confirm-MgAuditLogSignInCompromised" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion", + "oracle": "New-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" }, - "replacementNoun": "AuditLogSignInCompromised", - "replacementVerb": "Confirm" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/auditlogs/signins/confirmsafe", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/containedapps", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgAuditLogSignInConfirmSafe", - "oracle": "Confirm-MgAuditLogSignInSafe" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp", + "oracle": "New-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" }, - "replacementNoun": "AuditLogSignInSafe", - "replacementVerb": "Confirm" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/auditlogs/signins/dismiss", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/files", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgAuditLogSignInDismiss", - "oracle": "Invoke-MgDismissAuditLogSignIn" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile", + "oracle": "New-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" }, - "replacementNoun": "DismissAuditLogSignIn" + "replacementNoun": "DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/completemigration", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/files/{}/commit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatCompleteMigration", - "oracle": "Complete-MgChatMigration" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileCommit", + "oracle": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFile" }, - "replacementNoun": "ChatMigration", - "replacementVerb": "Complete" + "replacementNoun": "CommitDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/hideforuser", + "uri": "/deviceappmanagement/mobileapps/{}/managedioslobapp/contentversions/{}/files/{}/renewupload", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatHideForUser", - "oracle": "Hide-MgChatForUser" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileRenewUpload", + "oracle": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFileUpload" }, - "replacementNoun": "ChatForUser", - "replacementVerb": "Hide" + "replacementNoun": "RenewDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFileUpload" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/installedapps/{}/upgrade", + "uri": "/deviceappmanagement/mobileapps/{}/managedmobilelobapp/contentversions/{}/files/{}/commit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatInstalledAppUpgrade", - "oracle": "Update-MgChatInstalledApp" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCommit", + "oracle": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFile" }, - "replacementNoun": "ChatInstalledApp", - "replacementVerb": "Update" + "replacementNoun": "CommitDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/markchatreadforuser", + "uri": "/deviceappmanagement/mobileapps/{}/managedmobilelobapp/contentversions/{}/files/{}/renewupload", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMarkChatReadForUser", - "oracle": "Invoke-MgMarkChatReadForUser" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileRenewUpload", + "oracle": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFileUpload" }, - "replacementNoun": "MarkChatReadForUser" + "replacementNoun": "RenewDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFileUpload" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/markchatunreadforuser", + "uri": "/deviceappmanagement/mobileapps/{}/win32lobapp/contentversions/{}/files/{}/commit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMarkChatUnreadForUser", - "oracle": "Invoke-MgMarkChatUnreadForUser" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCommit", + "oracle": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFile" }, - "replacementNoun": "MarkChatUnreadForUser" + "replacementNoun": "CommitDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/members/add", + "uri": "/deviceappmanagement/mobileapps/{}/win32lobapp/contentversions/{}/files/{}/renewupload", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMemberAdd", - "oracle": "Add-MgChatMember" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileRenewUpload", + "oracle": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFileUpload" }, - "replacementNoun": "ChatMember", - "replacementVerb": "Add" + "replacementNoun": "RenewDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFileUpload" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/messages/{}/replies/{}/setreaction", + "uri": "/deviceappmanagement/mobileapps/{}/windowsappx/contentversions/{}/files/{}/commit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMessageReplySetReaction", - "oracle": "Set-MgChatMessageReplyReaction" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCommit", + "oracle": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFile" }, - "replacementNoun": "ChatMessageReplyReaction", - "replacementVerb": "Set" + "replacementNoun": "CommitDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/messages/{}/replies/{}/softdelete", + "uri": "/deviceappmanagement/mobileapps/{}/windowsappx/contentversions/{}/files/{}/renewupload", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMessageReplySoftDelete", - "oracle": "Invoke-MgSoftChatMessageReplyDelete" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileRenewUpload", + "oracle": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFileUpload" }, - "replacementNoun": "SoftChatMessageReplyDelete" + "replacementNoun": "RenewDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFileUpload" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/messages/{}/replies/{}/undosoftdelete", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/assignments", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMessageReplyUndoSoftDelete", - "oracle": "Undo-MgChatMessageReplySoftDelete" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment", + "oracle": "New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" }, - "replacementNoun": "ChatMessageReplySoftDelete", - "replacementVerb": "Undo" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/messages/{}/replies/{}/unsetreaction", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMessageReplyUnsetReaction", - "oracle": "Clear-MgChatMessageReplyReaction" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion", + "oracle": "New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" }, - "replacementNoun": "ChatMessageReplyReaction", - "replacementVerb": "Clear" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/messages/{}/replies/replywithquote", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/containedapps", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMessageReplyReplyWithQuote", - "oracle": "Invoke-MgGraphChatMessageReply" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp", + "oracle": "New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" }, - "replacementNoun": "GraphChatMessageReply" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/messages/{}/setreaction", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/files", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMessageSetReaction", - "oracle": "Set-MgChatMessageReaction" + "ourCommand": "New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile", + "oracle": "New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" }, - "replacementNoun": "ChatMessageReaction", - "replacementVerb": "Set" + "replacementNoun": "DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/messages/{}/softdelete", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/files/{}/commit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMessageSoftDelete", - "oracle": "Invoke-MgSoftChatMessageDelete" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileCommit", + "oracle": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFile" }, - "replacementNoun": "SoftChatMessageDelete" + "replacementNoun": "CommitDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/messages/{}/undosoftdelete", + "uri": "/deviceappmanagement/mobileapps/{}/windowsmobilemsi/contentversions/{}/files/{}/renewupload", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMessageUndoSoftDelete", - "oracle": "Undo-MgChatMessageSoftDelete" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileRenewUpload", + "oracle": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFileUpload" }, - "replacementNoun": "ChatMessageSoftDelete", - "replacementVerb": "Undo" + "replacementNoun": "RenewDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFileUpload" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/messages/{}/unsetreaction", + "uri": "/deviceappmanagement/mobileapps/{}/windowsuniversalappx/contentversions/{}/files/{}/commit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMessageUnsetReaction", - "oracle": "Clear-MgChatMessageReaction" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCommit", + "oracle": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFile" }, - "replacementNoun": "ChatMessageReaction", - "replacementVerb": "Clear" + "replacementNoun": "CommitDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/messages/replywithquote", + "uri": "/deviceappmanagement/mobileapps/{}/windowsuniversalappx/contentversions/{}/files/{}/renewupload", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatMessageReplyWithQuote", - "oracle": "Invoke-MgGraphChatMessage" + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileRenewUpload", + "oracle": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFileUpload" }, - "replacementNoun": "GraphChatMessage" + "replacementNoun": "RenewDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFileUpload" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/removeallaccessforuser", + "uri": "/deviceappmanagement/syncmicrosoftstoreforbusinessapps", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatRemoveAllAccessForUser", - "oracle": "Remove-MgChatAccessForUser" + "ourCommand": "Invoke-MgDeviceAppManagementSyncMicrosoftStoreForBusinessApps", + "oracle": "Sync-MgDeviceAppManagementMicrosoftStoreForBusinessApp" }, - "replacementNoun": "ChatAccessForUser", - "replacementVerb": "Remove" + "replacementNoun": "DeviceAppManagementMicrosoftStoreForBusinessApp", + "replacementVerb": "Sync" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/sendactivitynotification", + "uri": "/deviceappmanagement/targetedmanagedappconfigurations/{}/assign", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatSendActivityNotification", - "oracle": "Send-MgChatActivityNotification" + "ourCommand": "Invoke-MgDeviceAppManagementTargetedManagedAppConfigurationAssign", + "oracle": "Set-MgDeviceAppManagementTargetedManagedAppConfiguration" }, - "replacementNoun": "ChatActivityNotification", - "replacementVerb": "Send" + "replacementNoun": "DeviceAppManagementTargetedManagedAppConfiguration", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/startmigration", + "uri": "/deviceappmanagement/targetedmanagedappconfigurations/{}/targetapps", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatStartMigration", - "oracle": "Start-MgChatMigration" + "ourCommand": "Invoke-MgDeviceAppManagementTargetedManagedAppConfigurationTargetApps", + "oracle": "Invoke-MgTargetDeviceAppManagementTargetedManagedAppConfigurationApp" }, - "replacementNoun": "ChatMigration", - "replacementVerb": "Start" + "replacementNoun": "TargetDeviceAppManagementTargetedManagedAppConfigurationApp" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/targetedmessages/{}/replies/{}/setreaction", + "uri": "/deviceappmanagement/vpptokens/{}/synclicenses", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatTargetedMessageReplySetReaction", - "oracle": "Set-MgChatTargetedMessageReplyReaction" + "ourCommand": "Invoke-MgDeviceAppManagementVppTokenSyncLicenses", + "oracle": "Sync-MgDeviceAppManagementVppTokenLicense" }, - "replacementNoun": "ChatTargetedMessageReplyReaction", - "replacementVerb": "Set" + "replacementNoun": "DeviceAppManagementVppTokenLicense", + "replacementVerb": "Sync" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/targetedmessages/{}/replies/{}/softdelete", + "uri": "/devicemanagement/devicecompliancepolicies/{}/assign", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatTargetedMessageReplySoftDelete", - "oracle": "Invoke-MgSoftChatTargetedMessageReplyDelete" + "ourCommand": "Invoke-MgDeviceManagementDeviceCompliancePolicyAssign", + "oracle": "Set-MgDeviceManagementDeviceCompliancePolicy" }, - "replacementNoun": "SoftChatTargetedMessageReplyDelete" + "replacementNoun": "DeviceManagementDeviceCompliancePolicy", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/targetedmessages/{}/replies/{}/undosoftdelete", + "uri": "/devicemanagement/devicecompliancepolicies/{}/scheduleactionsforrules", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatTargetedMessageReplyUndoSoftDelete", - "oracle": "Undo-MgChatTargetedMessageReplySoftDelete" + "ourCommand": "Invoke-MgDeviceManagementDeviceCompliancePolicyScheduleActionsForRules", + "oracle": "Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule" }, - "replacementNoun": "ChatTargetedMessageReplySoftDelete", - "replacementVerb": "Undo" + "replacementNoun": "ScheduleDeviceManagementDeviceCompliancePolicyActionForRule" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/targetedmessages/{}/replies/{}/unsetreaction", + "uri": "/devicemanagement/deviceconfigurations/{}/assign", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatTargetedMessageReplyUnsetReaction", - "oracle": "Clear-MgChatTargetedMessageReplyReaction" + "ourCommand": "Invoke-MgDeviceManagementDeviceConfigurationAssign", + "oracle": "Set-MgDeviceManagementDeviceConfiguration" }, - "replacementNoun": "ChatTargetedMessageReplyReaction", - "replacementVerb": "Clear" + "replacementNoun": "DeviceManagementDeviceConfiguration", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/targetedmessages/{}/replies/replywithquote", + "uri": "/devicemanagement/deviceenrollmentconfigurations/{}/assign", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatTargetedMessageReplyReplyWithQuote", - "oracle": "Invoke-MgGraphChatTargetedMessageReply" + "ourCommand": "Invoke-MgDeviceManagementDeviceEnrollmentConfigurationAssign", + "oracle": "Set-MgDeviceManagementDeviceEnrollmentConfiguration" }, - "replacementNoun": "GraphChatTargetedMessageReply" + "replacementNoun": "DeviceManagementDeviceEnrollmentConfiguration", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/chats/{}/unhideforuser", + "uri": "/devicemanagement/deviceenrollmentconfigurations/{}/setpriority", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgChatUnhideForUser", - "oracle": "Invoke-MgGraphChat" + "ourCommand": "Invoke-MgDeviceManagementDeviceEnrollmentConfigurationSetPriority", + "oracle": "Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority" }, - "replacementNoun": "GraphChat" + "replacementNoun": "DeviceManagementDeviceEnrollmentConfigurationPriority", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/addlargegalleryview", + "uri": "/devicemanagement/devicemanagementpartners/{}/terminate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallAddLargeGalleryView", - "oracle": "Add-MgCommunicationCallLargeGalleryView" + "ourCommand": "Invoke-MgDeviceManagementDeviceManagementPartnerTerminate", + "oracle": "Invoke-MgTerminateDeviceManagementPartner" }, - "replacementNoun": "CommunicationCallLargeGalleryView", - "replacementVerb": "Add" + "replacementNoun": "TerminateDeviceManagementPartner" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/answer", + "uri": "/devicemanagement/exchangeconnectors/{}/sync", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallAnswer", - "oracle": "Invoke-MgAnswerCommunicationCall" + "ourCommand": "Invoke-MgDeviceManagementExchangeConnectorSync", + "oracle": "Sync-MgDeviceManagementExchangeConnector" }, - "replacementNoun": "AnswerCommunicationCall" + "replacementNoun": "DeviceManagementExchangeConnector", + "replacementVerb": "Sync" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/cancelmediaprocessing", + "uri": "/devicemanagement/importedwindowsautopilotdeviceidentities/import", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallCancelMediaProcessing", - "oracle": "Stop-MgCommunicationCallMediaProcessing" + "ourCommand": "Invoke-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityImport", + "oracle": "Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" }, - "replacementNoun": "CommunicationCallMediaProcessing", - "replacementVerb": "Stop" + "replacementNoun": "DeviceManagementImportedWindowsAutopilotDeviceIdentity", + "replacementVerb": "Import" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/changescreensharingrole", + "uri": "/devicemanagement/iosupdatestatuses", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallChangeScreenSharingRole", - "oracle": "Rename-MgCommunicationCallScreenSharingRole" + "ourCommand": "New-MgDeviceManagementIosUpdateStatus", + "oracle": "New-MgDeviceManagementIoUpdateStatus" }, - "replacementNoun": "CommunicationCallScreenSharingRole", - "replacementVerb": "Rename" + "replacementNoun": "DeviceManagementIoUpdateStatus" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/keepalive", + "uri": "/devicemanagement/manageddevices/{}/bypassactivationlock", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallKeepAlive", - "oracle": "Invoke-MgKeepCommunicationCallAlive" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceBypassActivationLock", + "oracle": "Skip-MgDeviceManagementManagedDeviceActivationLock" }, - "replacementNoun": "KeepCommunicationCallAlive" + "replacementNoun": "DeviceManagementManagedDeviceActivationLock", + "replacementVerb": "Skip" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/mute", + "uri": "/devicemanagement/manageddevices/{}/cleanwindowsdevice", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallMute", - "oracle": "Invoke-MgMuteCommunicationCall" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceCleanWindowsDevice", + "oracle": "Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice" }, - "replacementNoun": "MuteCommunicationCall" + "replacementNoun": "CleanDeviceManagementManagedDeviceWindowsDevice" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/participants/{}/mute", + "uri": "/devicemanagement/manageddevices/{}/deleteuserfromsharedappledevice", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallParticipantMute", - "oracle": "Invoke-MgMuteCommunicationCallParticipant" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceDeleteUserFromSharedAppleDevice", + "oracle": "Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice" }, - "replacementNoun": "MuteCommunicationCallParticipant" + "replacementNoun": "DeviceManagementManagedDeviceUserFromSharedAppleDevice", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/participants/{}/startholdmusic", + "uri": "/devicemanagement/manageddevices/{}/disablelostmode", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallParticipantStartHoldMusic", - "oracle": "Start-MgCommunicationCallParticipantHoldMusic" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceDisableLostMode", + "oracle": "Disable-MgDeviceManagementManagedDeviceLostMode" }, - "replacementNoun": "CommunicationCallParticipantHoldMusic", - "replacementVerb": "Start" + "replacementNoun": "DeviceManagementManagedDeviceLostMode", + "replacementVerb": "Disable" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/participants/{}/stopholdmusic", + "uri": "/devicemanagement/manageddevices/{}/locatedevice", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallParticipantStopHoldMusic", - "oracle": "Stop-MgCommunicationCallParticipantHoldMusic" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceLocateDevice", + "oracle": "Find-MgDeviceManagementManagedDevice" }, - "replacementNoun": "CommunicationCallParticipantHoldMusic", - "replacementVerb": "Stop" + "replacementNoun": "DeviceManagementManagedDevice", + "replacementVerb": "Find" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/participants/invite", + "uri": "/devicemanagement/manageddevices/{}/logcollectionrequests/{}/createdownloadurl", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallParticipantInvite", - "oracle": "Invoke-MgInviteCommunicationCallParticipant" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceLogCollectionRequestCreateDownloadUrl", + "oracle": "New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl" }, - "replacementNoun": "InviteCommunicationCallParticipant" + "replacementNoun": "DeviceManagementManagedDeviceLogCollectionRequestDownloadUrl", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/playprompt", + "uri": "/devicemanagement/manageddevices/{}/logoutsharedappledeviceactiveuser", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallPlayPrompt", - "oracle": "Invoke-MgPlayCommunicationCallPrompt" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceLogoutSharedAppleDeviceActiveUser", + "oracle": "Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser" }, - "replacementNoun": "PlayCommunicationCallPrompt" + "replacementNoun": "LogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/recordresponse", + "uri": "/devicemanagement/manageddevices/{}/rebootnow", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallRecordResponse", - "oracle": "Invoke-MgRecordCommunicationCallResponse" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRebootNow", + "oracle": "Restart-MgDeviceManagementManagedDeviceNow" }, - "replacementNoun": "RecordCommunicationCallResponse" + "replacementNoun": "DeviceManagementManagedDeviceNow", + "replacementVerb": "Restart" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/redirect", + "uri": "/devicemanagement/manageddevices/{}/recoverpasscode", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallRedirect", - "oracle": "Invoke-MgRedirectCommunicationCall" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRecoverPasscode", + "oracle": "Restore-MgDeviceManagementManagedDevicePasscode" }, - "replacementNoun": "RedirectCommunicationCall" + "replacementNoun": "DeviceManagementManagedDevicePasscode", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/reject", + "uri": "/devicemanagement/manageddevices/{}/remotelock", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallReject", - "oracle": "Invoke-MgRejectCommunicationCall" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRemoteLock", + "oracle": "Lock-MgDeviceManagementManagedDeviceRemote" }, - "replacementNoun": "RejectCommunicationCall" + "replacementNoun": "DeviceManagementManagedDeviceRemote", + "replacementVerb": "Lock" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/senddtmftones", + "uri": "/devicemanagement/manageddevices/{}/requestremoteassistance", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallSendDtmfTones", - "oracle": "Send-MgCommunicationCallDtmfTone" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRequestRemoteAssistance", + "oracle": "Request-MgDeviceManagementManagedDeviceRemoteAssistance" }, - "replacementNoun": "CommunicationCallDtmfTone", - "replacementVerb": "Send" + "replacementNoun": "DeviceManagementManagedDeviceRemoteAssistance", + "replacementVerb": "Request" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/subscribetotone", + "uri": "/devicemanagement/manageddevices/{}/resetpasscode", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallSubscribeToTone", - "oracle": "Invoke-MgSubscribeCommunicationCallToTone" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceResetPasscode", + "oracle": "Reset-MgDeviceManagementManagedDevicePasscode" }, - "replacementNoun": "SubscribeCommunicationCallToTone" + "replacementNoun": "DeviceManagementManagedDevicePasscode", + "replacementVerb": "Reset" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/transfer", + "uri": "/devicemanagement/manageddevices/{}/retire", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallTransfer", - "oracle": "Move-MgCommunicationCall" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRetire", + "oracle": "Invoke-MgRetireDeviceManagementManagedDevice" }, - "replacementNoun": "CommunicationCall", - "replacementVerb": "Move" + "replacementNoun": "RetireDeviceManagementManagedDevice" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/unmute", + "uri": "/devicemanagement/manageddevices/{}/shutdown", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallUnmute", - "oracle": "Invoke-MgUnmuteCommunicationCall" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceShutDown", + "oracle": "Invoke-MgDownDeviceManagementManagedDeviceShut" }, - "replacementNoun": "UnmuteCommunicationCall" + "replacementNoun": "DownDeviceManagementManagedDeviceShut" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/{}/updaterecordingstatus", + "uri": "/devicemanagement/manageddevices/{}/syncdevice", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallUpdateRecordingStatus", - "oracle": "Update-MgCommunicationCallRecordingStatus" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceSyncDevice", + "oracle": "Sync-MgDeviceManagementManagedDevice" }, - "replacementNoun": "CommunicationCallRecordingStatus", - "replacementVerb": "Update" + "replacementNoun": "DeviceManagementManagedDevice", + "replacementVerb": "Sync" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/calls/logteleconferencedevicequality", + "uri": "/devicemanagement/manageddevices/{}/updatewindowsdeviceaccount", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationCallLogTeleconferenceDeviceQuality", - "oracle": "Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceUpdateWindowsDeviceAccount", + "oracle": "Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount" }, - "replacementNoun": "LogCommunicationCallTeleconferenceDeviceQuality" + "replacementNoun": "DeviceManagementManagedDeviceWindowsDeviceAccount", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/getpresencesbyuserid", + "uri": "/devicemanagement/manageddevices/{}/windowsdefenderscan", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationGetPresencesByUserId", - "oracle": "Get-MgCommunicationPresenceByUserId" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceWindowsDefenderScan", + "oracle": "Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender" }, - "replacementNoun": "CommunicationPresenceByUserId", - "replacementVerb": "Get" + "replacementNoun": "ScanDeviceManagementManagedDeviceWindowsDefender" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/onlinemeetings/{}/sendvirtualappointmentremindersms", + "uri": "/devicemanagement/manageddevices/{}/wipe", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationOnlineMeetingSendVirtualAppointmentReminderSms", - "oracle": "Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm" + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceWipe", + "oracle": "Clear-MgDeviceManagementManagedDevice" }, - "replacementNoun": "CommunicationOnlineMeetingVirtualAppointmentReminderSm", - "replacementVerb": "Send" + "replacementNoun": "DeviceManagementManagedDevice", + "replacementVerb": "Clear" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/onlinemeetings/{}/sendvirtualappointmentsms", + "uri": "/devicemanagement/mobileapptroubleshootingevents/{}/applogcollectionrequests/{}/createdownloadurl", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationOnlineMeetingSendVirtualAppointmentSms", - "oracle": "Send-MgCommunicationOnlineMeetingVirtualAppointmentSm" + "ourCommand": "Invoke-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCreateDownloadUrl", + "oracle": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl" }, - "replacementNoun": "CommunicationOnlineMeetingVirtualAppointmentSm", - "replacementVerb": "Send" + "replacementNoun": "DeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/onlinemeetings/createorget", + "uri": "/devicemanagement/notificationmessagetemplates/{}/sendtestmessage", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationOnlineMeetingCreateOrGet", - "oracle": "Invoke-MgCreateOrGetCommunicationOnlineMeeting" + "ourCommand": "Invoke-MgDeviceManagementNotificationMessageTemplateSendTestMessage", + "oracle": "Send-MgDeviceManagementNotificationMessageTemplateTestMessage" }, - "replacementNoun": "CreateOrGetCommunicationOnlineMeeting" + "replacementNoun": "DeviceManagementNotificationMessageTemplateTestMessage", + "replacementVerb": "Send" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/presences/{}/clearautomaticlocation", + "uri": "/devicemanagement/remoteassistancepartners/{}/beginonboarding", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationPresenceClearAutomaticLocation", - "oracle": "Clear-MgCommunicationPresenceAutomaticLocation" + "ourCommand": "Invoke-MgDeviceManagementRemoteAssistancePartnerBeginOnboarding", + "oracle": "Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding" }, - "replacementNoun": "CommunicationPresenceAutomaticLocation", - "replacementVerb": "Clear" + "replacementNoun": "BeginDeviceManagementRemoteAssistancePartnerOnboarding" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/presences/{}/clearlocation", + "uri": "/devicemanagement/remoteassistancepartners/{}/disconnect", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationPresenceClearLocation", - "oracle": "Clear-MgCommunicationPresenceLocation" + "ourCommand": "Invoke-MgDeviceManagementRemoteAssistancePartnerDisconnect", + "oracle": "Disconnect-MgDeviceManagementRemoteAssistancePartner" }, - "replacementNoun": "CommunicationPresenceLocation", - "replacementVerb": "Clear" + "replacementNoun": "DeviceManagementRemoteAssistancePartner", + "replacementVerb": "Disconnect" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/presences/{}/clearpresence", + "uri": "/devicemanagement/reports/getcachedreport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationPresenceClearPresence", - "oracle": "Clear-MgCommunicationPresence" + "ourCommand": "Invoke-MgDeviceManagementReportGetCachedReport", + "oracle": "Get-MgDeviceManagementReportCachedReport" }, - "replacementNoun": "CommunicationPresence", - "replacementVerb": "Clear" + "replacementNoun": "DeviceManagementReportCachedReport", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/presences/{}/clearuserpreferredpresence", + "uri": "/devicemanagement/reports/getcompliancepolicynoncompliancereport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationPresenceClearUserPreferredPresence", - "oracle": "Clear-MgCommunicationPresenceUserPreferredPresence" + "ourCommand": "Invoke-MgDeviceManagementReportGetCompliancePolicyNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport" }, - "replacementNoun": "CommunicationPresenceUserPreferredPresence", - "replacementVerb": "Clear" + "replacementNoun": "DeviceManagementReportCompliancePolicyNonComplianceReport", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/presences/{}/setautomaticlocation", + "uri": "/devicemanagement/reports/getcompliancepolicynoncompliancesummaryreport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationPresenceSetAutomaticLocation", - "oracle": "Set-MgCommunicationPresenceAutomaticLocation" + "ourCommand": "Invoke-MgDeviceManagementReportGetCompliancePolicyNonComplianceSummaryReport", + "oracle": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport" }, - "replacementNoun": "CommunicationPresenceAutomaticLocation", - "replacementVerb": "Set" + "replacementNoun": "DeviceManagementReportCompliancePolicyNonComplianceSummaryReport", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/presences/{}/setmanuallocation", + "uri": "/devicemanagement/reports/getcompliancesettingnoncompliancereport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationPresenceSetManualLocation", - "oracle": "Set-MgCommunicationPresenceManualLocation" + "ourCommand": "Invoke-MgDeviceManagementReportGetComplianceSettingNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportComplianceSettingNonComplianceReport" }, - "replacementNoun": "CommunicationPresenceManualLocation", - "replacementVerb": "Set" + "replacementNoun": "DeviceManagementReportComplianceSettingNonComplianceReport", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/presences/{}/setpresence", + "uri": "/devicemanagement/reports/getconfigurationpolicynoncompliancereport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationPresenceSetPresence", - "oracle": "Set-MgCommunicationPresence" + "ourCommand": "Invoke-MgDeviceManagementReportGetConfigurationPolicyNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceReport" }, - "replacementNoun": "CommunicationPresence", - "replacementVerb": "Set" + "replacementNoun": "DeviceManagementReportConfigurationPolicyNonComplianceReport", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/presences/{}/setstatusmessage", + "uri": "/devicemanagement/reports/getconfigurationpolicynoncompliancesummaryreport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationPresenceSetStatusMessage", - "oracle": "Set-MgCommunicationPresenceStatusMessage" + "ourCommand": "Invoke-MgDeviceManagementReportGetConfigurationPolicyNonComplianceSummaryReport", + "oracle": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport" }, - "replacementNoun": "CommunicationPresenceStatusMessage", - "replacementVerb": "Set" + "replacementNoun": "DeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/communications/presences/{}/setuserpreferredpresence", + "uri": "/devicemanagement/reports/getconfigurationsettingnoncompliancereport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgCommunicationPresenceSetUserPreferredPresence", - "oracle": "Set-MgCommunicationPresenceUserPreferredPresence" + "ourCommand": "Invoke-MgDeviceManagementReportGetConfigurationSettingNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport" }, - "replacementNoun": "CommunicationPresenceUserPreferredPresence", - "replacementVerb": "Set" + "replacementNoun": "DeviceManagementReportConfigurationSettingNonComplianceReport", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contacts/{}/checkmembergroups", + "uri": "/devicemanagement/reports/getdevicemanagementintentpersettingcontributingprofiles", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContactCheckMemberGroups", - "oracle": "Confirm-MgContactMemberGroup" + "ourCommand": "Invoke-MgDeviceManagementReportGetDeviceManagementIntentPerSettingContributingProfiles", + "oracle": "Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile" }, - "replacementNoun": "ContactMemberGroup", - "replacementVerb": "Confirm" + "replacementNoun": "DeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contacts/{}/checkmemberobjects", + "uri": "/devicemanagement/reports/getdevicemanagementintentsettingsreport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContactCheckMemberObjects", - "oracle": "Confirm-MgContactMemberObject" + "ourCommand": "Invoke-MgDeviceManagementReportGetDeviceManagementIntentSettingsReport", + "oracle": "Get-MgDeviceManagementReportDeviceManagementIntentSettingReport" }, - "replacementNoun": "ContactMemberObject", - "replacementVerb": "Confirm" + "replacementNoun": "DeviceManagementReportDeviceManagementIntentSettingReport", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contacts/{}/getmembergroups", + "uri": "/devicemanagement/reports/getdevicenoncompliancereport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContactGetMemberGroups", - "oracle": "Get-MgContactMemberGroup" + "ourCommand": "Invoke-MgDeviceManagementReportGetDeviceNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportDeviceNonComplianceReport" }, - "replacementNoun": "ContactMemberGroup", + "replacementNoun": "DeviceManagementReportDeviceNonComplianceReport", "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contacts/{}/getmemberobjects", + "uri": "/devicemanagement/reports/getdeviceswithoutcompliancepolicyreport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContactGetMemberObjects", - "oracle": "Get-MgContactMemberObject" + "ourCommand": "Invoke-MgDeviceManagementReportGetDevicesWithoutCompliancePolicyReport", + "oracle": "Get-MgDeviceManagementReportDeviceWithoutCompliancePolicyReport" }, - "replacementNoun": "ContactMemberObject", + "replacementNoun": "DeviceManagementReportDeviceWithoutCompliancePolicyReport", "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contacts/{}/retryserviceprovisioning", + "uri": "/devicemanagement/reports/gethistoricalreport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContactRetryServiceProvisioning", - "oracle": "Invoke-MgRetryContactServiceProvisioning" + "ourCommand": "Invoke-MgDeviceManagementReportGetHistoricalReport", + "oracle": "Get-MgDeviceManagementReportHistoricalReport" }, - "replacementNoun": "RetryContactServiceProvisioning" + "replacementNoun": "DeviceManagementReportHistoricalReport", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contacts/getbyids", + "uri": "/devicemanagement/reports/getnoncompliantdevicesandsettingsreport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContactGetByIds", - "oracle": "Get-MgContactById" + "ourCommand": "Invoke-MgDeviceManagementReportGetNoncompliantDevicesAndSettingsReport", + "oracle": "Get-MgDeviceManagementReportNoncompliantDeviceAndSettingReport" }, - "replacementNoun": "ContactById", + "replacementNoun": "DeviceManagementReportNoncompliantDeviceAndSettingReport", "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contacts/validateproperties", + "uri": "/devicemanagement/reports/getpolicynoncompliancemetadata", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContactValidateProperties", - "oracle": "Test-MgContactProperty" + "ourCommand": "Invoke-MgDeviceManagementReportGetPolicyNonComplianceMetadata", + "oracle": "Get-MgDeviceManagementReportPolicyNonComplianceMetadata" }, - "replacementNoun": "ContactProperty", - "replacementVerb": "Test" + "replacementNoun": "DeviceManagementReportPolicyNonComplianceMetadata", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contracts/{}/checkmembergroups", + "uri": "/devicemanagement/reports/getpolicynoncompliancereport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContractCheckMemberGroups", - "oracle": "Confirm-MgContractMemberGroup" + "ourCommand": "Invoke-MgDeviceManagementReportGetPolicyNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportPolicyNonComplianceReport" }, - "replacementNoun": "ContractMemberGroup", - "replacementVerb": "Confirm" + "replacementNoun": "DeviceManagementReportPolicyNonComplianceReport", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contracts/{}/checkmemberobjects", + "uri": "/devicemanagement/reports/getpolicynoncompliancesummaryreport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContractCheckMemberObjects", - "oracle": "Confirm-MgContractMemberObject" + "ourCommand": "Invoke-MgDeviceManagementReportGetPolicyNonComplianceSummaryReport", + "oracle": "Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport" }, - "replacementNoun": "ContractMemberObject", - "replacementVerb": "Confirm" + "replacementNoun": "DeviceManagementReportPolicyNonComplianceSummaryReport", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contracts/{}/getmembergroups", + "uri": "/devicemanagement/reports/getreportfilters", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContractGetMemberGroups", - "oracle": "Get-MgContractMemberGroup" + "ourCommand": "Invoke-MgDeviceManagementReportGetReportFilters", + "oracle": "Get-MgDeviceManagementReportFilter" }, - "replacementNoun": "ContractMemberGroup", + "replacementNoun": "DeviceManagementReportFilter", "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contracts/{}/getmemberobjects", + "uri": "/devicemanagement/reports/getsettingnoncompliancereport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContractGetMemberObjects", - "oracle": "Get-MgContractMemberObject" + "ourCommand": "Invoke-MgDeviceManagementReportGetSettingNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportSettingNonComplianceReport" }, - "replacementNoun": "ContractMemberObject", + "replacementNoun": "DeviceManagementReportSettingNonComplianceReport", "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contracts/getbyids", + "uri": "/devicemanagement/reports/retrievedeviceappinstallationstatusreport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContractGetByIds", - "oracle": "Get-MgContractById" + "ourCommand": "Invoke-MgDeviceManagementReportRetrieveDeviceAppInstallationStatusReport", + "oracle": "Get-MgDeviceManagementReportDeviceAppInstallationStatusReport" }, - "replacementNoun": "ContractById", + "replacementNoun": "DeviceManagementReportDeviceAppInstallationStatusReport", "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/contracts/validateproperties", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/endgraceperiod", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgContractValidateProperties", - "oracle": "Test-MgContractProperty" + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsEndGracePeriod", + "oracle": "Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod" }, - "replacementNoun": "ContractProperty", - "replacementVerb": "Test" + "replacementNoun": "DeviceManagementVirtualEndpointCloudPcGracePeriod", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/iosmanagedappprotections", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/reboot", "action": "rename", "evidence": { - "ourCommand": "New-MgDeviceAppManagementIosManagedAppProtection", - "oracle": "New-MgDeviceAppManagementiOSManagedAppProtection" + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsReboot", + "oracle": "Restart-MgDeviceManagementVirtualEndpointCloudPc" }, - "replacementNoun": "DeviceAppManagementiOSManagedAppProtection" + "replacementNoun": "DeviceManagementVirtualEndpointCloudPc", + "replacementVerb": "Restart" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/iosmanagedappprotections/{}/apps", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/rename", "action": "rename", "evidence": { - "ourCommand": "New-MgDeviceAppManagementIosManagedAppProtectionApp", - "oracle": "New-MgDeviceAppManagementiOSManagedAppProtectionApp" + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsRename", + "oracle": "Rename-MgDeviceManagementVirtualEndpointCloudPc" }, - "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionApp" + "replacementNoun": "DeviceManagementVirtualEndpointCloudPc", + "replacementVerb": "Rename" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/iosmanagedappprotections/{}/assignments", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/reprovision", "action": "rename", "evidence": { - "ourCommand": "New-MgDeviceAppManagementIosManagedAppProtectionAssignment", - "oracle": "New-MgDeviceAppManagementiOSManagedAppProtectionAssignment" + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsReprovision", + "oracle": "Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc" }, - "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionAssignment" + "replacementNoun": "ReprovisionDeviceManagementVirtualEndpointCloudPc" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/managedapppolicies/{}/targetapps", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/resize", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceAppManagementManagedAppPolicyTargetApps", - "oracle": "Invoke-MgTargetDeviceAppManagementManagedAppPolicyApp" + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsResize", + "oracle": "Resize-MgDeviceManagementVirtualEndpointCloudPc" }, - "replacementNoun": "TargetDeviceAppManagementManagedAppPolicyApp" + "replacementNoun": "DeviceManagementVirtualEndpointCloudPc", + "replacementVerb": "Resize" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/managedappregistrations/{}/appliedpolicies/{}/targetapps", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/restore", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyTargetApps", - "oracle": "Invoke-MgTargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp" + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsRestore", + "oracle": "Restore-MgDeviceManagementVirtualEndpointCloudPc" }, - "replacementNoun": "TargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp" + "replacementNoun": "DeviceManagementVirtualEndpointCloudPc", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/managedappregistrations/{}/intendedpolicies/{}/targetapps", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/troubleshoot", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyTargetApps", - "oracle": "Invoke-MgTargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp" + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsTroubleshoot", + "oracle": "Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc" }, - "replacementNoun": "TargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp" + "replacementNoun": "TroubleshootDeviceManagementVirtualEndpointCloudPc" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/managedebooks/{}/assign", + "uri": "/devicemanagement/virtualendpoint/onpremisesconnections/{}/runhealthchecks", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceAppManagementManagedEBookAssign", - "oracle": "Set-MgDeviceAppManagementManagedEBook" + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointOnPremiseConnectionRunHealthChecks", + "oracle": "Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck" }, - "replacementNoun": "DeviceAppManagementManagedEBook", - "replacementVerb": "Set" + "replacementNoun": "DeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck", + "replacementVerb": "Start" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/mobileappconfigurations/{}/assign", + "uri": "/devicemanagement/virtualendpoint/onpremisesconnections/{}/updateaddomainpassword", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceAppManagementMobileAppConfigurationAssign", - "oracle": "Set-MgDeviceAppManagementMobileAppConfiguration" + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointOnPremiseConnectionUpdateAdDomainPassword", + "oracle": "Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword" }, - "replacementNoun": "DeviceAppManagementMobileAppConfiguration", - "replacementVerb": "Set" + "replacementNoun": "DeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/mobileapps/{}/assign", + "uri": "/devicemanagement/virtualendpoint/provisioningpolicies/{}/assign", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAssign", - "oracle": "Set-MgDeviceAppManagementMobileApp" + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointProvisioningPolicyAssign", + "oracle": "Set-MgDeviceManagementVirtualEndpointProvisioningPolicy" }, - "replacementNoun": "DeviceAppManagementMobileApp", + "replacementNoun": "DeviceManagementVirtualEndpointProvisioningPolicy", "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/syncmicrosoftstoreforbusinessapps", + "uri": "/devicemanagement/virtualendpoint/report/retrievecloudpcrecommendationreports", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceAppManagementSyncMicrosoftStoreForBusinessApps", - "oracle": "Sync-MgDeviceAppManagementMicrosoftStoreForBusinessApp" + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointReportRetrieveCloudPcRecommendationReports", + "oracle": "Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport" }, - "replacementNoun": "DeviceAppManagementMicrosoftStoreForBusinessApp", - "replacementVerb": "Sync" + "replacementNoun": "DeviceManagementVirtualEndpointReportCloudPcRecommendationReport", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/targetedmanagedappconfigurations/{}/assign", + "uri": "/devicemanagement/virtualendpoint/usersettings/{}/assign", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceAppManagementTargetedManagedAppConfigurationAssign", - "oracle": "Set-MgDeviceAppManagementTargetedManagedAppConfiguration" + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointUserSettingAssign", + "oracle": "Set-MgDeviceManagementVirtualEndpointUserSetting" }, - "replacementNoun": "DeviceAppManagementTargetedManagedAppConfiguration", + "replacementNoun": "DeviceManagementVirtualEndpointUserSetting", "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/targetedmanagedappconfigurations/{}/targetapps", + "uri": "/devicemanagement/windowsautopilotdeviceidentities/{}/assignusertodevice", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceAppManagementTargetedManagedAppConfigurationTargetApps", - "oracle": "Invoke-MgTargetDeviceAppManagementTargetedManagedAppConfigurationApp" + "ourCommand": "Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityAssignUserToDevice", + "oracle": "Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice" }, - "replacementNoun": "TargetDeviceAppManagementTargetedManagedAppConfigurationApp" + "replacementNoun": "DeviceManagementWindowsAutopilotDeviceIdentityUserToDevice", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/deviceappmanagement/vpptokens/{}/synclicenses", + "uri": "/devicemanagement/windowsautopilotdeviceidentities/{}/unassignuserfromdevice", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceAppManagementVppTokenSyncLicenses", - "oracle": "Sync-MgDeviceAppManagementVppTokenLicense" + "ourCommand": "Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityUnassignUserFromDevice", + "oracle": "Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice" }, - "replacementNoun": "DeviceAppManagementVppTokenLicense", - "replacementVerb": "Sync" + "replacementNoun": "UnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/devicecompliancepolicies/{}/assign", + "uri": "/devicemanagement/windowsautopilotdeviceidentities/{}/updatedeviceproperties", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementDeviceCompliancePolicyAssign", - "oracle": "Set-MgDeviceManagementDeviceCompliancePolicy" + "ourCommand": "Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityUpdateDeviceProperties", + "oracle": "Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty" }, - "replacementNoun": "DeviceManagementDeviceCompliancePolicy", - "replacementVerb": "Set" + "replacementNoun": "DeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/devicecompliancepolicies/{}/scheduleactionsforrules", + "uri": "/devices/{}/checkmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementDeviceCompliancePolicyScheduleActionsForRules", - "oracle": "Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule" + "ourCommand": "Invoke-MgDeviceCheckMemberGroups", + "oracle": "Confirm-MgDeviceMemberGroup" }, - "replacementNoun": "ScheduleDeviceManagementDeviceCompliancePolicyActionForRule" + "replacementNoun": "DeviceMemberGroup", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/deviceconfigurations/{}/assign", + "uri": "/devices/{}/checkmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementDeviceConfigurationAssign", - "oracle": "Set-MgDeviceManagementDeviceConfiguration" + "ourCommand": "Invoke-MgDeviceCheckMemberObjects", + "oracle": "Confirm-MgDeviceMemberObject" }, - "replacementNoun": "DeviceManagementDeviceConfiguration", - "replacementVerb": "Set" + "replacementNoun": "DeviceMemberObject", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/deviceenrollmentconfigurations/{}/assign", + "uri": "/devices/{}/getmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementDeviceEnrollmentConfigurationAssign", - "oracle": "Set-MgDeviceManagementDeviceEnrollmentConfiguration" + "ourCommand": "Invoke-MgDeviceGetMemberGroups", + "oracle": "Get-MgDeviceMemberGroup" }, - "replacementNoun": "DeviceManagementDeviceEnrollmentConfiguration", - "replacementVerb": "Set" + "replacementNoun": "DeviceMemberGroup", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/deviceenrollmentconfigurations/{}/setpriority", + "uri": "/devices/{}/getmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementDeviceEnrollmentConfigurationSetPriority", - "oracle": "Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority" + "ourCommand": "Invoke-MgDeviceGetMemberObjects", + "oracle": "Get-MgDeviceMemberObject" }, - "replacementNoun": "DeviceManagementDeviceEnrollmentConfigurationPriority", - "replacementVerb": "Set" + "replacementNoun": "DeviceMemberObject", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/devicemanagementpartners/{}/terminate", + "uri": "/devices/getbyids", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementDeviceManagementPartnerTerminate", - "oracle": "Invoke-MgTerminateDeviceManagementPartner" + "ourCommand": "Invoke-MgDeviceGetByIds", + "oracle": "Get-MgDeviceById" }, - "replacementNoun": "TerminateDeviceManagementPartner" + "replacementNoun": "DeviceById", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/exchangeconnectors/{}/sync", + "uri": "/devices/validateproperties", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementExchangeConnectorSync", - "oracle": "Sync-MgDeviceManagementExchangeConnector" + "ourCommand": "Invoke-MgDeviceValidateProperties", + "oracle": "Test-MgDeviceProperty" }, - "replacementNoun": "DeviceManagementExchangeConnector", - "replacementVerb": "Sync" + "replacementNoun": "DeviceProperty", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/importedwindowsautopilotdeviceidentities/import", + "uri": "/directory/deleteditems/{}/checkmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityImport", - "oracle": "Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" + "ourCommand": "Invoke-MgDirectoryDeletedItemCheckMemberGroups", + "oracle": "Confirm-MgDirectoryDeletedItemMemberGroup" }, - "replacementNoun": "DeviceManagementImportedWindowsAutopilotDeviceIdentity", - "replacementVerb": "Import" + "replacementNoun": "DirectoryDeletedItemMemberGroup", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/iosupdatestatuses", + "uri": "/directory/deleteditems/{}/checkmemberobjects", "action": "rename", "evidence": { - "ourCommand": "New-MgDeviceManagementIosUpdateStatus", - "oracle": "New-MgDeviceManagementIoUpdateStatus" + "ourCommand": "Invoke-MgDirectoryDeletedItemCheckMemberObjects", + "oracle": "Confirm-MgDirectoryDeletedItemMemberObject" }, - "replacementNoun": "DeviceManagementIoUpdateStatus" + "replacementNoun": "DirectoryDeletedItemMemberObject", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/bypassactivationlock", + "uri": "/directory/deleteditems/{}/getmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceBypassActivationLock", - "oracle": "Skip-MgDeviceManagementManagedDeviceActivationLock" + "ourCommand": "Invoke-MgDirectoryDeletedItemGetMemberGroups", + "oracle": "Get-MgDirectoryDeletedItemMemberGroup" }, - "replacementNoun": "DeviceManagementManagedDeviceActivationLock", - "replacementVerb": "Skip" + "replacementNoun": "DirectoryDeletedItemMemberGroup", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/cleanwindowsdevice", + "uri": "/directory/deleteditems/{}/getmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceCleanWindowsDevice", - "oracle": "Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice" + "ourCommand": "Invoke-MgDirectoryDeletedItemGetMemberObjects", + "oracle": "Get-MgDirectoryDeletedItemMemberObject" }, - "replacementNoun": "CleanDeviceManagementManagedDeviceWindowsDevice" + "replacementNoun": "DirectoryDeletedItemMemberObject", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/deleteuserfromsharedappledevice", + "uri": "/directory/deleteditems/{}/restore", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceDeleteUserFromSharedAppleDevice", - "oracle": "Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice" + "ourCommand": "Invoke-MgDirectoryDeletedItemRestore", + "oracle": "Restore-MgDirectoryDeletedItem" }, - "replacementNoun": "DeviceManagementManagedDeviceUserFromSharedAppleDevice", - "replacementVerb": "Remove" + "replacementNoun": "DirectoryDeletedItem", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/disablelostmode", + "uri": "/directory/deleteditems/getbyids", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceDisableLostMode", - "oracle": "Disable-MgDeviceManagementManagedDeviceLostMode" + "ourCommand": "Invoke-MgDirectoryDeletedItemGetByIds", + "oracle": "Get-MgDirectoryDeletedItemById" }, - "replacementNoun": "DeviceManagementManagedDeviceLostMode", - "replacementVerb": "Disable" + "replacementNoun": "DirectoryDeletedItemById", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/locatedevice", + "uri": "/directory/deleteditems/validateproperties", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceLocateDevice", - "oracle": "Find-MgDeviceManagementManagedDevice" + "ourCommand": "Invoke-MgDirectoryDeletedItemValidateProperties", + "oracle": "Test-MgDirectoryDeletedItemProperty" }, - "replacementNoun": "DeviceManagementManagedDevice", - "replacementVerb": "Find" + "replacementNoun": "DirectoryDeletedItemProperty", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/logcollectionrequests/{}/createdownloadurl", + "uri": "/directory/publickeyinfrastructure/certificatebasedauthconfigurations/{}/upload", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceLogCollectionRequestCreateDownloadUrl", - "oracle": "New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl" + "ourCommand": "Invoke-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationUpload", + "oracle": "Invoke-MgUploadDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" }, - "replacementNoun": "DeviceManagementManagedDeviceLogCollectionRequestDownloadUrl", - "replacementVerb": "New" + "replacementNoun": "UploadDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/logoutsharedappledeviceactiveuser", + "uri": "/directory/recovery/jobs/{}/cancel", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceLogoutSharedAppleDeviceActiveUser", - "oracle": "Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser" + "ourCommand": "Invoke-MgDirectoryRecoveryJobCancel", + "oracle": "Stop-MgDirectoryRecoveryJob" }, - "replacementNoun": "LogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser" + "replacementNoun": "DirectoryRecoveryJob", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/rebootnow", + "uri": "/directoryobjects/{}/checkmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRebootNow", - "oracle": "Restart-MgDeviceManagementManagedDeviceNow" + "ourCommand": "Invoke-MgDirectoryObjectCheckMemberGroups", + "oracle": "Confirm-MgDirectoryObjectMemberGroup" }, - "replacementNoun": "DeviceManagementManagedDeviceNow", - "replacementVerb": "Restart" + "replacementNoun": "DirectoryObjectMemberGroup", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/recoverpasscode", + "uri": "/directoryobjects/{}/checkmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRecoverPasscode", - "oracle": "Restore-MgDeviceManagementManagedDevicePasscode" + "ourCommand": "Invoke-MgDirectoryObjectCheckMemberObjects", + "oracle": "Confirm-MgDirectoryObjectMemberObject" }, - "replacementNoun": "DeviceManagementManagedDevicePasscode", - "replacementVerb": "Restore" + "replacementNoun": "DirectoryObjectMemberObject", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/remotelock", + "uri": "/directoryobjects/{}/getmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRemoteLock", - "oracle": "Lock-MgDeviceManagementManagedDeviceRemote" + "ourCommand": "Invoke-MgDirectoryObjectGetMemberGroups", + "oracle": "Get-MgDirectoryObjectMemberGroup" }, - "replacementNoun": "DeviceManagementManagedDeviceRemote", - "replacementVerb": "Lock" + "replacementNoun": "DirectoryObjectMemberGroup", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/requestremoteassistance", + "uri": "/directoryobjects/{}/getmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRequestRemoteAssistance", - "oracle": "Request-MgDeviceManagementManagedDeviceRemoteAssistance" + "ourCommand": "Invoke-MgDirectoryObjectGetMemberObjects", + "oracle": "Get-MgDirectoryObjectMemberObject" }, - "replacementNoun": "DeviceManagementManagedDeviceRemoteAssistance", - "replacementVerb": "Request" + "replacementNoun": "DirectoryObjectMemberObject", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/resetpasscode", + "uri": "/directoryobjects/getavailableextensionproperties", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceResetPasscode", - "oracle": "Reset-MgDeviceManagementManagedDevicePasscode" + "ourCommand": "Invoke-MgDirectoryObjectGetAvailableExtensionProperties", + "oracle": "Get-MgDirectoryObjectAvailableExtensionProperty" }, - "replacementNoun": "DeviceManagementManagedDevicePasscode", - "replacementVerb": "Reset" + "replacementNoun": "DirectoryObjectAvailableExtensionProperty", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/retire", + "uri": "/directoryobjects/getbyids", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRetire", - "oracle": "Invoke-MgRetireDeviceManagementManagedDevice" + "ourCommand": "Invoke-MgDirectoryObjectGetByIds", + "oracle": "Get-MgDirectoryObjectById" }, - "replacementNoun": "RetireDeviceManagementManagedDevice" + "replacementNoun": "DirectoryObjectById", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/shutdown", + "uri": "/directoryobjects/validateproperties", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceShutDown", - "oracle": "Invoke-MgDownDeviceManagementManagedDeviceShut" + "ourCommand": "Invoke-MgDirectoryObjectValidateProperties", + "oracle": "Test-MgDirectoryObjectProperty" }, - "replacementNoun": "DownDeviceManagementManagedDeviceShut" + "replacementNoun": "DirectoryObjectProperty", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/syncdevice", + "uri": "/directoryroles/{}/checkmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceSyncDevice", - "oracle": "Sync-MgDeviceManagementManagedDevice" + "ourCommand": "Invoke-MgDirectoryRoleCheckMemberGroups", + "oracle": "Confirm-MgDirectoryRoleMemberGroup" }, - "replacementNoun": "DeviceManagementManagedDevice", - "replacementVerb": "Sync" + "replacementNoun": "DirectoryRoleMemberGroup", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/updatewindowsdeviceaccount", + "uri": "/directoryroles/{}/checkmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceUpdateWindowsDeviceAccount", - "oracle": "Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount" + "ourCommand": "Invoke-MgDirectoryRoleCheckMemberObjects", + "oracle": "Confirm-MgDirectoryRoleMemberObject" }, - "replacementNoun": "DeviceManagementManagedDeviceWindowsDeviceAccount", - "replacementVerb": "Update" + "replacementNoun": "DirectoryRoleMemberObject", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/windowsdefenderscan", + "uri": "/directoryroles/{}/getmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceWindowsDefenderScan", - "oracle": "Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender" + "ourCommand": "Invoke-MgDirectoryRoleGetMemberGroups", + "oracle": "Get-MgDirectoryRoleMemberGroup" }, - "replacementNoun": "ScanDeviceManagementManagedDeviceWindowsDefender" + "replacementNoun": "DirectoryRoleMemberGroup", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/manageddevices/{}/wipe", + "uri": "/directoryroles/{}/getmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementManagedDeviceWipe", - "oracle": "Clear-MgDeviceManagementManagedDevice" + "ourCommand": "Invoke-MgDirectoryRoleGetMemberObjects", + "oracle": "Get-MgDirectoryRoleMemberObject" }, - "replacementNoun": "DeviceManagementManagedDevice", - "replacementVerb": "Clear" + "replacementNoun": "DirectoryRoleMemberObject", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/mobileapptroubleshootingevents/{}/applogcollectionrequests/{}/createdownloadurl", + "uri": "/directoryroles/getbyids", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCreateDownloadUrl", - "oracle": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl" + "ourCommand": "Invoke-MgDirectoryRoleGetByIds", + "oracle": "Get-MgDirectoryRoleById" }, - "replacementNoun": "DeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", - "replacementVerb": "New" + "replacementNoun": "DirectoryRoleById", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/notificationmessagetemplates/{}/sendtestmessage", + "uri": "/directoryroles/validateproperties", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementNotificationMessageTemplateSendTestMessage", - "oracle": "Send-MgDeviceManagementNotificationMessageTemplateTestMessage" + "ourCommand": "Invoke-MgDirectoryRoleValidateProperties", + "oracle": "Test-MgDirectoryRoleProperty" }, - "replacementNoun": "DeviceManagementNotificationMessageTemplateTestMessage", - "replacementVerb": "Send" + "replacementNoun": "DirectoryRoleProperty", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/remoteassistancepartners/{}/beginonboarding", + "uri": "/directoryroletemplates/{}/checkmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementRemoteAssistancePartnerBeginOnboarding", - "oracle": "Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding" + "ourCommand": "Invoke-MgDirectoryRoleTemplateCheckMemberGroups", + "oracle": "Confirm-MgDirectoryRoleTemplateMemberGroup" }, - "replacementNoun": "BeginDeviceManagementRemoteAssistancePartnerOnboarding" + "replacementNoun": "DirectoryRoleTemplateMemberGroup", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/remoteassistancepartners/{}/disconnect", + "uri": "/directoryroletemplates/{}/checkmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementRemoteAssistancePartnerDisconnect", - "oracle": "Disconnect-MgDeviceManagementRemoteAssistancePartner" + "ourCommand": "Invoke-MgDirectoryRoleTemplateCheckMemberObjects", + "oracle": "Confirm-MgDirectoryRoleTemplateMemberObject" }, - "replacementNoun": "DeviceManagementRemoteAssistancePartner", - "replacementVerb": "Disconnect" + "replacementNoun": "DirectoryRoleTemplateMemberObject", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getcachedreport", + "uri": "/directoryroletemplates/{}/getmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetCachedReport", - "oracle": "Get-MgDeviceManagementReportCachedReport" + "ourCommand": "Invoke-MgDirectoryRoleTemplateGetMemberGroups", + "oracle": "Get-MgDirectoryRoleTemplateMemberGroup" }, - "replacementNoun": "DeviceManagementReportCachedReport", + "replacementNoun": "DirectoryRoleTemplateMemberGroup", "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getcompliancepolicynoncompliancereport", + "uri": "/directoryroletemplates/{}/getmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetCompliancePolicyNonComplianceReport", - "oracle": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport" + "ourCommand": "Invoke-MgDirectoryRoleTemplateGetMemberObjects", + "oracle": "Get-MgDirectoryRoleTemplateMemberObject" }, - "replacementNoun": "DeviceManagementReportCompliancePolicyNonComplianceReport", + "replacementNoun": "DirectoryRoleTemplateMemberObject", "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getcompliancepolicynoncompliancesummaryreport", + "uri": "/directoryroletemplates/getbyids", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetCompliancePolicyNonComplianceSummaryReport", - "oracle": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport" + "ourCommand": "Invoke-MgDirectoryRoleTemplateGetByIds", + "oracle": "Get-MgDirectoryRoleTemplateById" }, - "replacementNoun": "DeviceManagementReportCompliancePolicyNonComplianceSummaryReport", + "replacementNoun": "DirectoryRoleTemplateById", "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getcompliancesettingnoncompliancereport", + "uri": "/directoryroletemplates/validateproperties", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetComplianceSettingNonComplianceReport", - "oracle": "Get-MgDeviceManagementReportComplianceSettingNonComplianceReport" + "ourCommand": "Invoke-MgDirectoryRoleTemplateValidateProperties", + "oracle": "Test-MgDirectoryRoleTemplateProperty" }, - "replacementNoun": "DeviceManagementReportComplianceSettingNonComplianceReport", - "replacementVerb": "Get" + "replacementNoun": "DirectoryRoleTemplateProperty", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getconfigurationpolicynoncompliancereport", + "uri": "/domains/{}/forcedelete", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetConfigurationPolicyNonComplianceReport", - "oracle": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceReport" + "ourCommand": "Invoke-MgDomainForceDelete", + "oracle": "Invoke-MgForceDomainDelete" }, - "replacementNoun": "DeviceManagementReportConfigurationPolicyNonComplianceReport", - "replacementVerb": "Get" + "replacementNoun": "ForceDomainDelete" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getconfigurationpolicynoncompliancesummaryreport", + "uri": "/domains/{}/promote", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetConfigurationPolicyNonComplianceSummaryReport", - "oracle": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport" + "ourCommand": "Invoke-MgDomainPromote", + "oracle": "Invoke-MgPromoteDomain" }, - "replacementNoun": "DeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", - "replacementVerb": "Get" + "replacementNoun": "PromoteDomain" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getconfigurationsettingnoncompliancereport", + "uri": "/domains/{}/verify", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetConfigurationSettingNonComplianceReport", - "oracle": "Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport" + "ourCommand": "Invoke-MgDomainVerify", + "oracle": "Confirm-MgDomain" }, - "replacementNoun": "DeviceManagementReportConfigurationSettingNonComplianceReport", - "replacementVerb": "Get" + "replacementNoun": "Domain", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getdevicemanagementintentpersettingcontributingprofiles", + "uri": "/drives/{}/items/{}/assignsensitivitylabel", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetDeviceManagementIntentPerSettingContributingProfiles", - "oracle": "Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile" + "ourCommand": "Invoke-MgDriveItemAssignSensitivityLabel", + "oracle": "Set-MgDriveItemSensitivityLabel" }, - "replacementNoun": "DeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", - "replacementVerb": "Get" + "replacementNoun": "DriveItemSensitivityLabel", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getdevicemanagementintentsettingsreport", + "uri": "/drives/{}/items/{}/checkin", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetDeviceManagementIntentSettingsReport", - "oracle": "Get-MgDeviceManagementReportDeviceManagementIntentSettingReport" + "ourCommand": "Invoke-MgDriveItemCheckin", + "oracle": "Invoke-MgCheckinDriveItem" }, - "replacementNoun": "DeviceManagementReportDeviceManagementIntentSettingReport", - "replacementVerb": "Get" + "replacementNoun": "CheckinDriveItem" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getdevicenoncompliancereport", + "uri": "/drives/{}/items/{}/checkout", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetDeviceNonComplianceReport", - "oracle": "Get-MgDeviceManagementReportDeviceNonComplianceReport" + "ourCommand": "Invoke-MgDriveItemCheckout", + "oracle": "Invoke-MgCheckoutDriveItem" }, - "replacementNoun": "DeviceManagementReportDeviceNonComplianceReport", - "replacementVerb": "Get" + "replacementNoun": "CheckoutDriveItem" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getdeviceswithoutcompliancepolicyreport", + "uri": "/drives/{}/items/{}/copy", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetDevicesWithoutCompliancePolicyReport", - "oracle": "Get-MgDeviceManagementReportDeviceWithoutCompliancePolicyReport" + "ourCommand": "Invoke-MgDriveItemCopy", + "oracle": "Copy-MgDriveItem" }, - "replacementNoun": "DeviceManagementReportDeviceWithoutCompliancePolicyReport", - "replacementVerb": "Get" + "replacementNoun": "DriveItem", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/gethistoricalreport", + "uri": "/drives/{}/items/{}/createlink", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetHistoricalReport", - "oracle": "Get-MgDeviceManagementReportHistoricalReport" + "ourCommand": "Invoke-MgDriveItemCreateLink", + "oracle": "New-MgDriveItemLink" }, - "replacementNoun": "DeviceManagementReportHistoricalReport", - "replacementVerb": "Get" + "replacementNoun": "DriveItemLink", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getnoncompliantdevicesandsettingsreport", + "uri": "/drives/{}/items/{}/createuploadsession", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetNoncompliantDevicesAndSettingsReport", - "oracle": "Get-MgDeviceManagementReportNoncompliantDeviceAndSettingReport" + "ourCommand": "Invoke-MgDriveItemCreateUploadSession", + "oracle": "New-MgDriveItemUploadSession" }, - "replacementNoun": "DeviceManagementReportNoncompliantDeviceAndSettingReport", - "replacementVerb": "Get" + "replacementNoun": "DriveItemUploadSession", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getpolicynoncompliancemetadata", + "uri": "/drives/{}/items/{}/discardcheckout", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetPolicyNonComplianceMetadata", - "oracle": "Get-MgDeviceManagementReportPolicyNonComplianceMetadata" + "ourCommand": "Invoke-MgDriveItemDiscardCheckout", + "oracle": "Remove-MgDriveItemCheckout" }, - "replacementNoun": "DeviceManagementReportPolicyNonComplianceMetadata", - "replacementVerb": "Get" + "replacementNoun": "DriveItemCheckout", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getpolicynoncompliancereport", + "uri": "/drives/{}/items/{}/extractsensitivitylabels", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetPolicyNonComplianceReport", - "oracle": "Get-MgDeviceManagementReportPolicyNonComplianceReport" + "ourCommand": "Invoke-MgDriveItemExtractSensitivityLabels", + "oracle": "Invoke-MgExtractDriveItemSensitivityLabel" }, - "replacementNoun": "DeviceManagementReportPolicyNonComplianceReport", - "replacementVerb": "Get" + "replacementNoun": "ExtractDriveItemSensitivityLabel" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getpolicynoncompliancesummaryreport", + "uri": "/drives/{}/items/{}/follow", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetPolicyNonComplianceSummaryReport", - "oracle": "Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport" + "ourCommand": "Invoke-MgDriveItemFollow", + "oracle": "Invoke-MgFollowDriveItem" }, - "replacementNoun": "DeviceManagementReportPolicyNonComplianceSummaryReport", - "replacementVerb": "Get" + "replacementNoun": "FollowDriveItem" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getreportfilters", + "uri": "/drives/{}/items/{}/invite", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetReportFilters", - "oracle": "Get-MgDeviceManagementReportFilter" + "ourCommand": "Invoke-MgDriveItemInvite", + "oracle": "Invoke-MgInviteDriveItem" }, - "replacementNoun": "DeviceManagementReportFilter", - "replacementVerb": "Get" + "replacementNoun": "InviteDriveItem" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/getsettingnoncompliancereport", + "uri": "/drives/{}/items/{}/permanentdelete", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportGetSettingNonComplianceReport", - "oracle": "Get-MgDeviceManagementReportSettingNonComplianceReport" + "ourCommand": "Invoke-MgDriveItemPermanentDelete", + "oracle": "Remove-MgDriveItemPermanent" }, - "replacementNoun": "DeviceManagementReportSettingNonComplianceReport", - "replacementVerb": "Get" + "replacementNoun": "DriveItemPermanent", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/reports/retrievedeviceappinstallationstatusreport", + "uri": "/drives/{}/items/{}/permissions/{}/grant", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementReportRetrieveDeviceAppInstallationStatusReport", - "oracle": "Get-MgDeviceManagementReportDeviceAppInstallationStatusReport" + "ourCommand": "Invoke-MgDriveItemPermissionGrant", + "oracle": "Grant-MgDriveItemPermission" }, - "replacementNoun": "DeviceManagementReportDeviceAppInstallationStatusReport", - "replacementVerb": "Get" + "replacementNoun": "DriveItemPermission", + "replacementVerb": "Grant" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/endgraceperiod", + "uri": "/drives/{}/items/{}/preview", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsEndGracePeriod", - "oracle": "Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod" + "ourCommand": "Invoke-MgDriveItemPreview", + "oracle": "Invoke-MgPreviewDriveItem" }, - "replacementNoun": "DeviceManagementVirtualEndpointCloudPcGracePeriod", - "replacementVerb": "Stop" + "replacementNoun": "PreviewDriveItem" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/reboot", + "uri": "/drives/{}/items/{}/restore", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsReboot", - "oracle": "Restart-MgDeviceManagementVirtualEndpointCloudPc" + "ourCommand": "Invoke-MgDriveItemRestore", + "oracle": "Restore-MgDriveItem" }, - "replacementNoun": "DeviceManagementVirtualEndpointCloudPc", - "replacementVerb": "Restart" + "replacementNoun": "DriveItem", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/rename", + "uri": "/drives/{}/items/{}/subscriptions/{}/reauthorize", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsRename", - "oracle": "Rename-MgDeviceManagementVirtualEndpointCloudPc" + "ourCommand": "Invoke-MgDriveItemSubscriptionReauthorize", + "oracle": "Invoke-MgReauthorizeDriveItemSubscription" }, - "replacementNoun": "DeviceManagementVirtualEndpointCloudPc", - "replacementVerb": "Rename" + "replacementNoun": "ReauthorizeDriveItemSubscription" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/reprovision", + "uri": "/drives/{}/items/{}/unfollow", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsReprovision", - "oracle": "Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc" + "ourCommand": "Invoke-MgDriveItemUnfollow", + "oracle": "Invoke-MgUnfollowDriveItem" }, - "replacementNoun": "ReprovisionDeviceManagementVirtualEndpointCloudPc" + "replacementNoun": "UnfollowDriveItem" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/resize", + "uri": "/drives/{}/items/{}/validatepermission", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsResize", - "oracle": "Resize-MgDeviceManagementVirtualEndpointCloudPc" + "ourCommand": "Invoke-MgDriveItemValidatePermission", + "oracle": "Test-MgDriveItemPermission" }, - "replacementNoun": "DeviceManagementVirtualEndpointCloudPc", - "replacementVerb": "Resize" + "replacementNoun": "DriveItemPermission", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/restore", + "uri": "/drives/{}/items/{}/versions/{}/restoreversion", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsRestore", - "oracle": "Restore-MgDeviceManagementVirtualEndpointCloudPc" + "ourCommand": "Invoke-MgDriveItemVersionRestoreVersion", + "oracle": "Restore-MgDriveItemVersion" }, - "replacementNoun": "DeviceManagementVirtualEndpointCloudPc", + "replacementNoun": "DriveItemVersion", "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/troubleshoot", + "uri": "/drives/{}/list/contenttypes/{}/associatewithhubsites", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsTroubleshoot", - "oracle": "Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc" + "ourCommand": "Invoke-MgDriveListContentTypeAssociateWithHubSites", + "oracle": "Join-MgDriveListContentTypeWithHubSite" }, - "replacementNoun": "TroubleshootDeviceManagementVirtualEndpointCloudPc" + "replacementNoun": "DriveListContentTypeWithHubSite", + "replacementVerb": "Join" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/virtualendpoint/onpremisesconnections/{}/runhealthchecks", + "uri": "/drives/{}/list/contenttypes/{}/copytodefaultcontentlocation", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointOnPremiseConnectionRunHealthChecks", - "oracle": "Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck" + "ourCommand": "Invoke-MgDriveListContentTypeCopyToDefaultContentLocation", + "oracle": "Copy-MgDriveListContentTypeToDefaultContentLocation" }, - "replacementNoun": "DeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck", - "replacementVerb": "Start" + "replacementNoun": "DriveListContentTypeToDefaultContentLocation", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/virtualendpoint/onpremisesconnections/{}/updateaddomainpassword", + "uri": "/drives/{}/list/contenttypes/{}/publish", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointOnPremiseConnectionUpdateAdDomainPassword", - "oracle": "Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword" + "ourCommand": "Invoke-MgDriveListContentTypePublish", + "oracle": "Publish-MgDriveListContentType" }, - "replacementNoun": "DeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword", - "replacementVerb": "Update" + "replacementNoun": "DriveListContentType", + "replacementVerb": "Publish" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/virtualendpoint/provisioningpolicies/{}/assign", + "uri": "/drives/{}/list/contenttypes/{}/unpublish", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointProvisioningPolicyAssign", - "oracle": "Set-MgDeviceManagementVirtualEndpointProvisioningPolicy" + "ourCommand": "Invoke-MgDriveListContentTypeUnpublish", + "oracle": "Unpublish-MgDriveListContentType" }, - "replacementNoun": "DeviceManagementVirtualEndpointProvisioningPolicy", - "replacementVerb": "Set" + "replacementNoun": "DriveListContentType", + "replacementVerb": "Unpublish" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/virtualendpoint/report/retrievecloudpcrecommendationreports", + "uri": "/drives/{}/list/contenttypes/addcopy", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointReportRetrieveCloudPcRecommendationReports", - "oracle": "Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport" + "ourCommand": "Invoke-MgDriveListContentTypeAddCopy", + "oracle": "Add-MgDriveListContentTypeCopy" }, - "replacementNoun": "DeviceManagementVirtualEndpointReportCloudPcRecommendationReport", - "replacementVerb": "Get" + "replacementNoun": "DriveListContentTypeCopy", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/virtualendpoint/usersettings/{}/assign", + "uri": "/drives/{}/list/contenttypes/addcopyfromcontenttypehub", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointUserSettingAssign", - "oracle": "Set-MgDeviceManagementVirtualEndpointUserSetting" + "ourCommand": "Invoke-MgDriveListContentTypeAddCopyFromContentTypeHub", + "oracle": "Add-MgDriveListContentTypeCopyFromContentTypeHub" }, - "replacementNoun": "DeviceManagementVirtualEndpointUserSetting", - "replacementVerb": "Set" + "replacementNoun": "DriveListContentTypeCopyFromContentTypeHub", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/windowsautopilotdeviceidentities/{}/assignusertodevice", + "uri": "/drives/{}/list/items/{}/createlink", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityAssignUserToDevice", - "oracle": "Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice" + "ourCommand": "Invoke-MgDriveListItemCreateLink", + "oracle": "New-MgDriveListItemLink" }, - "replacementNoun": "DeviceManagementWindowsAutopilotDeviceIdentityUserToDevice", - "replacementVerb": "Set" + "replacementNoun": "DriveListItemLink", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/windowsautopilotdeviceidentities/{}/unassignuserfromdevice", + "uri": "/drives/{}/list/items/{}/documentsetversions/{}/restore", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityUnassignUserFromDevice", - "oracle": "Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice" + "ourCommand": "Invoke-MgDriveListItemDocumentSetVersionRestore", + "oracle": "Restore-MgDriveListItemDocumentSetVersion" }, - "replacementNoun": "UnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice" + "replacementNoun": "DriveListItemDocumentSetVersion", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devicemanagement/windowsautopilotdeviceidentities/{}/updatedeviceproperties", + "uri": "/drives/{}/list/items/{}/versions/{}/restoreversion", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityUpdateDeviceProperties", - "oracle": "Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty" + "ourCommand": "Invoke-MgDriveListItemVersionRestoreVersion", + "oracle": "Restore-MgDriveListItemVersion" }, - "replacementNoun": "DeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty", - "replacementVerb": "Update" + "replacementNoun": "DriveListItemVersion", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devices/{}/checkmembergroups", + "uri": "/drives/{}/list/subscriptions/{}/reauthorize", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceCheckMemberGroups", - "oracle": "Confirm-MgDeviceMemberGroup" + "ourCommand": "Invoke-MgDriveListSubscriptionReauthorize", + "oracle": "Invoke-MgReauthorizeDriveListSubscription" }, - "replacementNoun": "DeviceMemberGroup", - "replacementVerb": "Confirm" + "replacementNoun": "ReauthorizeDriveListSubscription" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devices/{}/checkmemberobjects", + "uri": "/education/classes/{}/assignments/{}/activate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceCheckMemberObjects", - "oracle": "Confirm-MgDeviceMemberObject" + "ourCommand": "Invoke-MgEducationClassAssignmentActivate", + "oracle": "Initialize-MgEducationClassAssignment" }, - "replacementNoun": "DeviceMemberObject", - "replacementVerb": "Confirm" + "replacementNoun": "EducationClassAssignment", + "replacementVerb": "Initialize" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devices/{}/getmembergroups", + "uri": "/education/classes/{}/assignments/{}/deactivate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceGetMemberGroups", - "oracle": "Get-MgDeviceMemberGroup" + "ourCommand": "Invoke-MgEducationClassAssignmentDeactivate", + "oracle": "Invoke-MgDeactivateEducationClassAssignment" }, - "replacementNoun": "DeviceMemberGroup", - "replacementVerb": "Get" + "replacementNoun": "DeactivateEducationClassAssignment" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devices/{}/getmemberobjects", + "uri": "/education/classes/{}/assignments/{}/publish", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceGetMemberObjects", - "oracle": "Get-MgDeviceMemberObject" + "ourCommand": "Invoke-MgEducationClassAssignmentPublish", + "oracle": "Publish-MgEducationClassAssignment" }, - "replacementNoun": "DeviceMemberObject", - "replacementVerb": "Get" + "replacementNoun": "EducationClassAssignment", + "replacementVerb": "Publish" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devices/getbyids", + "uri": "/education/classes/{}/assignments/{}/setupfeedbackresourcesfolder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceGetByIds", - "oracle": "Get-MgDeviceById" + "ourCommand": "Invoke-MgEducationClassAssignmentSetUpFeedbackResourcesFolder", + "oracle": "Set-MgEducationClassAssignmentUpFeedbackResourceFolder" }, - "replacementNoun": "DeviceById", - "replacementVerb": "Get" + "replacementNoun": "EducationClassAssignmentUpFeedbackResourceFolder", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/devices/validateproperties", + "uri": "/education/classes/{}/assignments/{}/setupresourcesfolder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDeviceValidateProperties", - "oracle": "Test-MgDeviceProperty" + "ourCommand": "Invoke-MgEducationClassAssignmentSetUpResourcesFolder", + "oracle": "Set-MgEducationClassAssignmentUpResourceFolder" }, - "replacementNoun": "DeviceProperty", - "replacementVerb": "Test" + "replacementNoun": "EducationClassAssignmentUpResourceFolder", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directory/deleteditems/{}/checkmembergroups", + "uri": "/education/classes/{}/assignments/{}/submissions/{}/excuse", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryDeletedItemCheckMemberGroups", - "oracle": "Confirm-MgDirectoryDeletedItemMemberGroup" + "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionExcuse", + "oracle": "Invoke-MgExcuseEducationClassAssignmentSubmission" }, - "replacementNoun": "DirectoryDeletedItemMemberGroup", - "replacementVerb": "Confirm" + "replacementNoun": "ExcuseEducationClassAssignmentSubmission" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directory/deleteditems/{}/checkmemberobjects", + "uri": "/education/classes/{}/assignments/{}/submissions/{}/reassign", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryDeletedItemCheckMemberObjects", - "oracle": "Confirm-MgDirectoryDeletedItemMemberObject" + "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionReassign", + "oracle": "Invoke-MgReassignEducationClassAssignmentSubmission" }, - "replacementNoun": "DirectoryDeletedItemMemberObject", - "replacementVerb": "Confirm" + "replacementNoun": "ReassignEducationClassAssignmentSubmission" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directory/deleteditems/{}/getmembergroups", + "uri": "/education/classes/{}/assignments/{}/submissions/{}/return", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryDeletedItemGetMemberGroups", - "oracle": "Get-MgDirectoryDeletedItemMemberGroup" + "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionReturn", + "oracle": "Invoke-MgReturnEducationClassAssignmentSubmission" }, - "replacementNoun": "DirectoryDeletedItemMemberGroup", - "replacementVerb": "Get" + "replacementNoun": "ReturnEducationClassAssignmentSubmission" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directory/deleteditems/{}/getmemberobjects", + "uri": "/education/classes/{}/assignments/{}/submissions/{}/setupresourcesfolder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryDeletedItemGetMemberObjects", - "oracle": "Get-MgDirectoryDeletedItemMemberObject" + "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionSetUpResourcesFolder", + "oracle": "Set-MgEducationClassAssignmentSubmissionUpResourceFolder" }, - "replacementNoun": "DirectoryDeletedItemMemberObject", - "replacementVerb": "Get" + "replacementNoun": "EducationClassAssignmentSubmissionUpResourceFolder", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directory/deleteditems/{}/restore", + "uri": "/education/classes/{}/assignments/{}/submissions/{}/submit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryDeletedItemRestore", - "oracle": "Restore-MgDirectoryDeletedItem" + "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionSubmit", + "oracle": "Submit-MgEducationClassAssignmentSubmission" }, - "replacementNoun": "DirectoryDeletedItem", - "replacementVerb": "Restore" + "replacementNoun": "EducationClassAssignmentSubmission", + "replacementVerb": "Submit" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directory/deleteditems/getbyids", + "uri": "/education/classes/{}/assignments/{}/submissions/{}/unsubmit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryDeletedItemGetByIds", - "oracle": "Get-MgDirectoryDeletedItemById" + "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionUnsubmit", + "oracle": "Invoke-MgUnsubmitEducationClassAssignmentSubmission" }, - "replacementNoun": "DirectoryDeletedItemById", - "replacementVerb": "Get" + "replacementNoun": "UnsubmitEducationClassAssignmentSubmission" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directory/deleteditems/validateproperties", + "uri": "/education/classes/{}/modules/{}/pin", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryDeletedItemValidateProperties", - "oracle": "Test-MgDirectoryDeletedItemProperty" + "ourCommand": "Invoke-MgEducationClassModulePin", + "oracle": "Invoke-MgPinEducationClassModule" }, - "replacementNoun": "DirectoryDeletedItemProperty", - "replacementVerb": "Test" + "replacementNoun": "PinEducationClassModule" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directory/publickeyinfrastructure/certificatebasedauthconfigurations/{}/upload", + "uri": "/education/classes/{}/modules/{}/publish", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationUpload", - "oracle": "Invoke-MgUploadDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" + "ourCommand": "Invoke-MgEducationClassModulePublish", + "oracle": "Publish-MgEducationClassModule" }, - "replacementNoun": "UploadDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" + "replacementNoun": "EducationClassModule", + "replacementVerb": "Publish" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryobjects/{}/checkmembergroups", + "uri": "/education/classes/{}/modules/{}/setupresourcesfolder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryObjectCheckMemberGroups", - "oracle": "Confirm-MgDirectoryObjectMemberGroup" + "ourCommand": "Invoke-MgEducationClassModuleSetUpResourcesFolder", + "oracle": "Set-MgEducationClassModuleUpResourceFolder" }, - "replacementNoun": "DirectoryObjectMemberGroup", - "replacementVerb": "Confirm" + "replacementNoun": "EducationClassModuleUpResourceFolder", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryobjects/{}/checkmemberobjects", + "uri": "/education/classes/{}/modules/{}/unpin", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryObjectCheckMemberObjects", - "oracle": "Confirm-MgDirectoryObjectMemberObject" + "ourCommand": "Invoke-MgEducationClassModuleUnpin", + "oracle": "Invoke-MgUnpinEducationClassModule" }, - "replacementNoun": "DirectoryObjectMemberObject", - "replacementVerb": "Confirm" + "replacementNoun": "UnpinEducationClassModule" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryobjects/{}/getmembergroups", + "uri": "/education/me/assignments/{}/activate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryObjectGetMemberGroups", - "oracle": "Get-MgDirectoryObjectMemberGroup" + "ourCommand": "Invoke-MgEducationMeAssignmentActivate", + "oracle": "Initialize-MgEducationMeAssignment" }, - "replacementNoun": "DirectoryObjectMemberGroup", - "replacementVerb": "Get" + "replacementNoun": "EducationMeAssignment", + "replacementVerb": "Initialize" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryobjects/{}/getmemberobjects", + "uri": "/education/me/assignments/{}/deactivate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryObjectGetMemberObjects", - "oracle": "Get-MgDirectoryObjectMemberObject" + "ourCommand": "Invoke-MgEducationMeAssignmentDeactivate", + "oracle": "Invoke-MgDeactivateEducationMeAssignment" }, - "replacementNoun": "DirectoryObjectMemberObject", - "replacementVerb": "Get" + "replacementNoun": "DeactivateEducationMeAssignment" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryobjects/getavailableextensionproperties", + "uri": "/education/me/assignments/{}/publish", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryObjectGetAvailableExtensionProperties", - "oracle": "Get-MgDirectoryObjectAvailableExtensionProperty" + "ourCommand": "Invoke-MgEducationMeAssignmentPublish", + "oracle": "Publish-MgEducationMeAssignment" }, - "replacementNoun": "DirectoryObjectAvailableExtensionProperty", - "replacementVerb": "Get" + "replacementNoun": "EducationMeAssignment", + "replacementVerb": "Publish" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryobjects/getbyids", + "uri": "/education/me/assignments/{}/setupfeedbackresourcesfolder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryObjectGetByIds", - "oracle": "Get-MgDirectoryObjectById" + "ourCommand": "Invoke-MgEducationMeAssignmentSetUpFeedbackResourcesFolder", + "oracle": "Set-MgEducationMeAssignmentUpFeedbackResourceFolder" }, - "replacementNoun": "DirectoryObjectById", - "replacementVerb": "Get" + "replacementNoun": "EducationMeAssignmentUpFeedbackResourceFolder", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryobjects/validateproperties", + "uri": "/education/me/assignments/{}/setupresourcesfolder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryObjectValidateProperties", - "oracle": "Test-MgDirectoryObjectProperty" + "ourCommand": "Invoke-MgEducationMeAssignmentSetUpResourcesFolder", + "oracle": "Set-MgEducationMeAssignmentUpResourceFolder" }, - "replacementNoun": "DirectoryObjectProperty", - "replacementVerb": "Test" + "replacementNoun": "EducationMeAssignmentUpResourceFolder", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryroles/{}/checkmembergroups", + "uri": "/education/me/assignments/{}/submissions/{}/excuse", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryRoleCheckMemberGroups", - "oracle": "Confirm-MgDirectoryRoleMemberGroup" + "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionExcuse", + "oracle": "Invoke-MgExcuseEducationMeAssignmentSubmission" }, - "replacementNoun": "DirectoryRoleMemberGroup", - "replacementVerb": "Confirm" + "replacementNoun": "ExcuseEducationMeAssignmentSubmission" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryroles/{}/checkmemberobjects", + "uri": "/education/me/assignments/{}/submissions/{}/reassign", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryRoleCheckMemberObjects", - "oracle": "Confirm-MgDirectoryRoleMemberObject" + "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionReassign", + "oracle": "Invoke-MgReassignEducationMeAssignmentSubmission" }, - "replacementNoun": "DirectoryRoleMemberObject", - "replacementVerb": "Confirm" + "replacementNoun": "ReassignEducationMeAssignmentSubmission" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryroles/{}/getmembergroups", + "uri": "/education/me/assignments/{}/submissions/{}/return", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryRoleGetMemberGroups", - "oracle": "Get-MgDirectoryRoleMemberGroup" + "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionReturn", + "oracle": "Invoke-MgReturnEducationMeAssignmentSubmission" }, - "replacementNoun": "DirectoryRoleMemberGroup", - "replacementVerb": "Get" + "replacementNoun": "ReturnEducationMeAssignmentSubmission" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryroles/{}/getmemberobjects", + "uri": "/education/me/assignments/{}/submissions/{}/setupresourcesfolder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryRoleGetMemberObjects", - "oracle": "Get-MgDirectoryRoleMemberObject" + "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionSetUpResourcesFolder", + "oracle": "Set-MgEducationMeAssignmentSubmissionUpResourceFolder" }, - "replacementNoun": "DirectoryRoleMemberObject", - "replacementVerb": "Get" + "replacementNoun": "EducationMeAssignmentSubmissionUpResourceFolder", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryroles/getbyids", + "uri": "/education/me/assignments/{}/submissions/{}/submit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryRoleGetByIds", - "oracle": "Get-MgDirectoryRoleById" + "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionSubmit", + "oracle": "Submit-MgEducationMeAssignmentSubmission" }, - "replacementNoun": "DirectoryRoleById", - "replacementVerb": "Get" + "replacementNoun": "EducationMeAssignmentSubmission", + "replacementVerb": "Submit" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryroles/validateproperties", + "uri": "/education/me/assignments/{}/submissions/{}/unsubmit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryRoleValidateProperties", - "oracle": "Test-MgDirectoryRoleProperty" + "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionUnsubmit", + "oracle": "Invoke-MgUnsubmitEducationMeAssignmentSubmission" }, - "replacementNoun": "DirectoryRoleProperty", - "replacementVerb": "Test" + "replacementNoun": "UnsubmitEducationMeAssignmentSubmission" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryroletemplates/{}/checkmembergroups", + "uri": "/education/reports/reflectcheckinresponses", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryRoleTemplateCheckMemberGroups", - "oracle": "Confirm-MgDirectoryRoleTemplateMemberGroup" + "ourCommand": "New-MgEducationReportReflectCheckInResponse", + "oracle": "New-MgEducationReportReflectCheck" }, - "replacementNoun": "DirectoryRoleTemplateMemberGroup", - "replacementVerb": "Confirm" + "replacementNoun": "EducationReportReflectCheck" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryroletemplates/{}/checkmemberobjects", + "uri": "/education/users/{}/assignments/{}/activate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryRoleTemplateCheckMemberObjects", - "oracle": "Confirm-MgDirectoryRoleTemplateMemberObject" + "ourCommand": "Invoke-MgEducationUserAssignmentActivate", + "oracle": "Initialize-MgEducationUserAssignment" }, - "replacementNoun": "DirectoryRoleTemplateMemberObject", - "replacementVerb": "Confirm" + "replacementNoun": "EducationUserAssignment", + "replacementVerb": "Initialize" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryroletemplates/{}/getmembergroups", + "uri": "/education/users/{}/assignments/{}/deactivate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryRoleTemplateGetMemberGroups", - "oracle": "Get-MgDirectoryRoleTemplateMemberGroup" + "ourCommand": "Invoke-MgEducationUserAssignmentDeactivate", + "oracle": "Invoke-MgDeactivateEducationUserAssignment" }, - "replacementNoun": "DirectoryRoleTemplateMemberGroup", - "replacementVerb": "Get" + "replacementNoun": "DeactivateEducationUserAssignment" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryroletemplates/{}/getmemberobjects", + "uri": "/education/users/{}/assignments/{}/publish", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryRoleTemplateGetMemberObjects", - "oracle": "Get-MgDirectoryRoleTemplateMemberObject" + "ourCommand": "Invoke-MgEducationUserAssignmentPublish", + "oracle": "Publish-MgEducationUserAssignment" }, - "replacementNoun": "DirectoryRoleTemplateMemberObject", - "replacementVerb": "Get" + "replacementNoun": "EducationUserAssignment", + "replacementVerb": "Publish" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryroletemplates/getbyids", + "uri": "/education/users/{}/assignments/{}/setupfeedbackresourcesfolder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryRoleTemplateGetByIds", - "oracle": "Get-MgDirectoryRoleTemplateById" + "ourCommand": "Invoke-MgEducationUserAssignmentSetUpFeedbackResourcesFolder", + "oracle": "Set-MgEducationUserAssignmentUpFeedbackResourceFolder" }, - "replacementNoun": "DirectoryRoleTemplateById", - "replacementVerb": "Get" + "replacementNoun": "EducationUserAssignmentUpFeedbackResourceFolder", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/directoryroletemplates/validateproperties", + "uri": "/education/users/{}/assignments/{}/setupresourcesfolder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDirectoryRoleTemplateValidateProperties", - "oracle": "Test-MgDirectoryRoleTemplateProperty" + "ourCommand": "Invoke-MgEducationUserAssignmentSetUpResourcesFolder", + "oracle": "Set-MgEducationUserAssignmentUpResourceFolder" }, - "replacementNoun": "DirectoryRoleTemplateProperty", - "replacementVerb": "Test" + "replacementNoun": "EducationUserAssignmentUpResourceFolder", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/domains/{}/forcedelete", + "uri": "/education/users/{}/assignments/{}/submissions/{}/excuse", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDomainForceDelete", - "oracle": "Invoke-MgForceDomainDelete" + "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionExcuse", + "oracle": "Invoke-MgExcuseEducationUserAssignmentSubmission" }, - "replacementNoun": "ForceDomainDelete" + "replacementNoun": "ExcuseEducationUserAssignmentSubmission" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/domains/{}/promote", + "uri": "/education/users/{}/assignments/{}/submissions/{}/reassign", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDomainPromote", - "oracle": "Invoke-MgPromoteDomain" + "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionReassign", + "oracle": "Invoke-MgReassignEducationUserAssignmentSubmission" }, - "replacementNoun": "PromoteDomain" + "replacementNoun": "ReassignEducationUserAssignmentSubmission" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/domains/{}/verify", + "uri": "/education/users/{}/assignments/{}/submissions/{}/return", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDomainVerify", - "oracle": "Confirm-MgDomain" + "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionReturn", + "oracle": "Invoke-MgReturnEducationUserAssignmentSubmission" }, - "replacementNoun": "Domain", - "replacementVerb": "Confirm" + "replacementNoun": "ReturnEducationUserAssignmentSubmission" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/assignsensitivitylabel", + "uri": "/education/users/{}/assignments/{}/submissions/{}/setupresourcesfolder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemAssignSensitivityLabel", - "oracle": "Set-MgDriveItemSensitivityLabel" + "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionSetUpResourcesFolder", + "oracle": "Set-MgEducationUserAssignmentSubmissionUpResourceFolder" }, - "replacementNoun": "DriveItemSensitivityLabel", + "replacementNoun": "EducationUserAssignmentSubmissionUpResourceFolder", "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/checkin", + "uri": "/education/users/{}/assignments/{}/submissions/{}/submit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemCheckin", - "oracle": "Invoke-MgCheckinDriveItem" + "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionSubmit", + "oracle": "Submit-MgEducationUserAssignmentSubmission" }, - "replacementNoun": "CheckinDriveItem" + "replacementNoun": "EducationUserAssignmentSubmission", + "replacementVerb": "Submit" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/checkout", + "uri": "/education/users/{}/assignments/{}/submissions/{}/unsubmit", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemCheckout", - "oracle": "Invoke-MgCheckoutDriveItem" + "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionUnsubmit", + "oracle": "Invoke-MgUnsubmitEducationUserAssignmentSubmission" }, - "replacementNoun": "CheckoutDriveItem" + "replacementNoun": "UnsubmitEducationUserAssignmentSubmission" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/copy", + "uri": "/external/connections/{}/items/{}/addactivities", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemCopy", - "oracle": "Copy-MgDriveItem" + "ourCommand": "Invoke-MgExternalConnectionItemAddActivities", + "oracle": "Add-MgExternalConnectionItemActivity" }, - "replacementNoun": "DriveItem", - "replacementVerb": "Copy" + "replacementNoun": "ExternalConnectionItemActivity", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/createlink", + "uri": "/grouplifecyclepolicies/{}/addgroup", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemCreateLink", - "oracle": "New-MgDriveItemLink" + "ourCommand": "Invoke-MgGroupLifecyclePolicyAddGroup", + "oracle": "Add-MgGroupToLifecyclePolicy" }, - "replacementNoun": "DriveItemLink", - "replacementVerb": "New" + "replacementNoun": "GroupToLifecyclePolicy", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/createuploadsession", + "uri": "/grouplifecyclepolicies/{}/removegroup", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemCreateUploadSession", - "oracle": "New-MgDriveItemUploadSession" + "ourCommand": "Invoke-MgGroupLifecyclePolicyRemoveGroup", + "oracle": "Remove-MgGroupFromLifecyclePolicy" }, - "replacementNoun": "DriveItemUploadSession", - "replacementVerb": "New" + "replacementNoun": "GroupFromLifecyclePolicy", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/discardcheckout", + "uri": "/groups/{}/addfavorite", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemDiscardCheckout", - "oracle": "Remove-MgDriveItemCheckout" + "ourCommand": "Invoke-MgGroupAddFavorite", + "oracle": "Add-MgGroupFavorite" }, - "replacementNoun": "DriveItemCheckout", - "replacementVerb": "Remove" + "replacementNoun": "GroupFavorite", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/extractsensitivitylabels", + "uri": "/groups/{}/assignlicense", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemExtractSensitivityLabels", - "oracle": "Invoke-MgExtractDriveItemSensitivityLabel" + "ourCommand": "Invoke-MgGroupAssignLicense", + "oracle": "Set-MgGroupLicense" }, - "replacementNoun": "ExtractDriveItemSensitivityLabel" + "replacementNoun": "GroupLicense", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/follow", + "uri": "/groups/{}/calendar/getschedule", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemFollow", - "oracle": "Invoke-MgFollowDriveItem" + "ourCommand": "Invoke-MgGroupCalendarGetSchedule", + "oracle": "Get-MgGroupCalendarSchedule" }, - "replacementNoun": "FollowDriveItem" + "replacementNoun": "GroupCalendarSchedule", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/invite", + "uri": "/groups/{}/calendar/permanentdelete", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemInvite", - "oracle": "Invoke-MgInviteDriveItem" + "ourCommand": "Invoke-MgGroupCalendarPermanentDelete", + "oracle": "Remove-MgGroupCalendarPermanent" }, - "replacementNoun": "InviteDriveItem" + "replacementNoun": "GroupCalendarPermanent", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/permanentdelete", + "uri": "/groups/{}/checkgrantedpermissionsforapp", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemPermanentDelete", - "oracle": "Remove-MgDriveItemPermanent" + "ourCommand": "Invoke-MgGroupCheckGrantedPermissionsForApp", + "oracle": "Confirm-MgGroupGrantedPermissionForApp" }, - "replacementNoun": "DriveItemPermanent", - "replacementVerb": "Remove" + "replacementNoun": "GroupGrantedPermissionForApp", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/permissions/{}/grant", + "uri": "/groups/{}/checkmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemPermissionGrant", - "oracle": "Grant-MgDriveItemPermission" + "ourCommand": "Invoke-MgGroupCheckMemberGroups", + "oracle": "Confirm-MgGroupMemberGroup" }, - "replacementNoun": "DriveItemPermission", - "replacementVerb": "Grant" + "replacementNoun": "GroupMemberGroup", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/preview", + "uri": "/groups/{}/checkmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemPreview", - "oracle": "Invoke-MgPreviewDriveItem" + "ourCommand": "Invoke-MgGroupCheckMemberObjects", + "oracle": "Confirm-MgGroupMemberObject" }, - "replacementNoun": "PreviewDriveItem" + "replacementNoun": "GroupMemberObject", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/restore", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/attachments/createuploadsession", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemRestore", - "oracle": "Restore-MgDriveItem" + "ourCommand": "Invoke-MgGroupConversationThreadPostAttachmentCreateUploadSession", + "oracle": "New-MgGroupConversationThreadPostAttachmentUploadSession" }, - "replacementNoun": "DriveItem", - "replacementVerb": "Restore" + "replacementNoun": "GroupConversationThreadPostAttachmentUploadSession", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/subscriptions/{}/reauthorize", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/forward", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemSubscriptionReauthorize", - "oracle": "Invoke-MgReauthorizeDriveItemSubscription" + "ourCommand": "Invoke-MgGroupConversationThreadPostForward", + "oracle": "Invoke-MgForwardGroupConversationThreadPost" }, - "replacementNoun": "ReauthorizeDriveItemSubscription" + "replacementNoun": "ForwardGroupConversationThreadPost" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/unfollow", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/inreplyto/attachments/createuploadsession", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemUnfollow", - "oracle": "Invoke-MgUnfollowDriveItem" + "ourCommand": "Invoke-MgGroupConversationThreadPostInReplyToAttachmentCreateUploadSession", + "oracle": "New-MgGroupConversationThreadPostInReplyToAttachmentUploadSession" }, - "replacementNoun": "UnfollowDriveItem" + "replacementNoun": "GroupConversationThreadPostInReplyToAttachmentUploadSession", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/validatepermission", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/inreplyto/forward", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemValidatePermission", - "oracle": "Test-MgDriveItemPermission" + "ourCommand": "Invoke-MgGroupConversationThreadPostInReplyToForward", + "oracle": "Invoke-MgForwardGroupConversationThreadPostInReplyTo" }, - "replacementNoun": "DriveItemPermission", - "replacementVerb": "Test" + "replacementNoun": "ForwardGroupConversationThreadPostInReplyTo" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/versions/{}/restoreversion", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/inreplyto/reply", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveItemVersionRestoreVersion", - "oracle": "Restore-MgDriveItemVersion" + "ourCommand": "Invoke-MgGroupConversationThreadPostInReplyToReply", + "oracle": "Invoke-MgReplyGroupConversationThreadPostInReplyTo" }, - "replacementNoun": "DriveItemVersion", - "replacementVerb": "Restore" + "replacementNoun": "ReplyGroupConversationThreadPostInReplyTo" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/list/contenttypes/{}/associatewithhubsites", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/reply", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveListContentTypeAssociateWithHubSites", - "oracle": "Join-MgDriveListContentTypeWithHubSite" + "ourCommand": "Invoke-MgGroupConversationThreadPostReply", + "oracle": "Invoke-MgReplyGroupConversationThreadPost" }, - "replacementNoun": "DriveListContentTypeWithHubSite", - "replacementVerb": "Join" + "replacementNoun": "ReplyGroupConversationThreadPost" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/list/contenttypes/{}/copytodefaultcontentlocation", + "uri": "/groups/{}/conversations/{}/threads/{}/reply", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveListContentTypeCopyToDefaultContentLocation", - "oracle": "Copy-MgDriveListContentTypeToDefaultContentLocation" + "ourCommand": "Invoke-MgGroupConversationThreadReply", + "oracle": "Invoke-MgReplyGroupConversationThread" }, - "replacementNoun": "DriveListContentTypeToDefaultContentLocation", - "replacementVerb": "Copy" + "replacementNoun": "ReplyGroupConversationThread" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/list/contenttypes/{}/publish", + "uri": "/groups/{}/events/{}/accept", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveListContentTypePublish", - "oracle": "Publish-MgDriveListContentType" + "ourCommand": "Invoke-MgGroupEventAccept", + "oracle": "Invoke-MgAcceptGroupEvent" }, - "replacementNoun": "DriveListContentType", - "replacementVerb": "Publish" + "replacementNoun": "AcceptGroupEvent" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/list/contenttypes/{}/unpublish", + "uri": "/groups/{}/events/{}/attachments/createuploadsession", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveListContentTypeUnpublish", - "oracle": "Unpublish-MgDriveListContentType" + "ourCommand": "Invoke-MgGroupEventAttachmentCreateUploadSession", + "oracle": "New-MgGroupEventAttachmentUploadSession" }, - "replacementNoun": "DriveListContentType", - "replacementVerb": "Unpublish" + "replacementNoun": "GroupEventAttachmentUploadSession", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/list/contenttypes/addcopy", + "uri": "/groups/{}/events/{}/cancel", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveListContentTypeAddCopy", - "oracle": "Add-MgDriveListContentTypeCopy" + "ourCommand": "Invoke-MgGroupEventCancel", + "oracle": "Stop-MgGroupEvent" }, - "replacementNoun": "DriveListContentTypeCopy", - "replacementVerb": "Add" + "replacementNoun": "GroupEvent", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/list/contenttypes/addcopyfromcontenttypehub", + "uri": "/groups/{}/events/{}/decline", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveListContentTypeAddCopyFromContentTypeHub", - "oracle": "Add-MgDriveListContentTypeCopyFromContentTypeHub" + "ourCommand": "Invoke-MgGroupEventDecline", + "oracle": "Invoke-MgDeclineGroupEvent" }, - "replacementNoun": "DriveListContentTypeCopyFromContentTypeHub", - "replacementVerb": "Add" + "replacementNoun": "DeclineGroupEvent" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/list/items/{}/createlink", + "uri": "/groups/{}/events/{}/dismissreminder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveListItemCreateLink", - "oracle": "New-MgDriveListItemLink" + "ourCommand": "Invoke-MgGroupEventDismissReminder", + "oracle": "Invoke-MgDismissGroupEventReminder" }, - "replacementNoun": "DriveListItemLink", - "replacementVerb": "New" + "replacementNoun": "DismissGroupEventReminder" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/list/items/{}/documentsetversions/{}/restore", + "uri": "/groups/{}/events/{}/forward", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveListItemDocumentSetVersionRestore", - "oracle": "Restore-MgDriveListItemDocumentSetVersion" + "ourCommand": "Invoke-MgGroupEventForward", + "oracle": "Invoke-MgForwardGroupEvent" }, - "replacementNoun": "DriveListItemDocumentSetVersion", - "replacementVerb": "Restore" + "replacementNoun": "ForwardGroupEvent" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/list/items/{}/versions/{}/restoreversion", + "uri": "/groups/{}/events/{}/permanentdelete", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveListItemVersionRestoreVersion", - "oracle": "Restore-MgDriveListItemVersion" + "ourCommand": "Invoke-MgGroupEventPermanentDelete", + "oracle": "Remove-MgGroupEventPermanent" }, - "replacementNoun": "DriveListItemVersion", - "replacementVerb": "Restore" + "replacementNoun": "GroupEventPermanent", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/list/subscriptions/{}/reauthorize", + "uri": "/groups/{}/events/{}/snoozereminder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgDriveListSubscriptionReauthorize", - "oracle": "Invoke-MgReauthorizeDriveListSubscription" + "ourCommand": "Invoke-MgGroupEventSnoozeReminder", + "oracle": "Invoke-MgSnoozeGroupEventReminder" }, - "replacementNoun": "ReauthorizeDriveListSubscription" + "replacementNoun": "SnoozeGroupEventReminder" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/assignments/{}/activate", + "uri": "/groups/{}/events/{}/tentativelyaccept", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassAssignmentActivate", - "oracle": "Initialize-MgEducationClassAssignment" + "ourCommand": "Invoke-MgGroupEventTentativelyAccept", + "oracle": "Invoke-MgAcceptGroupEventTentatively" }, - "replacementNoun": "EducationClassAssignment", - "replacementVerb": "Initialize" + "replacementNoun": "AcceptGroupEventTentatively" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/assignments/{}/deactivate", + "uri": "/groups/{}/getmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassAssignmentDeactivate", - "oracle": "Invoke-MgDeactivateEducationClassAssignment" + "ourCommand": "Invoke-MgGroupGetMemberGroups", + "oracle": "Get-MgGroupMemberGroup" }, - "replacementNoun": "DeactivateEducationClassAssignment" + "replacementNoun": "GroupMemberGroup", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/assignments/{}/publish", + "uri": "/groups/{}/getmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassAssignmentPublish", - "oracle": "Publish-MgEducationClassAssignment" + "ourCommand": "Invoke-MgGroupGetMemberObjects", + "oracle": "Get-MgGroupMemberObject" }, - "replacementNoun": "EducationClassAssignment", - "replacementVerb": "Publish" + "replacementNoun": "GroupMemberObject", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/assignments/{}/setupfeedbackresourcesfolder", + "uri": "/groups/{}/onenote/notebooks/{}/copynotebook", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassAssignmentSetUpFeedbackResourcesFolder", - "oracle": "Set-MgEducationClassAssignmentUpFeedbackResourceFolder" + "ourCommand": "Invoke-MgGroupOnenoteNotebookCopyNotebook", + "oracle": "Copy-MgGroupOnenoteNotebook" }, - "replacementNoun": "EducationClassAssignmentUpFeedbackResourceFolder", - "replacementVerb": "Set" + "replacementNoun": "GroupOnenoteNotebook", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/assignments/{}/setupresourcesfolder", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytonotebook", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassAssignmentSetUpResourcesFolder", - "oracle": "Set-MgEducationClassAssignmentUpResourceFolder" + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionGroupSectionCopyToNotebook", + "oracle": "Copy-MgGroupOnenoteNotebookSectionGroupSectionToNotebook" }, - "replacementNoun": "EducationClassAssignmentUpResourceFolder", - "replacementVerb": "Set" + "replacementNoun": "GroupOnenoteNotebookSectionGroupSectionToNotebook", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/assignments/{}/submissions/{}/excuse", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytosectiongroup", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionExcuse", - "oracle": "Invoke-MgExcuseEducationClassAssignmentSubmission" + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionGroupSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupOnenoteNotebookSectionGroupSectionToSectionGroup" }, - "replacementNoun": "ExcuseEducationClassAssignmentSubmission" + "replacementNoun": "GroupOnenoteNotebookSectionGroupSectionToSectionGroup", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/assignments/{}/submissions/{}/reassign", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/copytosection", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionReassign", - "oracle": "Invoke-MgReassignEducationClassAssignmentSubmission" + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionGroupSectionPageCopyToSection", + "oracle": "Copy-MgGroupOnenoteNotebookSectionGroupSectionPageToSection" }, - "replacementNoun": "ReassignEducationClassAssignmentSubmission" + "replacementNoun": "GroupOnenoteNotebookSectionGroupSectionPageToSection", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/assignments/{}/submissions/{}/return", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/onenotepatchcontent", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionReturn", - "oracle": "Invoke-MgReturnEducationClassAssignmentSubmission" + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionGroupSectionPageOnenotePatchContent", + "oracle": "Update-MgGroupOnenoteNotebookSectionGroupSectionPageContent" }, - "replacementNoun": "ReturnEducationClassAssignmentSubmission" + "replacementNoun": "GroupOnenoteNotebookSectionGroupSectionPageContent", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/assignments/{}/submissions/{}/setupresourcesfolder", + "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/copytonotebook", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionSetUpResourcesFolder", - "oracle": "Set-MgEducationClassAssignmentSubmissionUpResourceFolder" + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionCopyToNotebook", + "oracle": "Copy-MgGroupOnenoteNotebookSectionToNotebook" }, - "replacementNoun": "EducationClassAssignmentSubmissionUpResourceFolder", - "replacementVerb": "Set" + "replacementNoun": "GroupOnenoteNotebookSectionToNotebook", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/assignments/{}/submissions/{}/submit", + "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/copytosectiongroup", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionSubmit", - "oracle": "Submit-MgEducationClassAssignmentSubmission" + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupOnenoteNotebookSectionToSectionGroup" }, - "replacementNoun": "EducationClassAssignmentSubmission", - "replacementVerb": "Submit" + "replacementNoun": "GroupOnenoteNotebookSectionToSectionGroup", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/assignments/{}/submissions/{}/unsubmit", + "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/pages/{}/copytosection", "action": "rename", - "evidence": { - "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionUnsubmit", - "oracle": "Invoke-MgUnsubmitEducationClassAssignmentSubmission" + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionPageCopyToSection", + "oracle": "Copy-MgGroupOnenoteNotebookSectionPageToSection" }, - "replacementNoun": "UnsubmitEducationClassAssignmentSubmission" + "replacementNoun": "GroupOnenoteNotebookSectionPageToSection", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/modules/{}/pin", + "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/pages/{}/onenotepatchcontent", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassModulePin", - "oracle": "Invoke-MgPinEducationClassModule" + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionPageOnenotePatchContent", + "oracle": "Update-MgGroupOnenoteNotebookSectionPageContent" }, - "replacementNoun": "PinEducationClassModule" + "replacementNoun": "GroupOnenoteNotebookSectionPageContent", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/modules/{}/publish", + "uri": "/groups/{}/onenote/notebooks/getnotebookfromweburl", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassModulePublish", - "oracle": "Publish-MgEducationClassModule" + "ourCommand": "Invoke-MgGroupOnenoteNotebookGetNotebookFromWebUrl", + "oracle": "Get-MgGroupOnenoteNotebookFromWebUrl" }, - "replacementNoun": "EducationClassModule", - "replacementVerb": "Publish" + "replacementNoun": "GroupOnenoteNotebookFromWebUrl", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/modules/{}/setupresourcesfolder", + "uri": "/groups/{}/onenote/pages/{}/copytosection", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassModuleSetUpResourcesFolder", - "oracle": "Set-MgEducationClassModuleUpResourceFolder" + "ourCommand": "Invoke-MgGroupOnenotePageCopyToSection", + "oracle": "Copy-MgGroupOnenotePageToSection" }, - "replacementNoun": "EducationClassModuleUpResourceFolder", - "replacementVerb": "Set" + "replacementNoun": "GroupOnenotePageToSection", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/classes/{}/modules/{}/unpin", + "uri": "/groups/{}/onenote/pages/{}/onenotepatchcontent", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationClassModuleUnpin", - "oracle": "Invoke-MgUnpinEducationClassModule" + "ourCommand": "Invoke-MgGroupOnenotePageOnenotePatchContent", + "oracle": "Update-MgGroupOnenotePageContent" }, - "replacementNoun": "UnpinEducationClassModule" + "replacementNoun": "GroupOnenotePageContent", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/me/assignments/{}/activate", + "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/copytonotebook", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationMeAssignmentActivate", - "oracle": "Initialize-MgEducationMeAssignment" + "ourCommand": "Invoke-MgGroupOnenoteSectionGroupSectionCopyToNotebook", + "oracle": "Copy-MgGroupOnenoteSectionGroupSectionToNotebook" }, - "replacementNoun": "EducationMeAssignment", - "replacementVerb": "Initialize" + "replacementNoun": "GroupOnenoteSectionGroupSectionToNotebook", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/me/assignments/{}/deactivate", + "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/copytosectiongroup", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationMeAssignmentDeactivate", - "oracle": "Invoke-MgDeactivateEducationMeAssignment" + "ourCommand": "Invoke-MgGroupOnenoteSectionGroupSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupOnenoteSectionGroupSectionToSectionGroup" }, - "replacementNoun": "DeactivateEducationMeAssignment" + "replacementNoun": "GroupOnenoteSectionGroupSectionToSectionGroup", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/me/assignments/{}/publish", + "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/copytosection", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationMeAssignmentPublish", - "oracle": "Publish-MgEducationMeAssignment" + "ourCommand": "Invoke-MgGroupOnenoteSectionGroupSectionPageCopyToSection", + "oracle": "Copy-MgGroupOnenoteSectionGroupSectionPageToSection" }, - "replacementNoun": "EducationMeAssignment", - "replacementVerb": "Publish" + "replacementNoun": "GroupOnenoteSectionGroupSectionPageToSection", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/me/assignments/{}/setupfeedbackresourcesfolder", + "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/onenotepatchcontent", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationMeAssignmentSetUpFeedbackResourcesFolder", - "oracle": "Set-MgEducationMeAssignmentUpFeedbackResourceFolder" + "ourCommand": "Invoke-MgGroupOnenoteSectionGroupSectionPageOnenotePatchContent", + "oracle": "Update-MgGroupOnenoteSectionGroupSectionPageContent" }, - "replacementNoun": "EducationMeAssignmentUpFeedbackResourceFolder", - "replacementVerb": "Set" + "replacementNoun": "GroupOnenoteSectionGroupSectionPageContent", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/me/assignments/{}/setupresourcesfolder", + "uri": "/groups/{}/onenote/sections/{}/copytonotebook", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationMeAssignmentSetUpResourcesFolder", - "oracle": "Set-MgEducationMeAssignmentUpResourceFolder" + "ourCommand": "Invoke-MgGroupOnenoteSectionCopyToNotebook", + "oracle": "Copy-MgGroupOnenoteSectionToNotebook" }, - "replacementNoun": "EducationMeAssignmentUpResourceFolder", - "replacementVerb": "Set" + "replacementNoun": "GroupOnenoteSectionToNotebook", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/me/assignments/{}/submissions/{}/excuse", + "uri": "/groups/{}/onenote/sections/{}/copytosectiongroup", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionExcuse", - "oracle": "Invoke-MgExcuseEducationMeAssignmentSubmission" + "ourCommand": "Invoke-MgGroupOnenoteSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupOnenoteSectionToSectionGroup" }, - "replacementNoun": "ExcuseEducationMeAssignmentSubmission" + "replacementNoun": "GroupOnenoteSectionToSectionGroup", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/me/assignments/{}/submissions/{}/reassign", + "uri": "/groups/{}/onenote/sections/{}/pages/{}/copytosection", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionReassign", - "oracle": "Invoke-MgReassignEducationMeAssignmentSubmission" + "ourCommand": "Invoke-MgGroupOnenoteSectionPageCopyToSection", + "oracle": "Copy-MgGroupOnenoteSectionPageToSection" }, - "replacementNoun": "ReassignEducationMeAssignmentSubmission" + "replacementNoun": "GroupOnenoteSectionPageToSection", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/me/assignments/{}/submissions/{}/return", + "uri": "/groups/{}/onenote/sections/{}/pages/{}/onenotepatchcontent", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionReturn", - "oracle": "Invoke-MgReturnEducationMeAssignmentSubmission" + "ourCommand": "Invoke-MgGroupOnenoteSectionPageOnenotePatchContent", + "oracle": "Update-MgGroupOnenoteSectionPageContent" }, - "replacementNoun": "ReturnEducationMeAssignmentSubmission" + "replacementNoun": "GroupOnenoteSectionPageContent", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/me/assignments/{}/submissions/{}/setupresourcesfolder", + "uri": "/groups/{}/removefavorite", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionSetUpResourcesFolder", - "oracle": "Set-MgEducationMeAssignmentSubmissionUpResourceFolder" + "ourCommand": "Invoke-MgGroupRemoveFavorite", + "oracle": "Remove-MgGroupFavorite" }, - "replacementNoun": "EducationMeAssignmentSubmissionUpResourceFolder", - "replacementVerb": "Set" + "replacementNoun": "GroupFavorite", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/me/assignments/{}/submissions/{}/submit", + "uri": "/groups/{}/renew", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionSubmit", - "oracle": "Submit-MgEducationMeAssignmentSubmission" + "ourCommand": "Invoke-MgGroupRenew", + "oracle": "Invoke-MgRenewGroup" }, - "replacementNoun": "EducationMeAssignmentSubmission", - "replacementVerb": "Submit" + "replacementNoun": "RenewGroup" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/me/assignments/{}/submissions/{}/unsubmit", + "uri": "/groups/{}/resetunseencount", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionUnsubmit", - "oracle": "Invoke-MgUnsubmitEducationMeAssignmentSubmission" + "ourCommand": "Invoke-MgGroupResetUnseenCount", + "oracle": "Reset-MgGroupUnseenCount" }, - "replacementNoun": "UnsubmitEducationMeAssignmentSubmission" + "replacementNoun": "GroupUnseenCount", + "replacementVerb": "Reset" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/reports/reflectcheckinresponses", + "uri": "/groups/{}/retryserviceprovisioning", "action": "rename", "evidence": { - "ourCommand": "New-MgEducationReportReflectCheckInResponse", - "oracle": "New-MgEducationReportReflectCheck" + "ourCommand": "Invoke-MgGroupRetryServiceProvisioning", + "oracle": "Invoke-MgRetryGroupServiceProvisioning" }, - "replacementNoun": "EducationReportReflectCheck" + "replacementNoun": "RetryGroupServiceProvisioning" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/users/{}/assignments/{}/activate", + "uri": "/groups/{}/sites/{}/contenttypes/{}/associatewithhubsites", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationUserAssignmentActivate", - "oracle": "Initialize-MgEducationUserAssignment" + "ourCommand": "Invoke-MgGroupSiteContentTypeAssociateWithHubSites", + "oracle": "Join-MgGroupSiteContentTypeWithHubSite" }, - "replacementNoun": "EducationUserAssignment", - "replacementVerb": "Initialize" + "replacementNoun": "GroupSiteContentTypeWithHubSite", + "replacementVerb": "Join" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/users/{}/assignments/{}/deactivate", + "uri": "/groups/{}/sites/{}/contenttypes/{}/copytodefaultcontentlocation", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationUserAssignmentDeactivate", - "oracle": "Invoke-MgDeactivateEducationUserAssignment" + "ourCommand": "Invoke-MgGroupSiteContentTypeCopyToDefaultContentLocation", + "oracle": "Copy-MgGroupSiteContentTypeToDefaultContentLocation" }, - "replacementNoun": "DeactivateEducationUserAssignment" + "replacementNoun": "GroupSiteContentTypeToDefaultContentLocation", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/users/{}/assignments/{}/publish", + "uri": "/groups/{}/sites/{}/contenttypes/{}/publish", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationUserAssignmentPublish", - "oracle": "Publish-MgEducationUserAssignment" + "ourCommand": "Invoke-MgGroupSiteContentTypePublish", + "oracle": "Publish-MgGroupSiteContentType" }, - "replacementNoun": "EducationUserAssignment", + "replacementNoun": "GroupSiteContentType", "replacementVerb": "Publish" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/users/{}/assignments/{}/setupfeedbackresourcesfolder", + "uri": "/groups/{}/sites/{}/contenttypes/{}/unpublish", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationUserAssignmentSetUpFeedbackResourcesFolder", - "oracle": "Set-MgEducationUserAssignmentUpFeedbackResourceFolder" + "ourCommand": "Invoke-MgGroupSiteContentTypeUnpublish", + "oracle": "Unpublish-MgGroupSiteContentType" }, - "replacementNoun": "EducationUserAssignmentUpFeedbackResourceFolder", - "replacementVerb": "Set" + "replacementNoun": "GroupSiteContentType", + "replacementVerb": "Unpublish" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/users/{}/assignments/{}/setupresourcesfolder", + "uri": "/groups/{}/sites/{}/contenttypes/addcopy", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationUserAssignmentSetUpResourcesFolder", - "oracle": "Set-MgEducationUserAssignmentUpResourceFolder" + "ourCommand": "Invoke-MgGroupSiteContentTypeAddCopy", + "oracle": "Add-MgGroupSiteContentTypeCopy" }, - "replacementNoun": "EducationUserAssignmentUpResourceFolder", - "replacementVerb": "Set" + "replacementNoun": "GroupSiteContentTypeCopy", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/users/{}/assignments/{}/submissions/{}/excuse", + "uri": "/groups/{}/sites/{}/contenttypes/addcopyfromcontenttypehub", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionExcuse", - "oracle": "Invoke-MgExcuseEducationUserAssignmentSubmission" + "ourCommand": "Invoke-MgGroupSiteContentTypeAddCopyFromContentTypeHub", + "oracle": "Add-MgGroupSiteContentTypeCopyFromContentTypeHub" }, - "replacementNoun": "ExcuseEducationUserAssignmentSubmission" + "replacementNoun": "GroupSiteContentTypeCopyFromContentTypeHub", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/users/{}/assignments/{}/submissions/{}/reassign", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/associatewithhubsites", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionReassign", - "oracle": "Invoke-MgReassignEducationUserAssignmentSubmission" + "ourCommand": "Invoke-MgGroupSiteListContentTypeAssociateWithHubSites", + "oracle": "Join-MgGroupSiteListContentTypeWithHubSite" }, - "replacementNoun": "ReassignEducationUserAssignmentSubmission" + "replacementNoun": "GroupSiteListContentTypeWithHubSite", + "replacementVerb": "Join" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/users/{}/assignments/{}/submissions/{}/return", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/copytodefaultcontentlocation", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionReturn", - "oracle": "Invoke-MgReturnEducationUserAssignmentSubmission" + "ourCommand": "Invoke-MgGroupSiteListContentTypeCopyToDefaultContentLocation", + "oracle": "Copy-MgGroupSiteListContentTypeToDefaultContentLocation" }, - "replacementNoun": "ReturnEducationUserAssignmentSubmission" + "replacementNoun": "GroupSiteListContentTypeToDefaultContentLocation", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/users/{}/assignments/{}/submissions/{}/setupresourcesfolder", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/publish", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionSetUpResourcesFolder", - "oracle": "Set-MgEducationUserAssignmentSubmissionUpResourceFolder" + "ourCommand": "Invoke-MgGroupSiteListContentTypePublish", + "oracle": "Publish-MgGroupSiteListContentType" }, - "replacementNoun": "EducationUserAssignmentSubmissionUpResourceFolder", - "replacementVerb": "Set" + "replacementNoun": "GroupSiteListContentType", + "replacementVerb": "Publish" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/users/{}/assignments/{}/submissions/{}/submit", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/unpublish", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionSubmit", - "oracle": "Submit-MgEducationUserAssignmentSubmission" + "ourCommand": "Invoke-MgGroupSiteListContentTypeUnpublish", + "oracle": "Unpublish-MgGroupSiteListContentType" }, - "replacementNoun": "EducationUserAssignmentSubmission", - "replacementVerb": "Submit" + "replacementNoun": "GroupSiteListContentType", + "replacementVerb": "Unpublish" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/education/users/{}/assignments/{}/submissions/{}/unsubmit", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/addcopy", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionUnsubmit", - "oracle": "Invoke-MgUnsubmitEducationUserAssignmentSubmission" + "ourCommand": "Invoke-MgGroupSiteListContentTypeAddCopy", + "oracle": "Add-MgGroupSiteListContentTypeCopy" }, - "replacementNoun": "UnsubmitEducationUserAssignmentSubmission" + "replacementNoun": "GroupSiteListContentTypeCopy", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/grouplifecyclepolicies/{}/addgroup", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/addcopyfromcontenttypehub", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupLifecyclePolicyAddGroup", - "oracle": "Add-MgGroupToLifecyclePolicy" + "ourCommand": "Invoke-MgGroupSiteListContentTypeAddCopyFromContentTypeHub", + "oracle": "Add-MgGroupSiteListContentTypeCopyFromContentTypeHub" }, - "replacementNoun": "GroupToLifecyclePolicy", + "replacementNoun": "GroupSiteListContentTypeCopyFromContentTypeHub", "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/grouplifecyclepolicies/{}/removegroup", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/createlink", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupLifecyclePolicyRemoveGroup", - "oracle": "Remove-MgGroupFromLifecyclePolicy" + "ourCommand": "Invoke-MgGroupSiteListItemCreateLink", + "oracle": "New-MgGroupSiteListItemLink" }, - "replacementNoun": "GroupFromLifecyclePolicy", - "replacementVerb": "Remove" + "replacementNoun": "GroupSiteListItemLink", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/addfavorite", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/documentsetversions/{}/restore", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupAddFavorite", - "oracle": "Add-MgGroupFavorite" + "ourCommand": "Invoke-MgGroupSiteListItemDocumentSetVersionRestore", + "oracle": "Restore-MgGroupSiteListItemDocumentSetVersion" }, - "replacementNoun": "GroupFavorite", - "replacementVerb": "Add" + "replacementNoun": "GroupSiteListItemDocumentSetVersion", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/assignlicense", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/permissions/{}/grant", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupAssignLicense", - "oracle": "Set-MgGroupLicense" + "ourCommand": "Invoke-MgGroupSiteListItemPermissionGrant", + "oracle": "Grant-MgGroupSiteListItemPermission" }, - "replacementNoun": "GroupLicense", - "replacementVerb": "Set" + "replacementNoun": "GroupSiteListItemPermission", + "replacementVerb": "Grant" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/calendar/getschedule", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/versions/{}/restoreversion", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupCalendarGetSchedule", - "oracle": "Get-MgGroupCalendarSchedule" + "ourCommand": "Invoke-MgGroupSiteListItemVersionRestoreVersion", + "oracle": "Restore-MgGroupSiteListItemVersion" }, - "replacementNoun": "GroupCalendarSchedule", - "replacementVerb": "Get" + "replacementNoun": "GroupSiteListItemVersion", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/calendar/permanentdelete", + "uri": "/groups/{}/sites/{}/lists/{}/permissions/{}/grant", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupCalendarPermanentDelete", - "oracle": "Remove-MgGroupCalendarPermanent" + "ourCommand": "Invoke-MgGroupSiteListPermissionGrant", + "oracle": "Grant-MgGroupSiteListPermission" }, - "replacementNoun": "GroupCalendarPermanent", - "replacementVerb": "Remove" + "replacementNoun": "GroupSiteListPermission", + "replacementVerb": "Grant" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/checkgrantedpermissionsforapp", + "uri": "/groups/{}/sites/{}/lists/{}/subscriptions/{}/reauthorize", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupCheckGrantedPermissionsForApp", - "oracle": "Confirm-MgGroupGrantedPermissionForApp" + "ourCommand": "Invoke-MgGroupSiteListSubscriptionReauthorize", + "oracle": "Invoke-MgReauthorizeGroupSiteListSubscription" }, - "replacementNoun": "GroupGrantedPermissionForApp", - "replacementVerb": "Confirm" + "replacementNoun": "ReauthorizeGroupSiteListSubscription" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/checkmembergroups", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/copynotebook", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupCheckMemberGroups", - "oracle": "Confirm-MgGroupMemberGroup" + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookCopyNotebook", + "oracle": "Copy-MgGroupSiteOnenoteNotebook" }, - "replacementNoun": "GroupMemberGroup", - "replacementVerb": "Confirm" + "replacementNoun": "GroupSiteOnenoteNotebook", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/checkmemberobjects", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytonotebook", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupCheckMemberObjects", - "oracle": "Confirm-MgGroupMemberObject" + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionCopyToNotebook", + "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionToNotebook" }, - "replacementNoun": "GroupMemberObject", - "replacementVerb": "Confirm" + "replacementNoun": "GroupSiteOnenoteNotebookSectionGroupSectionToNotebook", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/attachments/createuploadsession", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytosectiongroup", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupConversationThreadPostAttachmentCreateUploadSession", - "oracle": "New-MgGroupConversationThreadPostAttachmentUploadSession" + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionToSectionGroup" }, - "replacementNoun": "GroupConversationThreadPostAttachmentUploadSession", - "replacementVerb": "New" + "replacementNoun": "GroupSiteOnenoteNotebookSectionGroupSectionToSectionGroup", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/forward", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/copytosection", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupConversationThreadPostForward", - "oracle": "Invoke-MgForwardGroupConversationThreadPost" + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCopyToSection", + "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionPageToSection" }, - "replacementNoun": "ForwardGroupConversationThreadPost" + "replacementNoun": "GroupSiteOnenoteNotebookSectionGroupSectionPageToSection", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/inreplyto/attachments/createuploadsession", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/copytonotebook", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupConversationThreadPostInReplyToAttachmentCreateUploadSession", - "oracle": "New-MgGroupConversationThreadPostInReplyToAttachmentUploadSession" + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionCopyToNotebook", + "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionToNotebook" }, - "replacementNoun": "GroupConversationThreadPostInReplyToAttachmentUploadSession", - "replacementVerb": "New" + "replacementNoun": "GroupSiteOnenoteNotebookSectionToNotebook", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/inreplyto/forward", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/copytosectiongroup", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupConversationThreadPostInReplyToForward", - "oracle": "Invoke-MgForwardGroupConversationThreadPostInReplyTo" + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionToSectionGroup" }, - "replacementNoun": "ForwardGroupConversationThreadPostInReplyTo" + "replacementNoun": "GroupSiteOnenoteNotebookSectionToSectionGroup", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/inreplyto/reply", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/pages/{}/copytosection", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupConversationThreadPostInReplyToReply", - "oracle": "Invoke-MgReplyGroupConversationThreadPostInReplyTo" + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionPageCopyToSection", + "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionPageToSection" }, - "replacementNoun": "ReplyGroupConversationThreadPostInReplyTo" + "replacementNoun": "GroupSiteOnenoteNotebookSectionPageToSection", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/reply", + "uri": "/groups/{}/sites/{}/onenote/notebooks/getnotebookfromweburl", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupConversationThreadPostReply", - "oracle": "Invoke-MgReplyGroupConversationThreadPost" + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookGetNotebookFromWebUrl", + "oracle": "Get-MgGroupSiteOnenoteNotebookFromWebUrl" }, - "replacementNoun": "ReplyGroupConversationThreadPost" + "replacementNoun": "GroupSiteOnenoteNotebookFromWebUrl", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/conversations/{}/threads/{}/reply", + "uri": "/groups/{}/sites/{}/onenote/pages/{}/copytosection", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupConversationThreadReply", - "oracle": "Invoke-MgReplyGroupConversationThread" + "ourCommand": "Invoke-MgGroupSiteOnenotePageCopyToSection", + "oracle": "Copy-MgGroupSiteOnenotePageToSection" }, - "replacementNoun": "ReplyGroupConversationThread" + "replacementNoun": "GroupSiteOnenotePageToSection", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/events/{}/accept", + "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/copytonotebook", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupEventAccept", - "oracle": "Invoke-MgAcceptGroupEvent" + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionGroupSectionCopyToNotebook", + "oracle": "Copy-MgGroupSiteOnenoteSectionGroupSectionToNotebook" }, - "replacementNoun": "AcceptGroupEvent" + "replacementNoun": "GroupSiteOnenoteSectionGroupSectionToNotebook", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/events/{}/attachments/createuploadsession", + "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/copytosectiongroup", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupEventAttachmentCreateUploadSession", - "oracle": "New-MgGroupEventAttachmentUploadSession" + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionGroupSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupSiteOnenoteSectionGroupSectionToSectionGroup" }, - "replacementNoun": "GroupEventAttachmentUploadSession", - "replacementVerb": "New" + "replacementNoun": "GroupSiteOnenoteSectionGroupSectionToSectionGroup", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/events/{}/cancel", + "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/copytosection", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupEventCancel", - "oracle": "Stop-MgGroupEvent" + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionGroupSectionPageCopyToSection", + "oracle": "Copy-MgGroupSiteOnenoteSectionGroupSectionPageToSection" }, - "replacementNoun": "GroupEvent", - "replacementVerb": "Stop" + "replacementNoun": "GroupSiteOnenoteSectionGroupSectionPageToSection", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/events/{}/decline", + "uri": "/groups/{}/sites/{}/onenote/sections/{}/copytonotebook", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupEventDecline", - "oracle": "Invoke-MgDeclineGroupEvent" + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionCopyToNotebook", + "oracle": "Copy-MgGroupSiteOnenoteSectionToNotebook" }, - "replacementNoun": "DeclineGroupEvent" + "replacementNoun": "GroupSiteOnenoteSectionToNotebook", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/events/{}/dismissreminder", + "uri": "/groups/{}/sites/{}/onenote/sections/{}/copytosectiongroup", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupEventDismissReminder", - "oracle": "Invoke-MgDismissGroupEventReminder" + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupSiteOnenoteSectionToSectionGroup" }, - "replacementNoun": "DismissGroupEventReminder" + "replacementNoun": "GroupSiteOnenoteSectionToSectionGroup", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/events/{}/forward", + "uri": "/groups/{}/sites/{}/onenote/sections/{}/pages/{}/copytosection", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupEventForward", - "oracle": "Invoke-MgForwardGroupEvent" + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionPageCopyToSection", + "oracle": "Copy-MgGroupSiteOnenoteSectionPageToSection" }, - "replacementNoun": "ForwardGroupEvent" + "replacementNoun": "GroupSiteOnenoteSectionPageToSection", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/events/{}/permanentdelete", + "uri": "/groups/{}/sites/{}/pages/{}/sitepage/canvaslayout/horizontalsections/{}/columns/{}/webparts/{}/getpositionofwebpart", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupEventPermanentDelete", - "oracle": "Remove-MgGroupEventPermanent" + "ourCommand": "Invoke-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartGetPositionOfWebPart", + "oracle": "Get-MgGroupSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart" }, - "replacementNoun": "GroupEventPermanent", - "replacementVerb": "Remove" + "replacementNoun": "GroupSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/events/{}/snoozereminder", + "uri": "/groups/{}/sites/{}/pages/{}/sitepage/canvaslayout/verticalsection/webparts/{}/getpositionofwebpart", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupEventSnoozeReminder", - "oracle": "Invoke-MgSnoozeGroupEventReminder" + "ourCommand": "Invoke-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartGetPositionOfWebPart", + "oracle": "Get-MgGroupSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart" }, - "replacementNoun": "SnoozeGroupEventReminder" + "replacementNoun": "GroupSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/events/{}/tentativelyaccept", + "uri": "/groups/{}/sites/{}/pages/{}/sitepage/webparts/{}/getpositionofwebpart", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupEventTentativelyAccept", - "oracle": "Invoke-MgAcceptGroupEventTentatively" + "ourCommand": "Invoke-MgGroupSitePageAsSitePageWebPartGetPositionOfWebPart", + "oracle": "Get-MgGroupSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart" }, - "replacementNoun": "AcceptGroupEventTentatively" + "replacementNoun": "GroupSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/getmembergroups", + "uri": "/groups/{}/sites/{}/permissions/{}/grant", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupGetMemberGroups", - "oracle": "Get-MgGroupMemberGroup" + "ourCommand": "Invoke-MgGroupSitePermissionGrant", + "oracle": "Grant-MgGroupSitePermission" }, - "replacementNoun": "GroupMemberGroup", - "replacementVerb": "Get" + "replacementNoun": "GroupSitePermission", + "replacementVerb": "Grant" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/getmemberobjects", + "uri": "/groups/{}/sites/add", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupGetMemberObjects", - "oracle": "Get-MgGroupMemberObject" + "ourCommand": "Invoke-MgGroupSiteAdd", + "oracle": "Add-MgGroupSite" }, - "replacementNoun": "GroupMemberObject", - "replacementVerb": "Get" + "replacementNoun": "GroupSite", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/notebooks/{}/copynotebook", + "uri": "/groups/{}/sites/remove", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteNotebookCopyNotebook", - "oracle": "Copy-MgGroupOnenoteNotebook" - }, - "replacementNoun": "GroupOnenoteNotebook", - "replacementVerb": "Copy" + "ourCommand": "Invoke-MgGroupSiteRemove", + "oracle": "Remove-MgGroupSite" + }, + "replacementNoun": "GroupSite", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytonotebook", + "uri": "/groups/{}/subscribebymail", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionGroupSectionCopyToNotebook", - "oracle": "Copy-MgGroupOnenoteNotebookSectionGroupSectionToNotebook" + "ourCommand": "Invoke-MgGroupSubscribeByMail", + "oracle": "Invoke-MgSubscribeGroupByMail" }, - "replacementNoun": "GroupOnenoteNotebookSectionGroupSectionToNotebook", - "replacementVerb": "Copy" + "replacementNoun": "SubscribeGroupByMail" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytosectiongroup", + "uri": "/groups/{}/team/archive", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionGroupSectionCopyToSectionGroup", - "oracle": "Copy-MgGroupOnenoteNotebookSectionGroupSectionToSectionGroup" + "ourCommand": "Invoke-MgGroupTeamArchive", + "oracle": "Invoke-MgArchiveGroupTeam" }, - "replacementNoun": "GroupOnenoteNotebookSectionGroupSectionToSectionGroup", - "replacementVerb": "Copy" + "replacementNoun": "ArchiveGroupTeam" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/copytosection", + "uri": "/groups/{}/team/channels/{}/allmembers", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionGroupSectionPageCopyToSection", - "oracle": "Copy-MgGroupOnenoteNotebookSectionGroupSectionPageToSection" + "ourCommand": "New-MgGroupTeamChannelAllMember", + "oracle": "New-MgGroupTeamChannelMember" }, - "replacementNoun": "GroupOnenoteNotebookSectionGroupSectionPageToSection", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamChannelMember" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/onenotepatchcontent", + "uri": "/groups/{}/team/channels/{}/allmembers/add", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionGroupSectionPageOnenotePatchContent", - "oracle": "Update-MgGroupOnenoteNotebookSectionGroupSectionPageContent" + "ourCommand": "Invoke-MgGroupTeamChannelAllMemberAdd", + "oracle": "Add-MgGroupTeamChannelAllMember" }, - "replacementNoun": "GroupOnenoteNotebookSectionGroupSectionPageContent", - "replacementVerb": "Update" + "replacementNoun": "GroupTeamChannelAllMember", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/copytonotebook", + "uri": "/groups/{}/team/channels/{}/allmembers/remove", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionCopyToNotebook", - "oracle": "Copy-MgGroupOnenoteNotebookSectionToNotebook" + "ourCommand": "Invoke-MgGroupTeamChannelAllMemberRemove", + "oracle": "Remove-MgGroupTeamChannelAllMember" }, - "replacementNoun": "GroupOnenoteNotebookSectionToNotebook", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamChannelAllMember", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/copytosectiongroup", + "uri": "/groups/{}/team/channels/{}/archive", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionCopyToSectionGroup", - "oracle": "Copy-MgGroupOnenoteNotebookSectionToSectionGroup" + "ourCommand": "Invoke-MgGroupTeamChannelArchive", + "oracle": "Invoke-MgArchiveGroupTeamChannel" }, - "replacementNoun": "GroupOnenoteNotebookSectionToSectionGroup", - "replacementVerb": "Copy" + "replacementNoun": "ArchiveGroupTeamChannel" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/pages/{}/copytosection", + "uri": "/groups/{}/team/channels/{}/completemigration", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionPageCopyToSection", - "oracle": "Copy-MgGroupOnenoteNotebookSectionPageToSection" + "ourCommand": "Invoke-MgGroupTeamChannelCompleteMigration", + "oracle": "Complete-MgGroupTeamChannelMigration" }, - "replacementNoun": "GroupOnenoteNotebookSectionPageToSection", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamChannelMigration", + "replacementVerb": "Complete" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/pages/{}/onenotepatchcontent", + "uri": "/groups/{}/team/channels/{}/members/add", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionPageOnenotePatchContent", - "oracle": "Update-MgGroupOnenoteNotebookSectionPageContent" + "ourCommand": "Invoke-MgGroupTeamChannelMemberAdd", + "oracle": "Add-MgGroupTeamChannelMember" }, - "replacementNoun": "GroupOnenoteNotebookSectionPageContent", - "replacementVerb": "Update" + "replacementNoun": "GroupTeamChannelMember", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/notebooks/getnotebookfromweburl", + "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/setreaction", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteNotebookGetNotebookFromWebUrl", - "oracle": "Get-MgGroupOnenoteNotebookFromWebUrl" + "ourCommand": "Invoke-MgGroupTeamChannelMessageReplySetReaction", + "oracle": "Set-MgGroupTeamChannelMessageReplyReaction" }, - "replacementNoun": "GroupOnenoteNotebookFromWebUrl", - "replacementVerb": "Get" + "replacementNoun": "GroupTeamChannelMessageReplyReaction", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/pages/{}/copytosection", + "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/softdelete", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenotePageCopyToSection", - "oracle": "Copy-MgGroupOnenotePageToSection" + "ourCommand": "Invoke-MgGroupTeamChannelMessageReplySoftDelete", + "oracle": "Invoke-MgSoftGroupTeamChannelMessageReplyDelete" }, - "replacementNoun": "GroupOnenotePageToSection", - "replacementVerb": "Copy" + "replacementNoun": "SoftGroupTeamChannelMessageReplyDelete" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/pages/{}/onenotepatchcontent", + "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/undosoftdelete", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenotePageOnenotePatchContent", - "oracle": "Update-MgGroupOnenotePageContent" + "ourCommand": "Invoke-MgGroupTeamChannelMessageReplyUndoSoftDelete", + "oracle": "Undo-MgGroupTeamChannelMessageReplySoftDelete" }, - "replacementNoun": "GroupOnenotePageContent", - "replacementVerb": "Update" + "replacementNoun": "GroupTeamChannelMessageReplySoftDelete", + "replacementVerb": "Undo" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/copytonotebook", + "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/unsetreaction", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteSectionGroupSectionCopyToNotebook", - "oracle": "Copy-MgGroupOnenoteSectionGroupSectionToNotebook" + "ourCommand": "Invoke-MgGroupTeamChannelMessageReplyUnsetReaction", + "oracle": "Clear-MgGroupTeamChannelMessageReplyReaction" }, - "replacementNoun": "GroupOnenoteSectionGroupSectionToNotebook", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamChannelMessageReplyReaction", + "replacementVerb": "Clear" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/copytosectiongroup", + "uri": "/groups/{}/team/channels/{}/messages/{}/replies/replywithquote", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteSectionGroupSectionCopyToSectionGroup", - "oracle": "Copy-MgGroupOnenoteSectionGroupSectionToSectionGroup" + "ourCommand": "Invoke-MgGroupTeamChannelMessageReplyReplyWithQuote", + "oracle": "Invoke-MgGraphGroupTeamChannelMessageReply" }, - "replacementNoun": "GroupOnenoteSectionGroupSectionToSectionGroup", - "replacementVerb": "Copy" + "replacementNoun": "GraphGroupTeamChannelMessageReply" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/copytosection", + "uri": "/groups/{}/team/channels/{}/messages/{}/setreaction", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteSectionGroupSectionPageCopyToSection", - "oracle": "Copy-MgGroupOnenoteSectionGroupSectionPageToSection" + "ourCommand": "Invoke-MgGroupTeamChannelMessageSetReaction", + "oracle": "Set-MgGroupTeamChannelMessageReaction" }, - "replacementNoun": "GroupOnenoteSectionGroupSectionPageToSection", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamChannelMessageReaction", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/onenotepatchcontent", + "uri": "/groups/{}/team/channels/{}/messages/{}/softdelete", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteSectionGroupSectionPageOnenotePatchContent", - "oracle": "Update-MgGroupOnenoteSectionGroupSectionPageContent" + "ourCommand": "Invoke-MgGroupTeamChannelMessageSoftDelete", + "oracle": "Invoke-MgSoftGroupTeamChannelMessageDelete" }, - "replacementNoun": "GroupOnenoteSectionGroupSectionPageContent", - "replacementVerb": "Update" + "replacementNoun": "SoftGroupTeamChannelMessageDelete" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/sections/{}/copytonotebook", + "uri": "/groups/{}/team/channels/{}/messages/{}/undosoftdelete", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteSectionCopyToNotebook", - "oracle": "Copy-MgGroupOnenoteSectionToNotebook" + "ourCommand": "Invoke-MgGroupTeamChannelMessageUndoSoftDelete", + "oracle": "Undo-MgGroupTeamChannelMessageSoftDelete" }, - "replacementNoun": "GroupOnenoteSectionToNotebook", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamChannelMessageSoftDelete", + "replacementVerb": "Undo" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/sections/{}/copytosectiongroup", + "uri": "/groups/{}/team/channels/{}/messages/{}/unsetreaction", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteSectionCopyToSectionGroup", - "oracle": "Copy-MgGroupOnenoteSectionToSectionGroup" + "ourCommand": "Invoke-MgGroupTeamChannelMessageUnsetReaction", + "oracle": "Clear-MgGroupTeamChannelMessageReaction" }, - "replacementNoun": "GroupOnenoteSectionToSectionGroup", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamChannelMessageReaction", + "replacementVerb": "Clear" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/sections/{}/pages/{}/copytosection", + "uri": "/groups/{}/team/channels/{}/messages/replywithquote", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteSectionPageCopyToSection", - "oracle": "Copy-MgGroupOnenoteSectionPageToSection" + "ourCommand": "Invoke-MgGroupTeamChannelMessageReplyWithQuote", + "oracle": "Invoke-MgGraphGroupTeamChannelMessage" }, - "replacementNoun": "GroupOnenoteSectionPageToSection", - "replacementVerb": "Copy" + "replacementNoun": "GraphGroupTeamChannelMessage" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/onenote/sections/{}/pages/{}/onenotepatchcontent", + "uri": "/groups/{}/team/channels/{}/provisionemail", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupOnenoteSectionPageOnenotePatchContent", - "oracle": "Update-MgGroupOnenoteSectionPageContent" + "ourCommand": "Invoke-MgGroupTeamChannelProvisionEmail", + "oracle": "New-MgGroupTeamChannelEmail" }, - "replacementNoun": "GroupOnenoteSectionPageContent", - "replacementVerb": "Update" + "replacementNoun": "GroupTeamChannelEmail", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/removefavorite", + "uri": "/groups/{}/team/channels/{}/removeemail", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupRemoveFavorite", - "oracle": "Remove-MgGroupFavorite" + "ourCommand": "Invoke-MgGroupTeamChannelRemoveEmail", + "oracle": "Remove-MgGroupTeamChannelEmail" }, - "replacementNoun": "GroupFavorite", + "replacementNoun": "GroupTeamChannelEmail", "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/renew", + "uri": "/groups/{}/team/channels/{}/startmigration", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupRenew", - "oracle": "Invoke-MgRenewGroup" + "ourCommand": "Invoke-MgGroupTeamChannelStartMigration", + "oracle": "Start-MgGroupTeamChannelMigration" }, - "replacementNoun": "RenewGroup" + "replacementNoun": "GroupTeamChannelMigration", + "replacementVerb": "Start" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/resetunseencount", + "uri": "/groups/{}/team/channels/{}/unarchive", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupResetUnseenCount", - "oracle": "Reset-MgGroupUnseenCount" + "ourCommand": "Invoke-MgGroupTeamChannelUnarchive", + "oracle": "Invoke-MgUnarchiveGroupTeamChannel" }, - "replacementNoun": "GroupUnseenCount", - "replacementVerb": "Reset" + "replacementNoun": "UnarchiveGroupTeamChannel" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/retryserviceprovisioning", + "uri": "/groups/{}/team/clone", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupRetryServiceProvisioning", - "oracle": "Invoke-MgRetryGroupServiceProvisioning" + "ourCommand": "Invoke-MgGroupTeamClone", + "oracle": "Copy-MgGroupTeam" }, - "replacementNoun": "RetryGroupServiceProvisioning" + "replacementNoun": "GroupTeam", + "replacementVerb": "Copy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/contenttypes/{}/associatewithhubsites", + "uri": "/groups/{}/team/completemigration", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteContentTypeAssociateWithHubSites", - "oracle": "Join-MgGroupSiteContentTypeWithHubSite" + "ourCommand": "Invoke-MgGroupTeamCompleteMigration", + "oracle": "Complete-MgGroupTeamMigration" }, - "replacementNoun": "GroupSiteContentTypeWithHubSite", - "replacementVerb": "Join" + "replacementNoun": "GroupTeamMigration", + "replacementVerb": "Complete" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/contenttypes/{}/copytodefaultcontentlocation", + "uri": "/groups/{}/team/installedapps/{}/upgrade", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteContentTypeCopyToDefaultContentLocation", - "oracle": "Copy-MgGroupSiteContentTypeToDefaultContentLocation" + "ourCommand": "Invoke-MgGroupTeamInstalledAppUpgrade", + "oracle": "Update-MgGroupTeamInstalledApp" }, - "replacementNoun": "GroupSiteContentTypeToDefaultContentLocation", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamInstalledApp", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/contenttypes/{}/publish", + "uri": "/groups/{}/team/members/add", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteContentTypePublish", - "oracle": "Publish-MgGroupSiteContentType" + "ourCommand": "Invoke-MgGroupTeamMemberAdd", + "oracle": "Add-MgGroupTeamMember" }, - "replacementNoun": "GroupSiteContentType", - "replacementVerb": "Publish" + "replacementNoun": "GroupTeamMember", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/contenttypes/{}/unpublish", + "uri": "/groups/{}/team/primarychannel/allmembers", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteContentTypeUnpublish", - "oracle": "Unpublish-MgGroupSiteContentType" + "ourCommand": "New-MgGroupTeamPrimaryChannelAllMember", + "oracle": "New-MgGroupTeamPrimaryChannelMember" }, - "replacementNoun": "GroupSiteContentType", - "replacementVerb": "Unpublish" + "replacementNoun": "GroupTeamPrimaryChannelMember" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/contenttypes/addcopy", + "uri": "/groups/{}/team/primarychannel/allmembers/add", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteContentTypeAddCopy", - "oracle": "Add-MgGroupSiteContentTypeCopy" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelAllMemberAdd", + "oracle": "Add-MgGroupTeamPrimaryChannelAllMember" }, - "replacementNoun": "GroupSiteContentTypeCopy", + "replacementNoun": "GroupTeamPrimaryChannelAllMember", "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/contenttypes/addcopyfromcontenttypehub", + "uri": "/groups/{}/team/primarychannel/allmembers/remove", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteContentTypeAddCopyFromContentTypeHub", - "oracle": "Add-MgGroupSiteContentTypeCopyFromContentTypeHub" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelAllMemberRemove", + "oracle": "Remove-MgGroupTeamPrimaryChannelAllMember" }, - "replacementNoun": "GroupSiteContentTypeCopyFromContentTypeHub", - "replacementVerb": "Add" + "replacementNoun": "GroupTeamPrimaryChannelAllMember", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/associatewithhubsites", + "uri": "/groups/{}/team/primarychannel/archive", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteListContentTypeAssociateWithHubSites", - "oracle": "Join-MgGroupSiteListContentTypeWithHubSite" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelArchive", + "oracle": "Invoke-MgArchiveGroupTeamPrimaryChannel" }, - "replacementNoun": "GroupSiteListContentTypeWithHubSite", - "replacementVerb": "Join" + "replacementNoun": "ArchiveGroupTeamPrimaryChannel" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/copytodefaultcontentlocation", + "uri": "/groups/{}/team/primarychannel/completemigration", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteListContentTypeCopyToDefaultContentLocation", - "oracle": "Copy-MgGroupSiteListContentTypeToDefaultContentLocation" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelCompleteMigration", + "oracle": "Complete-MgGroupTeamPrimaryChannelMigration" }, - "replacementNoun": "GroupSiteListContentTypeToDefaultContentLocation", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamPrimaryChannelMigration", + "replacementVerb": "Complete" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/publish", + "uri": "/groups/{}/team/primarychannel/members/add", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteListContentTypePublish", - "oracle": "Publish-MgGroupSiteListContentType" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMemberAdd", + "oracle": "Add-MgGroupTeamPrimaryChannelMember" }, - "replacementNoun": "GroupSiteListContentType", - "replacementVerb": "Publish" + "replacementNoun": "GroupTeamPrimaryChannelMember", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/unpublish", + "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/setreaction", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteListContentTypeUnpublish", - "oracle": "Unpublish-MgGroupSiteListContentType" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplySetReaction", + "oracle": "Set-MgGroupTeamPrimaryChannelMessageReplyReaction" }, - "replacementNoun": "GroupSiteListContentType", - "replacementVerb": "Unpublish" + "replacementNoun": "GroupTeamPrimaryChannelMessageReplyReaction", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/addcopy", + "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/softdelete", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteListContentTypeAddCopy", - "oracle": "Add-MgGroupSiteListContentTypeCopy" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplySoftDelete", + "oracle": "Invoke-MgSoftGroupTeamPrimaryChannelMessageReplyDelete" }, - "replacementNoun": "GroupSiteListContentTypeCopy", - "replacementVerb": "Add" + "replacementNoun": "SoftGroupTeamPrimaryChannelMessageReplyDelete" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/addcopyfromcontenttypehub", + "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/undosoftdelete", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteListContentTypeAddCopyFromContentTypeHub", - "oracle": "Add-MgGroupSiteListContentTypeCopyFromContentTypeHub" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplyUndoSoftDelete", + "oracle": "Undo-MgGroupTeamPrimaryChannelMessageReplySoftDelete" }, - "replacementNoun": "GroupSiteListContentTypeCopyFromContentTypeHub", - "replacementVerb": "Add" + "replacementNoun": "GroupTeamPrimaryChannelMessageReplySoftDelete", + "replacementVerb": "Undo" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/lists/{}/items/{}/createlink", + "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/unsetreaction", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteListItemCreateLink", - "oracle": "New-MgGroupSiteListItemLink" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplyUnsetReaction", + "oracle": "Clear-MgGroupTeamPrimaryChannelMessageReplyReaction" }, - "replacementNoun": "GroupSiteListItemLink", - "replacementVerb": "New" + "replacementNoun": "GroupTeamPrimaryChannelMessageReplyReaction", + "replacementVerb": "Clear" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/lists/{}/items/{}/documentsetversions/{}/restore", + "uri": "/groups/{}/team/primarychannel/messages/{}/replies/replywithquote", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteListItemDocumentSetVersionRestore", - "oracle": "Restore-MgGroupSiteListItemDocumentSetVersion" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplyReplyWithQuote", + "oracle": "Invoke-MgGraphGroupTeamPrimaryChannelMessageReply" }, - "replacementNoun": "GroupSiteListItemDocumentSetVersion", - "replacementVerb": "Restore" + "replacementNoun": "GraphGroupTeamPrimaryChannelMessageReply" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/lists/{}/items/{}/permissions/{}/grant", + "uri": "/groups/{}/team/primarychannel/messages/{}/setreaction", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteListItemPermissionGrant", - "oracle": "Grant-MgGroupSiteListItemPermission" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageSetReaction", + "oracle": "Set-MgGroupTeamPrimaryChannelMessageReaction" }, - "replacementNoun": "GroupSiteListItemPermission", - "replacementVerb": "Grant" + "replacementNoun": "GroupTeamPrimaryChannelMessageReaction", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/lists/{}/items/{}/versions/{}/restoreversion", + "uri": "/groups/{}/team/primarychannel/messages/{}/softdelete", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteListItemVersionRestoreVersion", - "oracle": "Restore-MgGroupSiteListItemVersion" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageSoftDelete", + "oracle": "Invoke-MgSoftGroupTeamPrimaryChannelMessageDelete" }, - "replacementNoun": "GroupSiteListItemVersion", - "replacementVerb": "Restore" + "replacementNoun": "SoftGroupTeamPrimaryChannelMessageDelete" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/lists/{}/permissions/{}/grant", + "uri": "/groups/{}/team/primarychannel/messages/{}/undosoftdelete", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteListPermissionGrant", - "oracle": "Grant-MgGroupSiteListPermission" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageUndoSoftDelete", + "oracle": "Undo-MgGroupTeamPrimaryChannelMessageSoftDelete" }, - "replacementNoun": "GroupSiteListPermission", - "replacementVerb": "Grant" + "replacementNoun": "GroupTeamPrimaryChannelMessageSoftDelete", + "replacementVerb": "Undo" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/lists/{}/subscriptions/{}/reauthorize", + "uri": "/groups/{}/team/primarychannel/messages/{}/unsetreaction", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteListSubscriptionReauthorize", - "oracle": "Invoke-MgReauthorizeGroupSiteListSubscription" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageUnsetReaction", + "oracle": "Clear-MgGroupTeamPrimaryChannelMessageReaction" }, - "replacementNoun": "ReauthorizeGroupSiteListSubscription" + "replacementNoun": "GroupTeamPrimaryChannelMessageReaction", + "replacementVerb": "Clear" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/copynotebook", + "uri": "/groups/{}/team/primarychannel/messages/replywithquote", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookCopyNotebook", - "oracle": "Copy-MgGroupSiteOnenoteNotebook" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplyWithQuote", + "oracle": "Invoke-MgGraphGroupTeamPrimaryChannelMessage" }, - "replacementNoun": "GroupSiteOnenoteNotebook", - "replacementVerb": "Copy" + "replacementNoun": "GraphGroupTeamPrimaryChannelMessage" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytonotebook", + "uri": "/groups/{}/team/primarychannel/provisionemail", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionCopyToNotebook", - "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionToNotebook" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelProvisionEmail", + "oracle": "New-MgGroupTeamPrimaryChannelEmail" }, - "replacementNoun": "GroupSiteOnenoteNotebookSectionGroupSectionToNotebook", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamPrimaryChannelEmail", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytosectiongroup", + "uri": "/groups/{}/team/primarychannel/removeemail", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup", - "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionToSectionGroup" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelRemoveEmail", + "oracle": "Remove-MgGroupTeamPrimaryChannelEmail" }, - "replacementNoun": "GroupSiteOnenoteNotebookSectionGroupSectionToSectionGroup", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamPrimaryChannelEmail", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/copytosection", + "uri": "/groups/{}/team/primarychannel/startmigration", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCopyToSection", - "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionPageToSection" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelStartMigration", + "oracle": "Start-MgGroupTeamPrimaryChannelMigration" }, - "replacementNoun": "GroupSiteOnenoteNotebookSectionGroupSectionPageToSection", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamPrimaryChannelMigration", + "replacementVerb": "Start" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/copytonotebook", + "uri": "/groups/{}/team/primarychannel/unarchive", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionCopyToNotebook", - "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionToNotebook" + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelUnarchive", + "oracle": "Invoke-MgUnarchiveGroupTeamPrimaryChannel" }, - "replacementNoun": "GroupSiteOnenoteNotebookSectionToNotebook", - "replacementVerb": "Copy" + "replacementNoun": "UnarchiveGroupTeamPrimaryChannel" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/copytosectiongroup", + "uri": "/groups/{}/team/schedule/share", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionCopyToSectionGroup", - "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionToSectionGroup" + "ourCommand": "Invoke-MgGroupTeamScheduleShare", + "oracle": "Invoke-MgShareGroupTeamSchedule" }, - "replacementNoun": "GroupSiteOnenoteNotebookSectionToSectionGroup", - "replacementVerb": "Copy" + "replacementNoun": "ShareGroupTeamSchedule" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/pages/{}/copytosection", + "uri": "/groups/{}/team/schedule/timecards/{}/clockout", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionPageCopyToSection", - "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionPageToSection" + "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardClockOut", + "oracle": "Invoke-MgClockGroupTeamScheduleTimeCardOut" }, - "replacementNoun": "GroupSiteOnenoteNotebookSectionPageToSection", - "replacementVerb": "Copy" + "replacementNoun": "ClockGroupTeamScheduleTimeCardOut" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/notebooks/getnotebookfromweburl", + "uri": "/groups/{}/team/schedule/timecards/{}/confirm", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookGetNotebookFromWebUrl", - "oracle": "Get-MgGroupSiteOnenoteNotebookFromWebUrl" + "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardConfirm", + "oracle": "Confirm-MgGroupTeamScheduleTimeCard" }, - "replacementNoun": "GroupSiteOnenoteNotebookFromWebUrl", - "replacementVerb": "Get" + "replacementNoun": "GroupTeamScheduleTimeCard", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/pages/{}/copytosection", + "uri": "/groups/{}/team/schedule/timecards/{}/endbreak", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenotePageCopyToSection", - "oracle": "Copy-MgGroupSiteOnenotePageToSection" + "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardEndBreak", + "oracle": "Stop-MgGroupTeamScheduleTimeCardBreak" }, - "replacementNoun": "GroupSiteOnenotePageToSection", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamScheduleTimeCardBreak", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/copytonotebook", + "uri": "/groups/{}/team/schedule/timecards/{}/startbreak", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteSectionGroupSectionCopyToNotebook", - "oracle": "Copy-MgGroupSiteOnenoteSectionGroupSectionToNotebook" + "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardStartBreak", + "oracle": "Start-MgGroupTeamScheduleTimeCardBreak" }, - "replacementNoun": "GroupSiteOnenoteSectionGroupSectionToNotebook", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamScheduleTimeCardBreak", + "replacementVerb": "Start" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/copytosectiongroup", + "uri": "/groups/{}/team/schedule/timecards/clockin", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteSectionGroupSectionCopyToSectionGroup", - "oracle": "Copy-MgGroupSiteOnenoteSectionGroupSectionToSectionGroup" + "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardClockIn", + "oracle": "Invoke-MgClockGroupTeamScheduleTimeCardIn" }, - "replacementNoun": "GroupSiteOnenoteSectionGroupSectionToSectionGroup", - "replacementVerb": "Copy" + "replacementNoun": "ClockGroupTeamScheduleTimeCardIn" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/copytosection", + "uri": "/groups/{}/team/sendactivitynotification", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteSectionGroupSectionPageCopyToSection", - "oracle": "Copy-MgGroupSiteOnenoteSectionGroupSectionPageToSection" + "ourCommand": "Invoke-MgGroupTeamSendActivityNotification", + "oracle": "Send-MgGroupTeamActivityNotification" }, - "replacementNoun": "GroupSiteOnenoteSectionGroupSectionPageToSection", - "replacementVerb": "Copy" + "replacementNoun": "GroupTeamActivityNotification", + "replacementVerb": "Send" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/sections/{}/copytonotebook", + "uri": "/groups/{}/team/unarchive", "action": "rename", - "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteSectionCopyToNotebook", - "oracle": "Copy-MgGroupSiteOnenoteSectionToNotebook" + "evidence": { + "ourCommand": "Invoke-MgGroupTeamUnarchive", + "oracle": "Invoke-MgUnarchiveGroupTeam" }, - "replacementNoun": "GroupSiteOnenoteSectionToNotebook", - "replacementVerb": "Copy" + "replacementNoun": "UnarchiveGroupTeam" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/sections/{}/copytosectiongroup", + "uri": "/groups/{}/threads/{}/posts/{}/attachments/createuploadsession", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteSectionCopyToSectionGroup", - "oracle": "Copy-MgGroupSiteOnenoteSectionToSectionGroup" + "ourCommand": "Invoke-MgGroupThreadPostAttachmentCreateUploadSession", + "oracle": "New-MgGroupThreadPostAttachmentUploadSession" }, - "replacementNoun": "GroupSiteOnenoteSectionToSectionGroup", - "replacementVerb": "Copy" + "replacementNoun": "GroupThreadPostAttachmentUploadSession", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/onenote/sections/{}/pages/{}/copytosection", + "uri": "/groups/{}/threads/{}/posts/{}/forward", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteOnenoteSectionPageCopyToSection", - "oracle": "Copy-MgGroupSiteOnenoteSectionPageToSection" + "ourCommand": "Invoke-MgGroupThreadPostForward", + "oracle": "Invoke-MgForwardGroupThreadPost" }, - "replacementNoun": "GroupSiteOnenoteSectionPageToSection", - "replacementVerb": "Copy" + "replacementNoun": "ForwardGroupThreadPost" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/{}/permissions/{}/grant", + "uri": "/groups/{}/threads/{}/posts/{}/inreplyto/attachments/createuploadsession", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSitePermissionGrant", - "oracle": "Grant-MgGroupSitePermission" + "ourCommand": "Invoke-MgGroupThreadPostInReplyToAttachmentCreateUploadSession", + "oracle": "New-MgGroupThreadPostInReplyToAttachmentUploadSession" }, - "replacementNoun": "GroupSitePermission", - "replacementVerb": "Grant" + "replacementNoun": "GroupThreadPostInReplyToAttachmentUploadSession", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/add", + "uri": "/groups/{}/threads/{}/posts/{}/inreplyto/forward", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteAdd", - "oracle": "Add-MgGroupSite" + "ourCommand": "Invoke-MgGroupThreadPostInReplyToForward", + "oracle": "Invoke-MgForwardGroupThreadPostInReplyTo" }, - "replacementNoun": "GroupSite", - "replacementVerb": "Add" + "replacementNoun": "ForwardGroupThreadPostInReplyTo" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/sites/remove", + "uri": "/groups/{}/threads/{}/posts/{}/inreplyto/reply", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSiteRemove", - "oracle": "Remove-MgGroupSite" + "ourCommand": "Invoke-MgGroupThreadPostInReplyToReply", + "oracle": "Invoke-MgReplyGroupThreadPostInReplyTo" }, - "replacementNoun": "GroupSite", - "replacementVerb": "Remove" + "replacementNoun": "ReplyGroupThreadPostInReplyTo" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/subscribebymail", + "uri": "/groups/{}/threads/{}/posts/{}/reply", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSubscribeByMail", - "oracle": "Invoke-MgSubscribeGroupByMail" + "ourCommand": "Invoke-MgGroupThreadPostReply", + "oracle": "Invoke-MgReplyGroupThreadPost" }, - "replacementNoun": "SubscribeGroupByMail" + "replacementNoun": "ReplyGroupThreadPost" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/archive", + "uri": "/groups/{}/threads/{}/reply", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamArchive", - "oracle": "Invoke-MgArchiveGroupTeam" + "ourCommand": "Invoke-MgGroupThreadReply", + "oracle": "Invoke-MgReplyGroupThread" }, - "replacementNoun": "ArchiveGroupTeam" + "replacementNoun": "ReplyGroupThread" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/allmembers", + "uri": "/groups/{}/unsubscribebymail", "action": "rename", "evidence": { - "ourCommand": "New-MgGroupTeamChannelAllMember", - "oracle": "New-MgGroupTeamChannelMember" + "ourCommand": "Invoke-MgGroupUnsubscribeByMail", + "oracle": "Invoke-MgGraphGroup" }, - "replacementNoun": "GroupTeamChannelMember" + "replacementNoun": "GraphGroup" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/allmembers/add", + "uri": "/groups/{}/validateproperties", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelAllMemberAdd", - "oracle": "Add-MgGroupTeamChannelAllMember" + "ourCommand": "Invoke-MgGroupValidateProperties", + "oracle": "Test-MgGroupProperty" }, - "replacementNoun": "GroupTeamChannelAllMember", - "replacementVerb": "Add" + "replacementNoun": "GroupProperty", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/allmembers/remove", + "uri": "/groups/getbyids", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelAllMemberRemove", - "oracle": "Remove-MgGroupTeamChannelAllMember" + "ourCommand": "Invoke-MgGroupGetByIds", + "oracle": "Get-MgGroupById" }, - "replacementNoun": "GroupTeamChannelAllMember", - "replacementVerb": "Remove" + "replacementNoun": "GroupById", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/archive", + "uri": "/groupsettingtemplates/{}/checkmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelArchive", - "oracle": "Invoke-MgArchiveGroupTeamChannel" + "ourCommand": "Invoke-MgGroupSettingTemplateCheckMemberGroups", + "oracle": "Confirm-MgGroupSettingTemplateMemberGroup" }, - "replacementNoun": "ArchiveGroupTeamChannel" + "replacementNoun": "GroupSettingTemplateMemberGroup", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/completemigration", + "uri": "/groupsettingtemplates/{}/checkmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelCompleteMigration", - "oracle": "Complete-MgGroupTeamChannelMigration" + "ourCommand": "Invoke-MgGroupSettingTemplateCheckMemberObjects", + "oracle": "Confirm-MgGroupSettingTemplateMemberObject" }, - "replacementNoun": "GroupTeamChannelMigration", - "replacementVerb": "Complete" + "replacementNoun": "GroupSettingTemplateMemberObject", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/members/add", + "uri": "/groupsettingtemplates/{}/getmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelMemberAdd", - "oracle": "Add-MgGroupTeamChannelMember" + "ourCommand": "Invoke-MgGroupSettingTemplateGetMemberGroups", + "oracle": "Get-MgGroupSettingTemplateMemberGroup" }, - "replacementNoun": "GroupTeamChannelMember", - "replacementVerb": "Add" + "replacementNoun": "GroupSettingTemplateMemberGroup", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/setreaction", + "uri": "/groupsettingtemplates/{}/getmemberobjects", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelMessageReplySetReaction", - "oracle": "Set-MgGroupTeamChannelMessageReplyReaction" + "ourCommand": "Invoke-MgGroupSettingTemplateGetMemberObjects", + "oracle": "Get-MgGroupSettingTemplateMemberObject" }, - "replacementNoun": "GroupTeamChannelMessageReplyReaction", - "replacementVerb": "Set" + "replacementNoun": "GroupSettingTemplateMemberObject", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/softdelete", + "uri": "/groupsettingtemplates/{}/restore", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelMessageReplySoftDelete", - "oracle": "Invoke-MgSoftGroupTeamChannelMessageReplyDelete" + "ourCommand": "Invoke-MgGroupSettingTemplateRestore", + "oracle": "Restore-MgGroupSettingTemplate" }, - "replacementNoun": "SoftGroupTeamChannelMessageReplyDelete" + "replacementNoun": "GroupSettingTemplate", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/undosoftdelete", + "uri": "/groupsettingtemplates/getbyids", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelMessageReplyUndoSoftDelete", - "oracle": "Undo-MgGroupTeamChannelMessageReplySoftDelete" + "ourCommand": "Invoke-MgGroupSettingTemplateGetByIds", + "oracle": "Get-MgGroupSettingTemplateById" }, - "replacementNoun": "GroupTeamChannelMessageReplySoftDelete", - "replacementVerb": "Undo" + "replacementNoun": "GroupSettingTemplateById", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/unsetreaction", + "uri": "/groupsettingtemplates/validateproperties", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelMessageReplyUnsetReaction", - "oracle": "Clear-MgGroupTeamChannelMessageReplyReaction" + "ourCommand": "Invoke-MgGroupSettingTemplateValidateProperties", + "oracle": "Test-MgGroupSettingTemplateProperty" }, - "replacementNoun": "GroupTeamChannelMessageReplyReaction", - "replacementVerb": "Clear" + "replacementNoun": "GroupSettingTemplateProperty", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/messages/{}/replies/replywithquote", + "uri": "/identity/apiconnectors/{}/uploadclientcertificate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelMessageReplyReplyWithQuote", - "oracle": "Invoke-MgGraphGroupTeamChannelMessageReply" + "ourCommand": "Invoke-MgIdentityApiConnectorUploadClientCertificate", + "oracle": "Invoke-MgUploadIdentityApiConnectorClientCertificate" }, - "replacementNoun": "GraphGroupTeamChannelMessageReply" + "replacementNoun": "UploadIdentityApiConnectorClientCertificate" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/messages/{}/setreaction", + "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelMessageSetReaction", - "oracle": "Set-MgGroupTeamChannelMessageReaction" + "ourCommand": "New-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication", + "oracle": "New-MgIdentityAuthenticationEventFlowIncludeApplication" }, - "replacementNoun": "GroupTeamChannelMessageReaction", - "replacementVerb": "Set" + "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/messages/{}/softdelete", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/conditions/applications/includeapplications", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelMessageSoftDelete", - "oracle": "Invoke-MgSoftGroupTeamChannelMessageDelete" + "ourCommand": "New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication", + "oracle": "New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" }, - "replacementNoun": "SoftGroupTeamChannelMessageDelete" + "replacementNoun": "IdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/messages/{}/undosoftdelete", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/onattributecollection/onattributecollectionexternalusersselfservicesignup/attributes/$ref", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelMessageUndoSoftDelete", - "oracle": "Undo-MgGroupTeamChannelMessageSoftDelete" + "ourCommand": "New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef", + "oracle": "New-MgIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef" }, - "replacementNoun": "GroupTeamChannelMessageSoftDelete", - "replacementVerb": "Undo" + "replacementNoun": "IdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/messages/{}/unsetreaction", + "uri": "/identity/authenticationeventsflows/{}/externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/$ref", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelMessageUnsetReaction", - "oracle": "Clear-MgGroupTeamChannelMessageReaction" + "ourCommand": "New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef", + "oracle": "New-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef" }, - "replacementNoun": "GroupTeamChannelMessageReaction", - "replacementVerb": "Clear" + "replacementNoun": "IdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/messages/replywithquote", + "uri": "/identity/b2xuserflows", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelMessageReplyWithQuote", - "oracle": "Invoke-MgGraphGroupTeamChannelMessage" + "ourCommand": "New-MgIdentityB2xUserFlow", + "oracle": "New-MgIdentityB2XUserFlow" }, - "replacementNoun": "GraphGroupTeamChannelMessage" + "replacementNoun": "IdentityB2XUserFlow" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/provisionemail", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection/uploadclientcertificate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelProvisionEmail", - "oracle": "New-MgGroupTeamChannelEmail" + "ourCommand": "Invoke-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionUploadClientCertificate", + "oracle": "Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate" }, - "replacementNoun": "GroupTeamChannelEmail", - "replacementVerb": "New" + "replacementNoun": "UploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/removeemail", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup/uploadclientcertificate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelRemoveEmail", - "oracle": "Remove-MgGroupTeamChannelEmail" + "ourCommand": "Invoke-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupUploadClientCertificate", + "oracle": "Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate" }, - "replacementNoun": "GroupTeamChannelEmail", - "replacementVerb": "Remove" + "replacementNoun": "UploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/startmigration", + "uri": "/identity/b2xuserflows/{}/languages", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelStartMigration", - "oracle": "Start-MgGroupTeamChannelMigration" + "ourCommand": "New-MgIdentityB2xUserFlowLanguage", + "oracle": "New-MgIdentityB2XUserFlowLanguage" }, - "replacementNoun": "GroupTeamChannelMigration", - "replacementVerb": "Start" + "replacementNoun": "IdentityB2XUserFlowLanguage" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/channels/{}/unarchive", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamChannelUnarchive", - "oracle": "Invoke-MgUnarchiveGroupTeamChannel" + "ourCommand": "New-MgIdentityB2xUserFlowLanguageDefaultPage", + "oracle": "New-MgIdentityB2XUserFlowLanguageDefaultPage" }, - "replacementNoun": "UnarchiveGroupTeamChannel" + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPage" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/clone", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamClone", - "oracle": "Copy-MgGroupTeam" + "ourCommand": "New-MgIdentityB2xUserFlowLanguageOverridePage", + "oracle": "New-MgIdentityB2XUserFlowLanguageOverridePage" }, - "replacementNoun": "GroupTeam", - "replacementVerb": "Copy" + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePage" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/completemigration", + "uri": "/identity/b2xuserflows/{}/userattributeassignments", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamCompleteMigration", - "oracle": "Complete-MgGroupTeamMigration" + "ourCommand": "New-MgIdentityB2xUserFlowUserAttributeAssignment", + "oracle": "New-MgIdentityB2XUserFlowUserAttributeAssignment" }, - "replacementNoun": "GroupTeamMigration", - "replacementVerb": "Complete" + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignment" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/installedapps/{}/upgrade", + "uri": "/identity/b2xuserflows/{}/userattributeassignments/setorder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamInstalledAppUpgrade", - "oracle": "Update-MgGroupTeamInstalledApp" + "ourCommand": "Invoke-MgIdentityB2xUserFlowUserAttributeAssignmentSetOrder", + "oracle": "Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder" }, - "replacementNoun": "GroupTeamInstalledApp", - "replacementVerb": "Update" + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignmentOrder", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/members/add", + "uri": "/identity/b2xuserflows/{}/userflowidentityproviders/$ref", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamMemberAdd", - "oracle": "Add-MgGroupTeamMember" + "ourCommand": "New-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef", + "oracle": "New-MgIdentityB2XUserFlowIdentityProviderByRef" }, - "replacementNoun": "GroupTeamMember", - "replacementVerb": "Add" + "replacementNoun": "IdentityB2XUserFlowIdentityProviderByRef" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/allmembers", + "uri": "/identity/conditionalaccess/deleteditems/namedlocations/{}/restore", "action": "rename", "evidence": { - "ourCommand": "New-MgGroupTeamPrimaryChannelAllMember", - "oracle": "New-MgGroupTeamPrimaryChannelMember" + "ourCommand": "Invoke-MgIdentityConditionalAccessDeletedItemNamedLocationRestore", + "oracle": "Restore-MgIdentityConditionalAccessDeletedItemNamedLocation" }, - "replacementNoun": "GroupTeamPrimaryChannelMember" + "replacementNoun": "IdentityConditionalAccessDeletedItemNamedLocation", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/allmembers/add", + "uri": "/identity/conditionalaccess/deleteditems/policies/{}/restore", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelAllMemberAdd", - "oracle": "Add-MgGroupTeamPrimaryChannelAllMember" + "ourCommand": "Invoke-MgIdentityConditionalAccessDeletedItemPolicyRestore", + "oracle": "Restore-MgIdentityConditionalAccessDeletedItemPolicy" }, - "replacementNoun": "GroupTeamPrimaryChannelAllMember", - "replacementVerb": "Add" + "replacementNoun": "IdentityConditionalAccessDeletedItemPolicy", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/allmembers/remove", + "uri": "/identity/conditionalaccess/evaluate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelAllMemberRemove", - "oracle": "Remove-MgGroupTeamPrimaryChannelAllMember" + "ourCommand": "Invoke-MgIdentityConditionalAccessEvaluate", + "oracle": "Test-MgIdentityConditionalAccess" }, - "replacementNoun": "GroupTeamPrimaryChannelAllMember", - "replacementVerb": "Remove" + "replacementNoun": "IdentityConditionalAccess", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/archive", + "uri": "/identity/conditionalaccess/namedlocations/{}/restore", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelArchive", - "oracle": "Invoke-MgArchiveGroupTeamPrimaryChannel" + "ourCommand": "Invoke-MgIdentityConditionalAccessNamedLocationRestore", + "oracle": "Restore-MgIdentityConditionalAccessNamedLocation" }, - "replacementNoun": "ArchiveGroupTeamPrimaryChannel" + "replacementNoun": "IdentityConditionalAccessNamedLocation", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/completemigration", + "uri": "/identity/conditionalaccess/policies/{}/restore", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelCompleteMigration", - "oracle": "Complete-MgGroupTeamPrimaryChannelMigration" + "ourCommand": "Invoke-MgIdentityConditionalAccessPolicyRestore", + "oracle": "Restore-MgIdentityConditionalAccessPolicy" }, - "replacementNoun": "GroupTeamPrimaryChannelMigration", - "replacementVerb": "Complete" + "replacementNoun": "IdentityConditionalAccessPolicy", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/members/add", + "uri": "/identity/customauthenticationextensions/{}/validateauthenticationconfiguration", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMemberAdd", - "oracle": "Add-MgGroupTeamPrimaryChannelMember" + "ourCommand": "Invoke-MgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration", + "oracle": "Test-MgIdentityCustomAuthenticationExtensionAuthenticationConfiguration" }, - "replacementNoun": "GroupTeamPrimaryChannelMember", - "replacementVerb": "Add" + "replacementNoun": "IdentityCustomAuthenticationExtensionAuthenticationConfiguration", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/setreaction", + "uri": "/identity/riskprevention/webapplicationfirewallproviders/{}/verify", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplySetReaction", - "oracle": "Set-MgGroupTeamPrimaryChannelMessageReplyReaction" + "ourCommand": "Invoke-MgIdentityRiskPreventionWebApplicationFirewallProviderVerify", + "oracle": "Confirm-MgIdentityRiskPreventionWebApplicationFirewallProvider" }, - "replacementNoun": "GroupTeamPrimaryChannelMessageReplyReaction", - "replacementVerb": "Set" + "replacementNoun": "IdentityRiskPreventionWebApplicationFirewallProvider", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/softdelete", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/acceptrecommendations", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplySoftDelete", - "oracle": "Invoke-MgSoftGroupTeamPrimaryChannelMessageReplyDelete" + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceAcceptRecommendations", + "oracle": "Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation" }, - "replacementNoun": "SoftGroupTeamPrimaryChannelMessageReplyDelete" + "replacementNoun": "AcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/undosoftdelete", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/applydecisions", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplyUndoSoftDelete", - "oracle": "Undo-MgGroupTeamPrimaryChannelMessageReplySoftDelete" + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceApplyDecisions", + "oracle": "Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" }, - "replacementNoun": "GroupTeamPrimaryChannelMessageReplySoftDelete", - "replacementVerb": "Undo" + "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstanceDecision", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/unsetreaction", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/batchrecorddecisions", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplyUnsetReaction", - "oracle": "Clear-MgGroupTeamPrimaryChannelMessageReplyReaction" + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceBatchRecordDecisions", + "oracle": "Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision" }, - "replacementNoun": "GroupTeamPrimaryChannelMessageReplyReaction", - "replacementVerb": "Clear" + "replacementNoun": "BatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/messages/{}/replies/replywithquote", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/resetdecisions", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplyReplyWithQuote", - "oracle": "Invoke-MgGraphGroupTeamPrimaryChannelMessageReply" + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceResetDecisions", + "oracle": "Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" }, - "replacementNoun": "GraphGroupTeamPrimaryChannelMessageReply" + "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstanceDecision", + "replacementVerb": "Reset" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/messages/{}/setreaction", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/sendreminder", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageSetReaction", - "oracle": "Set-MgGroupTeamPrimaryChannelMessageReaction" + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceSendReminder", + "oracle": "Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder" }, - "replacementNoun": "GroupTeamPrimaryChannelMessageReaction", - "replacementVerb": "Set" + "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstanceReminder", + "replacementVerb": "Send" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/messages/{}/softdelete", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/stages/{}/stop", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageSoftDelete", - "oracle": "Invoke-MgSoftGroupTeamPrimaryChannelMessageDelete" + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceStageStop", + "oracle": "Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" }, - "replacementNoun": "SoftGroupTeamPrimaryChannelMessageDelete" + "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstanceStage", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/messages/{}/undosoftdelete", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/stop", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageUndoSoftDelete", - "oracle": "Undo-MgGroupTeamPrimaryChannelMessageSoftDelete" + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceStop", + "oracle": "Stop-MgIdentityGovernanceAccessReviewDefinitionInstance" }, - "replacementNoun": "GroupTeamPrimaryChannelMessageSoftDelete", - "replacementVerb": "Undo" + "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstance", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/messages/{}/unsetreaction", + "uri": "/identitygovernance/accessreviews/definitions/{}/stop", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageUnsetReaction", - "oracle": "Clear-MgGroupTeamPrimaryChannelMessageReaction" + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionStop", + "oracle": "Stop-MgIdentityGovernanceAccessReviewDefinition" }, - "replacementNoun": "GroupTeamPrimaryChannelMessageReaction", - "replacementVerb": "Clear" + "replacementNoun": "IdentityGovernanceAccessReviewDefinition", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/messages/replywithquote", + "uri": "/identitygovernance/accessreviews/historydefinitions/{}/instances/{}/generatedownloaduri", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplyWithQuote", - "oracle": "Invoke-MgGraphGroupTeamPrimaryChannelMessage" + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceGenerateDownloadUri", + "oracle": "New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri" }, - "replacementNoun": "GraphGroupTeamPrimaryChannelMessage" + "replacementNoun": "IdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/provisionemail", + "uri": "/identitygovernance/appconsent/appconsentrequests", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelProvisionEmail", - "oracle": "New-MgGroupTeamPrimaryChannelEmail" + "ourCommand": "New-MgIdentityGovernanceAppConsentAppConsentRequest", + "oracle": "New-MgIdentityGovernanceAppConsentRequest" }, - "replacementNoun": "GroupTeamPrimaryChannelEmail", - "replacementVerb": "New" + "replacementNoun": "IdentityGovernanceAppConsentRequest" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/removeemail", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelRemoveEmail", - "oracle": "Remove-MgGroupTeamPrimaryChannelEmail" + "ourCommand": "New-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest", + "oracle": "New-MgIdentityGovernanceAppConsentRequestUserConsentRequest" }, - "replacementNoun": "GroupTeamPrimaryChannelEmail", - "replacementVerb": "Remove" + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequest" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/startmigration", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelStartMigration", - "oracle": "Start-MgGroupTeamPrimaryChannelMigration" + "ourCommand": "New-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage", + "oracle": "New-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" }, - "replacementNoun": "GroupTeamPrimaryChannelMigration", - "replacementVerb": "Start" + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/primarychannel/unarchive", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamPrimaryChannelUnarchive", - "oracle": "Invoke-MgUnarchiveGroupTeamPrimaryChannel" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage", + "oracle": "New-MgEntitlementManagementAccessPackageAssignmentApprovalStage" }, - "replacementNoun": "UnarchiveGroupTeamPrimaryChannel" + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStage" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/schedule/share", + "uri": "/identitygovernance/entitlementmanagement/accesspackages", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamScheduleShare", - "oracle": "Invoke-MgShareGroupTeamSchedule" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackage", + "oracle": "New-MgEntitlementManagementAccessPackage" }, - "replacementNoun": "ShareGroupTeamSchedule" + "replacementNoun": "EntitlementManagementAccessPackage" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/schedule/timecards/{}/clockout", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardClockOut", - "oracle": "Invoke-MgClockGroupTeamScheduleTimeCardOut" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy", + "oracle": "New-MgEntitlementManagementAccessPackageAssignmentPolicy" }, - "replacementNoun": "ClockGroupTeamScheduleTimeCardOut" + "replacementNoun": "EntitlementManagementAccessPackageAssignmentPolicy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/schedule/timecards/{}/confirm", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/getapplicablepolicyrequirements", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardConfirm", - "oracle": "Confirm-MgGroupTeamScheduleTimeCard" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageGetApplicablePolicyRequirements", + "oracle": "Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement" }, - "replacementNoun": "GroupTeamScheduleTimeCard", - "replacementVerb": "Confirm" + "replacementNoun": "EntitlementManagementAccessPackageApplicablePolicyRequirement", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/schedule/timecards/{}/endbreak", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/$ref", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardEndBreak", - "oracle": "Stop-MgGroupTeamScheduleTimeCardBreak" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", + "oracle": "New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" }, - "replacementNoun": "GroupTeamScheduleTimeCardBreak", - "replacementVerb": "Stop" + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleAccessPackageByRef" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/schedule/timecards/{}/startbreak", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/$ref", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardStartBreak", - "oracle": "Start-MgGroupTeamScheduleTimeCardBreak" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef", + "oracle": "New-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" }, - "replacementNoun": "GroupTeamScheduleTimeCardBreak", - "replacementVerb": "Start" + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleGroupByRef" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/schedule/timecards/clockin", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes", "action": "rename", - "evidence": { - "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardClockIn", - "oracle": "Invoke-MgClockGroupTeamScheduleTimeCardIn" + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope", + "oracle": "New-MgEntitlementManagementAccessPackageResourceRoleScope" }, - "replacementNoun": "ClockGroupTeamScheduleTimeCardIn" + "replacementNoun": "EntitlementManagementAccessPackageResourceRoleScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/sendactivitynotification", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamSendActivityNotification", - "oracle": "Send-MgGroupTeamActivityNotification" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion", + "oracle": "New-MgEntitlementManagementAccessPackageSuggestion" }, - "replacementNoun": "GroupTeamActivityNotification", - "replacementVerb": "Send" + "replacementNoun": "EntitlementManagementAccessPackageSuggestion" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/team/unarchive", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupTeamUnarchive", - "oracle": "Invoke-MgUnarchiveGroupTeam" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignmentPolicy", + "oracle": "New-MgEntitlementManagementAssignmentPolicy" }, - "replacementNoun": "UnarchiveGroupTeam" + "replacementNoun": "EntitlementManagementAssignmentPolicy" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/threads/{}/posts/{}/attachments/createuploadsession", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupThreadPostAttachmentCreateUploadSession", - "oracle": "New-MgGroupThreadPostAttachmentUploadSession" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "oracle": "New-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" }, - "replacementNoun": "GroupThreadPostAttachmentUploadSession", - "replacementVerb": "New" + "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSetting" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/threads/{}/posts/{}/forward", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupThreadPostForward", - "oracle": "Invoke-MgForwardGroupThreadPost" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion", + "oracle": "New-MgEntitlementManagementAssignmentPolicyQuestion" }, - "replacementNoun": "ForwardGroupThreadPost" + "replacementNoun": "EntitlementManagementAssignmentPolicyQuestion" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/threads/{}/posts/{}/inreplyto/attachments/createuploadsession", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupThreadPostInReplyToAttachmentCreateUploadSession", - "oracle": "New-MgGroupThreadPostInReplyToAttachmentUploadSession" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignmentRequest", + "oracle": "New-MgEntitlementManagementAssignmentRequest" }, - "replacementNoun": "GroupThreadPostInReplyToAttachmentUploadSession", - "replacementVerb": "New" + "replacementNoun": "EntitlementManagementAssignmentRequest" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/threads/{}/posts/{}/inreplyto/forward", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}/cancel", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupThreadPostInReplyToForward", - "oracle": "Invoke-MgForwardGroupThreadPostInReplyTo" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestCancel", + "oracle": "Stop-MgEntitlementManagementAssignmentRequest" }, - "replacementNoun": "ForwardGroupThreadPostInReplyTo" + "replacementNoun": "EntitlementManagementAssignmentRequest", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/threads/{}/posts/{}/inreplyto/reply", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}/reprocess", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupThreadPostInReplyToReply", - "oracle": "Invoke-MgReplyGroupThreadPostInReplyTo" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestReprocess", + "oracle": "Update-MgEntitlementManagementAssignmentRequest" }, - "replacementNoun": "ReplyGroupThreadPostInReplyTo" + "replacementNoun": "EntitlementManagementAssignmentRequest", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/threads/{}/posts/{}/reply", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}/resume", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupThreadPostReply", - "oracle": "Invoke-MgReplyGroupThreadPost" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestResume", + "oracle": "Resume-MgEntitlementManagementAssignmentRequest" }, - "replacementNoun": "ReplyGroupThreadPost" + "replacementNoun": "EntitlementManagementAssignmentRequest", + "replacementVerb": "Resume" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/threads/{}/reply", + "uri": "/identitygovernance/entitlementmanagement/assignments", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupThreadReply", - "oracle": "Invoke-MgReplyGroupThread" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignment", + "oracle": "New-MgEntitlementManagementAssignment" }, - "replacementNoun": "ReplyGroupThread" + "replacementNoun": "EntitlementManagementAssignment" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/unsubscribebymail", + "uri": "/identitygovernance/entitlementmanagement/assignments/{}/reprocess", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupUnsubscribeByMail", - "oracle": "Invoke-MgGraphGroup" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAssignmentReprocess", + "oracle": "Update-MgEntitlementManagementAssignment" }, - "replacementNoun": "GraphGroup" + "replacementNoun": "EntitlementManagementAssignment", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/{}/validateproperties", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupValidateProperties", - "oracle": "Test-MgGroupProperty" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage", + "oracle": "New-MgEntitlementManagementAvailableAccessPackage" }, - "replacementNoun": "GroupProperty", - "replacementVerb": "Test" + "replacementNoun": "EntitlementManagementAvailableAccessPackage" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groups/getbyids", + "uri": "/identitygovernance/entitlementmanagement/catalogs", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupGetByIds", - "oracle": "Get-MgGroupById" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalog", + "oracle": "New-MgEntitlementManagementCatalog" }, - "replacementNoun": "GroupById", - "replacementVerb": "Get" + "replacementNoun": "EntitlementManagementCatalog" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groupsettingtemplates/{}/checkmembergroups", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSettingTemplateCheckMemberGroups", - "oracle": "Confirm-MgGroupSettingTemplateMemberGroup" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension", + "oracle": "New-MgEntitlementManagementCatalogCustomWorkflowExtension" }, - "replacementNoun": "GroupSettingTemplateMemberGroup", - "replacementVerb": "Confirm" + "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtension" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groupsettingtemplates/{}/checkmemberobjects", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSettingTemplateCheckMemberObjects", - "oracle": "Confirm-MgGroupSettingTemplateMemberObject" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole", + "oracle": "New-MgEntitlementManagementCatalogResourceRole" }, - "replacementNoun": "GroupSettingTemplateMemberObject", - "replacementVerb": "Confirm" + "replacementNoun": "EntitlementManagementCatalogResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groupsettingtemplates/{}/getmembergroups", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSettingTemplateGetMemberGroups", - "oracle": "Get-MgGroupSettingTemplateMemberGroup" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementCatalogResourceRoleResource" }, - "replacementNoun": "GroupSettingTemplateMemberGroup", - "replacementVerb": "Get" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groupsettingtemplates/{}/getmemberobjects", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSettingTemplateGetMemberObjects", - "oracle": "Get-MgGroupSettingTemplateMemberObject" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementCatalogResourceRoleResourceScope" }, - "replacementNoun": "GroupSettingTemplateMemberObject", - "replacementVerb": "Get" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groupsettingtemplates/{}/restore", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSettingTemplateRestore", - "oracle": "Restore-MgGroupSettingTemplate" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" }, - "replacementNoun": "GroupSettingTemplate", - "replacementVerb": "Restore" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groupsettingtemplates/getbyids", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSettingTemplateGetByIds", - "oracle": "Get-MgGroupSettingTemplateById" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" }, - "replacementNoun": "GroupSettingTemplateById", - "replacementVerb": "Get" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/groupsettingtemplates/validateproperties", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgGroupSettingTemplateValidateProperties", - "oracle": "Test-MgGroupSettingTemplateProperty" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResource", + "oracle": "New-MgEntitlementManagementCatalogResource" }, - "replacementNoun": "GroupSettingTemplateProperty", - "replacementVerb": "Test" + "replacementNoun": "EntitlementManagementCatalogResource" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/apiconnectors/{}/uploadclientcertificate", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityApiConnectorUploadClientCertificate", - "oracle": "Invoke-MgUploadIdentityApiConnectorClientCertificate" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRefresh", + "oracle": "Update-MgEntitlementManagementCatalogResource" }, - "replacementNoun": "UploadIdentityApiConnectorClientCertificate" + "replacementNoun": "EntitlementManagementCatalogResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication", - "oracle": "New-MgIdentityAuthenticationEventFlowIncludeApplication" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementCatalogResourceScopeResource" }, - "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/b2xuserflows", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityB2xUserFlow", - "oracle": "New-MgIdentityB2XUserFlow" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementCatalogResourceScopeResourceRole" }, - "replacementNoun": "IdentityB2XUserFlow" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection/uploadclientcertificate", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionUploadClientCertificate", - "oracle": "Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" }, - "replacementNoun": "UploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup/uploadclientcertificate", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupUploadClientCertificate", - "oracle": "Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" }, - "replacementNoun": "UploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/b2xuserflows/{}/languages", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityB2xUserFlowLanguage", - "oracle": "New-MgIdentityB2XUserFlowLanguage" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementConnectedOrganization", + "oracle": "New-MgEntitlementManagementConnectedOrganization" }, - "replacementNoun": "IdentityB2XUserFlowLanguage" + "replacementNoun": "EntitlementManagementConnectedOrganization" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$ref", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityB2xUserFlowLanguageDefaultPage", - "oracle": "New-MgIdentityB2XUserFlowLanguageDefaultPage" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef", + "oracle": "New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef" }, - "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPage" + "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsorByRef" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$ref", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityB2xUserFlowLanguageOverridePage", - "oracle": "New-MgIdentityB2XUserFlowLanguageOverridePage" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef", + "oracle": "New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef" }, - "replacementNoun": "IdentityB2XUserFlowLanguageOverridePage" + "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsorByRef" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/b2xuserflows/{}/userattributeassignments", + "uri": "/identitygovernance/entitlementmanagement/controlconfigurations", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityB2xUserFlowUserAttributeAssignment", - "oracle": "New-MgIdentityB2XUserFlowUserAttributeAssignment" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementControlConfiguration", + "oracle": "New-MgEntitlementManagementControlConfiguration" }, - "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignment" + "replacementNoun": "EntitlementManagementControlConfiguration" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/b2xuserflows/{}/userattributeassignments/setorder", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityB2xUserFlowUserAttributeAssignmentSetOrder", - "oracle": "Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironment", + "oracle": "New-MgEntitlementManagementResourceEnvironment" }, - "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignmentOrder", - "replacementVerb": "Set" + "replacementNoun": "EntitlementManagementResourceEnvironment" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/b2xuserflows/{}/userflowidentityproviders/$ref", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef", - "oracle": "New-MgIdentityB2XUserFlowIdentityProviderByRef" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource", + "oracle": "New-MgEntitlementManagementResourceEnvironmentResource" }, - "replacementNoun": "IdentityB2XUserFlowIdentityProviderByRef" + "replacementNoun": "EntitlementManagementResourceEnvironmentResource" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/conditionalaccess/deleteditems/namedlocations/{}/restore", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityConditionalAccessDeletedItemNamedLocationRestore", - "oracle": "Restore-MgIdentityConditionalAccessDeletedItemNamedLocation" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResource" }, - "replacementNoun": "IdentityConditionalAccessDeletedItemNamedLocation", - "replacementVerb": "Restore" + "replacementNoun": "EntitlementManagementResourceEnvironmentResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/conditionalaccess/deleteditems/policies/{}/restore", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityConditionalAccessDeletedItemPolicyRestore", - "oracle": "Restore-MgIdentityConditionalAccessDeletedItemPolicy" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole", + "oracle": "New-MgEntitlementManagementResourceEnvironmentResourceRole" }, - "replacementNoun": "IdentityConditionalAccessDeletedItemPolicy", - "replacementVerb": "Restore" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/conditionalaccess/evaluate", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityConditionalAccessEvaluate", - "oracle": "Test-MgIdentityConditionalAccess" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResource" }, - "replacementNoun": "IdentityConditionalAccess", - "replacementVerb": "Test" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/conditionalaccess/namedlocations/{}/restore", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityConditionalAccessNamedLocationRestore", - "oracle": "Restore-MgIdentityConditionalAccessNamedLocation" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" }, - "replacementNoun": "IdentityConditionalAccessNamedLocation", - "replacementVerb": "Restore" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/conditionalaccess/policies/{}/restore", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityConditionalAccessPolicyRestore", - "oracle": "Restore-MgIdentityConditionalAccessPolicy" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" }, - "replacementNoun": "IdentityConditionalAccessPolicy", - "replacementVerb": "Restore" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/customauthenticationextensions/{}/validateauthenticationconfiguration", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration", - "oracle": "Test-MgIdentityCustomAuthenticationExtensionAuthenticationConfiguration" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope", + "oracle": "New-MgEntitlementManagementResourceEnvironmentResourceScope" }, - "replacementNoun": "IdentityCustomAuthenticationExtensionAuthenticationConfiguration", - "replacementVerb": "Test" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identity/riskprevention/webapplicationfirewallproviders/{}/verify", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityRiskPreventionWebApplicationFirewallProviderVerify", - "oracle": "Confirm-MgIdentityRiskPreventionWebApplicationFirewallProvider" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResource" }, - "replacementNoun": "IdentityRiskPreventionWebApplicationFirewallProvider", - "replacementVerb": "Confirm" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/acceptrecommendations", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceAcceptRecommendations", - "oracle": "Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" }, - "replacementNoun": "AcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/applydecisions", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceApplyDecisions", - "oracle": "Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" }, - "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstanceDecision", - "replacementVerb": "Add" + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/batchrecorddecisions", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceBatchRecordDecisions", - "oracle": "Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequest", + "oracle": "New-MgEntitlementManagementResourceRequest" }, - "replacementNoun": "BatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision" + "replacementNoun": "EntitlementManagementResourceRequest" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/resetdecisions", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceResetDecisions", - "oracle": "Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" }, - "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstanceDecision", - "replacementVerb": "Reset" + "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtension" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/sendreminder", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceSendReminder", - "oracle": "Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceRole" }, - "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstanceReminder", - "replacementVerb": "Send" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/stages/{}/stop", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceStageStop", - "oracle": "Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" }, - "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstanceStage", - "replacementVerb": "Stop" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/stop", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceStop", - "oracle": "Stop-MgIdentityGovernanceAccessReviewDefinitionInstance" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" }, - "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstance", - "replacementVerb": "Stop" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/accessreviews/definitions/{}/stop", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionStop", - "oracle": "Stop-MgIdentityGovernanceAccessReviewDefinition" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" }, - "replacementNoun": "IdentityGovernanceAccessReviewDefinition", - "replacementVerb": "Stop" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/accessreviews/historydefinitions/{}/instances/{}/generatedownloaduri", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceGenerateDownloadUri", - "oracle": "New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" }, - "replacementNoun": "IdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri", - "replacementVerb": "New" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/appconsent/appconsentrequests", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceAppConsentAppConsentRequest", - "oracle": "New-MgIdentityGovernanceAppConsentRequest" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogResource" }, - "replacementNoun": "IdentityGovernanceAppConsentRequest" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResource" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest", - "oracle": "New-MgIdentityGovernanceAppConsentRequestUserConsentRequest" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResource" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequest" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage", - "oracle": "New-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" }, - "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage", - "oracle": "New-MgEntitlementManagementAccessPackageAssignmentApprovalStage" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" }, - "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStage" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/accesspackages", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackage", - "oracle": "New-MgEntitlementManagementAccessPackage" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" }, - "replacementNoun": "EntitlementManagementAccessPackage" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy", - "oracle": "New-MgEntitlementManagementAccessPackageAssignmentPolicy" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" }, - "replacementNoun": "EntitlementManagementAccessPackageAssignmentPolicy" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/getapplicablepolicyrequirements", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageGetApplicablePolicyRequirements", - "oracle": "Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestResource" }, - "replacementNoun": "EntitlementManagementAccessPackageApplicablePolicyRequirement", - "replacementVerb": "Get" + "replacementNoun": "EntitlementManagementResourceRequestResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/$ref", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", - "oracle": "New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole", + "oracle": "New-MgEntitlementManagementResourceRequestResourceRole" }, - "replacementNoun": "EntitlementManagementAccessPackageIncompatibleAccessPackageByRef" + "replacementNoun": "EntitlementManagementResourceRequestResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/$ref", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef", - "oracle": "New-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestResourceRoleResource" }, - "replacementNoun": "EntitlementManagementAccessPackageIncompatibleGroupByRef" + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope", - "oracle": "New-MgEntitlementManagementAccessPackageResourceRoleScope" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceRequestResourceRoleResourceScope" }, - "replacementNoun": "EntitlementManagementAccessPackageResourceRoleScope" + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion", - "oracle": "New-MgEntitlementManagementAccessPackageSuggestion" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" }, - "replacementNoun": "EntitlementManagementAccessPackageSuggestion" + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignmentPolicy", - "oracle": "New-MgEntitlementManagementAssignmentPolicy" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope", + "oracle": "New-MgEntitlementManagementResourceRequestResourceScope" }, - "replacementNoun": "EntitlementManagementAssignmentPolicy" + "replacementNoun": "EntitlementManagementResourceRequestResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", - "oracle": "New-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestResourceScopeResource" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion", - "oracle": "New-MgEntitlementManagementAssignmentPolicyQuestion" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceRequestResourceScopeResourceRole" }, - "replacementNoun": "EntitlementManagementAssignmentPolicyQuestion" + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/assignmentrequests", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignmentRequest", - "oracle": "New-MgEntitlementManagementAssignmentRequest" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" }, - "replacementNoun": "EntitlementManagementAssignmentRequest" + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}/cancel", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestCancel", - "oracle": "Stop-MgEntitlementManagementAssignmentRequest" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScope", + "oracle": "New-MgEntitlementManagementResourceRoleScope" }, - "replacementNoun": "EntitlementManagementAssignmentRequest", - "replacementVerb": "Stop" + "replacementNoun": "EntitlementManagementResourceRoleScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}/reprocess", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestReprocess", - "oracle": "Update-MgEntitlementManagementAssignmentRequest" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeRoleResource" }, - "replacementNoun": "EntitlementManagementAssignmentRequest", + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResource", "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}/resume", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestResume", - "oracle": "Resume-MgEntitlementManagementAssignmentRequest" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole", + "oracle": "New-MgEntitlementManagementResourceRoleScopeRoleResourceRole" }, - "replacementNoun": "EntitlementManagementAssignmentRequest", - "replacementVerb": "Resume" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/assignments", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignment", - "oracle": "New-MgEntitlementManagementAssignment" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceRoleScopeRoleResourceScope" }, - "replacementNoun": "EntitlementManagementAssignment" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/assignments/{}/reprocess", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAssignmentReprocess", - "oracle": "Update-MgEntitlementManagementAssignment" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" }, - "replacementNoun": "EntitlementManagementAssignment", + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResource", "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage", - "oracle": "New-MgEntitlementManagementAvailableAccessPackage" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" }, - "replacementNoun": "EntitlementManagementAvailableAccessPackage" + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalog", - "oracle": "New-MgEntitlementManagementCatalog" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeResource" }, - "replacementNoun": "EntitlementManagementCatalog" + "replacementNoun": "EntitlementManagementResourceRoleScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension", - "oracle": "New-MgEntitlementManagementCatalogCustomWorkflowExtension" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceRoleScopeResourceRole" }, - "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtension" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole", - "oracle": "New-MgEntitlementManagementCatalogResourceRole" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeResourceRoleResource" }, - "replacementNoun": "EntitlementManagementCatalogResourceRole" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/refresh", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh", - "oracle": "Update-MgEntitlementManagementCatalogResourceRoleResource" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResource", - "replacementVerb": "Update" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope", - "oracle": "New-MgEntitlementManagementCatalogResourceRoleResourceScope" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope", + "oracle": "New-MgEntitlementManagementResourceRoleScopeResourceScope" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/refresh", + "uri": "/identitygovernance/entitlementmanagement/resources", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh", - "oracle": "Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResource", + "oracle": "New-MgEntitlementManagementResource" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResource", - "replacementVerb": "Update" + "replacementNoun": "EntitlementManagementResource" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", - "oracle": "New-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRefresh", + "oracle": "Update-MgEntitlementManagementResource" }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResource", - "oracle": "New-MgEntitlementManagementCatalogResource" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRole", + "oracle": "New-MgEntitlementManagementResourceRole" }, - "replacementNoun": "EntitlementManagementCatalogResource" + "replacementNoun": "EntitlementManagementResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/refresh", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRefresh", - "oracle": "Update-MgEntitlementManagementCatalogResource" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRoleResource" }, - "replacementNoun": "EntitlementManagementCatalogResource", + "replacementNoun": "EntitlementManagementResourceRoleResource", "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/refresh", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh", - "oracle": "Update-MgEntitlementManagementCatalogResourceScopeResource" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceRoleResourceScope" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResource", - "replacementVerb": "Update" + "replacementNoun": "EntitlementManagementResourceRoleResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole", - "oracle": "New-MgEntitlementManagementCatalogResourceScopeResourceRole" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRoleResourceScopeResource" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementResourceRoleResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh", - "oracle": "Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceScope", + "oracle": "New-MgEntitlementManagementResourceScope" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResource", - "replacementVerb": "Update" + "replacementNoun": "EntitlementManagementResourceScope" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", - "oracle": "New-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceScopeResource" }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementConnectedOrganization", - "oracle": "New-MgEntitlementManagementConnectedOrganization" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceScopeResourceRole" }, - "replacementNoun": "EntitlementManagementConnectedOrganization" + "replacementNoun": "EntitlementManagementResourceScopeResourceRole" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$ref", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef", - "oracle": "New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef" + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceScopeResourceRoleResource" }, - "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsorByRef" + "replacementNoun": "EntitlementManagementResourceScopeResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$ref", + "uri": "/identitygovernance/entitlementmanagement/subjects", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef", - "oracle": "New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef" + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementSubject", + "oracle": "New-MgEntitlementManagementSubject" }, - "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsorByRef" + "replacementNoun": "EntitlementManagementSubject" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/controlconfigurations", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/activate", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementControlConfiguration", - "oracle": "New-MgEntitlementManagementControlConfiguration" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowActivate", + "oracle": "Initialize-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" }, - "replacementNoun": "EntitlementManagementControlConfiguration" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", + "replacementVerb": "Initialize" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/activatewithscope", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironment", - "oracle": "New-MgEntitlementManagementResourceEnvironment" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowActivateWithScope", + "oracle": "Initialize-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowWithScope" }, - "replacementNoun": "EntitlementManagementResourceEnvironment" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowDeletedItemWorkflowWithScope", + "replacementVerb": "Initialize" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/cancelprocessing", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource", - "oracle": "New-MgEntitlementManagementResourceEnvironmentResource" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCancelProcessing", + "oracle": "Stop-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowProcessing" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResource" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowDeletedItemWorkflowProcessing", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/refresh", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/clearquarantine", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceEnvironmentResource" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowClearQuarantine", + "oracle": "Clear-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowQuarantine" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResource", - "replacementVerb": "Update" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowDeletedItemWorkflowQuarantine", + "replacementVerb": "Clear" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/createnewversion", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole", - "oracle": "New-MgEntitlementManagementResourceEnvironmentResourceRole" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreateNewVersion", + "oracle": "New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowNewVersion" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRole" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowDeletedItemWorkflowNewVersion", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/refresh", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/previewtaskfailures", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResource" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewTaskFailures", + "oracle": "Invoke-MgPreviewIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskFailure" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResource", - "replacementVerb": "Update" + "replacementNoun": "PreviewIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskFailure" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/previewworkflow", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope", - "oracle": "New-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewWorkflow", + "oracle": "Invoke-MgPreviewIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScope" + "replacementNoun": "PreviewIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}/resource/refresh", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/restore", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRestore", + "oracle": "Restore-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", - "replacementVerb": "Update" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/activate", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope", - "oracle": "New-MgEntitlementManagementResourceEnvironmentResourceScope" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowActivate", + "oracle": "Initialize-MgIdentityGovernanceLifecycleWorkflow" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScope" + "replacementNoun": "IdentityGovernanceLifecycleWorkflow", + "replacementVerb": "Initialize" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/refresh", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/activatewithscope", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResource" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowActivateWithScope", + "oracle": "Initialize-MgIdentityGovernanceLifecycleWorkflowWithScope" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResource", - "replacementVerb": "Update" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowWithScope", + "replacementVerb": "Initialize" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/cancelprocessing", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole", - "oracle": "New-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowCancelProcessing", + "oracle": "Stop-MgIdentityGovernanceLifecycleWorkflowProcessing" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRole" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowProcessing", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/clearquarantine", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowClearQuarantine", + "oracle": "Clear-MgIdentityGovernanceLifecycleWorkflowQuarantine" }, - "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", - "replacementVerb": "Update" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowQuarantine", + "replacementVerb": "Clear" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/createnewversion", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequest", - "oracle": "New-MgEntitlementManagementResourceRequest" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowCreateNewVersion", + "oracle": "New-MgIdentityGovernanceLifecycleWorkflowNewVersion" }, - "replacementNoun": "EntitlementManagementResourceRequest" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowNewVersion", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/previewtaskfailures", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", - "oracle": "New-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowPreviewTaskFailures", + "oracle": "Invoke-MgPreviewIdentityGovernanceLifecycleWorkflowTaskFailure" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + "replacementNoun": "PreviewIdentityGovernanceLifecycleWorkflowTaskFailure" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/previewworkflow", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole", - "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceRole" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowPreviewWorkflow", + "oracle": "Invoke-MgPreviewIdentityGovernanceLifecycleWorkflow" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + "replacementNoun": "PreviewIdentityGovernanceLifecycleWorkflow" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/refresh", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/restore", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowRestore", + "oracle": "Restore-MgIdentityGovernanceLifecycleWorkflow" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResource", - "replacementVerb": "Update" + "replacementNoun": "IdentityGovernanceLifecycleWorkflow", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/runs/{}/taskprocessingresults/{}/resume", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", - "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultResume", + "oracle": "Resume-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", + "replacementVerb": "Resume" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/refresh", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/taskreports/{}/taskprocessingresults/{}/resume", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultResume", + "oracle": "Resume-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", - "replacementVerb": "Update" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", + "replacementVerb": "Resume" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/tasks/{}/taskprocessingresults/{}/resume", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", - "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultResume", + "oracle": "Resume-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowTaskProcessingResult", + "replacementVerb": "Resume" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/versions/{}/tasks/{}/taskprocessingresults/{}/resume", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource", - "oracle": "New-MgEntitlementManagementResourceRequestCatalogResource" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultResume", + "oracle": "Resume-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResource" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", + "replacementVerb": "Resume" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/refresh", + "uri": "/identitygovernance/lifecycleworkflows/workflowtemplates/{}/tasks/{}/taskprocessingresults/{}/resume", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResource" + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultResume", + "oracle": "Resume-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResource", - "replacementVerb": "Update" + "replacementNoun": "IdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", + "replacementVerb": "Resume" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/refresh", + "uri": "/identitygovernance/privilegedaccess/group/assignmentschedulerequests/{}/cancel", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + "ourCommand": "Invoke-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCancel", + "oracle": "Stop-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResource", - "replacementVerb": "Update" + "replacementNoun": "IdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles", + "uri": "/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/{}/cancel", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", - "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "ourCommand": "Invoke-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCancel", + "oracle": "Stop-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "replacementNoun": "IdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", + "uri": "/identitygovernance/termsofuse/agreementacceptances", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementAcceptance", + "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementAcceptance" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", - "replacementVerb": "Update" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptance" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes", + "uri": "/identitygovernance/termsofuse/agreements", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", - "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreement", + "oracle": "New-MgIdentityGovernanceTermsOfUseAgreement" }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreement" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/refresh", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRequestResource" + "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementFileLocalization", + "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" }, - "replacementNoun": "EntitlementManagementResourceRequestResource", - "replacementVerb": "Update" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalization" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole", - "oracle": "New-MgEntitlementManagementResourceRequestResourceRole" + "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion", + "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRole" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/refresh", + "uri": "/identitygovernance/termsofuse/agreements/{}/files", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRequestResourceRoleResource" + "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementFile", + "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementFile" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResource", - "replacementVerb": "Update" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFile" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes", + "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope", - "oracle": "New-MgEntitlementManagementResourceRequestResourceRoleResourceScope" + "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementFileVersion", + "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementFileVersion" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScope" + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersion" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}/resource/refresh", + "uri": "/identityprotection/riskdetections", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" + "ourCommand": "New-MgIdentityProtectionRiskDetection", + "oracle": "New-MgRiskDetection" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeResource", - "replacementVerb": "Update" + "replacementNoun": "RiskDetection" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes", + "uri": "/identityprotection/riskyserviceprincipals", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope", - "oracle": "New-MgEntitlementManagementResourceRequestResourceScope" + "ourCommand": "New-MgIdentityProtectionRiskyServicePrincipal", + "oracle": "New-MgRiskyServicePrincipal" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScope" + "replacementNoun": "RiskyServicePrincipal" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/refresh", + "uri": "/identityprotection/riskyserviceprincipals/{}/history", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRequestResourceScopeResource" + "ourCommand": "New-MgIdentityProtectionRiskyServicePrincipalHistory", + "oracle": "New-MgRiskyServicePrincipalHistory" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResource", - "replacementVerb": "Update" + "replacementNoun": "RiskyServicePrincipalHistory" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles", + "uri": "/identityprotection/riskyserviceprincipals/confirmcompromised", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole", - "oracle": "New-MgEntitlementManagementResourceRequestResourceScopeResourceRole" + "ourCommand": "Invoke-MgIdentityProtectionRiskyServicePrincipalConfirmCompromised", + "oracle": "Confirm-MgRiskyServicePrincipalCompromised" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRole" + "replacementNoun": "RiskyServicePrincipalCompromised", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}/resource/refresh", + "uri": "/identityprotection/riskyserviceprincipals/dismiss", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" + "ourCommand": "Invoke-MgIdentityProtectionRiskyServicePrincipalDismiss", + "oracle": "Invoke-MgDismissRiskyServicePrincipal" }, - "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleResource", - "replacementVerb": "Update" + "replacementNoun": "DismissRiskyServicePrincipal" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes", + "uri": "/identityprotection/riskyusers", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScope", - "oracle": "New-MgEntitlementManagementResourceRoleScope" + "ourCommand": "New-MgIdentityProtectionRiskyUser", + "oracle": "New-MgRiskyUser" }, - "replacementNoun": "EntitlementManagementResourceRoleScope" + "replacementNoun": "RiskyUser" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/refresh", + "uri": "/identityprotection/riskyusers/{}/history", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRoleScopeRoleResource" + "ourCommand": "New-MgIdentityProtectionRiskyUserHistory", + "oracle": "New-MgRiskyUserHistory" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResource", - "replacementVerb": "Update" + "replacementNoun": "RiskyUserHistory" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles", + "uri": "/identityprotection/riskyusers/confirmcompromised", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole", - "oracle": "New-MgEntitlementManagementResourceRoleScopeRoleResourceRole" + "ourCommand": "Invoke-MgIdentityProtectionRiskyUserConfirmCompromised", + "oracle": "Confirm-MgRiskyUserCompromised" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRole" + "replacementNoun": "RiskyUserCompromised", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes", + "uri": "/identityprotection/riskyusers/confirmsafe", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope", - "oracle": "New-MgEntitlementManagementResourceRoleScopeRoleResourceScope" + "ourCommand": "Invoke-MgIdentityProtectionRiskyUserConfirmSafe", + "oracle": "Confirm-MgRiskyUserSafe" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScope" + "replacementNoun": "RiskyUserSafe", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/refresh", + "uri": "/identityprotection/riskyusers/dismiss", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" + "ourCommand": "Invoke-MgIdentityProtectionRiskyUserDismiss", + "oracle": "Invoke-MgDismissRiskyUser" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResource", - "replacementVerb": "Update" + "replacementNoun": "DismissRiskyUser" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles", + "uri": "/identityprotection/serviceprincipalriskdetections", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", - "oracle": "New-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + "ourCommand": "New-MgIdentityProtectionServicePrincipalRiskDetection", + "oracle": "New-MgServicePrincipalRiskDetection" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + "replacementNoun": "ServicePrincipalRiskDetection" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/refresh", + "uri": "/organization/{}/checkmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRoleScopeResource" + "ourCommand": "Invoke-MgOrganizationCheckMemberGroups", + "oracle": "Confirm-MgOrganizationMemberGroup" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResource", - "replacementVerb": "Update" + "replacementNoun": "OrganizationMemberGroup", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles", + "uri": "/organization/{}/checkmemberobjects", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole", - "oracle": "New-MgEntitlementManagementResourceRoleScopeResourceRole" + "ourCommand": "Invoke-MgOrganizationCheckMemberObjects", + "oracle": "Confirm-MgOrganizationMemberObject" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRole" + "replacementNoun": "OrganizationMemberObject", + "replacementVerb": "Confirm" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/refresh", + "uri": "/organization/{}/getmembergroups", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRoleScopeResourceRoleResource" + "ourCommand": "Invoke-MgOrganizationGetMemberGroups", + "oracle": "Get-MgOrganizationMemberGroup" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResource", - "replacementVerb": "Update" + "replacementNoun": "OrganizationMemberGroup", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes", + "uri": "/organization/{}/getmemberobjects", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope", - "oracle": "New-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" + "ourCommand": "Invoke-MgOrganizationGetMemberObjects", + "oracle": "Get-MgOrganizationMemberObject" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScope" + "replacementNoun": "OrganizationMemberObject", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes", + "uri": "/organization/{}/setmobiledevicemanagementauthority", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope", - "oracle": "New-MgEntitlementManagementResourceRoleScopeResourceScope" + "ourCommand": "Invoke-MgOrganizationSetMobileDeviceManagementAuthority", + "oracle": "Set-MgOrganizationMobileDeviceManagementAuthority" }, - "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScope" + "replacementNoun": "OrganizationMobileDeviceManagementAuthority", + "replacementVerb": "Set" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resources", + "uri": "/organization/getbyids", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResource", - "oracle": "New-MgEntitlementManagementResource" + "ourCommand": "Invoke-MgOrganizationGetByIds", + "oracle": "Get-MgOrganizationById" }, - "replacementNoun": "EntitlementManagementResource" + "replacementNoun": "OrganizationById", + "replacementVerb": "Get" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/refresh", + "uri": "/organization/validateproperties", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRefresh", - "oracle": "Update-MgEntitlementManagementResource" + "ourCommand": "Invoke-MgOrganizationValidateProperties", + "oracle": "Test-MgOrganizationProperty" }, - "replacementNoun": "EntitlementManagementResource", - "replacementVerb": "Update" + "replacementNoun": "OrganizationProperty", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles", + "uri": "/places/{}/building/checkins", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRole", - "oracle": "New-MgEntitlementManagementResourceRole" + "ourCommand": "New-MgPlaceAsBuildingCheckIn", + "oracle": "New-MgPlaceAsBuildingCheck" }, - "replacementNoun": "EntitlementManagementResourceRole" + "replacementNoun": "PlaceAsBuildingCheck" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/refresh", + "uri": "/places/{}/desk/checkins", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRoleResource" + "ourCommand": "New-MgPlaceAsDeskCheckIn", + "oracle": "New-MgPlaceAsDeskCheck" }, - "replacementNoun": "EntitlementManagementResourceRoleResource", - "replacementVerb": "Update" + "replacementNoun": "PlaceAsDeskCheck" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes", + "uri": "/places/{}/floor/checkins", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope", - "oracle": "New-MgEntitlementManagementResourceRoleResourceScope" + "ourCommand": "New-MgPlaceAsFloorCheckIn", + "oracle": "New-MgPlaceAsFloorCheck" }, - "replacementNoun": "EntitlementManagementResourceRoleResourceScope" + "replacementNoun": "PlaceAsFloorCheck" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}/resource/refresh", + "uri": "/places/{}/room/checkins", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceRoleResourceScopeResource" + "ourCommand": "New-MgPlaceAsRoomCheckIn", + "oracle": "New-MgPlaceAsRoomCheck" }, - "replacementNoun": "EntitlementManagementResourceRoleResourceScopeResource", - "replacementVerb": "Update" + "replacementNoun": "PlaceAsRoomCheck" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes", + "uri": "/places/{}/roomlist/checkins", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceScope", - "oracle": "New-MgEntitlementManagementResourceScope" + "ourCommand": "New-MgPlaceAsRoomListCheckIn", + "oracle": "New-MgPlaceAsRoomListCheck" }, - "replacementNoun": "EntitlementManagementResourceScope" + "replacementNoun": "PlaceAsRoomListCheck" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/refresh", + "uri": "/places/{}/roomlist/rooms/{}/checkins", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceScopeResource" + "ourCommand": "New-MgPlaceAsRoomListRoomCheckIn", + "oracle": "New-MgPlaceAsRoomListRoomCheck" }, - "replacementNoun": "EntitlementManagementResourceScopeResource", - "replacementVerb": "Update" + "replacementNoun": "PlaceAsRoomListRoomCheck" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles", + "uri": "/places/{}/roomlist/workspaces/{}/checkins", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole", - "oracle": "New-MgEntitlementManagementResourceScopeResourceRole" + "ourCommand": "New-MgPlaceAsRoomListWorkspaceCheckIn", + "oracle": "New-MgPlaceAsRoomListWorkspaceCheck" }, - "replacementNoun": "EntitlementManagementResourceScopeResourceRole" + "replacementNoun": "PlaceAsRoomListWorkspaceCheck" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", + "uri": "/places/{}/section/checkins", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceRefresh", - "oracle": "Update-MgEntitlementManagementResourceScopeResourceRoleResource" + "ourCommand": "New-MgPlaceAsSectionCheckIn", + "oracle": "New-MgPlaceAsSectionCheck" }, - "replacementNoun": "EntitlementManagementResourceScopeResourceRoleResource", - "replacementVerb": "Update" + "replacementNoun": "PlaceAsSectionCheck" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/subjects", + "uri": "/places/{}/workspace/checkins", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceEntitlementManagementSubject", - "oracle": "New-MgEntitlementManagementSubject" + "ourCommand": "New-MgPlaceAsWorkspaceCheckIn", + "oracle": "New-MgPlaceAsWorkspaceCheck" }, - "replacementNoun": "EntitlementManagementSubject" + "replacementNoun": "PlaceAsWorkspaceCheck" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/privilegedaccess/group/assignmentschedulerequests/{}/cancel", + "uri": "/policies/authenticationstrengthpolicies/{}/updateallowedcombinations", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCancel", - "oracle": "Stop-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" + "ourCommand": "Invoke-MgPolicyAuthenticationStrengthPolicyUpdateAllowedCombinations", + "oracle": "Update-MgPolicyAuthenticationStrengthPolicyAllowedCombination" }, - "replacementNoun": "IdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", - "replacementVerb": "Stop" + "replacementNoun": "PolicyAuthenticationStrengthPolicyAllowedCombination", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/{}/cancel", + "uri": "/policies/conditionalaccesspolicies/{}/restore", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCancel", - "oracle": "Stop-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" + "ourCommand": "Invoke-MgPolicyConditionalAccessPolicyRestore", + "oracle": "Restore-MgPolicyConditionalAccessPolicy" }, - "replacementNoun": "IdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", - "replacementVerb": "Stop" + "replacementNoun": "PolicyConditionalAccessPolicy", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/termsofuse/agreementacceptances", + "uri": "/policies/crosstenantaccesspolicy/default/resettosystemdefault", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementAcceptance", - "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementAcceptance" + "ourCommand": "Invoke-MgPolicyCrossTenantAccessPolicyDefaultResetToSystemDefault", + "oracle": "Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptance" + "replacementNoun": "PolicyCrossTenantAccessPolicyDefaultToSystemDefault", + "replacementVerb": "Reset" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/termsofuse/agreements", + "uri": "/print/printers/{}/jobs", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreement", - "oracle": "New-MgIdentityGovernanceTermsOfUseAgreement" + "ourCommand": "New-MgPrinterJob", + "oracle": "New-MgPrintPrinterJob" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreement" + "replacementNoun": "PrintPrinterJob" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations", + "uri": "/print/printers/{}/jobs/{}/abort", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementFileLocalization", - "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" + "ourCommand": "Invoke-MgPrinterJobAbort", + "oracle": "Invoke-MgAbortPrintPrinterJob" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalization" + "replacementNoun": "AbortPrintPrinterJob" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions", + "uri": "/print/printers/{}/jobs/{}/cancel", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion", - "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + "ourCommand": "Invoke-MgPrinterJobCancel", + "oracle": "Stop-MgPrintPrinterJob" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + "replacementNoun": "PrintPrinterJob", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/termsofuse/agreements/{}/files", + "uri": "/print/printers/{}/jobs/{}/documents", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementFile", - "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementFile" + "ourCommand": "New-MgPrinterJobDocument", + "oracle": "New-MgPrintPrinterJobDocument" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFile" + "replacementNoun": "PrintPrinterJobDocument" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions", + "uri": "/print/printers/{}/jobs/{}/documents/{}/createuploadsession", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementFileVersion", - "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementFileVersion" + "ourCommand": "Invoke-MgPrinterJobDocumentCreateUploadSession", + "oracle": "New-MgPrintPrinterJobDocumentUploadSession" }, - "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersion" + "replacementNoun": "PrintPrinterJobDocumentUploadSession", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identityprotection/riskdetections", + "uri": "/print/printers/{}/jobs/{}/redirect", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityProtectionRiskDetection", - "oracle": "New-MgRiskDetection" + "ourCommand": "Invoke-MgPrinterJobRedirect", + "oracle": "Invoke-MgRedirectPrintPrinterJob" }, - "replacementNoun": "RiskDetection" + "replacementNoun": "RedirectPrintPrinterJob" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identityprotection/riskyserviceprincipals", + "uri": "/print/printers/{}/jobs/{}/start", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityProtectionRiskyServicePrincipal", - "oracle": "New-MgRiskyServicePrincipal" + "ourCommand": "Invoke-MgPrinterJobStart", + "oracle": "Start-MgPrintPrinterJob" }, - "replacementNoun": "RiskyServicePrincipal" + "replacementNoun": "PrintPrinterJob", + "replacementVerb": "Start" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identityprotection/riskyserviceprincipals/{}/history", + "uri": "/print/printers/{}/jobs/{}/tasks", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityProtectionRiskyServicePrincipalHistory", - "oracle": "New-MgRiskyServicePrincipalHistory" + "ourCommand": "New-MgPrinterJobTask", + "oracle": "New-MgPrintPrinterJobTask" }, - "replacementNoun": "RiskyServicePrincipalHistory" + "replacementNoun": "PrintPrinterJobTask" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identityprotection/riskyserviceprincipals/confirmcompromised", + "uri": "/print/printers/{}/restorefactorydefaults", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityProtectionRiskyServicePrincipalConfirmCompromised", - "oracle": "Confirm-MgRiskyServicePrincipalCompromised" + "ourCommand": "Invoke-MgPrinterRestoreFactoryDefaults", + "oracle": "Restore-MgPrintPrinterFactoryDefault" }, - "replacementNoun": "RiskyServicePrincipalCompromised", - "replacementVerb": "Confirm" + "replacementNoun": "PrintPrinterFactoryDefault", + "replacementVerb": "Restore" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identityprotection/riskyserviceprincipals/dismiss", + "uri": "/print/printers/{}/tasktriggers", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityProtectionRiskyServicePrincipalDismiss", - "oracle": "Invoke-MgDismissRiskyServicePrincipal" + "ourCommand": "New-MgPrinterTaskTrigger", + "oracle": "New-MgPrintPrinterTaskTrigger" }, - "replacementNoun": "DismissRiskyServicePrincipal" + "replacementNoun": "PrintPrinterTaskTrigger" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identityprotection/riskyusers", + "uri": "/print/printers/create", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityProtectionRiskyUser", - "oracle": "New-MgRiskyUser" + "ourCommand": "Invoke-MgPrinterCreate", + "oracle": "New-MgPrintPrinter" }, - "replacementNoun": "RiskyUser" + "replacementNoun": "PrintPrinter", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identityprotection/riskyusers/{}/history", + "uri": "/print/shares/{}/jobs/{}/abort", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityProtectionRiskyUserHistory", - "oracle": "New-MgRiskyUserHistory" + "ourCommand": "Invoke-MgPrintShareJobAbort", + "oracle": "Invoke-MgAbortPrintShareJob" }, - "replacementNoun": "RiskyUserHistory" + "replacementNoun": "AbortPrintShareJob" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identityprotection/riskyusers/confirmcompromised", + "uri": "/print/shares/{}/jobs/{}/cancel", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityProtectionRiskyUserConfirmCompromised", - "oracle": "Confirm-MgRiskyUserCompromised" + "ourCommand": "Invoke-MgPrintShareJobCancel", + "oracle": "Stop-MgPrintShareJob" }, - "replacementNoun": "RiskyUserCompromised", - "replacementVerb": "Confirm" + "replacementNoun": "PrintShareJob", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identityprotection/riskyusers/confirmsafe", + "uri": "/print/shares/{}/jobs/{}/documents/{}/createuploadsession", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityProtectionRiskyUserConfirmSafe", - "oracle": "Confirm-MgRiskyUserSafe" + "ourCommand": "Invoke-MgPrintShareJobDocumentCreateUploadSession", + "oracle": "New-MgPrintShareJobDocumentUploadSession" }, - "replacementNoun": "RiskyUserSafe", - "replacementVerb": "Confirm" + "replacementNoun": "PrintShareJobDocumentUploadSession", + "replacementVerb": "New" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identityprotection/riskyusers/dismiss", + "uri": "/print/shares/{}/jobs/{}/redirect", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgIdentityProtectionRiskyUserDismiss", - "oracle": "Invoke-MgDismissRiskyUser" + "ourCommand": "Invoke-MgPrintShareJobRedirect", + "oracle": "Invoke-MgRedirectPrintShareJob" }, - "replacementNoun": "DismissRiskyUser" + "replacementNoun": "RedirectPrintShareJob" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/identityprotection/serviceprincipalriskdetections", + "uri": "/print/shares/{}/jobs/{}/start", "action": "rename", "evidence": { - "ourCommand": "New-MgIdentityProtectionServicePrincipalRiskDetection", - "oracle": "New-MgServicePrincipalRiskDetection" + "ourCommand": "Invoke-MgPrintShareJobStart", + "oracle": "Start-MgPrintShareJob" }, - "replacementNoun": "ServicePrincipalRiskDetection" + "replacementNoun": "PrintShareJob", + "replacementVerb": "Start" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/organization/{}/checkmembergroups", + "uri": "/reports/partners/billing/reconciliation/billed/export", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgOrganizationCheckMemberGroups", - "oracle": "Confirm-MgOrganizationMemberGroup" + "ourCommand": "Invoke-MgReportPartnerBillingReconciliationBilledExport", + "oracle": "Export-MgReportPartnerBillingReconciliationBilled" }, - "replacementNoun": "OrganizationMemberGroup", - "replacementVerb": "Confirm" + "replacementNoun": "ReportPartnerBillingReconciliationBilled", + "replacementVerb": "Export" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/organization/{}/checkmemberobjects", + "uri": "/reports/partners/billing/reconciliation/unbilled/export", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgOrganizationCheckMemberObjects", - "oracle": "Confirm-MgOrganizationMemberObject" + "ourCommand": "Invoke-MgReportPartnerBillingReconciliationUnbilledExport", + "oracle": "Export-MgReportPartnerBillingReconciliationUnbilled" }, - "replacementNoun": "OrganizationMemberObject", - "replacementVerb": "Confirm" + "replacementNoun": "ReportPartnerBillingReconciliationUnbilled", + "replacementVerb": "Export" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/organization/{}/getmembergroups", + "uri": "/reports/partners/billing/usage/billed/export", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgOrganizationGetMemberGroups", - "oracle": "Get-MgOrganizationMemberGroup" + "ourCommand": "Invoke-MgReportPartnerBillingUsageBilledExport", + "oracle": "Export-MgReportPartnerBillingUsageBilled" }, - "replacementNoun": "OrganizationMemberGroup", - "replacementVerb": "Get" + "replacementNoun": "ReportPartnerBillingUsageBilled", + "replacementVerb": "Export" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/organization/{}/getmemberobjects", + "uri": "/reports/partners/billing/usage/unbilled/export", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgOrganizationGetMemberObjects", - "oracle": "Get-MgOrganizationMemberObject" + "ourCommand": "Invoke-MgReportPartnerBillingUsageUnbilledExport", + "oracle": "Export-MgReportPartnerBillingUsageUnbilled" }, - "replacementNoun": "OrganizationMemberObject", - "replacementVerb": "Get" + "replacementNoun": "ReportPartnerBillingUsageUnbilled", + "replacementVerb": "Export" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/organization/{}/setmobiledevicemanagementauthority", + "uri": "/rolemanagement/directory/roleassignmentschedulerequests/{}/cancel", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgOrganizationSetMobileDeviceManagementAuthority", - "oracle": "Set-MgOrganizationMobileDeviceManagementAuthority" + "ourCommand": "Invoke-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCancel", + "oracle": "Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" }, - "replacementNoun": "OrganizationMobileDeviceManagementAuthority", - "replacementVerb": "Set" + "replacementNoun": "RoleManagementDirectoryRoleAssignmentScheduleRequest", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/organization/getbyids", + "uri": "/rolemanagement/directory/roleeligibilityschedulerequests/{}/cancel", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgOrganizationGetByIds", - "oracle": "Get-MgOrganizationById" + "ourCommand": "Invoke-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCancel", + "oracle": "Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" }, - "replacementNoun": "OrganizationById", - "replacementVerb": "Get" + "replacementNoun": "RoleManagementDirectoryRoleEligibilityScheduleRequest", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/organization/validateproperties", + "uri": "/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/{}/cancel", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgOrganizationValidateProperties", - "oracle": "Test-MgOrganizationProperty" + "ourCommand": "Invoke-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCancel", + "oracle": "Stop-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" }, - "replacementNoun": "OrganizationProperty", - "replacementVerb": "Test" + "replacementNoun": "RoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/policies/authenticationstrengthpolicies/{}/updateallowedcombinations", + "uri": "/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/{}/cancel", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPolicyAuthenticationStrengthPolicyUpdateAllowedCombinations", - "oracle": "Update-MgPolicyAuthenticationStrengthPolicyAllowedCombination" + "ourCommand": "Invoke-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCancel", + "oracle": "Stop-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" }, - "replacementNoun": "PolicyAuthenticationStrengthPolicyAllowedCombination", - "replacementVerb": "Update" + "replacementNoun": "RoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "replacementVerb": "Stop" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/policies/conditionalaccesspolicies/{}/restore", + "uri": "/search/query", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPolicyConditionalAccessPolicyRestore", - "oracle": "Restore-MgPolicyConditionalAccessPolicy" + "ourCommand": "Invoke-MgSearchQuery", + "oracle": "Invoke-MgQuerySearch" }, - "replacementNoun": "PolicyConditionalAccessPolicy", - "replacementVerb": "Restore" + "replacementNoun": "QuerySearch" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/policies/crosstenantaccesspolicy/default/resettosystemdefault", + "uri": "/security/alerts_v2/movealerts", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPolicyCrossTenantAccessPolicyDefaultResetToSystemDefault", - "oracle": "Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault" + "ourCommand": "Invoke-MgSecurityAlertV2MoveAlerts", + "oracle": "Move-MgSecurityAlert" }, - "replacementNoun": "PolicyCrossTenantAccessPolicyDefaultToSystemDefault", - "replacementVerb": "Reset" + "replacementNoun": "SecurityAlert", + "replacementVerb": "Move" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/printers/{}/jobs", + "uri": "/security/cases/ediscoverycases/{}/close", "action": "rename", "evidence": { - "ourCommand": "New-MgPrinterJob", - "oracle": "New-MgPrintPrinterJob" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseClose", + "oracle": "Close-MgSecurityCaseEdiscoveryCase" }, - "replacementNoun": "PrintPrinterJob" + "replacementNoun": "SecurityCaseEdiscoveryCase", + "replacementVerb": "Close" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/printers/{}/jobs/{}/abort", + "uri": "/security/cases/ediscoverycases/{}/custodians/{}/activate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPrinterJobAbort", - "oracle": "Invoke-MgAbortPrintPrinterJob" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseCustodianActivate", + "oracle": "Initialize-MgSecurityCaseEdiscoveryCaseCustodian" }, - "replacementNoun": "AbortPrintPrinterJob" + "replacementNoun": "SecurityCaseEdiscoveryCaseCustodian", + "replacementVerb": "Initialize" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/printers/{}/jobs/{}/cancel", + "uri": "/security/cases/ediscoverycases/{}/custodians/{}/applyhold", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPrinterJobCancel", - "oracle": "Stop-MgPrintPrinterJob" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseCustodianApplyHold", + "oracle": "Add-MgSecurityCaseEdiscoveryCaseCustodianHold" }, - "replacementNoun": "PrintPrinterJob", - "replacementVerb": "Stop" + "replacementNoun": "SecurityCaseEdiscoveryCaseCustodianHold", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/printers/{}/jobs/{}/documents", + "uri": "/security/cases/ediscoverycases/{}/custodians/{}/release", "action": "rename", "evidence": { - "ourCommand": "New-MgPrinterJobDocument", - "oracle": "New-MgPrintPrinterJobDocument" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseCustodianRelease", + "oracle": "Publish-MgSecurityCaseEdiscoveryCaseCustodian" }, - "replacementNoun": "PrintPrinterJobDocument" + "replacementNoun": "SecurityCaseEdiscoveryCaseCustodian", + "replacementVerb": "Publish" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/printers/{}/jobs/{}/documents/{}/createuploadsession", + "uri": "/security/cases/ediscoverycases/{}/custodians/{}/removehold", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPrinterJobDocumentCreateUploadSession", - "oracle": "New-MgPrintPrinterJobDocumentUploadSession" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseCustodianRemoveHold", + "oracle": "Remove-MgSecurityCaseEdiscoveryCaseCustodianHold" }, - "replacementNoun": "PrintPrinterJobDocumentUploadSession", - "replacementVerb": "New" + "replacementNoun": "SecurityCaseEdiscoveryCaseCustodianHold", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/printers/{}/jobs/{}/redirect", + "uri": "/security/cases/ediscoverycases/{}/custodians/{}/updateindex", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPrinterJobRedirect", - "oracle": "Invoke-MgRedirectPrintPrinterJob" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseCustodianUpdateIndex", + "oracle": "Update-MgSecurityCaseEdiscoveryCaseCustodianIndex" }, - "replacementNoun": "RedirectPrintPrinterJob" + "replacementNoun": "SecurityCaseEdiscoveryCaseCustodianIndex", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/printers/{}/jobs/{}/start", + "uri": "/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/applyhold", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPrinterJobStart", - "oracle": "Start-MgPrintPrinterJob" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceApplyHold", + "oracle": "Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold" }, - "replacementNoun": "PrintPrinterJob", - "replacementVerb": "Start" + "replacementNoun": "SecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/printers/{}/jobs/{}/tasks", + "uri": "/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/release", "action": "rename", "evidence": { - "ourCommand": "New-MgPrinterJobTask", - "oracle": "New-MgPrintPrinterJobTask" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRelease", + "oracle": "Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" }, - "replacementNoun": "PrintPrinterJobTask" + "replacementNoun": "SecurityCaseEdiscoveryCaseNoncustodialDataSource", + "replacementVerb": "Publish" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/printers/{}/restorefactorydefaults", + "uri": "/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/removehold", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPrinterRestoreFactoryDefaults", - "oracle": "Restore-MgPrintPrinterFactoryDefault" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRemoveHold", + "oracle": "Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold" }, - "replacementNoun": "PrintPrinterFactoryDefault", - "replacementVerb": "Restore" + "replacementNoun": "SecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", + "replacementVerb": "Remove" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/printers/{}/tasktriggers", + "uri": "/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/updateindex", "action": "rename", "evidence": { - "ourCommand": "New-MgPrinterTaskTrigger", - "oracle": "New-MgPrintPrinterTaskTrigger" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceUpdateIndex", + "oracle": "Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex" }, - "replacementNoun": "PrintPrinterTaskTrigger" + "replacementNoun": "SecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/printers/create", + "uri": "/security/cases/ediscoverycases/{}/reopen", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPrinterCreate", - "oracle": "New-MgPrintPrinter" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseReopen", + "oracle": "Invoke-MgReopenSecurityCaseEdiscoveryCase" }, - "replacementNoun": "PrintPrinter", - "replacementVerb": "New" + "replacementNoun": "ReopenSecurityCaseEdiscoveryCase" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/shares/{}/jobs/{}/abort", + "uri": "/security/cases/ediscoverycases/{}/reviewsets/{}/addtoreviewset", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPrintShareJobAbort", - "oracle": "Invoke-MgAbortPrintShareJob" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseReviewSetAddToReviewSet", + "oracle": "Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet" }, - "replacementNoun": "AbortPrintShareJob" + "replacementNoun": "SecurityCaseEdiscoveryCaseReviewSetToReviewSet", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/shares/{}/jobs/{}/cancel", + "uri": "/security/cases/ediscoverycases/{}/reviewsets/{}/export", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPrintShareJobCancel", - "oracle": "Stop-MgPrintShareJob" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseReviewSetExport", + "oracle": "Export-MgSecurityCaseEdiscoveryCaseReviewSet" }, - "replacementNoun": "PrintShareJob", - "replacementVerb": "Stop" + "replacementNoun": "SecurityCaseEdiscoveryCaseReviewSet", + "replacementVerb": "Export" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/shares/{}/jobs/{}/documents/{}/createuploadsession", + "uri": "/security/cases/ediscoverycases/{}/reviewsets/{}/queries/{}/applytags", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPrintShareJobDocumentCreateUploadSession", - "oracle": "New-MgPrintShareJobDocumentUploadSession" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseReviewSetQueryApplyTags", + "oracle": "Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag" }, - "replacementNoun": "PrintShareJobDocumentUploadSession", - "replacementVerb": "New" + "replacementNoun": "SecurityCaseEdiscoveryCaseReviewSetQueryTag", + "replacementVerb": "Add" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/shares/{}/jobs/{}/redirect", + "uri": "/security/cases/ediscoverycases/{}/reviewsets/{}/queries/{}/export", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPrintShareJobRedirect", - "oracle": "Invoke-MgRedirectPrintShareJob" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseReviewSetQueryExport", + "oracle": "Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery" }, - "replacementNoun": "RedirectPrintShareJob" + "replacementNoun": "SecurityCaseEdiscoveryCaseReviewSetQuery", + "replacementVerb": "Export" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/print/shares/{}/jobs/{}/start", + "uri": "/security/cases/ediscoverycases/{}/searches/{}/estimatestatistics", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgPrintShareJobStart", - "oracle": "Start-MgPrintShareJob" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseSearchEstimateStatistics", + "oracle": "Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics" }, - "replacementNoun": "PrintShareJob", - "replacementVerb": "Start" + "replacementNoun": "EstimateSecurityCaseEdiscoveryCaseSearchStatistics" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/rolemanagement/directory/roleassignmentschedulerequests/{}/cancel", + "uri": "/security/cases/ediscoverycases/{}/searches/{}/exportreport", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCancel", - "oracle": "Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseSearchExportReport", + "oracle": "Export-MgSecurityCaseEdiscoveryCaseSearchReport" }, - "replacementNoun": "RoleManagementDirectoryRoleAssignmentScheduleRequest", - "replacementVerb": "Stop" + "replacementNoun": "SecurityCaseEdiscoveryCaseSearchReport", + "replacementVerb": "Export" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/rolemanagement/directory/roleeligibilityschedulerequests/{}/cancel", + "uri": "/security/cases/ediscoverycases/{}/searches/{}/exportresult", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCancel", - "oracle": "Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseSearchExportResult", + "oracle": "Export-MgSecurityCaseEdiscoveryCaseSearchResult" }, - "replacementNoun": "RoleManagementDirectoryRoleEligibilityScheduleRequest", - "replacementVerb": "Stop" + "replacementNoun": "SecurityCaseEdiscoveryCaseSearchResult", + "replacementVerb": "Export" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/{}/cancel", + "uri": "/security/cases/ediscoverycases/{}/searches/{}/purgedata", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCancel", - "oracle": "Stop-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseSearchPurgeData", + "oracle": "Clear-MgSecurityCaseEdiscoveryCaseSearchData" }, - "replacementNoun": "RoleManagementEntitlementManagementRoleAssignmentScheduleRequest", - "replacementVerb": "Stop" + "replacementNoun": "SecurityCaseEdiscoveryCaseSearchData", + "replacementVerb": "Clear" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/{}/cancel", + "uri": "/security/cases/ediscoverycases/{}/settings/resettodefault", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCancel", - "oracle": "Stop-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" + "ourCommand": "Invoke-MgSecurityCaseEdiscoveryCaseSettingResetToDefault", + "oracle": "Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault" }, - "replacementNoun": "RoleManagementEntitlementManagementRoleEligibilityScheduleRequest", - "replacementVerb": "Stop" + "replacementNoun": "SecurityCaseEdiscoveryCaseSettingToDefault", + "replacementVerb": "Reset" }, { "apiVersion": "v1.0", "method": "POST", - "uri": "/search/query", + "uri": "/security/collaboration/analyzedemails/remediate", "action": "rename", "evidence": { - "ourCommand": "Invoke-MgSearchQuery", - "oracle": "Invoke-MgQuerySearch" + "ourCommand": "Invoke-MgSecurityCollaborationAnalyzedEmailRemediate", + "oracle": "Invoke-MgRemediateSecurityCollaborationAnalyzedEmail" }, - "replacementNoun": "QuerySearch" + "replacementNoun": "RemediateSecurityCollaborationAnalyzedEmail" }, { "apiVersion": "v1.0", @@ -15857,6 +20266,65 @@ }, "replacementNoun": "AndSecurityDataSecurityAndGovernanceSensitivityLabel" }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/security/identities/identityaccounts/{}/invokeaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSecurityIdentityAccountInvokeAction", + "oracle": "Invoke-MgInvokeSecurityIdentityAccountAction" + }, + "replacementNoun": "InvokeSecurityIdentityAccountAction" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/security/identities/sensorcandidates/activate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSecurityIdentitySensorCandidateActivate", + "oracle": "Initialize-MgSecurityIdentitySensorCandidate" + }, + "replacementNoun": "SecurityIdentitySensorCandidate", + "replacementVerb": "Initialize" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/security/identities/sensors/regeneratedeploymentaccesskey", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSecurityIdentitySensorRegenerateDeploymentAccessKey", + "oracle": "New-MgSecurityIdentitySensorDeploymentAccessKey" + }, + "replacementNoun": "SecurityIdentitySensorDeploymentAccessKey", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/security/incidents/mergeincidents", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSecurityIncidentMergeIncidents", + "oracle": "Merge-MgSecurityIncident" + }, + "replacementNoun": "SecurityIncident", + "replacementVerb": "Merge" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/security/runhuntingquery", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSecurityRunHuntingQuery", + "oracle": "Start-MgSecurityHuntingQuery" + }, + "replacementNoun": "SecurityHuntingQuery", + "replacementVerb": "Start" + }, { "apiVersion": "v1.0", "method": "POST", @@ -16681,6 +21149,42 @@ "replacementNoun": "SiteOnenoteSectionPageContent", "replacementVerb": "Update" }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/pages/{}/sitepage/canvaslayout/horizontalsections/{}/columns/{}/webparts/{}/getpositionofwebpart", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartGetPositionOfWebPart", + "oracle": "Get-MgSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart" + }, + "replacementNoun": "SitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/pages/{}/sitepage/canvaslayout/verticalsection/webparts/{}/getpositionofwebpart", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartGetPositionOfWebPart", + "oracle": "Get-MgSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart" + }, + "replacementNoun": "SitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/pages/{}/sitepage/webparts/{}/getpositionofwebpart", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSitePageAsSitePageWebPartGetPositionOfWebPart", + "oracle": "Get-MgSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart" + }, + "replacementNoun": "SitePageMicrosoftGraphSitePageWebPartPositionOfWebPart", + "replacementVerb": "Get" + }, { "apiVersion": "v1.0", "method": "POST", diff --git a/tools/WrapperGenerator/data/parity-resolution-ledger.v1.0.csv b/tools/WrapperGenerator/data/parity-resolution-ledger.v1.0.csv index 540dfcd1d14..6ffafd82659 100644 --- a/tools/WrapperGenerator/data/parity-resolution-ledger.v1.0.csv +++ b/tools/WrapperGenerator/data/parity-resolution-ledger.v1.0.csv @@ -22,7 +22,7 @@ "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}/attachments/{param}/content","suppress",,"Remove-MgAdminServiceAnnouncementMessageAttachmentContent","no oracle row for DELETE /admin/serviceAnnouncement/messages/{param}/attachments/{param}/content 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" @@ -76,11 +76,13 @@ "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}/recordings/{param}/content","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}/content","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}/organizer_v2","keep",,"Remove-MgCommunicationCallRecordOrganizerV2","Remove-MgCommunicationCallRecordOrganizerV2" +"DELETE","/communications/callRecords/{param}/participants_v2/{param}","keep",,"Remove-MgCommunicationCallRecordParticipantV2","Remove-MgCommunicationCallRecordParticipantV2" "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" @@ -103,9 +105,9 @@ "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}/recordings/{param}/content","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}/content","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" @@ -148,7 +150,57 @@ "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}/androidLobApp/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion" +"DELETE","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/containedApps/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile" +"DELETE","/deviceAppManagement/mobileApps/{param}/androidStoreApp/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","Remove-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment" "DELETE","/deviceAppManagement/mobileApps/{param}/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAssignment","Remove-MgDeviceAppManagementMobileAppAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/iosLobApp/assignments/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppAssignment","Remove-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","Remove-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersion","Remove-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","Remove-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" +"DELETE","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/containedApps/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" +"DELETE","/deviceAppManagement/mobileApps/{param}/iosStoreApp/assignments/{param}","rename","DeviceAppManagementMobileAppAsIoStoreAppAssignment","Remove-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","Remove-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/iosVppApp/assignments/{param}","rename","DeviceAppManagementMobileAppAsIoVppAppAssignment","Remove-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","Remove-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion" +"DELETE","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/containedApps/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile" +"DELETE","/deviceAppManagement/mobileApps/{param}/macOSLobApp/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion" +"DELETE","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/containedApps/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile" +"DELETE","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion" +"DELETE","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/containedApps/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile" +"DELETE","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/assignments/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppAssignment","Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersion","Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" +"DELETE","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/containedApps/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" +"DELETE","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion" +"DELETE","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/containedApps/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile" +"DELETE","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","Remove-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/win32LobApp/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion" +"DELETE","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/containedApps/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsAppX/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/containedApps/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/assignments/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiAssignment","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/containedApps/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/committedContainedApps/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/containedApps/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile" +"DELETE","/deviceAppManagement/mobileApps/{param}/windowsWebApp/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","Remove-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment" "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" @@ -262,21 +314,21 @@ "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}/bundles/{param}/content","keep",,"Remove-MgDriveBundleContent","Remove-MgDriveBundleContent" +"DELETE","/drives/{param}/following/{param}/content","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}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","suppress",,"Remove-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent","no oracle row for DELETE /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content and 'Remove-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent' unshipped" +"DELETE","/drives/{param}/items/{param}/children/{param}/content","keep",,"Remove-MgDriveItemChildContent","Remove-MgDriveItemChildContent" +"DELETE","/drives/{param}/items/{param}/content","keep",,"Remove-MgDriveItemContent","Remove-MgDriveItemContent" "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}/versions/{param}/content","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" @@ -369,7 +421,7 @@ "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}/driveItem/content","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" @@ -377,8 +429,8 @@ "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","/drives/{param}/root/content","keep",,"Remove-MgDriveRootContent","Remove-MgDriveRootContent" +"DELETE","/drives/{param}/special/{param}/content","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" @@ -467,22 +519,22 @@ "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}/sectionGroups/{param}/sections/{param}/pages/{param}/content","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/notebooks/{param}/sections/{param}/pages/{param}/content","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/pages/{param}/content","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/resources/{param}/content","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/sectionGroups/{param}/sections/{param}/pages/{param}/content","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}/onenote/sections/{param}/pages/{param}/content","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" @@ -507,7 +559,7 @@ "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}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","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" @@ -520,7 +572,7 @@ "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}/driveItem/content","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" @@ -533,24 +585,31 @@ "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}/sectionGroups/{param}/sections/{param}/pages/{param}/content","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/notebooks/{param}/sections/{param}/pages/{param}/content","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/pages/{param}/content","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/resources/{param}/content","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/sectionGroups/{param}/sections/{param}/pages/{param}/content","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}/onenote/sections/{param}/pages/{param}/content","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}/pages/{param}/sitePage/canvasLayout","keep",,"Remove-MgGroupSitePageAsSitePageCanvaLayout","Remove-MgGroupSitePageAsSitePageCanvaLayout" +"DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}","keep",,"Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection" +"DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}","keep",,"Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}","keep",,"Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection","keep",,"Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection","Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection" +"DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}","keep",,"Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"DELETE","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts/{param}","keep",,"Remove-MgGroupSitePageAsSitePageWebPart","Remove-MgGroupSitePageAsSitePageWebPart" "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" @@ -583,7 +642,7 @@ "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}/filesFolder/content","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" @@ -600,7 +659,7 @@ "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/filesFolder/content","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" @@ -634,6 +693,9 @@ "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/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{param}","rename","IdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" +"DELETE","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/{param}/$ref","rename","IdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeIdentityUserFlowAttributeByRef","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef","Remove-MgIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeIdentityUserFlowAttributeByRef" +"DELETE","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/{param}/$ref","rename","IdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderBaseByRef","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","Remove-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderBaseByRef" "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" @@ -841,7 +903,24 @@ "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}/building/checkIns/{param}","rename","PlaceAsBuildingCheck","Remove-MgPlaceAsBuildingCheckIn","Remove-MgPlaceAsBuildingCheck" +"DELETE","/places/{param}/building/map","keep",,"Remove-MgPlaceAsBuildingMap","Remove-MgPlaceAsBuildingMap" +"DELETE","/places/{param}/building/map/footprints/{param}","keep",,"Remove-MgPlaceAsBuildingMapFootprint","Remove-MgPlaceAsBuildingMapFootprint" +"DELETE","/places/{param}/building/map/levels/{param}","keep",,"Remove-MgPlaceAsBuildingMapLevel","Remove-MgPlaceAsBuildingMapLevel" +"DELETE","/places/{param}/building/map/levels/{param}/fixtures/{param}","keep",,"Remove-MgPlaceAsBuildingMapLevelFixture","Remove-MgPlaceAsBuildingMapLevelFixture" +"DELETE","/places/{param}/building/map/levels/{param}/sections/{param}","keep",,"Remove-MgPlaceAsBuildingMapLevelSection","Remove-MgPlaceAsBuildingMapLevelSection" +"DELETE","/places/{param}/building/map/levels/{param}/units/{param}","keep",,"Remove-MgPlaceAsBuildingMapLevelUnit","Remove-MgPlaceAsBuildingMapLevelUnit" "DELETE","/places/{param}/checkIns/{param}","keep",,"Remove-MgPlaceCheckIn","deliberate correction; oracle ships Remove-MgPlaceCheck" +"DELETE","/places/{param}/desk/checkIns/{param}","rename","PlaceAsDeskCheck","Remove-MgPlaceAsDeskCheckIn","Remove-MgPlaceAsDeskCheck" +"DELETE","/places/{param}/floor/checkIns/{param}","rename","PlaceAsFloorCheck","Remove-MgPlaceAsFloorCheckIn","Remove-MgPlaceAsFloorCheck" +"DELETE","/places/{param}/room/checkIns/{param}","rename","PlaceAsRoomCheck","Remove-MgPlaceAsRoomCheckIn","Remove-MgPlaceAsRoomCheck" +"DELETE","/places/{param}/roomList/checkIns/{param}","rename","PlaceAsRoomListCheck","Remove-MgPlaceAsRoomListCheckIn","Remove-MgPlaceAsRoomListCheck" +"DELETE","/places/{param}/roomList/rooms/{param}","keep",,"Remove-MgPlaceAsRoomListRoom","Remove-MgPlaceAsRoomListRoom" +"DELETE","/places/{param}/roomList/rooms/{param}/checkIns/{param}","rename","PlaceAsRoomListRoomCheck","Remove-MgPlaceAsRoomListRoomCheckIn","Remove-MgPlaceAsRoomListRoomCheck" +"DELETE","/places/{param}/roomList/workspaces/{param}","keep",,"Remove-MgPlaceAsRoomListWorkspace","Remove-MgPlaceAsRoomListWorkspace" +"DELETE","/places/{param}/roomList/workspaces/{param}/checkIns/{param}","rename","PlaceAsRoomListWorkspaceCheck","Remove-MgPlaceAsRoomListWorkspaceCheckIn","Remove-MgPlaceAsRoomListWorkspaceCheck" +"DELETE","/places/{param}/section/checkIns/{param}","rename","PlaceAsSectionCheck","Remove-MgPlaceAsSectionCheckIn","Remove-MgPlaceAsSectionCheck" +"DELETE","/places/{param}/workspace/checkIns/{param}","rename","PlaceAsWorkspaceCheck","Remove-MgPlaceAsWorkspaceCheckIn","Remove-MgPlaceAsWorkspaceCheck" "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" @@ -967,6 +1046,7 @@ "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/alerts_v2/{param}","keep",,"Remove-MgSecurityAlertV2","Remove-MgSecurityAlertV2" "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" @@ -1074,8 +1154,8 @@ "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}/driveItem/content","keep",,"Remove-MgShareDriveItemContent","Remove-MgShareDriveItemContent" +"DELETE","/shares/{param}/items/{param}/content","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" @@ -1084,7 +1164,7 @@ "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}/driveItem/content","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" @@ -1093,7 +1173,7 @@ "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","/shares/{param}/root/content","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" @@ -1133,6 +1213,13 @@ "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}/pages/{param}/sitePage/canvasLayout","keep",,"Remove-MgSitePageAsSitePageCanvaLayout","Remove-MgSitePageAsSitePageCanvaLayout" +"DELETE","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}","keep",,"Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSection","Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSection" +"DELETE","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}","keep",,"Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"DELETE","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}","keep",,"Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"DELETE","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection","keep",,"Remove-MgSitePageAsSitePageCanvaLayoutVerticalSection","Remove-MgSitePageAsSitePageCanvaLayoutVerticalSection" +"DELETE","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}","keep",,"Remove-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","Remove-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"DELETE","/sites/{param}/pages/{param}/sitePage/webParts/{param}","keep",,"Remove-MgSitePageAsSitePageWebPart","Remove-MgSitePageAsSitePageWebPart" "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" @@ -1226,7 +1313,7 @@ "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}/filesFolder/content","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" @@ -1243,7 +1330,7 @@ "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/filesFolder/content","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" @@ -1271,7 +1358,7 @@ "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}/filesFolder/content","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" @@ -1356,7 +1443,7 @@ "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}/filesFolder/content","suppress",,"Remove-MgUserJoinedTeamChannelFileFolderContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/content 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" @@ -1373,7 +1460,7 @@ "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/filesFolder/content","suppress",,"Remove-MgUserJoinedTeamPrimaryChannelFileFolderContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/content 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" @@ -1428,30 +1515,30 @@ "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}/sectionGroups/{param}/sections/{param}/pages/{param}/content","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/notebooks/{param}/sections/{param}/pages/{param}/content","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/pages/{param}/content","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/resources/{param}/content","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/sectionGroups/{param}/sections/{param}/pages/{param}/content","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}/onenote/sections/{param}/pages/{param}/content","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}/recordings/{param}/content","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}/content","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" @@ -1499,7 +1586,7 @@ "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}/attachmentSessions/{param}/content","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" @@ -1560,7 +1647,9 @@ "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/{param}/content","rename","ServiceAnnouncementMessageAttachmentContent","Get-MgAdminServiceAnnouncementMessageAttachmentContent","Get-MgServiceAnnouncementMessageAttachmentContent" "GET","/admin/serviceAnnouncement/messages/{param}/attachments/$count","rename","ServiceAnnouncementMessageAttachmentCount","Get-MgAdminServiceAnnouncementMessageAttachmentCount","Get-MgServiceAnnouncementMessageAttachmentCount" +"GET","/admin/serviceAnnouncement/messages/{param}/attachmentsArchive","rename","ServiceAnnouncementMessageAttachmentArchive","Get-MgAdminServiceAnnouncementMessageAttachmentArchive","Get-MgServiceAnnouncementMessageAttachmentArchive" "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" @@ -1602,9 +1691,22 @@ "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}/logo","keep",,"Get-MgApplicationLogo","Get-MgApplicationLogo" "GET","/applications/{param}/owners","keep",,"Get-MgApplicationOwner","Get-MgApplicationOwner" +"GET","/applications/{param}/owners/{param}/appRoleAssignment","keep",,"Get-MgApplicationOwnerAsAppRoleAssignment","Get-MgApplicationOwnerAsAppRoleAssignment" +"GET","/applications/{param}/owners/{param}/endpoint","keep",,"Get-MgApplicationOwnerAsEndpoint","Get-MgApplicationOwnerAsEndpoint" +"GET","/applications/{param}/owners/{param}/servicePrincipal","keep",,"Get-MgApplicationOwnerAsServicePrincipal","Get-MgApplicationOwnerAsServicePrincipal" +"GET","/applications/{param}/owners/{param}/user","keep",,"Get-MgApplicationOwnerAsUser","Get-MgApplicationOwnerAsUser" "GET","/applications/{param}/owners/$count","keep",,"Get-MgApplicationOwnerCount","Get-MgApplicationOwnerCount" "GET","/applications/{param}/owners/$ref","keep",,"Get-MgApplicationOwnerByRef","Get-MgApplicationOwnerByRef" +"GET","/applications/{param}/owners/appRoleAssignment","keep",,"Get-MgApplicationOwnerAsAppRoleAssignment","Get-MgApplicationOwnerAsAppRoleAssignment" +"GET","/applications/{param}/owners/appRoleAssignment/$count","keep",,"Get-MgApplicationOwnerCountAsAppRoleAssignment","Get-MgApplicationOwnerCountAsAppRoleAssignment" +"GET","/applications/{param}/owners/endpoint","keep",,"Get-MgApplicationOwnerAsEndpoint","Get-MgApplicationOwnerAsEndpoint" +"GET","/applications/{param}/owners/endpoint/$count","keep",,"Get-MgApplicationOwnerCountAsEndpoint","Get-MgApplicationOwnerCountAsEndpoint" +"GET","/applications/{param}/owners/servicePrincipal","keep",,"Get-MgApplicationOwnerAsServicePrincipal","Get-MgApplicationOwnerAsServicePrincipal" +"GET","/applications/{param}/owners/servicePrincipal/$count","keep",,"Get-MgApplicationOwnerCountAsServicePrincipal","Get-MgApplicationOwnerCountAsServicePrincipal" +"GET","/applications/{param}/owners/user","keep",,"Get-MgApplicationOwnerAsUser","Get-MgApplicationOwnerAsUser" +"GET","/applications/{param}/owners/user/$count","keep",,"Get-MgApplicationOwnerCountAsUser","Get-MgApplicationOwnerCountAsUser" "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" @@ -1708,15 +1810,22 @@ "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/{param}/content","keep",,"Get-MgCommunicationAdhocCallRecordingContent","Get-MgCommunicationAdhocCallRecordingContent" "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/{param}/content","keep",,"Get-MgCommunicationAdhocCallTranscriptContent","Get-MgCommunicationAdhocCallTranscriptContent" +"GET","/communications/adhocCalls/{param}/transcripts/{param}/metadataContent","keep",,"Get-MgCommunicationAdhocCallTranscriptMetadataContent","Get-MgCommunicationAdhocCallTranscriptMetadataContent" "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}/organizer_v2","keep",,"Get-MgCommunicationCallRecordOrganizerV2","Get-MgCommunicationCallRecordOrganizerV2" +"GET","/communications/callRecords/{param}/participants_v2","keep",,"Get-MgCommunicationCallRecordParticipantV2","Get-MgCommunicationCallRecordParticipantV2" +"GET","/communications/callRecords/{param}/participants_v2/{param}","keep",,"Get-MgCommunicationCallRecordParticipantV2","Get-MgCommunicationCallRecordParticipantV2" +"GET","/communications/callRecords/{param}/participants_v2/$count","rename","CommunicationCallRecordParticipant","Get-MgCommunicationCallRecordParticipantV2Count","Get-MgCommunicationCallRecordParticipant" "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" @@ -1724,6 +1833,8 @@ "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/callRecords/getDirectRoutingCalls(fromDateTime={fromDateTime},toDateTime={toDateTime})","suppress",,"Get-MgCommunicationCallRecordGetDirectRoutingCallsWithFromDateTimeWithToDateTime","no oracle row for GET /communications/callRecords/getDirectRoutingCalls(fromDateTime={fromDateTime},toDateTime={toDateTime}) and 'Get-MgCommunicationCallRecordGetDirectRoutingCallsWithFromDateTimeWithToDateTime' unshipped" +"GET","/communications/callRecords/getPstnCalls(fromDateTime={fromDateTime},toDateTime={toDateTime})","suppress",,"Get-MgCommunicationCallRecordGetPstnCallsWithFromDateTimeWithToDateTime","no oracle row for GET /communications/callRecords/getPstnCalls(fromDateTime={fromDateTime},toDateTime={toDateTime}) and 'Get-MgCommunicationCallRecordGetPstnCallsWithFromDateTimeWithToDateTime' unshipped" "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" @@ -1758,6 +1869,7 @@ "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}/onlineMeeting/attendeeReport","keep",,"Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport","Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport" "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" @@ -1780,13 +1892,17 @@ "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}/attendeeReport","keep",,"Get-MgCommunicationOnlineMeetingAttendeeReport","Get-MgCommunicationOnlineMeetingAttendeeReport" "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/{param}/content","keep",,"Get-MgCommunicationOnlineMeetingRecordingContent","Get-MgCommunicationOnlineMeetingRecordingContent" "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/{param}/content","keep",,"Get-MgCommunicationOnlineMeetingTranscriptContent","Get-MgCommunicationOnlineMeetingTranscriptContent" +"GET","/communications/onlineMeetings/{param}/transcripts/{param}/metadataContent","keep",,"Get-MgCommunicationOnlineMeetingTranscriptMetadataContent","Get-MgCommunicationOnlineMeetingTranscriptMetadataContent" "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" @@ -1798,17 +1914,35 @@ "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/{param}/orgContact","keep",,"Get-MgContactDirectReportAsOrgContact","Get-MgContactDirectReportAsOrgContact" +"GET","/contacts/{param}/directReports/{param}/user","keep",,"Get-MgContactDirectReportAsUser","Get-MgContactDirectReportAsUser" "GET","/contacts/{param}/directReports/$count","keep",,"Get-MgContactDirectReportCount","Get-MgContactDirectReportCount" +"GET","/contacts/{param}/directReports/orgContact","keep",,"Get-MgContactDirectReportAsOrgContact","Get-MgContactDirectReportAsOrgContact" +"GET","/contacts/{param}/directReports/orgContact/$count","keep",,"Get-MgContactDirectReportCountAsOrgContact","Get-MgContactDirectReportCountAsOrgContact" +"GET","/contacts/{param}/directReports/user","keep",,"Get-MgContactDirectReportAsUser","Get-MgContactDirectReportAsUser" +"GET","/contacts/{param}/directReports/user/$count","keep",,"Get-MgContactDirectReportCountAsUser","Get-MgContactDirectReportCountAsUser" "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/{param}/administrativeUnit","keep",,"Get-MgContactMemberOfAsAdministrativeUnit","Get-MgContactMemberOfAsAdministrativeUnit" +"GET","/contacts/{param}/memberOf/{param}/group","keep",,"Get-MgContactMemberOfAsGroup","Get-MgContactMemberOfAsGroup" "GET","/contacts/{param}/memberOf/$count","keep",,"Get-MgContactMemberOfCount","Get-MgContactMemberOfCount" +"GET","/contacts/{param}/memberOf/administrativeUnit","keep",,"Get-MgContactMemberOfAsAdministrativeUnit","Get-MgContactMemberOfAsAdministrativeUnit" +"GET","/contacts/{param}/memberOf/administrativeUnit/$count","keep",,"Get-MgContactMemberOfCountAsAdministrativeUnit","Get-MgContactMemberOfCountAsAdministrativeUnit" +"GET","/contacts/{param}/memberOf/group","keep",,"Get-MgContactMemberOfAsGroup","Get-MgContactMemberOfAsGroup" +"GET","/contacts/{param}/memberOf/group/$count","keep",,"Get-MgContactMemberOfCountAsGroup","Get-MgContactMemberOfCountAsGroup" "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/{param}/administrativeUnit","keep",,"Get-MgContactTransitiveMemberOfAsAdministrativeUnit","Get-MgContactTransitiveMemberOfAsAdministrativeUnit" +"GET","/contacts/{param}/transitiveMemberOf/{param}/group","keep",,"Get-MgContactTransitiveMemberOfAsGroup","Get-MgContactTransitiveMemberOfAsGroup" "GET","/contacts/{param}/transitiveMemberOf/$count","keep",,"Get-MgContactTransitiveMemberOfCount","Get-MgContactTransitiveMemberOfCount" +"GET","/contacts/{param}/transitiveMemberOf/administrativeUnit","keep",,"Get-MgContactTransitiveMemberOfAsAdministrativeUnit","Get-MgContactTransitiveMemberOfAsAdministrativeUnit" +"GET","/contacts/{param}/transitiveMemberOf/administrativeUnit/$count","keep",,"Get-MgContactTransitiveMemberOfCountAsAdministrativeUnit","Get-MgContactTransitiveMemberOfCountAsAdministrativeUnit" +"GET","/contacts/{param}/transitiveMemberOf/group","keep",,"Get-MgContactTransitiveMemberOfAsGroup","Get-MgContactTransitiveMemberOfAsGroup" +"GET","/contacts/{param}/transitiveMemberOf/group/$count","keep",,"Get-MgContactTransitiveMemberOfCountAsGroup","Get-MgContactTransitiveMemberOfCountAsGroup" "GET","/contacts/$count","keep",,"Get-MgContactCount","Get-MgContactCount" "GET","/contacts/delta","keep",,"Get-MgContactDelta","Get-MgContactDelta" "GET","/contracts","keep",,"Get-MgContract","Get-MgContract" @@ -1915,10 +2049,256 @@ "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}/androidLobApp","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobApp","Get-MgDeviceAppManagementMobileAppAsAndroidLobApp" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/assignments","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/categories","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/categories/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/categories/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/containedApps","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/containedApps/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/containedApps/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedAppCount" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCount" +"GET","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionCount","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionCount" +"GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp","Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp" +"GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp/assignments","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp/categories","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp/categories/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/androidStoreApp/categories/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategoryCount" "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/{param}/iosLobApp","defer-crosspath-merge",,"Get-MgDeviceAppManagementMobileAppAsIosLobApp","renaming to 'DeviceAppManagementMobileAppAsiOSLobApp' collides with a sibling family that also ships" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/assignments","rename","DeviceAppManagementMobileAppAsiOSLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/assignments/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/assignments/$count","rename","DeviceAppManagementMobileAppAsiOSLobAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsiOSLobAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/categories","rename","DeviceAppManagementMobileAppAsiOSLobAppCategory","Get-MgDeviceAppManagementMobileAppAsIosLobAppCategory","Get-MgDeviceAppManagementMobileAppAsiOSLobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/categories/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppCategory","Get-MgDeviceAppManagementMobileAppAsIosLobAppCategory","Get-MgDeviceAppManagementMobileAppAsiOSLobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/categories/$count","rename","DeviceAppManagementMobileAppAsiOSLobAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsIosLobAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsiOSLobAppCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/containedApps","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/containedApps/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/containedApps/$count","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedAppCount" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files/$count","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFileCount" +"GET","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/$count","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionCount","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionCount","Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionCount" +"GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp","defer-crosspath-merge",,"Get-MgDeviceAppManagementMobileAppAsIosStoreApp","renaming to 'DeviceAppManagementMobileAppAsIoStoreApp' collides with a sibling family that also ships" +"GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp/assignments","rename","DeviceAppManagementMobileAppAsIoStoreAppAssignment","Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","Get-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp/assignments/{param}","rename","DeviceAppManagementMobileAppAsIoStoreAppAssignment","Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","Get-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp/assignments/$count","rename","DeviceAppManagementMobileAppAsIoStoreAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsIoStoreAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp/categories","rename","DeviceAppManagementMobileAppAsIoStoreAppCategory","Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategory","Get-MgDeviceAppManagementMobileAppAsIoStoreAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp/categories/{param}","rename","DeviceAppManagementMobileAppAsIoStoreAppCategory","Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategory","Get-MgDeviceAppManagementMobileAppAsIoStoreAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/iosStoreApp/categories/$count","rename","DeviceAppManagementMobileAppAsIoStoreAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsIoStoreAppCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/iosVppApp","defer-crosspath-merge",,"Get-MgDeviceAppManagementMobileAppAsIosVppApp","renaming to 'DeviceAppManagementMobileAppAsIoVppApp' collides with a sibling family that also ships" +"GET","/deviceAppManagement/mobileApps/{param}/iosVppApp/assignments","rename","DeviceAppManagementMobileAppAsIoVppAppAssignment","Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","Get-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/iosVppApp/assignments/{param}","rename","DeviceAppManagementMobileAppAsIoVppAppAssignment","Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","Get-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/iosVppApp/assignments/$count","rename","DeviceAppManagementMobileAppAsIoVppAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsIoVppAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/iosVppApp/categories","rename","DeviceAppManagementMobileAppAsIoVppAppCategory","Get-MgDeviceAppManagementMobileAppAsIosVppAppCategory","Get-MgDeviceAppManagementMobileAppAsIoVppAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/iosVppApp/categories/{param}","rename","DeviceAppManagementMobileAppAsIoVppAppCategory","Get-MgDeviceAppManagementMobileAppAsIosVppAppCategory","Get-MgDeviceAppManagementMobileAppAsIoVppAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/iosVppApp/categories/$count","rename","DeviceAppManagementMobileAppAsIoVppAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsIosVppAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsIoVppAppCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp","Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/assignments","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/categories","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/categories/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/categories/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/containedApps","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/containedApps/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/containedApps/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedAppCount" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCount" +"GET","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionCount","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionCount" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobApp","Get-MgDeviceAppManagementMobileAppAsMacOSLobApp" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/assignments","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/categories","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/categories/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/categories/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/containedApps","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/containedApps/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/containedApps/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedAppCount" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCount" +"GET","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionCount","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/assignments","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/categories","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/categories/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/categories/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/containedApps","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/containedApps/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/containedApps/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionCount","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp","defer-crosspath-merge",,"Get-MgDeviceAppManagementMobileAppAsManagedIOSLobApp","renaming to 'DeviceAppManagementMobileAppAsManagediOSLobApp' collides with a sibling family that also ships" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/assignments","rename","DeviceAppManagementMobileAppAsManagediOSLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/assignments/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/assignments/$count","rename","DeviceAppManagementMobileAppAsManagediOSLobAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/categories","rename","DeviceAppManagementMobileAppAsManagediOSLobAppCategory","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/categories/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppCategory","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/categories/$count","rename","DeviceAppManagementMobileAppAsManagediOSLobAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/containedApps","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/containedApps/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/containedApps/$count","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedAppCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files/$count","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFileCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/$count","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionCount","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionCount","Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/assignments","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/categories","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/categories/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/categories/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/containedApps","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/containedApps/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/containedApps/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedAppCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCount" +"GET","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionCount","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionCount" +"GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp","keep",,"Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp" +"GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/assignments","keep",,"Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/categories","keep",,"Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/categories/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/categories/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobApp","Get-MgDeviceAppManagementMobileAppAsWin32LobApp" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/assignments","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/categories","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/categories/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/categories/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/containedApps","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/containedApps/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/containedApps/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedAppCount" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCount" +"GET","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionCount","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppX","Get-MgDeviceAppManagementMobileAppAsWindowsAppX" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/assignments","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignmentCount","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/categories","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/categories/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/categories/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategoryCount","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/containedApps","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/containedApps/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/containedApps/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedAppCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionCount","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI","defer-crosspath-merge",,"Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSI","renaming to 'DeviceAppManagementMobileAppAsWindowsMobileMsi' collides with a sibling family that also ships" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/assignments","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiAssignment","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/assignments/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiAssignment","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/assignments/$count","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiAssignmentCount","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignmentCount","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/categories","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiCategory","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategory","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiCategory" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/categories/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiCategory","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategory","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiCategory" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/categories/$count","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiCategoryCount","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategoryCount","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/containedApps","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/containedApps/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/containedApps/$count","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedAppCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files/$count","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFileCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/$count","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionCount","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionCount","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/assignments","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignmentCount","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/categories","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/categories/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/categories/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategoryCount","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategoryCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/committedContainedApps","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/committedContainedApps/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/committedContainedApps/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedAppCount","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedAppCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/containedApps","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/containedApps/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/containedApps/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedAppCount","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedAppCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCount","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionCount","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsWebApp","Get-MgDeviceAppManagementMobileAppAsWindowsWebApp" +"GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp/assignments","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp/categories","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp/categories/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory" +"GET","/deviceAppManagement/mobileApps/{param}/windowsWebApp/categories/$count","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategoryCount","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategoryCount" "GET","/deviceAppManagement/mobileApps/$count","keep",,"Get-MgDeviceAppManagementMobileAppCount","Get-MgDeviceAppManagementMobileAppCount" +"GET","/deviceAppManagement/mobileApps/androidLobApp","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidLobApp","Get-MgDeviceAppManagementMobileAppAsAndroidLobApp" +"GET","/deviceAppManagement/mobileApps/androidLobApp/$count","keep",,"Get-MgDeviceAppManagementMobileAppCountAsAndroidLobApp","Get-MgDeviceAppManagementMobileAppCountAsAndroidLobApp" +"GET","/deviceAppManagement/mobileApps/androidStoreApp","keep",,"Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp","Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp" +"GET","/deviceAppManagement/mobileApps/androidStoreApp/$count","keep",,"Get-MgDeviceAppManagementMobileAppCountAsAndroidStoreApp","Get-MgDeviceAppManagementMobileAppCountAsAndroidStoreApp" +"GET","/deviceAppManagement/mobileApps/iosLobApp","defer-crosspath-merge",,"Get-MgDeviceAppManagementMobileAppAsIosLobApp","renaming to 'DeviceAppManagementMobileAppAsiOSLobApp' collides with a sibling family that also ships" +"GET","/deviceAppManagement/mobileApps/iosLobApp/$count","rename","DeviceAppManagementMobileAppCountAsiOSLobApp","Get-MgDeviceAppManagementMobileAppCountAsIosLobApp","Get-MgDeviceAppManagementMobileAppCountAsiOSLobApp" +"GET","/deviceAppManagement/mobileApps/iosStoreApp","defer-crosspath-merge",,"Get-MgDeviceAppManagementMobileAppAsIosStoreApp","renaming to 'DeviceAppManagementMobileAppAsIoStoreApp' collides with a sibling family that also ships" +"GET","/deviceAppManagement/mobileApps/iosStoreApp/$count","rename","DeviceAppManagementMobileAppCountAsIoStoreApp","Get-MgDeviceAppManagementMobileAppCountAsIosStoreApp","Get-MgDeviceAppManagementMobileAppCountAsIoStoreApp" +"GET","/deviceAppManagement/mobileApps/iosVppApp","defer-crosspath-merge",,"Get-MgDeviceAppManagementMobileAppAsIosVppApp","renaming to 'DeviceAppManagementMobileAppAsIoVppApp' collides with a sibling family that also ships" +"GET","/deviceAppManagement/mobileApps/iosVppApp/$count","rename","DeviceAppManagementMobileAppCountAsIoVppApp","Get-MgDeviceAppManagementMobileAppCountAsIosVppApp","Get-MgDeviceAppManagementMobileAppCountAsIoVppApp" +"GET","/deviceAppManagement/mobileApps/macOSDmgApp","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp","Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp" +"GET","/deviceAppManagement/mobileApps/macOSDmgApp/$count","keep",,"Get-MgDeviceAppManagementMobileAppCountAsMacOSDmgApp","Get-MgDeviceAppManagementMobileAppCountAsMacOSDmgApp" +"GET","/deviceAppManagement/mobileApps/macOSLobApp","keep",,"Get-MgDeviceAppManagementMobileAppAsMacOSLobApp","Get-MgDeviceAppManagementMobileAppAsMacOSLobApp" +"GET","/deviceAppManagement/mobileApps/macOSLobApp/$count","keep",,"Get-MgDeviceAppManagementMobileAppCountAsMacOSLobApp","Get-MgDeviceAppManagementMobileAppCountAsMacOSLobApp" +"GET","/deviceAppManagement/mobileApps/managedAndroidLobApp","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp" +"GET","/deviceAppManagement/mobileApps/managedAndroidLobApp/$count","keep",,"Get-MgDeviceAppManagementMobileAppCountAsManagedAndroidLobApp","Get-MgDeviceAppManagementMobileAppCountAsManagedAndroidLobApp" +"GET","/deviceAppManagement/mobileApps/managedIOSLobApp","defer-crosspath-merge",,"Get-MgDeviceAppManagementMobileAppAsManagedIOSLobApp","renaming to 'DeviceAppManagementMobileAppAsManagediOSLobApp' collides with a sibling family that also ships" +"GET","/deviceAppManagement/mobileApps/managedIOSLobApp/$count","rename","DeviceAppManagementMobileAppCountAsManagediOSLobApp","Get-MgDeviceAppManagementMobileAppCountAsManagedIOSLobApp","Get-MgDeviceAppManagementMobileAppCountAsManagediOSLobApp" +"GET","/deviceAppManagement/mobileApps/managedMobileLobApp","keep",,"Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp" +"GET","/deviceAppManagement/mobileApps/managedMobileLobApp/$count","keep",,"Get-MgDeviceAppManagementMobileAppCountAsManagedMobileLobApp","Get-MgDeviceAppManagementMobileAppCountAsManagedMobileLobApp" +"GET","/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp","keep",,"Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp" +"GET","/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp/$count","keep",,"Get-MgDeviceAppManagementMobileAppCountAsMicrosoftStoreForBusinessApp","Get-MgDeviceAppManagementMobileAppCountAsMicrosoftStoreForBusinessApp" +"GET","/deviceAppManagement/mobileApps/win32LobApp","keep",,"Get-MgDeviceAppManagementMobileAppAsWin32LobApp","Get-MgDeviceAppManagementMobileAppAsWin32LobApp" +"GET","/deviceAppManagement/mobileApps/win32LobApp/$count","keep",,"Get-MgDeviceAppManagementMobileAppCountAsWin32LobApp","Get-MgDeviceAppManagementMobileAppCountAsWin32LobApp" +"GET","/deviceAppManagement/mobileApps/windowsAppX","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsAppX","Get-MgDeviceAppManagementMobileAppAsWindowsAppX" +"GET","/deviceAppManagement/mobileApps/windowsAppX/$count","keep",,"Get-MgDeviceAppManagementMobileAppCountAsWindowsAppX","Get-MgDeviceAppManagementMobileAppCountAsWindowsAppX" +"GET","/deviceAppManagement/mobileApps/windowsMobileMSI","defer-crosspath-merge",,"Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSI","renaming to 'DeviceAppManagementMobileAppAsWindowsMobileMsi' collides with a sibling family that also ships" +"GET","/deviceAppManagement/mobileApps/windowsMobileMSI/$count","rename","DeviceAppManagementMobileAppCountAsWindowsMobileMsi","Get-MgDeviceAppManagementMobileAppCountAsWindowsMobileMSI","Get-MgDeviceAppManagementMobileAppCountAsWindowsMobileMsi" +"GET","/deviceAppManagement/mobileApps/windowsUniversalAppX","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX" +"GET","/deviceAppManagement/mobileApps/windowsUniversalAppX/$count","keep",,"Get-MgDeviceAppManagementMobileAppCountAsWindowsUniversalAppX","Get-MgDeviceAppManagementMobileAppCountAsWindowsUniversalAppX" +"GET","/deviceAppManagement/mobileApps/windowsWebApp","keep",,"Get-MgDeviceAppManagementMobileAppAsWindowsWebApp","Get-MgDeviceAppManagementMobileAppAsWindowsWebApp" +"GET","/deviceAppManagement/mobileApps/windowsWebApp/$count","keep",,"Get-MgDeviceAppManagementMobileAppCountAsWindowsWebApp","Get-MgDeviceAppManagementMobileAppCountAsWindowsWebApp" "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" @@ -1950,6 +2330,7 @@ "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/getAuditActivityTypes(category='{category}')","rename","DeviceManagementAuditEventAuditActivityType","Get-MgDeviceManagementAuditEventGetAuditActivityTypesWithCategory","Get-MgDeviceManagementAuditEventAuditActivityType" "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" @@ -2007,6 +2388,7 @@ "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}/getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')","rename","DeviceManagementDeviceConfigurationOmaSettingPlainTextValue","Get-MgDeviceManagementDeviceConfigurationGetOmaSettingPlainTextValueWithSecretReferenceValueId","Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue" "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" @@ -2024,6 +2406,7 @@ "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/getEffectivePermissions(scope='{scope}')","rename","DeviceManagementEffectivePermission","Get-MgDeviceManagementGetEffectivePermissionsWithScope","Get-MgDeviceManagementEffectivePermission" "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" @@ -2101,6 +2484,7 @@ "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/verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}')","rename","DeviceManagementWindowsEnrollmentAutoDiscovery","Get-MgDeviceManagementVerifyWindowsEnrollmentAutoDiscoveryWithDomainName","Confirm-MgDeviceManagementWindowsEnrollmentAutoDiscovery" "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" @@ -2164,16 +2548,52 @@ "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/{param}/administrativeUnit","keep",,"Get-MgDeviceMemberOfAsAdministrativeUnit","Get-MgDeviceMemberOfAsAdministrativeUnit" +"GET","/devices/{param}/memberOf/{param}/group","keep",,"Get-MgDeviceMemberOfAsGroup","Get-MgDeviceMemberOfAsGroup" "GET","/devices/{param}/memberOf/$count","keep",,"Get-MgDeviceMemberOfCount","Get-MgDeviceMemberOfCount" +"GET","/devices/{param}/memberOf/administrativeUnit","keep",,"Get-MgDeviceMemberOfAsAdministrativeUnit","Get-MgDeviceMemberOfAsAdministrativeUnit" +"GET","/devices/{param}/memberOf/administrativeUnit/$count","keep",,"Get-MgDeviceMemberOfCountAsAdministrativeUnit","Get-MgDeviceMemberOfCountAsAdministrativeUnit" +"GET","/devices/{param}/memberOf/group","keep",,"Get-MgDeviceMemberOfAsGroup","Get-MgDeviceMemberOfAsGroup" +"GET","/devices/{param}/memberOf/group/$count","keep",,"Get-MgDeviceMemberOfCountAsGroup","Get-MgDeviceMemberOfCountAsGroup" "GET","/devices/{param}/registeredOwners","keep",,"Get-MgDeviceRegisteredOwner","Get-MgDeviceRegisteredOwner" +"GET","/devices/{param}/registeredOwners/{param}/appRoleAssignment","keep",,"Get-MgDeviceRegisteredOwnerAsAppRoleAssignment","Get-MgDeviceRegisteredOwnerAsAppRoleAssignment" +"GET","/devices/{param}/registeredOwners/{param}/endpoint","keep",,"Get-MgDeviceRegisteredOwnerAsEndpoint","Get-MgDeviceRegisteredOwnerAsEndpoint" +"GET","/devices/{param}/registeredOwners/{param}/servicePrincipal","keep",,"Get-MgDeviceRegisteredOwnerAsServicePrincipal","Get-MgDeviceRegisteredOwnerAsServicePrincipal" +"GET","/devices/{param}/registeredOwners/{param}/user","keep",,"Get-MgDeviceRegisteredOwnerAsUser","Get-MgDeviceRegisteredOwnerAsUser" "GET","/devices/{param}/registeredOwners/$count","keep",,"Get-MgDeviceRegisteredOwnerCount","Get-MgDeviceRegisteredOwnerCount" "GET","/devices/{param}/registeredOwners/$ref","keep",,"Get-MgDeviceRegisteredOwnerByRef","Get-MgDeviceRegisteredOwnerByRef" +"GET","/devices/{param}/registeredOwners/appRoleAssignment","keep",,"Get-MgDeviceRegisteredOwnerAsAppRoleAssignment","Get-MgDeviceRegisteredOwnerAsAppRoleAssignment" +"GET","/devices/{param}/registeredOwners/appRoleAssignment/$count","keep",,"Get-MgDeviceRegisteredOwnerCountAsAppRoleAssignment","Get-MgDeviceRegisteredOwnerCountAsAppRoleAssignment" +"GET","/devices/{param}/registeredOwners/endpoint","keep",,"Get-MgDeviceRegisteredOwnerAsEndpoint","Get-MgDeviceRegisteredOwnerAsEndpoint" +"GET","/devices/{param}/registeredOwners/endpoint/$count","keep",,"Get-MgDeviceRegisteredOwnerCountAsEndpoint","Get-MgDeviceRegisteredOwnerCountAsEndpoint" +"GET","/devices/{param}/registeredOwners/servicePrincipal","keep",,"Get-MgDeviceRegisteredOwnerAsServicePrincipal","Get-MgDeviceRegisteredOwnerAsServicePrincipal" +"GET","/devices/{param}/registeredOwners/servicePrincipal/$count","keep",,"Get-MgDeviceRegisteredOwnerCountAsServicePrincipal","Get-MgDeviceRegisteredOwnerCountAsServicePrincipal" +"GET","/devices/{param}/registeredOwners/user","keep",,"Get-MgDeviceRegisteredOwnerAsUser","Get-MgDeviceRegisteredOwnerAsUser" +"GET","/devices/{param}/registeredOwners/user/$count","keep",,"Get-MgDeviceRegisteredOwnerCountAsUser","Get-MgDeviceRegisteredOwnerCountAsUser" "GET","/devices/{param}/registeredUsers","keep",,"Get-MgDeviceRegisteredUser","Get-MgDeviceRegisteredUser" +"GET","/devices/{param}/registeredUsers/{param}/appRoleAssignment","keep",,"Get-MgDeviceRegisteredUserAsAppRoleAssignment","Get-MgDeviceRegisteredUserAsAppRoleAssignment" +"GET","/devices/{param}/registeredUsers/{param}/endpoint","keep",,"Get-MgDeviceRegisteredUserAsEndpoint","Get-MgDeviceRegisteredUserAsEndpoint" +"GET","/devices/{param}/registeredUsers/{param}/servicePrincipal","keep",,"Get-MgDeviceRegisteredUserAsServicePrincipal","Get-MgDeviceRegisteredUserAsServicePrincipal" +"GET","/devices/{param}/registeredUsers/{param}/user","keep",,"Get-MgDeviceRegisteredUserAsUser","Get-MgDeviceRegisteredUserAsUser" "GET","/devices/{param}/registeredUsers/$count","keep",,"Get-MgDeviceRegisteredUserCount","Get-MgDeviceRegisteredUserCount" "GET","/devices/{param}/registeredUsers/$ref","keep",,"Get-MgDeviceRegisteredUserByRef","Get-MgDeviceRegisteredUserByRef" +"GET","/devices/{param}/registeredUsers/appRoleAssignment","keep",,"Get-MgDeviceRegisteredUserAsAppRoleAssignment","Get-MgDeviceRegisteredUserAsAppRoleAssignment" +"GET","/devices/{param}/registeredUsers/appRoleAssignment/$count","keep",,"Get-MgDeviceRegisteredUserCountAsAppRoleAssignment","Get-MgDeviceRegisteredUserCountAsAppRoleAssignment" +"GET","/devices/{param}/registeredUsers/endpoint","keep",,"Get-MgDeviceRegisteredUserAsEndpoint","Get-MgDeviceRegisteredUserAsEndpoint" +"GET","/devices/{param}/registeredUsers/endpoint/$count","keep",,"Get-MgDeviceRegisteredUserCountAsEndpoint","Get-MgDeviceRegisteredUserCountAsEndpoint" +"GET","/devices/{param}/registeredUsers/servicePrincipal","keep",,"Get-MgDeviceRegisteredUserAsServicePrincipal","Get-MgDeviceRegisteredUserAsServicePrincipal" +"GET","/devices/{param}/registeredUsers/servicePrincipal/$count","keep",,"Get-MgDeviceRegisteredUserCountAsServicePrincipal","Get-MgDeviceRegisteredUserCountAsServicePrincipal" +"GET","/devices/{param}/registeredUsers/user","keep",,"Get-MgDeviceRegisteredUserAsUser","Get-MgDeviceRegisteredUserAsUser" +"GET","/devices/{param}/registeredUsers/user/$count","keep",,"Get-MgDeviceRegisteredUserCountAsUser","Get-MgDeviceRegisteredUserCountAsUser" "GET","/devices/{param}/transitiveMemberOf","keep",,"Get-MgDeviceTransitiveMemberOf","Get-MgDeviceTransitiveMemberOf" "GET","/devices/{param}/transitiveMemberOf/{param}","keep",,"Get-MgDeviceTransitiveMemberOf","Get-MgDeviceTransitiveMemberOf" +"GET","/devices/{param}/transitiveMemberOf/{param}/administrativeUnit","keep",,"Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit","Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit" +"GET","/devices/{param}/transitiveMemberOf/{param}/group","keep",,"Get-MgDeviceTransitiveMemberOfAsGroup","Get-MgDeviceTransitiveMemberOfAsGroup" "GET","/devices/{param}/transitiveMemberOf/$count","keep",,"Get-MgDeviceTransitiveMemberOfCount","Get-MgDeviceTransitiveMemberOfCount" +"GET","/devices/{param}/transitiveMemberOf/administrativeUnit","keep",,"Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit","Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit" +"GET","/devices/{param}/transitiveMemberOf/administrativeUnit/$count","keep",,"Get-MgDeviceTransitiveMemberOfCountAsAdministrativeUnit","Get-MgDeviceTransitiveMemberOfCountAsAdministrativeUnit" +"GET","/devices/{param}/transitiveMemberOf/group","keep",,"Get-MgDeviceTransitiveMemberOfAsGroup","Get-MgDeviceTransitiveMemberOfAsGroup" +"GET","/devices/{param}/transitiveMemberOf/group/$count","keep",,"Get-MgDeviceTransitiveMemberOfCountAsGroup","Get-MgDeviceTransitiveMemberOfCountAsGroup" "GET","/devices/$count","keep",,"Get-MgDeviceCount","Get-MgDeviceCount" "GET","/devices/delta","keep",,"Get-MgDeviceDelta","Get-MgDeviceDelta" "GET","/directory","keep",,"Get-MgDirectory","Get-MgDirectory" @@ -2183,8 +2603,26 @@ "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/{param}/application","keep",,"Get-MgDirectoryAdministrativeUnitMemberAsApplication","Get-MgDirectoryAdministrativeUnitMemberAsApplication" +"GET","/directory/administrativeUnits/{param}/members/{param}/device","keep",,"Get-MgDirectoryAdministrativeUnitMemberAsDevice","Get-MgDirectoryAdministrativeUnitMemberAsDevice" +"GET","/directory/administrativeUnits/{param}/members/{param}/group","keep",,"Get-MgDirectoryAdministrativeUnitMemberAsGroup","Get-MgDirectoryAdministrativeUnitMemberAsGroup" +"GET","/directory/administrativeUnits/{param}/members/{param}/orgContact","keep",,"Get-MgDirectoryAdministrativeUnitMemberAsOrgContact","Get-MgDirectoryAdministrativeUnitMemberAsOrgContact" +"GET","/directory/administrativeUnits/{param}/members/{param}/servicePrincipal","keep",,"Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal","Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal" +"GET","/directory/administrativeUnits/{param}/members/{param}/user","keep",,"Get-MgDirectoryAdministrativeUnitMemberAsUser","Get-MgDirectoryAdministrativeUnitMemberAsUser" "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}/members/application","keep",,"Get-MgDirectoryAdministrativeUnitMemberAsApplication","Get-MgDirectoryAdministrativeUnitMemberAsApplication" +"GET","/directory/administrativeUnits/{param}/members/application/$count","keep",,"Get-MgDirectoryAdministrativeUnitMemberCountAsApplication","Get-MgDirectoryAdministrativeUnitMemberCountAsApplication" +"GET","/directory/administrativeUnits/{param}/members/device","keep",,"Get-MgDirectoryAdministrativeUnitMemberAsDevice","Get-MgDirectoryAdministrativeUnitMemberAsDevice" +"GET","/directory/administrativeUnits/{param}/members/device/$count","keep",,"Get-MgDirectoryAdministrativeUnitMemberCountAsDevice","Get-MgDirectoryAdministrativeUnitMemberCountAsDevice" +"GET","/directory/administrativeUnits/{param}/members/group","keep",,"Get-MgDirectoryAdministrativeUnitMemberAsGroup","Get-MgDirectoryAdministrativeUnitMemberAsGroup" +"GET","/directory/administrativeUnits/{param}/members/group/$count","keep",,"Get-MgDirectoryAdministrativeUnitMemberCountAsGroup","Get-MgDirectoryAdministrativeUnitMemberCountAsGroup" +"GET","/directory/administrativeUnits/{param}/members/orgContact","keep",,"Get-MgDirectoryAdministrativeUnitMemberAsOrgContact","Get-MgDirectoryAdministrativeUnitMemberAsOrgContact" +"GET","/directory/administrativeUnits/{param}/members/orgContact/$count","keep",,"Get-MgDirectoryAdministrativeUnitMemberCountAsOrgContact","Get-MgDirectoryAdministrativeUnitMemberCountAsOrgContact" +"GET","/directory/administrativeUnits/{param}/members/servicePrincipal","keep",,"Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal","Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal" +"GET","/directory/administrativeUnits/{param}/members/servicePrincipal/$count","keep",,"Get-MgDirectoryAdministrativeUnitMemberCountAsServicePrincipal","Get-MgDirectoryAdministrativeUnitMemberCountAsServicePrincipal" +"GET","/directory/administrativeUnits/{param}/members/user","keep",,"Get-MgDirectoryAdministrativeUnitMemberAsUser","Get-MgDirectoryAdministrativeUnitMemberAsUser" +"GET","/directory/administrativeUnits/{param}/members/user/$count","keep",,"Get-MgDirectoryAdministrativeUnitMemberCountAsUser","Get-MgDirectoryAdministrativeUnitMemberCountAsUser" "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" @@ -2201,7 +2639,25 @@ "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/{param}/administrativeUnit","keep",,"Get-MgDirectoryDeletedItemAsAdministrativeUnit","Get-MgDirectoryDeletedItemAsAdministrativeUnit" +"GET","/directory/deletedItems/{param}/application","keep",,"Get-MgDirectoryDeletedItemAsApplication","Get-MgDirectoryDeletedItemAsApplication" +"GET","/directory/deletedItems/{param}/device","keep",,"Get-MgDirectoryDeletedItemAsDevice","Get-MgDirectoryDeletedItemAsDevice" +"GET","/directory/deletedItems/{param}/group","keep",,"Get-MgDirectoryDeletedItemAsGroup","Get-MgDirectoryDeletedItemAsGroup" +"GET","/directory/deletedItems/{param}/servicePrincipal","keep",,"Get-MgDirectoryDeletedItemAsServicePrincipal","Get-MgDirectoryDeletedItemAsServicePrincipal" +"GET","/directory/deletedItems/{param}/user","keep",,"Get-MgDirectoryDeletedItemAsUser","Get-MgDirectoryDeletedItemAsUser" "GET","/directory/deletedItems/$count","suppress",,"Get-MgDirectoryDeletedItemCount","no oracle row for GET /directory/deletedItems/$count and 'Get-MgDirectoryDeletedItemCount' unshipped" +"GET","/directory/deletedItems/administrativeUnit","keep",,"Get-MgDirectoryDeletedItemAsAdministrativeUnit","Get-MgDirectoryDeletedItemAsAdministrativeUnit" +"GET","/directory/deletedItems/administrativeUnit/$count","keep",,"Get-MgDirectoryDeletedItemCountAsAdministrativeUnit","Get-MgDirectoryDeletedItemCountAsAdministrativeUnit" +"GET","/directory/deletedItems/application","keep",,"Get-MgDirectoryDeletedItemAsApplication","Get-MgDirectoryDeletedItemAsApplication" +"GET","/directory/deletedItems/application/$count","keep",,"Get-MgDirectoryDeletedItemCountAsApplication","Get-MgDirectoryDeletedItemCountAsApplication" +"GET","/directory/deletedItems/device","keep",,"Get-MgDirectoryDeletedItemAsDevice","Get-MgDirectoryDeletedItemAsDevice" +"GET","/directory/deletedItems/device/$count","keep",,"Get-MgDirectoryDeletedItemCountAsDevice","Get-MgDirectoryDeletedItemCountAsDevice" +"GET","/directory/deletedItems/group","keep",,"Get-MgDirectoryDeletedItemAsGroup","Get-MgDirectoryDeletedItemAsGroup" +"GET","/directory/deletedItems/group/$count","keep",,"Get-MgDirectoryDeletedItemCountAsGroup","Get-MgDirectoryDeletedItemCountAsGroup" +"GET","/directory/deletedItems/servicePrincipal","keep",,"Get-MgDirectoryDeletedItemAsServicePrincipal","Get-MgDirectoryDeletedItemAsServicePrincipal" +"GET","/directory/deletedItems/servicePrincipal/$count","keep",,"Get-MgDirectoryDeletedItemCountAsServicePrincipal","Get-MgDirectoryDeletedItemCountAsServicePrincipal" +"GET","/directory/deletedItems/user","keep",,"Get-MgDirectoryDeletedItemAsUser","Get-MgDirectoryDeletedItemAsUser" +"GET","/directory/deletedItems/user/$count","keep",,"Get-MgDirectoryDeletedItemCountAsUser","Get-MgDirectoryDeletedItemCountAsUser" "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" @@ -2242,8 +2698,26 @@ "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/{param}/application","keep",,"Get-MgDirectoryRoleMemberAsApplication","Get-MgDirectoryRoleMemberAsApplication" +"GET","/directoryRoles/{param}/members/{param}/device","keep",,"Get-MgDirectoryRoleMemberAsDevice","Get-MgDirectoryRoleMemberAsDevice" +"GET","/directoryRoles/{param}/members/{param}/group","keep",,"Get-MgDirectoryRoleMemberAsGroup","Get-MgDirectoryRoleMemberAsGroup" +"GET","/directoryRoles/{param}/members/{param}/orgContact","keep",,"Get-MgDirectoryRoleMemberAsOrgContact","Get-MgDirectoryRoleMemberAsOrgContact" +"GET","/directoryRoles/{param}/members/{param}/servicePrincipal","keep",,"Get-MgDirectoryRoleMemberAsServicePrincipal","Get-MgDirectoryRoleMemberAsServicePrincipal" +"GET","/directoryRoles/{param}/members/{param}/user","keep",,"Get-MgDirectoryRoleMemberAsUser","Get-MgDirectoryRoleMemberAsUser" "GET","/directoryRoles/{param}/members/$count","keep",,"Get-MgDirectoryRoleMemberCount","Get-MgDirectoryRoleMemberCount" "GET","/directoryRoles/{param}/members/$ref","keep",,"Get-MgDirectoryRoleMemberByRef","Get-MgDirectoryRoleMemberByRef" +"GET","/directoryRoles/{param}/members/application","keep",,"Get-MgDirectoryRoleMemberAsApplication","Get-MgDirectoryRoleMemberAsApplication" +"GET","/directoryRoles/{param}/members/application/$count","keep",,"Get-MgDirectoryRoleMemberCountAsApplication","Get-MgDirectoryRoleMemberCountAsApplication" +"GET","/directoryRoles/{param}/members/device","keep",,"Get-MgDirectoryRoleMemberAsDevice","Get-MgDirectoryRoleMemberAsDevice" +"GET","/directoryRoles/{param}/members/device/$count","keep",,"Get-MgDirectoryRoleMemberCountAsDevice","Get-MgDirectoryRoleMemberCountAsDevice" +"GET","/directoryRoles/{param}/members/group","keep",,"Get-MgDirectoryRoleMemberAsGroup","Get-MgDirectoryRoleMemberAsGroup" +"GET","/directoryRoles/{param}/members/group/$count","keep",,"Get-MgDirectoryRoleMemberCountAsGroup","Get-MgDirectoryRoleMemberCountAsGroup" +"GET","/directoryRoles/{param}/members/orgContact","keep",,"Get-MgDirectoryRoleMemberAsOrgContact","Get-MgDirectoryRoleMemberAsOrgContact" +"GET","/directoryRoles/{param}/members/orgContact/$count","keep",,"Get-MgDirectoryRoleMemberCountAsOrgContact","Get-MgDirectoryRoleMemberCountAsOrgContact" +"GET","/directoryRoles/{param}/members/servicePrincipal","keep",,"Get-MgDirectoryRoleMemberAsServicePrincipal","Get-MgDirectoryRoleMemberAsServicePrincipal" +"GET","/directoryRoles/{param}/members/servicePrincipal/$count","keep",,"Get-MgDirectoryRoleMemberCountAsServicePrincipal","Get-MgDirectoryRoleMemberCountAsServicePrincipal" +"GET","/directoryRoles/{param}/members/user","keep",,"Get-MgDirectoryRoleMemberAsUser","Get-MgDirectoryRoleMemberAsUser" +"GET","/directoryRoles/{param}/members/user/$count","keep",,"Get-MgDirectoryRoleMemberCountAsUser","Get-MgDirectoryRoleMemberCountAsUser" "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" @@ -2273,6 +2747,7 @@ "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/{param}/content","keep",,"Get-MgDriveBundleContent","Get-MgDriveBundleContent" "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" @@ -2280,6 +2755,7 @@ "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/{param}/content","keep",,"Get-MgDriveFollowingContent","Get-MgDriveFollowingContent" "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" @@ -2290,18 +2766,22 @@ "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/{param}/driveItem/content","suppress",,"Get-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent","no oracle row for GET /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content and 'Get-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent' 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/{param}/content","keep",,"Get-MgDriveItemChildContent","Get-MgDriveItemChildContent" "GET","/drives/{param}/items/{param}/children/$count","keep",,"Get-MgDriveItemChildCount","Get-MgDriveItemChildCount" +"GET","/drives/{param}/items/{param}/content","keep",,"Get-MgDriveItemContent","Get-MgDriveItemContent" "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}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","suppress",,"Get-MgDriveItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","no oracle row for GET /drives/{param}/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgDriveItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" "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" @@ -2311,6 +2791,7 @@ "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}/search(q='{q}')","rename","DriveItem","Get-MgDriveItemSearchWithQ","Search-MgDriveItem" "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" @@ -2319,6 +2800,7 @@ "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/{param}/content","keep",,"Get-MgDriveItemVersionContent","Get-MgDriveItemVersionContent" "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" @@ -2331,144 +2813,270 @@ "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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookNameRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookNameRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookNameRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookNameRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/column(column={column})","suppress",,"Get-MgDriveItemWorkbookNameRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookNameRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookNameRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookNameRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookNameRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookNameRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookNameRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookNameRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookNameRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookNameRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookNameRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookNameRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/row(row={row})","suppress",,"Get-MgDriveItemWorkbookNameRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookNameRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookNameRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookNameRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookNameRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookNameRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookNameRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookNameRangeUsedRangeWithValuesOnly' 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/sessionInfoResource(key='{key}')","suppress",,"Get-MgDriveItemWorkbookSessionInfoResourceWithKey","no oracle row for GET /drives/{param}/items/{param}/workbook/sessionInfoResource(key='{key}') and 'Get-MgDriveItemWorkbookSessionInfoResourceWithKey' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tableRowOperationResult(key='{key}')","suppress",,"Get-MgDriveItemWorkbookTableRowOperationResultWithKey","no oracle row for GET /drives/{param}/items/{param}/workbook/tableRowOperationResult(key='{key}') and 'Get-MgDriveItemWorkbookTableRowOperationResultWithKey' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/column(column={column}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/row(row={row}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableColumnRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/column(column={column})","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookTableColumnRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableColumnRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableColumnRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/row(row={row})","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookTableColumnRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableColumnRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableColumnRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableColumnRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeUsedRangeWithValuesOnly' 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}/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}/columns/itemAt(index={index})","suppress",,"Get-MgDriveItemWorkbookTableColumnItemAtWithIndex","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/itemAt(index={index}) and 'Get-MgDriveItemWorkbookTableColumnItemAtWithIndex' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableDataBodyRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/column(column={column}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableDataBodyRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/row(row={row}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableHeaderRowRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableHeaderRowRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookTableRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/column(column={column})","suppress",,"Get-MgDriveItemWorkbookTableRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookTableRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookTableRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookTableRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookTableRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookTableRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/row(row={row})","suppress",,"Get-MgDriveItemWorkbookTableRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookTableRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookTableRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookTableRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookTableRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableRowRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableRowRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookTableRowRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableRowRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/column(column={column})","suppress",,"Get-MgDriveItemWorkbookTableRowRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookTableRowRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookTableRowRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableRowRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookTableRowRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableRowRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableRowRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableRowRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/row(row={row})","suppress",,"Get-MgDriveItemWorkbookTableRowRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookTableRowRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookTableRowRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableRowRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookTableRowRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableRowRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookTableRowRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableRowRangeUsedRangeWithValuesOnly' 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}/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}/rows/itemAt(index={index})","suppress",,"Get-MgDriveItemWorkbookTableRowItemAtWithIndex","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/itemAt(index={index}) and 'Get-MgDriveItemWorkbookTableRowItemAtWithIndex' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableTotalRowRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableTotalRowRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeUsedRangeWithValuesOnly' 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/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/tables/itemAt(index={index})","suppress",,"Get-MgDriveItemWorkbookTableItemAtWithIndex","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/itemAt(index={index}) and 'Get-MgDriveItemWorkbookTableItemAtWithIndex' 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}/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetCellWithRowWithColumn' 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" @@ -2519,6 +3127,9 @@ "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}/image(width={width},height={height},fittingMode='{fittingMode}')","suppress",,"Get-MgDriveItemWorkbookWorksheetChartImageWithWidthWithHeightWithFittingMode","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image(width={width},height={height},fittingMode='{fittingMode}') and 'Get-MgDriveItemWorkbookWorksheetChartImageWithWidthWithHeightWithFittingMode' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image(width={width},height={height})","suppress",,"Get-MgDriveItemWorkbookWorksheetChartImageWithWidthWithHeight","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image(width={width},height={height}) and 'Get-MgDriveItemWorkbookWorksheetChartImageWithWidthWithHeight' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image(width={width})","suppress",,"Get-MgDriveItemWorkbookWorksheetChartImageWithWidth","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image(width={width}) and 'Get-MgDriveItemWorkbookWorksheetChartImageWithWidth' 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" @@ -2531,26 +3142,42 @@ "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}/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/{param}/points/itemAt(index={index})","suppress",,"Get-MgDriveItemWorkbookWorksheetChartSeryPointItemAtWithIndex","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/itemAt(index={index}) and 'Get-MgDriveItemWorkbookWorksheetChartSeryPointItemAtWithIndex' 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}/series/itemAt(index={index})","suppress",,"Get-MgDriveItemWorkbookWorksheetChartSeryItemAtWithIndex","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/itemAt(index={index}) and 'Get-MgDriveItemWorkbookWorksheetChartSeryItemAtWithIndex' 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}/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}/charts/item(name='{name}')","suppress",,"Get-MgDriveItemWorkbookWorksheetChartItemWithName","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/item(name='{name}') and 'Get-MgDriveItemWorkbookWorksheetChartItemWithName' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/itemAt(index={index})","suppress",,"Get-MgDriveItemWorkbookWorksheetChartItemAtWithIndex","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/itemAt(index={index}) and 'Get-MgDriveItemWorkbookWorksheetChartItemAtWithIndex' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetNameRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/column(column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetNameRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/row(row={row})","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeUsedRangeWithValuesOnly' 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" @@ -2560,147 +3187,283 @@ "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(address='{address}')","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeWithAddress","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range(address='{address}') and 'Get-MgDriveItemWorkbookWorksheetRangeWithAddress' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/column(column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/row(row={row})","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/column(column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/row(row={row})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRangeWithValuesOnly' 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}/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}/columns/itemAt(index={index})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnItemAtWithIndex","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/itemAt(index={index}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnItemAtWithIndex' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/column(column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/row(row={row})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeUsedRangeWithValuesOnly' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/column(column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/row(row={row})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeUsedRangeWithValuesOnly' 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}/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}/rows/itemAt(index={index})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowItemAtWithIndex","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/itemAt(index={index}) and 'Get-MgDriveItemWorkbookWorksheetTableRowItemAtWithIndex' 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/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelowWithCount' 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/usedRange(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRangeWithValuesOnly' 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}/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}/tables/itemAt(index={index})","suppress",,"Get-MgDriveItemWorkbookWorksheetTableItemAtWithIndex","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/itemAt(index={index}) and 'Get-MgDriveItemWorkbookWorksheetTableItemAtWithIndex' 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(valuesOnly={valuesOnly})","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeWithValuesOnly","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeWithValuesOnly' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/boundingRect(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeBoundingRectWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetUsedRangeBoundingRectWithAnotherRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/cell(row={row},column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeCellWithRowWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeCellWithRowWithColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/column(column={column})","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeColumnWithColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeColumnWithColumn' 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/columnsAfter(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsAfterWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsAfterWithCount' 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/columnsBefore(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsBeforeWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsBeforeWithCount' 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/intersection(anotherRange='{anotherRange}')","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeIntersectionWithAnotherRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetUsedRangeIntersectionWithAnotherRange' 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/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeOffsetRangeWithRowOffsetWithColumnOffset","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeResizedRangeWithDeltaRowsWithDeltaColumns","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/row(row={row})","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeRowWithRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeRowWithRow' 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/rowsAbove(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeRowsAboveWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeRowsAboveWithCount' 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/rowsBelow(count={count})","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeRowsBelowWithCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeRowsBelowWithCount' 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" @@ -2749,8 +3512,10 @@ "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}/driveItem/content","keep",,"Get-MgDriveListItemDriveItemContent","Get-MgDriveListItemDriveItemContent" "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}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","suppress",,"Get-MgDriveListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","no oracle row for GET /drives/{param}/list/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgDriveListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" "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" @@ -2779,9 +3544,12 @@ "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}/root/content","keep",,"Get-MgDriveRootContent","Get-MgDriveRootContent" +"GET","/drives/{param}/search(q='{q}')","rename","Drive","Get-MgDriveSearchWithQ","Search-MgDrive" "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/{param}/content","keep",,"Get-MgDriveSpecialContent","Get-MgDriveSpecialContent" "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" @@ -3018,6 +3786,7 @@ "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/allowedCalendarSharingRoles(User='{User}')","rename","CalendarGroupCalendar","Get-MgGroupCalendarAllowedCalendarSharingRolesWithUser","Invoke-MgCalendarGroupCalendar" "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" @@ -3082,13 +3851,55 @@ "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/{param}/administrativeUnit","keep",,"Get-MgGroupMemberOfAsAdministrativeUnit","Get-MgGroupMemberOfAsAdministrativeUnit" +"GET","/groups/{param}/memberOf/{param}/group","keep",,"Get-MgGroupMemberOfAsGroup","Get-MgGroupMemberOfAsGroup" "GET","/groups/{param}/memberOf/$count","keep",,"Get-MgGroupMemberOfCount","Get-MgGroupMemberOfCount" +"GET","/groups/{param}/memberOf/administrativeUnit","keep",,"Get-MgGroupMemberOfAsAdministrativeUnit","Get-MgGroupMemberOfAsAdministrativeUnit" +"GET","/groups/{param}/memberOf/administrativeUnit/$count","keep",,"Get-MgGroupMemberOfCountAsAdministrativeUnit","Get-MgGroupMemberOfCountAsAdministrativeUnit" +"GET","/groups/{param}/memberOf/group","keep",,"Get-MgGroupMemberOfAsGroup","Get-MgGroupMemberOfAsGroup" +"GET","/groups/{param}/memberOf/group/$count","keep",,"Get-MgGroupMemberOfCountAsGroup","Get-MgGroupMemberOfCountAsGroup" "GET","/groups/{param}/members","keep",,"Get-MgGroupMember","Get-MgGroupMember" +"GET","/groups/{param}/members/{param}/application","keep",,"Get-MgGroupMemberAsApplication","Get-MgGroupMemberAsApplication" +"GET","/groups/{param}/members/{param}/device","keep",,"Get-MgGroupMemberAsDevice","Get-MgGroupMemberAsDevice" +"GET","/groups/{param}/members/{param}/group","keep",,"Get-MgGroupMemberAsGroup","Get-MgGroupMemberAsGroup" +"GET","/groups/{param}/members/{param}/orgContact","keep",,"Get-MgGroupMemberAsOrgContact","Get-MgGroupMemberAsOrgContact" +"GET","/groups/{param}/members/{param}/servicePrincipal","keep",,"Get-MgGroupMemberAsServicePrincipal","Get-MgGroupMemberAsServicePrincipal" +"GET","/groups/{param}/members/{param}/user","keep",,"Get-MgGroupMemberAsUser","Get-MgGroupMemberAsUser" "GET","/groups/{param}/members/$count","keep",,"Get-MgGroupMemberCount","Get-MgGroupMemberCount" "GET","/groups/{param}/members/$ref","keep",,"Get-MgGroupMemberByRef","Get-MgGroupMemberByRef" +"GET","/groups/{param}/members/application","keep",,"Get-MgGroupMemberAsApplication","Get-MgGroupMemberAsApplication" +"GET","/groups/{param}/members/application/$count","keep",,"Get-MgGroupMemberCountAsApplication","Get-MgGroupMemberCountAsApplication" +"GET","/groups/{param}/members/device","keep",,"Get-MgGroupMemberAsDevice","Get-MgGroupMemberAsDevice" +"GET","/groups/{param}/members/device/$count","keep",,"Get-MgGroupMemberCountAsDevice","Get-MgGroupMemberCountAsDevice" +"GET","/groups/{param}/members/group","keep",,"Get-MgGroupMemberAsGroup","Get-MgGroupMemberAsGroup" +"GET","/groups/{param}/members/group/$count","keep",,"Get-MgGroupMemberCountAsGroup","Get-MgGroupMemberCountAsGroup" +"GET","/groups/{param}/members/orgContact","keep",,"Get-MgGroupMemberAsOrgContact","Get-MgGroupMemberAsOrgContact" +"GET","/groups/{param}/members/orgContact/$count","keep",,"Get-MgGroupMemberCountAsOrgContact","Get-MgGroupMemberCountAsOrgContact" +"GET","/groups/{param}/members/servicePrincipal","keep",,"Get-MgGroupMemberAsServicePrincipal","Get-MgGroupMemberAsServicePrincipal" +"GET","/groups/{param}/members/servicePrincipal/$count","keep",,"Get-MgGroupMemberCountAsServicePrincipal","Get-MgGroupMemberCountAsServicePrincipal" +"GET","/groups/{param}/members/user","keep",,"Get-MgGroupMemberAsUser","Get-MgGroupMemberAsUser" +"GET","/groups/{param}/members/user/$count","keep",,"Get-MgGroupMemberCountAsUser","Get-MgGroupMemberCountAsUser" "GET","/groups/{param}/membersWithLicenseErrors","keep",,"Get-MgGroupMemberWithLicenseError","Get-MgGroupMemberWithLicenseError" "GET","/groups/{param}/membersWithLicenseErrors/{param}","keep",,"Get-MgGroupMemberWithLicenseError","Get-MgGroupMemberWithLicenseError" +"GET","/groups/{param}/membersWithLicenseErrors/{param}/application","keep",,"Get-MgGroupMemberWithLicenseErrorAsApplication","Get-MgGroupMemberWithLicenseErrorAsApplication" +"GET","/groups/{param}/membersWithLicenseErrors/{param}/device","keep",,"Get-MgGroupMemberWithLicenseErrorAsDevice","Get-MgGroupMemberWithLicenseErrorAsDevice" +"GET","/groups/{param}/membersWithLicenseErrors/{param}/group","keep",,"Get-MgGroupMemberWithLicenseErrorAsGroup","Get-MgGroupMemberWithLicenseErrorAsGroup" +"GET","/groups/{param}/membersWithLicenseErrors/{param}/orgContact","keep",,"Get-MgGroupMemberWithLicenseErrorAsOrgContact","Get-MgGroupMemberWithLicenseErrorAsOrgContact" +"GET","/groups/{param}/membersWithLicenseErrors/{param}/servicePrincipal","keep",,"Get-MgGroupMemberWithLicenseErrorAsServicePrincipal","Get-MgGroupMemberWithLicenseErrorAsServicePrincipal" +"GET","/groups/{param}/membersWithLicenseErrors/{param}/user","keep",,"Get-MgGroupMemberWithLicenseErrorAsUser","Get-MgGroupMemberWithLicenseErrorAsUser" "GET","/groups/{param}/membersWithLicenseErrors/$count","keep",,"Get-MgGroupMemberWithLicenseErrorCount","Get-MgGroupMemberWithLicenseErrorCount" +"GET","/groups/{param}/membersWithLicenseErrors/application","keep",,"Get-MgGroupMemberWithLicenseErrorAsApplication","Get-MgGroupMemberWithLicenseErrorAsApplication" +"GET","/groups/{param}/membersWithLicenseErrors/application/$count","keep",,"Get-MgGroupMemberWithLicenseErrorCountAsApplication","Get-MgGroupMemberWithLicenseErrorCountAsApplication" +"GET","/groups/{param}/membersWithLicenseErrors/device","keep",,"Get-MgGroupMemberWithLicenseErrorAsDevice","Get-MgGroupMemberWithLicenseErrorAsDevice" +"GET","/groups/{param}/membersWithLicenseErrors/device/$count","keep",,"Get-MgGroupMemberWithLicenseErrorCountAsDevice","Get-MgGroupMemberWithLicenseErrorCountAsDevice" +"GET","/groups/{param}/membersWithLicenseErrors/group","keep",,"Get-MgGroupMemberWithLicenseErrorAsGroup","Get-MgGroupMemberWithLicenseErrorAsGroup" +"GET","/groups/{param}/membersWithLicenseErrors/group/$count","keep",,"Get-MgGroupMemberWithLicenseErrorCountAsGroup","Get-MgGroupMemberWithLicenseErrorCountAsGroup" +"GET","/groups/{param}/membersWithLicenseErrors/orgContact","keep",,"Get-MgGroupMemberWithLicenseErrorAsOrgContact","Get-MgGroupMemberWithLicenseErrorAsOrgContact" +"GET","/groups/{param}/membersWithLicenseErrors/orgContact/$count","keep",,"Get-MgGroupMemberWithLicenseErrorCountAsOrgContact","Get-MgGroupMemberWithLicenseErrorCountAsOrgContact" +"GET","/groups/{param}/membersWithLicenseErrors/servicePrincipal","keep",,"Get-MgGroupMemberWithLicenseErrorAsServicePrincipal","Get-MgGroupMemberWithLicenseErrorAsServicePrincipal" +"GET","/groups/{param}/membersWithLicenseErrors/servicePrincipal/$count","keep",,"Get-MgGroupMemberWithLicenseErrorCountAsServicePrincipal","Get-MgGroupMemberWithLicenseErrorCountAsServicePrincipal" +"GET","/groups/{param}/membersWithLicenseErrors/user","keep",,"Get-MgGroupMemberWithLicenseErrorAsUser","Get-MgGroupMemberWithLicenseErrorAsUser" +"GET","/groups/{param}/membersWithLicenseErrors/user/$count","keep",,"Get-MgGroupMemberWithLicenseErrorCountAsUser","Get-MgGroupMemberWithLicenseErrorCountAsUser" "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" @@ -3100,6 +3911,7 @@ "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}/content","keep",,"Get-MgGroupOnenoteNotebookSectionGroupSectionPageContent","Get-MgGroupOnenoteNotebookSectionGroupSectionPageContent" "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" @@ -3111,6 +3923,7 @@ "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}/content","keep",,"Get-MgGroupOnenoteNotebookSectionPageContent","Get-MgGroupOnenoteNotebookSectionPageContent" "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" @@ -3119,17 +3932,20 @@ "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/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})","rename","GroupOnenoteRecentNotebook","Get-MgGroupOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks","Get-MgGroupOnenoteRecentNotebook" "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}/content","keep",,"Get-MgGroupOnenotePageContent","Get-MgGroupOnenotePageContent" "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/{param}/content","keep",,"Get-MgGroupOnenoteResourceContent","Get-MgGroupOnenoteResourceContent" "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" @@ -3139,6 +3955,7 @@ "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}/content","keep",,"Get-MgGroupOnenoteSectionGroupSectionPageContent","Get-MgGroupOnenoteSectionGroupSectionPageContent" "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" @@ -3150,6 +3967,7 @@ "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}/content","keep",,"Get-MgGroupOnenoteSectionPageContent","Get-MgGroupOnenoteSectionPageContent" "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" @@ -3159,8 +3977,26 @@ "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/{param}/application","keep",,"Get-MgGroupOwnerAsApplication","Get-MgGroupOwnerAsApplication" +"GET","/groups/{param}/owners/{param}/device","keep",,"Get-MgGroupOwnerAsDevice","Get-MgGroupOwnerAsDevice" +"GET","/groups/{param}/owners/{param}/group","keep",,"Get-MgGroupOwnerAsGroup","Get-MgGroupOwnerAsGroup" +"GET","/groups/{param}/owners/{param}/orgContact","keep",,"Get-MgGroupOwnerAsOrgContact","Get-MgGroupOwnerAsOrgContact" +"GET","/groups/{param}/owners/{param}/servicePrincipal","keep",,"Get-MgGroupOwnerAsServicePrincipal","Get-MgGroupOwnerAsServicePrincipal" +"GET","/groups/{param}/owners/{param}/user","keep",,"Get-MgGroupOwnerAsUser","Get-MgGroupOwnerAsUser" "GET","/groups/{param}/owners/$count","keep",,"Get-MgGroupOwnerCount","Get-MgGroupOwnerCount" "GET","/groups/{param}/owners/$ref","keep",,"Get-MgGroupOwnerByRef","Get-MgGroupOwnerByRef" +"GET","/groups/{param}/owners/application","keep",,"Get-MgGroupOwnerAsApplication","Get-MgGroupOwnerAsApplication" +"GET","/groups/{param}/owners/application/$count","keep",,"Get-MgGroupOwnerCountAsApplication","Get-MgGroupOwnerCountAsApplication" +"GET","/groups/{param}/owners/device","keep",,"Get-MgGroupOwnerAsDevice","Get-MgGroupOwnerAsDevice" +"GET","/groups/{param}/owners/device/$count","keep",,"Get-MgGroupOwnerCountAsDevice","Get-MgGroupOwnerCountAsDevice" +"GET","/groups/{param}/owners/group","keep",,"Get-MgGroupOwnerAsGroup","Get-MgGroupOwnerAsGroup" +"GET","/groups/{param}/owners/group/$count","keep",,"Get-MgGroupOwnerCountAsGroup","Get-MgGroupOwnerCountAsGroup" +"GET","/groups/{param}/owners/orgContact","keep",,"Get-MgGroupOwnerAsOrgContact","Get-MgGroupOwnerAsOrgContact" +"GET","/groups/{param}/owners/orgContact/$count","keep",,"Get-MgGroupOwnerCountAsOrgContact","Get-MgGroupOwnerCountAsOrgContact" +"GET","/groups/{param}/owners/servicePrincipal","keep",,"Get-MgGroupOwnerAsServicePrincipal","Get-MgGroupOwnerAsServicePrincipal" +"GET","/groups/{param}/owners/servicePrincipal/$count","keep",,"Get-MgGroupOwnerCountAsServicePrincipal","Get-MgGroupOwnerCountAsServicePrincipal" +"GET","/groups/{param}/owners/user","keep",,"Get-MgGroupOwnerAsUser","Get-MgGroupOwnerAsUser" +"GET","/groups/{param}/owners/user/$count","keep",,"Get-MgGroupOwnerCountAsUser","Get-MgGroupOwnerCountAsUser" "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" @@ -3202,6 +4038,7 @@ "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/{param}/driveItem/content","keep",,"Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent","Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent" "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" @@ -3240,6 +4077,9 @@ "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}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","suppress",,"Get-MgGroupSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","no oracle row for GET /groups/{param}/sites/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgGroupSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" +"GET","/groups/{param}/sites/{param}/getApplicableContentTypesForList(listId='{listId}')","rename","GroupSiteApplicableContentTypeForList","Get-MgGroupSiteGetApplicableContentTypesForListWithListId","Get-MgGroupSiteApplicableContentTypeForList" +"GET","/groups/{param}/sites/{param}/getByPath(path='{path}')","rename","GroupSiteByPath","Get-MgGroupSiteGetByPathWithPath","Get-MgGroupSiteByPath" "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" @@ -3289,8 +4129,10 @@ "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}/driveItem/content","keep",,"Get-MgGroupSiteListItemDriveItemContent","Get-MgGroupSiteListItemDriveItemContent" "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}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","suppress",,"Get-MgGroupSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgGroupSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" "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" @@ -3328,6 +4170,7 @@ "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}/content","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent" "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" @@ -3339,6 +4182,7 @@ "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}/content","keep",,"Get-MgGroupSiteOnenoteNotebookSectionPageContent","Get-MgGroupSiteOnenoteNotebookSectionPageContent" "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" @@ -3347,17 +4191,20 @@ "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/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})","rename","GroupSiteOnenoteNotebookRecentNotebook","Get-MgGroupSiteOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks","Get-MgGroupSiteOnenoteNotebookRecentNotebook" "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}/content","keep",,"Get-MgGroupSiteOnenotePageContent","Get-MgGroupSiteOnenotePageContent" "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/{param}/content","keep",,"Get-MgGroupSiteOnenoteResourceContent","Get-MgGroupSiteOnenoteResourceContent" "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" @@ -3367,6 +4214,7 @@ "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}/content","keep",,"Get-MgGroupSiteOnenoteSectionGroupSectionPageContent","Get-MgGroupSiteOnenoteSectionGroupSectionPageContent" "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" @@ -3378,6 +4226,7 @@ "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}/content","keep",,"Get-MgGroupSiteOnenoteSectionPageContent","Get-MgGroupSiteOnenoteSectionPageContent" "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" @@ -3398,7 +4247,35 @@ "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/{param}/sitePage","keep",,"Get-MgGroupSitePageAsSitePage","Get-MgGroupSitePageAsSitePage" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayout","Get-MgGroupSitePageAsSitePageCanvaLayout" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/$count","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/$count","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/$count","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/$count","keep",,"Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/createdByUser","keep",,"Get-MgGroupSitePageAsSitePageCreatedByUser","Get-MgGroupSitePageAsSitePageCreatedByUser" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/createdByUser/mailboxSettings","keep",,"Get-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting","Get-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/createdByUser/serviceProvisioningErrors","keep",,"Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningError","Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningError" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount","Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/lastModifiedByUser","keep",,"Get-MgGroupSitePageAsSitePageLastModifiedByUser","Get-MgGroupSitePageAsSitePageLastModifiedByUser" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/mailboxSettings","keep",,"Get-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting","Get-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/serviceProvisioningErrors","keep",,"Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError","Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count","keep",,"Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount","Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts","keep",,"Get-MgGroupSitePageAsSitePageWebPart","Get-MgGroupSitePageAsSitePageWebPart" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts/{param}","keep",,"Get-MgGroupSitePageAsSitePageWebPart","Get-MgGroupSitePageAsSitePageWebPart" +"GET","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts/$count","keep",,"Get-MgGroupSitePageAsSitePageWebPartCount","Get-MgGroupSitePageAsSitePageWebPartCount" "GET","/groups/{param}/sites/{param}/pages/$count","keep",,"Get-MgGroupSitePageCount","Get-MgGroupSitePageCount" +"GET","/groups/{param}/sites/{param}/pages/sitePage","keep",,"Get-MgGroupSitePageAsSitePage","Get-MgGroupSitePageAsSitePage" +"GET","/groups/{param}/sites/{param}/pages/sitePage/$count","keep",,"Get-MgGroupSitePageCountAsSitePage","Get-MgGroupSitePageCountAsSitePage" "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" @@ -3538,6 +4415,7 @@ "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}/filesFolder/content","keep",,"Get-MgGroupTeamChannelFileFolderContent","Get-MgGroupTeamChannelFileFolderContent" "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" @@ -3600,6 +4478,7 @@ "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/filesFolder/content","keep",,"Get-MgGroupTeamPrimaryChannelFileFolderContent","Get-MgGroupTeamPrimaryChannelFileFolderContent" "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" @@ -3691,10 +4570,34 @@ "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/{param}/administrativeUnit","keep",,"Get-MgGroupTransitiveMemberOfAsAdministrativeUnit","Get-MgGroupTransitiveMemberOfAsAdministrativeUnit" +"GET","/groups/{param}/transitiveMemberOf/{param}/group","keep",,"Get-MgGroupTransitiveMemberOfAsGroup","Get-MgGroupTransitiveMemberOfAsGroup" "GET","/groups/{param}/transitiveMemberOf/$count","keep",,"Get-MgGroupTransitiveMemberOfCount","Get-MgGroupTransitiveMemberOfCount" +"GET","/groups/{param}/transitiveMemberOf/administrativeUnit","keep",,"Get-MgGroupTransitiveMemberOfAsAdministrativeUnit","Get-MgGroupTransitiveMemberOfAsAdministrativeUnit" +"GET","/groups/{param}/transitiveMemberOf/administrativeUnit/$count","keep",,"Get-MgGroupTransitiveMemberOfCountAsAdministrativeUnit","Get-MgGroupTransitiveMemberOfCountAsAdministrativeUnit" +"GET","/groups/{param}/transitiveMemberOf/group","keep",,"Get-MgGroupTransitiveMemberOfAsGroup","Get-MgGroupTransitiveMemberOfAsGroup" +"GET","/groups/{param}/transitiveMemberOf/group/$count","keep",,"Get-MgGroupTransitiveMemberOfCountAsGroup","Get-MgGroupTransitiveMemberOfCountAsGroup" "GET","/groups/{param}/transitiveMembers","keep",,"Get-MgGroupTransitiveMember","Get-MgGroupTransitiveMember" "GET","/groups/{param}/transitiveMembers/{param}","keep",,"Get-MgGroupTransitiveMember","Get-MgGroupTransitiveMember" +"GET","/groups/{param}/transitiveMembers/{param}/application","keep",,"Get-MgGroupTransitiveMemberAsApplication","Get-MgGroupTransitiveMemberAsApplication" +"GET","/groups/{param}/transitiveMembers/{param}/device","keep",,"Get-MgGroupTransitiveMemberAsDevice","Get-MgGroupTransitiveMemberAsDevice" +"GET","/groups/{param}/transitiveMembers/{param}/group","keep",,"Get-MgGroupTransitiveMemberAsGroup","Get-MgGroupTransitiveMemberAsGroup" +"GET","/groups/{param}/transitiveMembers/{param}/orgContact","keep",,"Get-MgGroupTransitiveMemberAsOrgContact","Get-MgGroupTransitiveMemberAsOrgContact" +"GET","/groups/{param}/transitiveMembers/{param}/servicePrincipal","keep",,"Get-MgGroupTransitiveMemberAsServicePrincipal","Get-MgGroupTransitiveMemberAsServicePrincipal" +"GET","/groups/{param}/transitiveMembers/{param}/user","keep",,"Get-MgGroupTransitiveMemberAsUser","Get-MgGroupTransitiveMemberAsUser" "GET","/groups/{param}/transitiveMembers/$count","keep",,"Get-MgGroupTransitiveMemberCount","Get-MgGroupTransitiveMemberCount" +"GET","/groups/{param}/transitiveMembers/application","keep",,"Get-MgGroupTransitiveMemberAsApplication","Get-MgGroupTransitiveMemberAsApplication" +"GET","/groups/{param}/transitiveMembers/application/$count","keep",,"Get-MgGroupTransitiveMemberCountAsApplication","Get-MgGroupTransitiveMemberCountAsApplication" +"GET","/groups/{param}/transitiveMembers/device","keep",,"Get-MgGroupTransitiveMemberAsDevice","Get-MgGroupTransitiveMemberAsDevice" +"GET","/groups/{param}/transitiveMembers/device/$count","keep",,"Get-MgGroupTransitiveMemberCountAsDevice","Get-MgGroupTransitiveMemberCountAsDevice" +"GET","/groups/{param}/transitiveMembers/group","keep",,"Get-MgGroupTransitiveMemberAsGroup","Get-MgGroupTransitiveMemberAsGroup" +"GET","/groups/{param}/transitiveMembers/group/$count","keep",,"Get-MgGroupTransitiveMemberCountAsGroup","Get-MgGroupTransitiveMemberCountAsGroup" +"GET","/groups/{param}/transitiveMembers/orgContact","keep",,"Get-MgGroupTransitiveMemberAsOrgContact","Get-MgGroupTransitiveMemberAsOrgContact" +"GET","/groups/{param}/transitiveMembers/orgContact/$count","keep",,"Get-MgGroupTransitiveMemberCountAsOrgContact","Get-MgGroupTransitiveMemberCountAsOrgContact" +"GET","/groups/{param}/transitiveMembers/servicePrincipal","keep",,"Get-MgGroupTransitiveMemberAsServicePrincipal","Get-MgGroupTransitiveMemberAsServicePrincipal" +"GET","/groups/{param}/transitiveMembers/servicePrincipal/$count","keep",,"Get-MgGroupTransitiveMemberCountAsServicePrincipal","Get-MgGroupTransitiveMemberCountAsServicePrincipal" +"GET","/groups/{param}/transitiveMembers/user","keep",,"Get-MgGroupTransitiveMemberAsUser","Get-MgGroupTransitiveMemberAsUser" +"GET","/groups/{param}/transitiveMembers/user/$count","keep",,"Get-MgGroupTransitiveMemberCountAsUser","Get-MgGroupTransitiveMemberCountAsUser" "GET","/groups/$count","keep",,"Get-MgGroupCount","Get-MgGroupCount" "GET","/groups/delta","keep",,"Get-MgGroupDelta","Get-MgGroupDelta" "GET","/groupSettingTemplates","keep",,"Get-MgGroupSettingTemplate","Get-MgGroupSettingTemplateGroupSettingTemplate" @@ -3714,7 +4617,24 @@ "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/{param}/externalUsersSelfServiceSignUpEventsFlow","keep",,"Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions","keep",,"Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCondition","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCondition" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications","rename","IdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{param}","rename","IdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/$count","rename","IdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplicationCount","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplicationCount","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplicationCount" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection","keep",,"Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollection","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollection" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp","rename","IdentityAuthenticationEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp","Get-MgIdentityAuthenticationEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes","rename","IdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute","Get-MgIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$count","rename","IdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount","Get-MgIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$ref","rename","IdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef","Get-MgIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart","keep",,"Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStart","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStart" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp","rename","IdentityAuthenticationEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp","Get-MgIdentityAuthenticationEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders","rename","IdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider","Get-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$count","rename","IdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount","Get-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount" +"GET","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$ref","rename","IdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","Get-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef" "GET","/identity/authenticationEventsFlows/$count","keep",,"Get-MgIdentityAuthenticationEventFlowCount","Get-MgIdentityAuthenticationEventFlowCount" +"GET","/identity/authenticationEventsFlows/externalUsersSelfServiceSignUpEventsFlow","keep",,"Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow" +"GET","/identity/authenticationEventsFlows/externalUsersSelfServiceSignUpEventsFlow/$count","keep",,"Get-MgIdentityAuthenticationEventFlowCountAsExternalUserSelfServiceSignUpEventFlow","Get-MgIdentityAuthenticationEventFlowCountAsExternalUserSelfServiceSignUpEventFlow" "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" @@ -3815,6 +4735,7 @@ "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}/decisions/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernanceAccessReviewDefinitionInstanceDecisionByCurrentUser","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceDecisionByCurrentUser" "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" @@ -3823,9 +4744,13 @@ "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/{param}/decisions/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionByCurrentUser","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionByCurrentUser" "GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/$count","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageCount","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageCount" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernanceAccessReviewDefinitionInstanceStageByCurrentUser","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceStageByCurrentUser" "GET","/identityGovernance/accessReviews/definitions/{param}/instances/$count","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceCount","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceCount" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernanceAccessReviewDefinitionInstanceByCurrentUser","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceByCurrentUser" "GET","/identityGovernance/accessReviews/definitions/$count","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionCount","Get-MgIdentityGovernanceAccessReviewDefinitionCount" +"GET","/identityGovernance/accessReviews/definitions/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernanceAccessReviewDefinitionByCurrentUser","Get-MgIdentityGovernanceAccessReviewDefinitionFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionByCurrentUser" "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" @@ -3842,7 +4767,9 @@ "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/{param}/userConsentRequests/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernanceAppConsentRequestUserConsentRequestByCurrentUser","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernanceAppConsentRequestUserConsentRequestByCurrentUser" "GET","/identityGovernance/appConsent/appConsentRequests/$count","rename","IdentityGovernanceAppConsentRequestCount","Get-MgIdentityGovernanceAppConsentAppConsentRequestCount","Get-MgIdentityGovernanceAppConsentRequestCount" +"GET","/identityGovernance/appConsent/appConsentRequests/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernanceAppConsentRequestByCurrentUser","Get-MgIdentityGovernanceAppConsentAppConsentRequestFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernanceAppConsentRequestByCurrentUser" "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" @@ -3850,6 +4777,7 @@ "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/accessPackageAssignmentApprovals/filterByCurrentUser(on='{on}')","rename","FilterEntitlementManagementAccessPackageAssignmentApprovalByCurrentUser","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalFilterByCurrentUserWithOn","Invoke-MgFilterEntitlementManagementAccessPackageAssignmentApprovalByCurrentUser" "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" @@ -3907,10 +4835,12 @@ "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/accessPackages/filterByCurrentUser(on='{on}')","rename","FilterEntitlementManagementAccessPackageByCurrentUser","Get-MgIdentityGovernanceEntitlementManagementAccessPackageFilterByCurrentUserWithOn","Invoke-MgFilterEntitlementManagementAccessPackageByCurrentUser" "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/accessPackageSuggestions/filterByCurrentUser(on='{on}')","rename","FilterEntitlementManagementAccessPackageSuggestionByCurrentUser","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionFilterByCurrentUserWithOn","Invoke-MgFilterEntitlementManagementAccessPackageSuggestionByCurrentUser" "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" @@ -3929,12 +4859,15 @@ "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/assignmentRequests/filterByCurrentUser(on='{on}')","rename","FilterEntitlementManagementAssignmentRequestByCurrentUser","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestFilterByCurrentUserWithOn","Invoke-MgFilterEntitlementManagementAssignmentRequestByCurrentUser" "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/assignments/additionalAccess(accessPackageId='{accessPackageId}',incompatibleAccessPackageId='{incompatibleAccessPackageId}')","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccessWithAccessPackageIdWithIncompatibleAccessPackageId","no oracle row for GET /identityGovernance/entitlementManagement/assignments/additionalAccess(accessPackageId='{accessPackageId}',incompatibleAccessPackageId='{incompatibleAccessPackageId}') and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccessWithAccessPackageIdWithIncompatibleAccessPackageId' unshipped" +"GET","/identityGovernance/entitlementManagement/assignments/filterByCurrentUser(on='{on}')","rename","FilterEntitlementManagementAssignmentByCurrentUser","Get-MgIdentityGovernanceEntitlementManagementAssignmentFilterByCurrentUserWithOn","Invoke-MgFilterEntitlementManagementAssignmentByCurrentUser" "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" @@ -4205,7 +5138,9 @@ "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/{param}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime}) and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime' 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}/runs/summary(startDateTime={startDateTime},endDateTime={endDateTime})","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunSummaryWithStartDateTimeWithEndDateTime","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/summary(startDateTime={startDateTime},endDateTime={endDateTime}) and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunSummaryWithStartDateTimeWithEndDateTime' 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" @@ -4219,6 +5154,7 @@ "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}/taskReports/summary(startDateTime={startDateTime},endDateTime={endDateTime})","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/summary(startDateTime={startDateTime},endDateTime={endDateTime}) and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime' 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" @@ -4248,6 +5184,7 @@ "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}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime}) and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime' 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" @@ -4275,6 +5212,10 @@ "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/insights/topTasksProcessedSummary(startDateTime={startDateTime},endDateTime={endDateTime})","rename","TopIdentityGovernanceLifecycleWorkflowInsightTaskProcessedSummary","Get-MgIdentityGovernanceLifecycleWorkflowInsightTopTasksProcessedSummaryWithStartDateTimeWithEndDateTime","Invoke-MgTopIdentityGovernanceLifecycleWorkflowInsightTaskProcessedSummary" +"GET","/identityGovernance/lifecycleWorkflows/insights/topWorkflowsProcessedSummary(startDateTime={startDateTime},endDateTime={endDateTime})","rename","TopIdentityGovernanceLifecycleWorkflowInsightWorkflowProcessedSummary","Get-MgIdentityGovernanceLifecycleWorkflowInsightTopWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime","Invoke-MgTopIdentityGovernanceLifecycleWorkflowInsightWorkflowProcessedSummary" +"GET","/identityGovernance/lifecycleWorkflows/insights/workflowsProcessedByCategory(startDateTime={startDateTime},endDateTime={endDateTime})","rename","GraphIdentityGovernanceLifecycleWorkflowInsight","Get-MgIdentityGovernanceLifecycleWorkflowInsightWorkflowsProcessedByCategoryWithStartDateTimeWithEndDateTime","Invoke-MgGraphIdentityGovernanceLifecycleWorkflowInsight" +"GET","/identityGovernance/lifecycleWorkflows/insights/workflowsProcessedSummary(startDateTime={startDateTime},endDateTime={endDateTime})","rename","WorkflowIdentityGovernanceLifecycleWorkflowInsightProcessedSummary","Get-MgIdentityGovernanceLifecycleWorkflowInsightWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime","Invoke-MgWorkflowIdentityGovernanceLifecycleWorkflowInsightProcessedSummary" "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" @@ -4329,7 +5270,9 @@ "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/{param}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})","rename","SummaryIdentityGovernanceLifecycleWorkflowRunUserProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime","Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowRunUserProcessingResult" "GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunCount","Get-MgIdentityGovernanceLifecycleWorkflowRunCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/summary(startDateTime={startDateTime},endDateTime={endDateTime})","rename","SummaryIdentityGovernanceLifecycleWorkflowRun","Get-MgIdentityGovernanceLifecycleWorkflowRunSummaryWithStartDateTimeWithEndDateTime","Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowRun" "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" @@ -4343,6 +5286,7 @@ "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}/taskReports/summary(startDateTime={startDateTime},endDateTime={endDateTime})","rename","SummaryIdentityGovernanceLifecycleWorkflowTaskReport","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime","Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowTaskReport" "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" @@ -4372,6 +5316,7 @@ "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}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})","rename","SummaryIdentityGovernanceLifecycleWorkflowUserProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime","Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowUserProcessingResult" "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" @@ -4420,6 +5365,7 @@ "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/assignmentApprovals/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernancePrivilegedAccessGroupAssignmentApprovalByCurrentUser","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentApprovalByCurrentUser" "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" @@ -4428,6 +5374,7 @@ "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/assignmentScheduleInstances/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceByCurrentUser","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceByCurrentUser" "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" @@ -4437,6 +5384,7 @@ "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/assignmentScheduleRequests/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestByCurrentUser","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestByCurrentUser" "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" @@ -4445,6 +5393,7 @@ "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/assignmentSchedules/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleByCurrentUser","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleByCurrentUser" "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" @@ -4452,6 +5401,7 @@ "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/eligibilityScheduleInstances/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceByCurrentUser","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceByCurrentUser" "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" @@ -4460,6 +5410,7 @@ "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/eligibilityScheduleRequests/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestByCurrentUser","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestByCurrentUser" "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" @@ -4467,6 +5418,7 @@ "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/privilegedAccess/group/eligibilitySchedules/filterByCurrentUser(on='{on}')","rename","FilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleByCurrentUser","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleFilterByCurrentUserWithOn","Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleByCurrentUser" "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" @@ -4531,9 +5483,23 @@ "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/backgroundImage","keep",,"Get-MgOrganizationBrandingBackgroundImage","Get-MgOrganizationBrandingBackgroundImage" +"GET","/organization/{param}/branding/bannerLogo","keep",,"Get-MgOrganizationBrandingBannerLogo","Get-MgOrganizationBrandingBannerLogo" +"GET","/organization/{param}/branding/customCSS","rename","OrganizationBrandingCustomCss","Get-MgOrganizationBrandingCustomCSS","Get-MgOrganizationBrandingCustomCss" +"GET","/organization/{param}/branding/favicon","keep",,"Get-MgOrganizationBrandingFavicon","Get-MgOrganizationBrandingFavicon" +"GET","/organization/{param}/branding/headerLogo","keep",,"Get-MgOrganizationBrandingHeaderLogo","Get-MgOrganizationBrandingHeaderLogo" "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/{param}/backgroundImage","keep",,"Get-MgOrganizationBrandingLocalizationBackgroundImage","Get-MgOrganizationBrandingLocalizationBackgroundImage" +"GET","/organization/{param}/branding/localizations/{param}/bannerLogo","keep",,"Get-MgOrganizationBrandingLocalizationBannerLogo","Get-MgOrganizationBrandingLocalizationBannerLogo" +"GET","/organization/{param}/branding/localizations/{param}/customCSS","rename","OrganizationBrandingLocalizationCustomCss","Get-MgOrganizationBrandingLocalizationCustomCSS","Get-MgOrganizationBrandingLocalizationCustomCss" +"GET","/organization/{param}/branding/localizations/{param}/favicon","keep",,"Get-MgOrganizationBrandingLocalizationFavicon","Get-MgOrganizationBrandingLocalizationFavicon" +"GET","/organization/{param}/branding/localizations/{param}/headerLogo","keep",,"Get-MgOrganizationBrandingLocalizationHeaderLogo","Get-MgOrganizationBrandingLocalizationHeaderLogo" +"GET","/organization/{param}/branding/localizations/{param}/squareLogo","keep",,"Get-MgOrganizationBrandingLocalizationSquareLogo","Get-MgOrganizationBrandingLocalizationSquareLogo" +"GET","/organization/{param}/branding/localizations/{param}/squareLogoDark","keep",,"Get-MgOrganizationBrandingLocalizationSquareLogoDark","Get-MgOrganizationBrandingLocalizationSquareLogoDark" "GET","/organization/{param}/branding/localizations/$count","keep",,"Get-MgOrganizationBrandingLocalizationCount","Get-MgOrganizationBrandingLocalizationCount" +"GET","/organization/{param}/branding/squareLogo","keep",,"Get-MgOrganizationBrandingSquareLogo","Get-MgOrganizationBrandingSquareLogo" +"GET","/organization/{param}/branding/squareLogoDark","keep",,"Get-MgOrganizationBrandingSquareLogoDark","Get-MgOrganizationBrandingSquareLogoDark" "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" @@ -4541,11 +5507,81 @@ "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}/building","keep",,"Get-MgPlaceAsBuilding","Get-MgPlaceAsBuilding" +"GET","/places/{param}/building/checkIns","rename","PlaceAsBuildingCheck","Get-MgPlaceAsBuildingCheckIn","Get-MgPlaceAsBuildingCheck" +"GET","/places/{param}/building/checkIns/{param}","rename","PlaceAsBuildingCheck","Get-MgPlaceAsBuildingCheckIn","Get-MgPlaceAsBuildingCheck" +"GET","/places/{param}/building/checkIns/$count","keep",,"Get-MgPlaceAsBuildingCheckInCount","Get-MgPlaceAsBuildingCheckInCount" +"GET","/places/{param}/building/map","keep",,"Get-MgPlaceAsBuildingMap","Get-MgPlaceAsBuildingMap" +"GET","/places/{param}/building/map/footprints","keep",,"Get-MgPlaceAsBuildingMapFootprint","Get-MgPlaceAsBuildingMapFootprint" +"GET","/places/{param}/building/map/footprints/{param}","keep",,"Get-MgPlaceAsBuildingMapFootprint","Get-MgPlaceAsBuildingMapFootprint" +"GET","/places/{param}/building/map/footprints/$count","keep",,"Get-MgPlaceAsBuildingMapFootprintCount","Get-MgPlaceAsBuildingMapFootprintCount" +"GET","/places/{param}/building/map/levels","keep",,"Get-MgPlaceAsBuildingMapLevel","Get-MgPlaceAsBuildingMapLevel" +"GET","/places/{param}/building/map/levels/{param}","keep",,"Get-MgPlaceAsBuildingMapLevel","Get-MgPlaceAsBuildingMapLevel" +"GET","/places/{param}/building/map/levels/{param}/fixtures","keep",,"Get-MgPlaceAsBuildingMapLevelFixture","Get-MgPlaceAsBuildingMapLevelFixture" +"GET","/places/{param}/building/map/levels/{param}/fixtures/{param}","keep",,"Get-MgPlaceAsBuildingMapLevelFixture","Get-MgPlaceAsBuildingMapLevelFixture" +"GET","/places/{param}/building/map/levels/{param}/fixtures/$count","keep",,"Get-MgPlaceAsBuildingMapLevelFixtureCount","Get-MgPlaceAsBuildingMapLevelFixtureCount" +"GET","/places/{param}/building/map/levels/{param}/sections","keep",,"Get-MgPlaceAsBuildingMapLevelSection","Get-MgPlaceAsBuildingMapLevelSection" +"GET","/places/{param}/building/map/levels/{param}/sections/{param}","keep",,"Get-MgPlaceAsBuildingMapLevelSection","Get-MgPlaceAsBuildingMapLevelSection" +"GET","/places/{param}/building/map/levels/{param}/sections/$count","keep",,"Get-MgPlaceAsBuildingMapLevelSectionCount","Get-MgPlaceAsBuildingMapLevelSectionCount" +"GET","/places/{param}/building/map/levels/{param}/units","keep",,"Get-MgPlaceAsBuildingMapLevelUnit","Get-MgPlaceAsBuildingMapLevelUnit" +"GET","/places/{param}/building/map/levels/{param}/units/{param}","keep",,"Get-MgPlaceAsBuildingMapLevelUnit","Get-MgPlaceAsBuildingMapLevelUnit" +"GET","/places/{param}/building/map/levels/{param}/units/$count","keep",,"Get-MgPlaceAsBuildingMapLevelUnitCount","Get-MgPlaceAsBuildingMapLevelUnitCount" +"GET","/places/{param}/building/map/levels/$count","keep",,"Get-MgPlaceAsBuildingMapLevelCount","Get-MgPlaceAsBuildingMapLevelCount" "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/{param}/desk","keep",,"Get-MgPlaceAsDesk","Get-MgPlaceAsDesk" +"GET","/places/{param}/desk/checkIns","rename","PlaceAsDeskCheck","Get-MgPlaceAsDeskCheckIn","Get-MgPlaceAsDeskCheck" +"GET","/places/{param}/desk/checkIns/{param}","rename","PlaceAsDeskCheck","Get-MgPlaceAsDeskCheckIn","Get-MgPlaceAsDeskCheck" +"GET","/places/{param}/desk/checkIns/$count","keep",,"Get-MgPlaceAsDeskCheckInCount","Get-MgPlaceAsDeskCheckInCount" +"GET","/places/{param}/floor","keep",,"Get-MgPlaceAsFloor","Get-MgPlaceAsFloor" +"GET","/places/{param}/floor/checkIns","rename","PlaceAsFloorCheck","Get-MgPlaceAsFloorCheckIn","Get-MgPlaceAsFloorCheck" +"GET","/places/{param}/floor/checkIns/{param}","rename","PlaceAsFloorCheck","Get-MgPlaceAsFloorCheckIn","Get-MgPlaceAsFloorCheck" +"GET","/places/{param}/floor/checkIns/$count","keep",,"Get-MgPlaceAsFloorCheckInCount","Get-MgPlaceAsFloorCheckInCount" +"GET","/places/{param}/room","keep",,"Get-MgPlaceAsRoom","Get-MgPlaceAsRoom" +"GET","/places/{param}/room/checkIns","rename","PlaceAsRoomCheck","Get-MgPlaceAsRoomCheckIn","Get-MgPlaceAsRoomCheck" +"GET","/places/{param}/room/checkIns/{param}","rename","PlaceAsRoomCheck","Get-MgPlaceAsRoomCheckIn","Get-MgPlaceAsRoomCheck" +"GET","/places/{param}/room/checkIns/$count","keep",,"Get-MgPlaceAsRoomCheckInCount","Get-MgPlaceAsRoomCheckInCount" +"GET","/places/{param}/roomList","keep",,"Get-MgPlaceAsRoomList","Get-MgPlaceAsRoomList" +"GET","/places/{param}/roomList/checkIns","rename","PlaceAsRoomListCheck","Get-MgPlaceAsRoomListCheckIn","Get-MgPlaceAsRoomListCheck" +"GET","/places/{param}/roomList/checkIns/{param}","rename","PlaceAsRoomListCheck","Get-MgPlaceAsRoomListCheckIn","Get-MgPlaceAsRoomListCheck" +"GET","/places/{param}/roomList/checkIns/$count","keep",,"Get-MgPlaceAsRoomListCheckInCount","Get-MgPlaceAsRoomListCheckInCount" +"GET","/places/{param}/roomList/rooms","keep",,"Get-MgPlaceAsRoomListRoom","Get-MgPlaceAsRoomListRoom" +"GET","/places/{param}/roomList/rooms/{param}","keep",,"Get-MgPlaceAsRoomListRoom","Get-MgPlaceAsRoomListRoom" +"GET","/places/{param}/roomList/rooms/{param}/checkIns","rename","PlaceAsRoomListRoomCheck","Get-MgPlaceAsRoomListRoomCheckIn","Get-MgPlaceAsRoomListRoomCheck" +"GET","/places/{param}/roomList/rooms/{param}/checkIns/{param}","rename","PlaceAsRoomListRoomCheck","Get-MgPlaceAsRoomListRoomCheckIn","Get-MgPlaceAsRoomListRoomCheck" +"GET","/places/{param}/roomList/rooms/{param}/checkIns/$count","keep",,"Get-MgPlaceAsRoomListRoomCheckInCount","Get-MgPlaceAsRoomListRoomCheckInCount" +"GET","/places/{param}/roomList/rooms/$count","keep",,"Get-MgPlaceAsRoomListRoomCount","Get-MgPlaceAsRoomListRoomCount" +"GET","/places/{param}/roomList/workspaces","keep",,"Get-MgPlaceAsRoomListWorkspace","Get-MgPlaceAsRoomListWorkspace" +"GET","/places/{param}/roomList/workspaces/{param}","keep",,"Get-MgPlaceAsRoomListWorkspace","Get-MgPlaceAsRoomListWorkspace" +"GET","/places/{param}/roomList/workspaces/{param}/checkIns","rename","PlaceAsRoomListWorkspaceCheck","Get-MgPlaceAsRoomListWorkspaceCheckIn","Get-MgPlaceAsRoomListWorkspaceCheck" +"GET","/places/{param}/roomList/workspaces/{param}/checkIns/{param}","rename","PlaceAsRoomListWorkspaceCheck","Get-MgPlaceAsRoomListWorkspaceCheckIn","Get-MgPlaceAsRoomListWorkspaceCheck" +"GET","/places/{param}/roomList/workspaces/{param}/checkIns/$count","keep",,"Get-MgPlaceAsRoomListWorkspaceCheckInCount","Get-MgPlaceAsRoomListWorkspaceCheckInCount" +"GET","/places/{param}/roomList/workspaces/$count","keep",,"Get-MgPlaceAsRoomListWorkspaceCount","Get-MgPlaceAsRoomListWorkspaceCount" +"GET","/places/{param}/section","keep",,"Get-MgPlaceAsSection","Get-MgPlaceAsSection" +"GET","/places/{param}/section/checkIns","rename","PlaceAsSectionCheck","Get-MgPlaceAsSectionCheckIn","Get-MgPlaceAsSectionCheck" +"GET","/places/{param}/section/checkIns/{param}","rename","PlaceAsSectionCheck","Get-MgPlaceAsSectionCheckIn","Get-MgPlaceAsSectionCheck" +"GET","/places/{param}/section/checkIns/$count","keep",,"Get-MgPlaceAsSectionCheckInCount","Get-MgPlaceAsSectionCheckInCount" +"GET","/places/{param}/workspace","keep",,"Get-MgPlaceAsWorkspace","Get-MgPlaceAsWorkspace" +"GET","/places/{param}/workspace/checkIns","rename","PlaceAsWorkspaceCheck","Get-MgPlaceAsWorkspaceCheckIn","Get-MgPlaceAsWorkspaceCheck" +"GET","/places/{param}/workspace/checkIns/{param}","rename","PlaceAsWorkspaceCheck","Get-MgPlaceAsWorkspaceCheckIn","Get-MgPlaceAsWorkspaceCheck" +"GET","/places/{param}/workspace/checkIns/$count","keep",,"Get-MgPlaceAsWorkspaceCheckInCount","Get-MgPlaceAsWorkspaceCheckInCount" "GET","/places/$count","keep",,"Get-MgPlaceCount","Get-MgPlaceCount" +"GET","/places/building","keep",,"Get-MgPlaceAsBuilding","Get-MgPlaceAsBuilding" +"GET","/places/building/$count","keep",,"Get-MgPlaceCountAsBuilding","Get-MgPlaceCountAsBuilding" +"GET","/places/desk","keep",,"Get-MgPlaceAsDesk","Get-MgPlaceAsDesk" +"GET","/places/desk/$count","keep",,"Get-MgPlaceCountAsDesk","Get-MgPlaceCountAsDesk" +"GET","/places/floor","keep",,"Get-MgPlaceAsFloor","Get-MgPlaceAsFloor" +"GET","/places/floor/$count","keep",,"Get-MgPlaceCountAsFloor","Get-MgPlaceCountAsFloor" +"GET","/places/room","keep",,"Get-MgPlaceAsRoom","Get-MgPlaceAsRoom" +"GET","/places/room/$count","keep",,"Get-MgPlaceCountAsRoom","Get-MgPlaceCountAsRoom" +"GET","/places/roomList","keep",,"Get-MgPlaceAsRoomList","Get-MgPlaceAsRoomList" +"GET","/places/roomList/$count","keep",,"Get-MgPlaceCountAsRoomList","Get-MgPlaceCountAsRoomList" +"GET","/places/section","keep",,"Get-MgPlaceAsSection","Get-MgPlaceAsSection" +"GET","/places/section/$count","keep",,"Get-MgPlaceCountAsSection","Get-MgPlaceCountAsSection" +"GET","/places/workspace","keep",,"Get-MgPlaceAsWorkspace","Get-MgPlaceAsWorkspace" +"GET","/places/workspace/$count","keep",,"Get-MgPlaceCountAsWorkspace","Get-MgPlaceCountAsWorkspace" "GET","/planner","keep",,"Get-MgPlanner","Get-MgPlanner" "GET","/planner/buckets","keep",,"Get-MgPlannerBucket","Get-MgPlannerBucket" "GET","/planner/buckets/{param}","keep",,"Get-MgPlannerBucket","Get-MgPlannerBucket" @@ -4781,7 +5817,9 @@ "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/usersRegisteredByFeature(includedUserTypes='{includedUserTypes}',includedUserRoles='{includedUserRoles}')","suppress",,"Get-MgReportAuthenticationMethodUsersRegisteredByFeatureWithIncludedUserTypesWithIncludedUserRoles","no oracle row for GET /reports/authenticationMethods/usersRegisteredByFeature(includedUserTypes='{includedUserTypes}',includedUserRoles='{includedUserRoles}') and 'Get-MgReportAuthenticationMethodUsersRegisteredByFeatureWithIncludedUserTypesWithIncludedUserRoles' unshipped" "GET","/reports/authenticationMethods/usersRegisteredByMethod","suppress",,"Get-MgReportAuthenticationMethodUsersRegisteredByMethod","no oracle row for GET /reports/authenticationMethods/usersRegisteredByMethod and 'Get-MgReportAuthenticationMethodUsersRegisteredByMethod' unshipped" +"GET","/reports/authenticationMethods/usersRegisteredByMethod(includedUserTypes='{includedUserTypes}',includedUserRoles='{includedUserRoles}')","suppress",,"Get-MgReportAuthenticationMethodUsersRegisteredByMethodWithIncludedUserTypesWithIncludedUserRoles","no oracle row for GET /reports/authenticationMethods/usersRegisteredByMethod(includedUserTypes='{includedUserTypes}',includedUserRoles='{includedUserRoles}') and 'Get-MgReportAuthenticationMethodUsersRegisteredByMethodWithIncludedUserTypesWithIncludedUserRoles' 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" @@ -4790,11 +5828,106 @@ "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/getEmailActivityCounts(period='{period}')","rename","ReportEmailActivityCount","Get-MgReportGetEmailActivityCountsWithPeriod","Get-MgReportEmailActivityCount" +"GET","/reports/getEmailActivityUserCounts(period='{period}')","rename","ReportEmailActivityUserCount","Get-MgReportGetEmailActivityUserCountsWithPeriod","Get-MgReportEmailActivityUserCount" +"GET","/reports/getEmailActivityUserDetail(date={date})","rename","ReportEmailActivityUserDetail","Get-MgReportGetEmailActivityUserDetailWithDate","Get-MgReportEmailActivityUserDetail" +"GET","/reports/getEmailActivityUserDetail(period='{period}')","suppress",,"Get-MgReportGetEmailActivityUserDetailWithPeriod","no oracle row for GET /reports/getEmailActivityUserDetail(period='{period}') and 'Get-MgReportGetEmailActivityUserDetailWithPeriod' unshipped" +"GET","/reports/getEmailAppUsageAppsUserCounts(period='{period}')","rename","ReportEmailAppUsageAppUserCount","Get-MgReportGetEmailAppUsageAppsUserCountsWithPeriod","Get-MgReportEmailAppUsageAppUserCount" +"GET","/reports/getEmailAppUsageUserCounts(period='{period}')","rename","ReportEmailAppUsageUserCount","Get-MgReportGetEmailAppUsageUserCountsWithPeriod","Get-MgReportEmailAppUsageUserCount" +"GET","/reports/getEmailAppUsageUserDetail(date={date})","rename","ReportEmailAppUsageUserDetail","Get-MgReportGetEmailAppUsageUserDetailWithDate","Get-MgReportEmailAppUsageUserDetail" +"GET","/reports/getEmailAppUsageUserDetail(period='{period}')","suppress",,"Get-MgReportGetEmailAppUsageUserDetailWithPeriod","no oracle row for GET /reports/getEmailAppUsageUserDetail(period='{period}') and 'Get-MgReportGetEmailAppUsageUserDetailWithPeriod' unshipped" +"GET","/reports/getEmailAppUsageVersionsUserCounts(period='{period}')","rename","ReportEmailAppUsageVersionUserCount","Get-MgReportGetEmailAppUsageVersionsUserCountsWithPeriod","Get-MgReportEmailAppUsageVersionUserCount" +"GET","/reports/getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})","rename","ReportGroupArchivedPrintJob","Get-MgReportGetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTime","Get-MgReportGroupArchivedPrintJob" +"GET","/reports/getM365AppPlatformUserCounts(period='{period}')","rename","ReportM365AppPlatformUserCount","Get-MgReportGetM365AppPlatformUserCountsWithPeriod","Get-MgReportM365AppPlatformUserCount" +"GET","/reports/getM365AppUserCounts(period='{period}')","rename","ReportM365AppUserCount","Get-MgReportGetM365AppUserCountsWithPeriod","Get-MgReportM365AppUserCount" +"GET","/reports/getM365AppUserDetail(date={date})","rename","ReportM365AppUserDetail","Get-MgReportGetM365AppUserDetailWithDate","Get-MgReportM365AppUserDetail" +"GET","/reports/getM365AppUserDetail(period='{period}')","suppress",,"Get-MgReportGetM365AppUserDetailWithPeriod","no oracle row for GET /reports/getM365AppUserDetail(period='{period}') and 'Get-MgReportGetM365AppUserDetailWithPeriod' unshipped" +"GET","/reports/getMailboxUsageDetail(period='{period}')","rename","ReportMailboxUsageDetail","Get-MgReportGetMailboxUsageDetailWithPeriod","Get-MgReportMailboxUsageDetail" +"GET","/reports/getMailboxUsageMailboxCounts(period='{period}')","rename","ReportMailboxUsageMailboxCount","Get-MgReportGetMailboxUsageMailboxCountsWithPeriod","Get-MgReportMailboxUsageMailboxCount" +"GET","/reports/getMailboxUsageQuotaStatusMailboxCounts(period='{period}')","rename","ReportMailboxUsageQuotaStatusMailboxCount","Get-MgReportGetMailboxUsageQuotaStatusMailboxCountsWithPeriod","Get-MgReportMailboxUsageQuotaStatusMailboxCount" +"GET","/reports/getMailboxUsageStorage(period='{period}')","rename","ReportMailboxUsageStorage","Get-MgReportGetMailboxUsageStorageWithPeriod","Get-MgReportMailboxUsageStorage" "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/getOffice365ActiveUserCounts(period='{period}')","rename","ReportOffice365ActiveUserCount","Get-MgReportGetOffice365ActiveUserCountsWithPeriod","Get-MgReportOffice365ActiveUserCount" +"GET","/reports/getOffice365ActiveUserDetail(date={date})","rename","ReportOffice365ActiveUserDetail","Get-MgReportGetOffice365ActiveUserDetailWithDate","Get-MgReportOffice365ActiveUserDetail" +"GET","/reports/getOffice365ActiveUserDetail(period='{period}')","suppress",,"Get-MgReportGetOffice365ActiveUserDetailWithPeriod","no oracle row for GET /reports/getOffice365ActiveUserDetail(period='{period}') and 'Get-MgReportGetOffice365ActiveUserDetailWithPeriod' unshipped" +"GET","/reports/getOffice365GroupsActivityCounts(period='{period}')","rename","ReportOffice365GroupActivityCount","Get-MgReportGetOffice365GroupsActivityCountsWithPeriod","Get-MgReportOffice365GroupActivityCount" +"GET","/reports/getOffice365GroupsActivityDetail(date={date})","rename","ReportOffice365GroupActivityDetail","Get-MgReportGetOffice365GroupsActivityDetailWithDate","Get-MgReportOffice365GroupActivityDetail" +"GET","/reports/getOffice365GroupsActivityDetail(period='{period}')","suppress",,"Get-MgReportGetOffice365GroupsActivityDetailWithPeriod","no oracle row for GET /reports/getOffice365GroupsActivityDetail(period='{period}') and 'Get-MgReportGetOffice365GroupsActivityDetailWithPeriod' unshipped" +"GET","/reports/getOffice365GroupsActivityFileCounts(period='{period}')","rename","ReportOffice365GroupActivityFileCount","Get-MgReportGetOffice365GroupsActivityFileCountsWithPeriod","Get-MgReportOffice365GroupActivityFileCount" +"GET","/reports/getOffice365GroupsActivityGroupCounts(period='{period}')","rename","ReportOffice365GroupActivityGroupCount","Get-MgReportGetOffice365GroupsActivityGroupCountsWithPeriod","Get-MgReportOffice365GroupActivityGroupCount" +"GET","/reports/getOffice365GroupsActivityStorage(period='{period}')","rename","ReportOffice365GroupActivityStorage","Get-MgReportGetOffice365GroupsActivityStorageWithPeriod","Get-MgReportOffice365GroupActivityStorage" +"GET","/reports/getOffice365ServicesUserCounts(period='{period}')","rename","ReportOffice365ServiceUserCount","Get-MgReportGetOffice365ServicesUserCountsWithPeriod","Get-MgReportOffice365ServiceUserCount" +"GET","/reports/getOneDriveActivityFileCounts(period='{period}')","rename","ReportOneDriveActivityFileCount","Get-MgReportGetOneDriveActivityFileCountsWithPeriod","Get-MgReportOneDriveActivityFileCount" +"GET","/reports/getOneDriveActivityUserCounts(period='{period}')","rename","ReportOneDriveActivityUserCount","Get-MgReportGetOneDriveActivityUserCountsWithPeriod","Get-MgReportOneDriveActivityUserCount" +"GET","/reports/getOneDriveActivityUserDetail(date={date})","rename","ReportOneDriveActivityUserDetail","Get-MgReportGetOneDriveActivityUserDetailWithDate","Get-MgReportOneDriveActivityUserDetail" +"GET","/reports/getOneDriveActivityUserDetail(period='{period}')","suppress",,"Get-MgReportGetOneDriveActivityUserDetailWithPeriod","no oracle row for GET /reports/getOneDriveActivityUserDetail(period='{period}') and 'Get-MgReportGetOneDriveActivityUserDetailWithPeriod' unshipped" +"GET","/reports/getOneDriveUsageAccountCounts(period='{period}')","rename","ReportOneDriveUsageAccountCount","Get-MgReportGetOneDriveUsageAccountCountsWithPeriod","Get-MgReportOneDriveUsageAccountCount" +"GET","/reports/getOneDriveUsageAccountDetail(date={date})","rename","ReportOneDriveUsageAccountDetail","Get-MgReportGetOneDriveUsageAccountDetailWithDate","Get-MgReportOneDriveUsageAccountDetail" +"GET","/reports/getOneDriveUsageAccountDetail(period='{period}')","suppress",,"Get-MgReportGetOneDriveUsageAccountDetailWithPeriod","no oracle row for GET /reports/getOneDriveUsageAccountDetail(period='{period}') and 'Get-MgReportGetOneDriveUsageAccountDetailWithPeriod' unshipped" +"GET","/reports/getOneDriveUsageFileCounts(period='{period}')","rename","ReportOneDriveUsageFileCount","Get-MgReportGetOneDriveUsageFileCountsWithPeriod","Get-MgReportOneDriveUsageFileCount" +"GET","/reports/getOneDriveUsageStorage(period='{period}')","rename","ReportOneDriveUsageStorage","Get-MgReportGetOneDriveUsageStorageWithPeriod","Get-MgReportOneDriveUsageStorage" +"GET","/reports/getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})","rename","ReportPrinterArchivedPrintJob","Get-MgReportGetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTime","Get-MgReportPrinterArchivedPrintJob" +"GET","/reports/getRelyingPartyDetailedSummary(period='{period}')","rename","ReportRelyingPartyDetailedSummary","Get-MgReportGetRelyingPartyDetailedSummaryWithPeriod","Get-MgReportRelyingPartyDetailedSummary" +"GET","/reports/getSharePointActivityFileCounts(period='{period}')","rename","ReportSharePointActivityFileCount","Get-MgReportGetSharePointActivityFileCountsWithPeriod","Get-MgReportSharePointActivityFileCount" +"GET","/reports/getSharePointActivityPages(period='{period}')","rename","ReportSharePointActivityPage","Get-MgReportGetSharePointActivityPagesWithPeriod","Get-MgReportSharePointActivityPage" +"GET","/reports/getSharePointActivityUserCounts(period='{period}')","rename","ReportSharePointActivityUserCount","Get-MgReportGetSharePointActivityUserCountsWithPeriod","Get-MgReportSharePointActivityUserCount" +"GET","/reports/getSharePointActivityUserDetail(date={date})","rename","ReportSharePointActivityUserDetail","Get-MgReportGetSharePointActivityUserDetailWithDate","Get-MgReportSharePointActivityUserDetail" +"GET","/reports/getSharePointActivityUserDetail(period='{period}')","suppress",,"Get-MgReportGetSharePointActivityUserDetailWithPeriod","no oracle row for GET /reports/getSharePointActivityUserDetail(period='{period}') and 'Get-MgReportGetSharePointActivityUserDetailWithPeriod' unshipped" +"GET","/reports/getSharePointSiteUsageDetail(date={date})","rename","ReportSharePointSiteUsageDetail","Get-MgReportGetSharePointSiteUsageDetailWithDate","Get-MgReportSharePointSiteUsageDetail" +"GET","/reports/getSharePointSiteUsageDetail(period='{period}')","suppress",,"Get-MgReportGetSharePointSiteUsageDetailWithPeriod","no oracle row for GET /reports/getSharePointSiteUsageDetail(period='{period}') and 'Get-MgReportGetSharePointSiteUsageDetailWithPeriod' unshipped" +"GET","/reports/getSharePointSiteUsageFileCounts(period='{period}')","rename","ReportSharePointSiteUsageFileCount","Get-MgReportGetSharePointSiteUsageFileCountsWithPeriod","Get-MgReportSharePointSiteUsageFileCount" +"GET","/reports/getSharePointSiteUsagePages(period='{period}')","rename","ReportSharePointSiteUsagePage","Get-MgReportGetSharePointSiteUsagePagesWithPeriod","Get-MgReportSharePointSiteUsagePage" +"GET","/reports/getSharePointSiteUsageSiteCounts(period='{period}')","rename","ReportSharePointSiteUsageSiteCount","Get-MgReportGetSharePointSiteUsageSiteCountsWithPeriod","Get-MgReportSharePointSiteUsageSiteCount" +"GET","/reports/getSharePointSiteUsageStorage(period='{period}')","rename","ReportSharePointSiteUsageStorage","Get-MgReportGetSharePointSiteUsageStorageWithPeriod","Get-MgReportSharePointSiteUsageStorage" +"GET","/reports/getSkypeForBusinessActivityCounts(period='{period}')","rename","ReportSkypeForBusinessActivityCount","Get-MgReportGetSkypeForBusinessActivityCountsWithPeriod","Get-MgReportSkypeForBusinessActivityCount" +"GET","/reports/getSkypeForBusinessActivityUserCounts(period='{period}')","rename","ReportSkypeForBusinessActivityUserCount","Get-MgReportGetSkypeForBusinessActivityUserCountsWithPeriod","Get-MgReportSkypeForBusinessActivityUserCount" +"GET","/reports/getSkypeForBusinessActivityUserDetail(date={date})","rename","ReportSkypeForBusinessActivityUserDetail","Get-MgReportGetSkypeForBusinessActivityUserDetailWithDate","Get-MgReportSkypeForBusinessActivityUserDetail" +"GET","/reports/getSkypeForBusinessActivityUserDetail(period='{period}')","suppress",,"Get-MgReportGetSkypeForBusinessActivityUserDetailWithPeriod","no oracle row for GET /reports/getSkypeForBusinessActivityUserDetail(period='{period}') and 'Get-MgReportGetSkypeForBusinessActivityUserDetailWithPeriod' unshipped" +"GET","/reports/getSkypeForBusinessDeviceUsageDistributionUserCounts(period='{period}')","rename","ReportSkypeForBusinessDeviceUsageDistributionUserCount","Get-MgReportGetSkypeForBusinessDeviceUsageDistributionUserCountsWithPeriod","Get-MgReportSkypeForBusinessDeviceUsageDistributionUserCount" +"GET","/reports/getSkypeForBusinessDeviceUsageUserCounts(period='{period}')","rename","ReportSkypeForBusinessDeviceUsageUserCount","Get-MgReportGetSkypeForBusinessDeviceUsageUserCountsWithPeriod","Get-MgReportSkypeForBusinessDeviceUsageUserCount" +"GET","/reports/getSkypeForBusinessDeviceUsageUserDetail(date={date})","rename","ReportSkypeForBusinessDeviceUsageUserDetail","Get-MgReportGetSkypeForBusinessDeviceUsageUserDetailWithDate","Get-MgReportSkypeForBusinessDeviceUsageUserDetail" +"GET","/reports/getSkypeForBusinessDeviceUsageUserDetail(period='{period}')","suppress",,"Get-MgReportGetSkypeForBusinessDeviceUsageUserDetailWithPeriod","no oracle row for GET /reports/getSkypeForBusinessDeviceUsageUserDetail(period='{period}') and 'Get-MgReportGetSkypeForBusinessDeviceUsageUserDetailWithPeriod' unshipped" +"GET","/reports/getSkypeForBusinessOrganizerActivityCounts(period='{period}')","rename","ReportSkypeForBusinessOrganizerActivityCount","Get-MgReportGetSkypeForBusinessOrganizerActivityCountsWithPeriod","Get-MgReportSkypeForBusinessOrganizerActivityCount" +"GET","/reports/getSkypeForBusinessOrganizerActivityMinuteCounts(period='{period}')","rename","ReportSkypeForBusinessOrganizerActivityMinuteCount","Get-MgReportGetSkypeForBusinessOrganizerActivityMinuteCountsWithPeriod","Get-MgReportSkypeForBusinessOrganizerActivityMinuteCount" +"GET","/reports/getSkypeForBusinessOrganizerActivityUserCounts(period='{period}')","rename","ReportSkypeForBusinessOrganizerActivityUserCount","Get-MgReportGetSkypeForBusinessOrganizerActivityUserCountsWithPeriod","Get-MgReportSkypeForBusinessOrganizerActivityUserCount" +"GET","/reports/getSkypeForBusinessParticipantActivityCounts(period='{period}')","rename","ReportSkypeForBusinessParticipantActivityCount","Get-MgReportGetSkypeForBusinessParticipantActivityCountsWithPeriod","Get-MgReportSkypeForBusinessParticipantActivityCount" +"GET","/reports/getSkypeForBusinessParticipantActivityMinuteCounts(period='{period}')","rename","ReportSkypeForBusinessParticipantActivityMinuteCount","Get-MgReportGetSkypeForBusinessParticipantActivityMinuteCountsWithPeriod","Get-MgReportSkypeForBusinessParticipantActivityMinuteCount" +"GET","/reports/getSkypeForBusinessParticipantActivityUserCounts(period='{period}')","rename","ReportSkypeForBusinessParticipantActivityUserCount","Get-MgReportGetSkypeForBusinessParticipantActivityUserCountsWithPeriod","Get-MgReportSkypeForBusinessParticipantActivityUserCount" +"GET","/reports/getSkypeForBusinessPeerToPeerActivityCounts(period='{period}')","rename","ReportSkypeForBusinessPeerToPeerActivityCount","Get-MgReportGetSkypeForBusinessPeerToPeerActivityCountsWithPeriod","Get-MgReportSkypeForBusinessPeerToPeerActivityCount" +"GET","/reports/getSkypeForBusinessPeerToPeerActivityMinuteCounts(period='{period}')","rename","ReportSkypeForBusinessPeerToPeerActivityMinuteCount","Get-MgReportGetSkypeForBusinessPeerToPeerActivityMinuteCountsWithPeriod","Get-MgReportSkypeForBusinessPeerToPeerActivityMinuteCount" +"GET","/reports/getSkypeForBusinessPeerToPeerActivityUserCounts(period='{period}')","rename","ReportSkypeForBusinessPeerToPeerActivityUserCount","Get-MgReportGetSkypeForBusinessPeerToPeerActivityUserCountsWithPeriod","Get-MgReportSkypeForBusinessPeerToPeerActivityUserCount" +"GET","/reports/getTeamsDeviceUsageDistributionUserCounts(period='{period}')","rename","ReportTeamDeviceUsageDistributionUserCount","Get-MgReportGetTeamsDeviceUsageDistributionUserCountsWithPeriod","Get-MgReportTeamDeviceUsageDistributionUserCount" +"GET","/reports/getTeamsDeviceUsageUserCounts(period='{period}')","rename","ReportTeamDeviceUsageUserCount","Get-MgReportGetTeamsDeviceUsageUserCountsWithPeriod","Get-MgReportTeamDeviceUsageUserCount" +"GET","/reports/getTeamsDeviceUsageUserDetail(date={date})","rename","ReportTeamDeviceUsageUserDetail","Get-MgReportGetTeamsDeviceUsageUserDetailWithDate","Get-MgReportTeamDeviceUsageUserDetail" +"GET","/reports/getTeamsDeviceUsageUserDetail(period='{period}')","suppress",,"Get-MgReportGetTeamsDeviceUsageUserDetailWithPeriod","no oracle row for GET /reports/getTeamsDeviceUsageUserDetail(period='{period}') and 'Get-MgReportGetTeamsDeviceUsageUserDetailWithPeriod' unshipped" +"GET","/reports/getTeamsTeamActivityCounts(period='{period}')","rename","ReportTeamActivityCount","Get-MgReportGetTeamsTeamActivityCountsWithPeriod","Get-MgReportTeamActivityCount" +"GET","/reports/getTeamsTeamActivityDetail(date={date})","rename","ReportTeamActivityDetail","Get-MgReportGetTeamsTeamActivityDetailWithDate","Get-MgReportTeamActivityDetail" +"GET","/reports/getTeamsTeamActivityDetail(period='{period}')","suppress",,"Get-MgReportGetTeamsTeamActivityDetailWithPeriod","no oracle row for GET /reports/getTeamsTeamActivityDetail(period='{period}') and 'Get-MgReportGetTeamsTeamActivityDetailWithPeriod' unshipped" +"GET","/reports/getTeamsTeamActivityDistributionCounts(period='{period}')","rename","ReportTeamActivityDistributionCount","Get-MgReportGetTeamsTeamActivityDistributionCountsWithPeriod","Get-MgReportTeamActivityDistributionCount" +"GET","/reports/getTeamsTeamCounts(period='{period}')","rename","ReportTeamCount","Get-MgReportGetTeamsTeamCountsWithPeriod","Get-MgReportTeamCount" +"GET","/reports/getTeamsUserActivityCounts(period='{period}')","rename","ReportTeamUserActivityCount","Get-MgReportGetTeamsUserActivityCountsWithPeriod","Get-MgReportTeamUserActivityCount" +"GET","/reports/getTeamsUserActivityUserCounts(period='{period}')","rename","ReportTeamUserActivityUserCount","Get-MgReportGetTeamsUserActivityUserCountsWithPeriod","Get-MgReportTeamUserActivityUserCount" +"GET","/reports/getTeamsUserActivityUserDetail(date={date})","rename","ReportTeamUserActivityUserDetail","Get-MgReportGetTeamsUserActivityUserDetailWithDate","Get-MgReportTeamUserActivityUserDetail" +"GET","/reports/getTeamsUserActivityUserDetail(period='{period}')","suppress",,"Get-MgReportGetTeamsUserActivityUserDetailWithPeriod","no oracle row for GET /reports/getTeamsUserActivityUserDetail(period='{period}') and 'Get-MgReportGetTeamsUserActivityUserDetailWithPeriod' unshipped" +"GET","/reports/getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})","rename","ReportUserArchivedPrintJob","Get-MgReportGetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTime","Get-MgReportUserArchivedPrintJob" +"GET","/reports/getYammerActivityCounts(period='{period}')","rename","ReportYammerActivityCount","Get-MgReportGetYammerActivityCountsWithPeriod","Get-MgReportYammerActivityCount" +"GET","/reports/getYammerActivityUserCounts(period='{period}')","rename","ReportYammerActivityUserCount","Get-MgReportGetYammerActivityUserCountsWithPeriod","Get-MgReportYammerActivityUserCount" +"GET","/reports/getYammerActivityUserDetail(date={date})","rename","ReportYammerActivityUserDetail","Get-MgReportGetYammerActivityUserDetailWithDate","Get-MgReportYammerActivityUserDetail" +"GET","/reports/getYammerActivityUserDetail(period='{period}')","suppress",,"Get-MgReportGetYammerActivityUserDetailWithPeriod","no oracle row for GET /reports/getYammerActivityUserDetail(period='{period}') and 'Get-MgReportGetYammerActivityUserDetailWithPeriod' unshipped" +"GET","/reports/getYammerDeviceUsageDistributionUserCounts(period='{period}')","rename","ReportYammerDeviceUsageDistributionUserCount","Get-MgReportGetYammerDeviceUsageDistributionUserCountsWithPeriod","Get-MgReportYammerDeviceUsageDistributionUserCount" +"GET","/reports/getYammerDeviceUsageUserCounts(period='{period}')","rename","ReportYammerDeviceUsageUserCount","Get-MgReportGetYammerDeviceUsageUserCountsWithPeriod","Get-MgReportYammerDeviceUsageUserCount" +"GET","/reports/getYammerDeviceUsageUserDetail(date={date})","rename","ReportYammerDeviceUsageUserDetail","Get-MgReportGetYammerDeviceUsageUserDetailWithDate","Get-MgReportYammerDeviceUsageUserDetail" +"GET","/reports/getYammerDeviceUsageUserDetail(period='{period}')","suppress",,"Get-MgReportGetYammerDeviceUsageUserDetailWithPeriod","no oracle row for GET /reports/getYammerDeviceUsageUserDetail(period='{period}') and 'Get-MgReportGetYammerDeviceUsageUserDetailWithPeriod' unshipped" +"GET","/reports/getYammerGroupsActivityCounts(period='{period}')","rename","ReportYammerGroupActivityCount","Get-MgReportGetYammerGroupsActivityCountsWithPeriod","Get-MgReportYammerGroupActivityCount" +"GET","/reports/getYammerGroupsActivityDetail(date={date})","rename","ReportYammerGroupActivityDetail","Get-MgReportGetYammerGroupsActivityDetailWithDate","Get-MgReportYammerGroupActivityDetail" +"GET","/reports/getYammerGroupsActivityDetail(period='{period}')","suppress",,"Get-MgReportGetYammerGroupsActivityDetailWithPeriod","no oracle row for GET /reports/getYammerGroupsActivityDetail(period='{period}') and 'Get-MgReportGetYammerGroupsActivityDetailWithPeriod' unshipped" +"GET","/reports/getYammerGroupsActivityGroupCounts(period='{period}')","rename","ReportYammerGroupActivityGroupCount","Get-MgReportGetYammerGroupsActivityGroupCountsWithPeriod","Get-MgReportYammerGroupActivityGroupCount" "GET","/reports/managedDeviceEnrollmentFailureDetails","rename","ReportManagedDeviceEnrollmentFailureDetail","Get-MgReportManagedDeviceEnrollmentFailureDetails","Get-MgReportManagedDeviceEnrollmentFailureDetail" +"GET","/reports/managedDeviceEnrollmentFailureDetails(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')","suppress",,"Get-MgReportManagedDeviceEnrollmentFailureDetailsWithSkipWithTopWithFilterWithSkipToken","no oracle row for GET /reports/managedDeviceEnrollmentFailureDetails(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}') and 'Get-MgReportManagedDeviceEnrollmentFailureDetailsWithSkipWithTopWithFilterWithSkipToken' unshipped" "GET","/reports/managedDeviceEnrollmentTopFailures","rename","ReportManagedDeviceEnrollmentTopFailure","Get-MgReportManagedDeviceEnrollmentTopFailures","Get-MgReportManagedDeviceEnrollmentTopFailure" +"GET","/reports/managedDeviceEnrollmentTopFailures(period='{period}')","suppress",,"Get-MgReportManagedDeviceEnrollmentTopFailuresWithPeriod","no oracle row for GET /reports/managedDeviceEnrollmentTopFailures(period='{period}') and 'Get-MgReportManagedDeviceEnrollmentTopFailuresWithPeriod' unshipped" "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" @@ -4842,6 +5975,7 @@ "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/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')","rename","FilterRoleManagementDirectoryRoleAssignmentScheduleInstanceByCurrentUser","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceFilterByCurrentUserWithOn","Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleInstanceByCurrentUser" "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" @@ -4851,6 +5985,7 @@ "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/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')","rename","FilterRoleManagementDirectoryRoleAssignmentScheduleRequestByCurrentUser","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestFilterByCurrentUserWithOn","Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleRequestByCurrentUser" "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" @@ -4859,6 +5994,7 @@ "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/roleAssignmentSchedules/filterByCurrentUser(on='{on}')","rename","FilterRoleManagementDirectoryRoleAssignmentScheduleByCurrentUser","Get-MgRoleManagementDirectoryRoleAssignmentScheduleFilterByCurrentUserWithOn","Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleByCurrentUser" "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" @@ -4872,6 +6008,7 @@ "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/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')","rename","FilterRoleManagementDirectoryRoleEligibilityScheduleInstanceByCurrentUser","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceFilterByCurrentUserWithOn","Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleInstanceByCurrentUser" "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" @@ -4880,6 +6017,7 @@ "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/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')","rename","FilterRoleManagementDirectoryRoleEligibilityScheduleRequestByCurrentUser","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestFilterByCurrentUserWithOn","Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleRequestByCurrentUser" "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" @@ -4887,6 +6025,7 @@ "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/directory/roleEligibilitySchedules/filterByCurrentUser(on='{on}')","rename","FilterRoleManagementDirectoryRoleEligibilityScheduleByCurrentUser","Get-MgRoleManagementDirectoryRoleEligibilityScheduleFilterByCurrentUserWithOn","Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleByCurrentUser" "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" @@ -4909,6 +6048,7 @@ "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/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')","rename","FilterRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceByCurrentUser","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceFilterByCurrentUserWithOn","Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceByCurrentUser" "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" @@ -4918,6 +6058,7 @@ "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/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')","rename","FilterRoleManagementEntitlementManagementRoleAssignmentScheduleRequestByCurrentUser","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestFilterByCurrentUserWithOn","Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleRequestByCurrentUser" "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" @@ -4926,6 +6067,7 @@ "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/roleAssignmentSchedules/filterByCurrentUser(on='{on}')","rename","FilterRoleManagementEntitlementManagementRoleAssignmentScheduleByCurrentUser","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleFilterByCurrentUserWithOn","Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleByCurrentUser" "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" @@ -4939,6 +6081,7 @@ "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/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')","rename","FilterRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceByCurrentUser","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceFilterByCurrentUserWithOn","Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceByCurrentUser" "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" @@ -4947,6 +6090,7 @@ "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/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')","rename","FilterRoleManagementEntitlementManagementRoleEligibilityScheduleRequestByCurrentUser","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestFilterByCurrentUserWithOn","Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleRequestByCurrentUser" "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" @@ -4954,6 +6098,7 @@ "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","/roleManagement/entitlementManagement/roleEligibilitySchedules/filterByCurrentUser(on='{on}')","rename","FilterRoleManagementEntitlementManagementRoleEligibilityScheduleByCurrentUser","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleFilterByCurrentUserWithOn","Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleByCurrentUser" "GET","/schemaExtensions","keep",,"Get-MgSchemaExtension","Get-MgSchemaExtension" "GET","/schemaExtensions/{param}","keep",,"Get-MgSchemaExtension","Get-MgSchemaExtension" "GET","/schemaExtensions/$count","keep",,"Get-MgSchemaExtensionCount","Get-MgSchemaExtensionCount" @@ -4969,6 +6114,10 @@ "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_v2","keep",,"Get-MgSecurityAlertV2","Get-MgSecurityAlertV2" +"GET","/security/alerts_v2/{param}","keep",,"Get-MgSecurityAlertV2","Get-MgSecurityAlertV2" +"GET","/security/alerts_v2/{param}/comments/$count","rename","CommentSecurityAlert","Get-MgSecurityAlertV2CommentCount","Invoke-MgCommentSecurityAlert" +"GET","/security/alerts_v2/$count","keep",,"Get-MgSecurityAlertV2Count","Get-MgSecurityAlertV2Count" "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" @@ -5073,6 +6222,7 @@ "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/{param}/tags/asHierarchy","rename","AsSecurityCaseEdiscoveryCaseTagHierarchy","Get-MgSecurityCaseEdiscoveryCaseTagAsHierarchy","Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy" "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" @@ -5085,7 +6235,9 @@ "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/{param}/sublabels/computeInheritance(labelIds={labelIds},locale='{locale}',contentFormats={contentFormats})","rename","ComputeSecurityDataSecurityAndGovernanceSensitivityLabelSublabelInheritance","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelComputeInheritanceWithLabelIdsWithLocaleWithContentFormats","Invoke-MgComputeSecurityDataSecurityAndGovernanceSensitivityLabelSublabelInheritance" "GET","/security/dataSecurityAndGovernance/sensitivityLabels/$count","keep",,"Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelCount","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelCount" +"GET","/security/dataSecurityAndGovernance/sensitivityLabels/computeInheritance(labelIds={labelIds},locale='{locale}',contentFormats={contentFormats})","rename","ComputeSecurityDataSecurityAndGovernanceSensitivityLabelInheritance","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelComputeInheritanceWithLabelIdsWithLocaleWithContentFormats","Invoke-MgComputeSecurityDataSecurityAndGovernanceSensitivityLabelInheritance" "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" @@ -5103,6 +6255,8 @@ "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/sensors/getDeploymentAccessKey","rename","SecurityIdentitySensorDeploymentAccessKey","Get-MgSecurityIdentitySensorGetDeploymentAccessKey","Get-MgSecurityIdentitySensorDeploymentAccessKey" +"GET","/security/identities/sensors/getDeploymentPackageUri","rename","SecurityIdentitySensorDeploymentPackageUri","Get-MgSecurityIdentitySensorGetDeploymentPackageUri","Get-MgSecurityIdentitySensorDeploymentPackageUri" "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" @@ -5295,7 +6449,10 @@ "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/{param}/servicePrincipal","keep",,"Get-MgServicePrincipalCreatedObjectAsServicePrincipal","Get-MgServicePrincipalCreatedObjectAsServicePrincipal" "GET","/servicePrincipals/{param}/createdObjects/$count","keep",,"Get-MgServicePrincipalCreatedObjectCount","Get-MgServicePrincipalCreatedObjectCount" +"GET","/servicePrincipals/{param}/createdObjects/servicePrincipal","keep",,"Get-MgServicePrincipalCreatedObjectAsServicePrincipal","Get-MgServicePrincipalCreatedObjectAsServicePrincipal" +"GET","/servicePrincipals/{param}/createdObjects/servicePrincipal/$count","keep",,"Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal","Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal" "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" @@ -5310,16 +6467,52 @@ "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/{param}/administrativeUnit","keep",,"Get-MgServicePrincipalMemberOfAsAdministrativeUnit","Get-MgServicePrincipalMemberOfAsAdministrativeUnit" +"GET","/servicePrincipals/{param}/memberOf/{param}/directoryRole","keep",,"Get-MgServicePrincipalMemberOfAsDirectoryRole","Get-MgServicePrincipalMemberOfAsDirectoryRole" +"GET","/servicePrincipals/{param}/memberOf/{param}/group","keep",,"Get-MgServicePrincipalMemberOfAsGroup","Get-MgServicePrincipalMemberOfAsGroup" "GET","/servicePrincipals/{param}/memberOf/$count","keep",,"Get-MgServicePrincipalMemberOfCount","Get-MgServicePrincipalMemberOfCount" +"GET","/servicePrincipals/{param}/memberOf/administrativeUnit","keep",,"Get-MgServicePrincipalMemberOfAsAdministrativeUnit","Get-MgServicePrincipalMemberOfAsAdministrativeUnit" +"GET","/servicePrincipals/{param}/memberOf/administrativeUnit/$count","keep",,"Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit","Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit" +"GET","/servicePrincipals/{param}/memberOf/directoryRole","keep",,"Get-MgServicePrincipalMemberOfAsDirectoryRole","Get-MgServicePrincipalMemberOfAsDirectoryRole" +"GET","/servicePrincipals/{param}/memberOf/directoryRole/$count","keep",,"Get-MgServicePrincipalMemberOfCountAsDirectoryRole","Get-MgServicePrincipalMemberOfCountAsDirectoryRole" +"GET","/servicePrincipals/{param}/memberOf/group","keep",,"Get-MgServicePrincipalMemberOfAsGroup","Get-MgServicePrincipalMemberOfAsGroup" +"GET","/servicePrincipals/{param}/memberOf/group/$count","keep",,"Get-MgServicePrincipalMemberOfCountAsGroup","Get-MgServicePrincipalMemberOfCountAsGroup" "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/{param}/application","keep",,"Get-MgServicePrincipalOwnedObjectAsApplication","Get-MgServicePrincipalOwnedObjectAsApplication" +"GET","/servicePrincipals/{param}/ownedObjects/{param}/appRoleAssignment","keep",,"Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment","Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment" +"GET","/servicePrincipals/{param}/ownedObjects/{param}/endpoint","keep",,"Get-MgServicePrincipalOwnedObjectAsEndpoint","Get-MgServicePrincipalOwnedObjectAsEndpoint" +"GET","/servicePrincipals/{param}/ownedObjects/{param}/group","keep",,"Get-MgServicePrincipalOwnedObjectAsGroup","Get-MgServicePrincipalOwnedObjectAsGroup" +"GET","/servicePrincipals/{param}/ownedObjects/{param}/servicePrincipal","keep",,"Get-MgServicePrincipalOwnedObjectAsServicePrincipal","Get-MgServicePrincipalOwnedObjectAsServicePrincipal" "GET","/servicePrincipals/{param}/ownedObjects/$count","keep",,"Get-MgServicePrincipalOwnedObjectCount","Get-MgServicePrincipalOwnedObjectCount" +"GET","/servicePrincipals/{param}/ownedObjects/application","keep",,"Get-MgServicePrincipalOwnedObjectAsApplication","Get-MgServicePrincipalOwnedObjectAsApplication" +"GET","/servicePrincipals/{param}/ownedObjects/application/$count","keep",,"Get-MgServicePrincipalOwnedObjectCountAsApplication","Get-MgServicePrincipalOwnedObjectCountAsApplication" +"GET","/servicePrincipals/{param}/ownedObjects/appRoleAssignment","keep",,"Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment","Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment" +"GET","/servicePrincipals/{param}/ownedObjects/appRoleAssignment/$count","keep",,"Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment","Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment" +"GET","/servicePrincipals/{param}/ownedObjects/endpoint","keep",,"Get-MgServicePrincipalOwnedObjectAsEndpoint","Get-MgServicePrincipalOwnedObjectAsEndpoint" +"GET","/servicePrincipals/{param}/ownedObjects/endpoint/$count","keep",,"Get-MgServicePrincipalOwnedObjectCountAsEndpoint","Get-MgServicePrincipalOwnedObjectCountAsEndpoint" +"GET","/servicePrincipals/{param}/ownedObjects/group","keep",,"Get-MgServicePrincipalOwnedObjectAsGroup","Get-MgServicePrincipalOwnedObjectAsGroup" +"GET","/servicePrincipals/{param}/ownedObjects/group/$count","keep",,"Get-MgServicePrincipalOwnedObjectCountAsGroup","Get-MgServicePrincipalOwnedObjectCountAsGroup" +"GET","/servicePrincipals/{param}/ownedObjects/servicePrincipal","keep",,"Get-MgServicePrincipalOwnedObjectAsServicePrincipal","Get-MgServicePrincipalOwnedObjectAsServicePrincipal" +"GET","/servicePrincipals/{param}/ownedObjects/servicePrincipal/$count","keep",,"Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal","Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal" "GET","/servicePrincipals/{param}/owners","keep",,"Get-MgServicePrincipalOwner","Get-MgServicePrincipalOwner" +"GET","/servicePrincipals/{param}/owners/{param}/appRoleAssignment","keep",,"Get-MgServicePrincipalOwnerAsAppRoleAssignment","Get-MgServicePrincipalOwnerAsAppRoleAssignment" +"GET","/servicePrincipals/{param}/owners/{param}/endpoint","keep",,"Get-MgServicePrincipalOwnerAsEndpoint","Get-MgServicePrincipalOwnerAsEndpoint" +"GET","/servicePrincipals/{param}/owners/{param}/servicePrincipal","keep",,"Get-MgServicePrincipalOwnerAsServicePrincipal","Get-MgServicePrincipalOwnerAsServicePrincipal" +"GET","/servicePrincipals/{param}/owners/{param}/user","keep",,"Get-MgServicePrincipalOwnerAsUser","Get-MgServicePrincipalOwnerAsUser" "GET","/servicePrincipals/{param}/owners/$count","keep",,"Get-MgServicePrincipalOwnerCount","Get-MgServicePrincipalOwnerCount" "GET","/servicePrincipals/{param}/owners/$ref","keep",,"Get-MgServicePrincipalOwnerByRef","Get-MgServicePrincipalOwnerByRef" +"GET","/servicePrincipals/{param}/owners/appRoleAssignment","keep",,"Get-MgServicePrincipalOwnerAsAppRoleAssignment","Get-MgServicePrincipalOwnerAsAppRoleAssignment" +"GET","/servicePrincipals/{param}/owners/appRoleAssignment/$count","keep",,"Get-MgServicePrincipalOwnerCountAsAppRoleAssignment","Get-MgServicePrincipalOwnerCountAsAppRoleAssignment" +"GET","/servicePrincipals/{param}/owners/endpoint","keep",,"Get-MgServicePrincipalOwnerAsEndpoint","Get-MgServicePrincipalOwnerAsEndpoint" +"GET","/servicePrincipals/{param}/owners/endpoint/$count","keep",,"Get-MgServicePrincipalOwnerCountAsEndpoint","Get-MgServicePrincipalOwnerCountAsEndpoint" +"GET","/servicePrincipals/{param}/owners/servicePrincipal","keep",,"Get-MgServicePrincipalOwnerAsServicePrincipal","Get-MgServicePrincipalOwnerAsServicePrincipal" +"GET","/servicePrincipals/{param}/owners/servicePrincipal/$count","keep",,"Get-MgServicePrincipalOwnerCountAsServicePrincipal","Get-MgServicePrincipalOwnerCountAsServicePrincipal" +"GET","/servicePrincipals/{param}/owners/user","keep",,"Get-MgServicePrincipalOwnerAsUser","Get-MgServicePrincipalOwnerAsUser" +"GET","/servicePrincipals/{param}/owners/user/$count","keep",,"Get-MgServicePrincipalOwnerCountAsUser","Get-MgServicePrincipalOwnerCountAsUser" "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" @@ -5357,7 +6550,16 @@ "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/{param}/administrativeUnit","keep",,"Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit","Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit" +"GET","/servicePrincipals/{param}/transitiveMemberOf/{param}/directoryRole","keep",,"Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole","Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole" +"GET","/servicePrincipals/{param}/transitiveMemberOf/{param}/group","keep",,"Get-MgServicePrincipalTransitiveMemberOfAsGroup","Get-MgServicePrincipalTransitiveMemberOfAsGroup" "GET","/servicePrincipals/{param}/transitiveMemberOf/$count","keep",,"Get-MgServicePrincipalTransitiveMemberOfCount","Get-MgServicePrincipalTransitiveMemberOfCount" +"GET","/servicePrincipals/{param}/transitiveMemberOf/administrativeUnit","keep",,"Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit","Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit" +"GET","/servicePrincipals/{param}/transitiveMemberOf/administrativeUnit/$count","keep",,"Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit","Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit" +"GET","/servicePrincipals/{param}/transitiveMemberOf/directoryRole","keep",,"Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole","Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole" +"GET","/servicePrincipals/{param}/transitiveMemberOf/directoryRole/$count","keep",,"Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole","Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole" +"GET","/servicePrincipals/{param}/transitiveMemberOf/group","keep",,"Get-MgServicePrincipalTransitiveMemberOfAsGroup","Get-MgServicePrincipalTransitiveMemberOfAsGroup" +"GET","/servicePrincipals/{param}/transitiveMemberOf/group/$count","keep",,"Get-MgServicePrincipalTransitiveMemberOfCountAsGroup","Get-MgServicePrincipalTransitiveMemberOfCountAsGroup" "GET","/servicePrincipals/$count","keep",,"Get-MgServicePrincipalCount","Get-MgServicePrincipalCount" "GET","/servicePrincipals/delta","keep",,"Get-MgServicePrincipalDelta","Get-MgServicePrincipalDelta" "GET","/shares","keep",,"Get-MgShare","Get-MgShareSharedDriveItemSharedDriveItem" @@ -5367,8 +6569,10 @@ "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}/driveItem/content","keep",,"Get-MgShareDriveItemContent","Get-MgShareDriveItemContent" "GET","/shares/{param}/items","keep",,"Get-MgShareItem","Get-MgShareItem" "GET","/shares/{param}/items/{param}","keep",,"Get-MgShareItem","Get-MgShareItem" +"GET","/shares/{param}/items/{param}/content","keep",,"Get-MgShareItemContent","Get-MgShareItemContent" "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" @@ -5414,8 +6618,10 @@ "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}/driveItem/content","keep",,"Get-MgShareListItemDriveItemContent","Get-MgShareListItemDriveItemContent" "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}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","suppress",,"Get-MgShareListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","no oracle row for GET /shares/{param}/list/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgShareListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" "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" @@ -5443,6 +6649,7 @@ "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}/root/content","keep",,"Get-MgShareRootContent","Get-MgShareRootContent" "GET","/shares/{param}/site","keep",,"Get-MgShareSite","Get-MgShareSite" "GET","/shares/$count","keep",,"Get-MgShareCount","Get-MgShareCount" "GET","/sites","keep",,"Get-MgSite","Get-MgSite" @@ -5454,6 +6661,7 @@ "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/{param}/driveItem/content","keep",,"Get-MgSiteAnalyticItemActivityStatActivityDriveItemContent","Get-MgSiteAnalyticItemActivityStatActivityDriveItemContent" "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" @@ -5488,6 +6696,9 @@ "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}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","suppress",,"Get-MgSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","no oracle row for GET /sites/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" +"GET","/sites/{param}/getApplicableContentTypesForList(listId='{listId}')","rename","SiteApplicableContentTypeForList","Get-MgSiteGetApplicableContentTypesForListWithListId","Get-MgSiteApplicableContentTypeForList" +"GET","/sites/{param}/getByPath(path='{path}')","rename","SiteByPath","Get-MgSiteGetByPathWithPath","Get-MgSiteByPath" "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" @@ -5530,8 +6741,10 @@ "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}/driveItem/content","keep",,"Get-MgSiteListItemDriveItemContent","Get-MgSiteListItemDriveItemContent" "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}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')","suppress",,"Get-MgSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","no oracle row for GET /sites/{param}/lists/{param}/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" "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" @@ -5569,6 +6782,7 @@ "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}/content","keep",,"Get-MgSiteOnenoteNotebookSectionGroupSectionPageContent","Get-MgSiteOnenoteNotebookSectionGroupSectionPageContent" "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" @@ -5580,6 +6794,7 @@ "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}/content","keep",,"Get-MgSiteOnenoteNotebookSectionPageContent","Get-MgSiteOnenoteNotebookSectionPageContent" "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" @@ -5588,17 +6803,20 @@ "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/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})","rename","SiteOnenoteNotebookRecentNotebook","Get-MgSiteOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks","Get-MgSiteOnenoteNotebookRecentNotebook" "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}/content","keep",,"Get-MgSiteOnenotePageContent","Get-MgSiteOnenotePageContent" "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/{param}/content","keep",,"Get-MgSiteOnenoteResourceContent","Get-MgSiteOnenoteResourceContent" "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" @@ -5608,6 +6826,7 @@ "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}/content","keep",,"Get-MgSiteOnenoteSectionGroupSectionPageContent","Get-MgSiteOnenoteSectionGroupSectionPageContent" "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" @@ -5619,6 +6838,7 @@ "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}/content","keep",,"Get-MgSiteOnenoteSectionPageContent","Get-MgSiteOnenoteSectionPageContent" "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" @@ -5639,7 +6859,35 @@ "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/{param}/sitePage","keep",,"Get-MgSitePageAsSitePage","Get-MgSitePageAsSitePage" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout","keep",,"Get-MgSitePageAsSitePageCanvaLayout","Get-MgSitePageAsSitePageCanvaLayout" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections","keep",,"Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}","keep",,"Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns","keep",,"Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}","keep",,"Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts","keep",,"Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}","keep",,"Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/$count","keep",,"Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/$count","keep",,"Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/$count","keep",,"Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionCount","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionCount" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection","keep",,"Get-MgSitePageAsSitePageCanvaLayoutVerticalSection","Get-MgSitePageAsSitePageCanvaLayoutVerticalSection" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts","keep",,"Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}","keep",,"Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"GET","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/$count","keep",,"Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount" +"GET","/sites/{param}/pages/{param}/sitePage/createdByUser","keep",,"Get-MgSitePageAsSitePageCreatedByUser","Get-MgSitePageAsSitePageCreatedByUser" +"GET","/sites/{param}/pages/{param}/sitePage/createdByUser/mailboxSettings","keep",,"Get-MgSitePageAsSitePageCreatedByUserMailboxSetting","Get-MgSitePageAsSitePageCreatedByUserMailboxSetting" +"GET","/sites/{param}/pages/{param}/sitePage/createdByUser/serviceProvisioningErrors","keep",,"Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningError","Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningError" +"GET","/sites/{param}/pages/{param}/sitePage/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount","Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount" +"GET","/sites/{param}/pages/{param}/sitePage/lastModifiedByUser","keep",,"Get-MgSitePageAsSitePageLastModifiedByUser","Get-MgSitePageAsSitePageLastModifiedByUser" +"GET","/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/mailboxSettings","keep",,"Get-MgSitePageAsSitePageLastModifiedByUserMailboxSetting","Get-MgSitePageAsSitePageLastModifiedByUserMailboxSetting" +"GET","/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/serviceProvisioningErrors","keep",,"Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningError","Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningError" +"GET","/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count","keep",,"Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount","Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount" +"GET","/sites/{param}/pages/{param}/sitePage/webParts","keep",,"Get-MgSitePageAsSitePageWebPart","Get-MgSitePageAsSitePageWebPart" +"GET","/sites/{param}/pages/{param}/sitePage/webParts/{param}","keep",,"Get-MgSitePageAsSitePageWebPart","Get-MgSitePageAsSitePageWebPart" +"GET","/sites/{param}/pages/{param}/sitePage/webParts/$count","keep",,"Get-MgSitePageAsSitePageWebPartCount","Get-MgSitePageAsSitePageWebPartCount" "GET","/sites/{param}/pages/$count","keep",,"Get-MgSitePageCount","Get-MgSitePageCount" +"GET","/sites/{param}/pages/sitePage","keep",,"Get-MgSitePageAsSitePage","Get-MgSitePageAsSitePage" +"GET","/sites/{param}/pages/sitePage/$count","keep",,"Get-MgSitePageCountAsSitePage","Get-MgSitePageCountAsSitePage" "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" @@ -5769,6 +7017,7 @@ "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/{param}/browse(nextFetchToken='{nextFetchToken}')","suppress",,"Get-MgSolutionBackupRestoreBrowseSessionBrowseWithNextFetchToken","no oracle row for GET /solutions/backupRestore/browseSessions/{param}/browse(nextFetchToken='{nextFetchToken}') and 'Get-MgSolutionBackupRestoreBrowseSessionBrowseWithNextFetchToken' unshipped" "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" @@ -5848,7 +7097,16 @@ "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/{param}/driveProtectionUnit","keep",,"Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit","Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit" +"GET","/solutions/backupRestore/protectionUnits/{param}/mailboxProtectionUnit","keep",,"Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit","Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit" +"GET","/solutions/backupRestore/protectionUnits/{param}/siteProtectionUnit","keep",,"Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit","Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit" "GET","/solutions/backupRestore/protectionUnits/$count","keep",,"Get-MgSolutionBackupRestoreProtectionUnitCount","Get-MgSolutionBackupRestoreProtectionUnitCount" +"GET","/solutions/backupRestore/protectionUnits/driveProtectionUnit","keep",,"Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit","Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit" +"GET","/solutions/backupRestore/protectionUnits/driveProtectionUnit/$count","keep",,"Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit","Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit" +"GET","/solutions/backupRestore/protectionUnits/mailboxProtectionUnit","keep",,"Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit","Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit" +"GET","/solutions/backupRestore/protectionUnits/mailboxProtectionUnit/$count","keep",,"Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit","Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit" +"GET","/solutions/backupRestore/protectionUnits/siteProtectionUnit","keep",,"Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit","Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit" +"GET","/solutions/backupRestore/protectionUnits/siteProtectionUnit/$count","keep",,"Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit","Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit" "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" @@ -5950,6 +7208,8 @@ "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/townhalls/getByUserIdAndRole(userId='{userId}',role='{role}')","rename","VirtualEventTownhallByUserIdAndRole","Get-MgVirtualEventTownhallGetByUserIdAndRoleWithUserIdWithRole","Get-MgVirtualEventTownhallByUserIdAndRole" +"GET","/solutions/virtualEvents/townhalls/getByUserRole(role='{role}')","rename","VirtualEventTownhallByUserRole","Get-MgVirtualEventTownhallGetByUserRoleWithRole","Get-MgVirtualEventTownhallByUserRole" "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" @@ -5975,6 +7235,8 @@ "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","/solutions/virtualEvents/webinars/getByUserIdAndRole(userId='{userId}',role='{role}')","rename","VirtualEventWebinarByUserIdAndRole","Get-MgVirtualEventWebinarGetByUserIdAndRoleWithUserIdWithRole","Get-MgVirtualEventWebinarByUserIdAndRole" +"GET","/solutions/virtualEvents/webinars/getByUserRole(role='{role}')","rename","VirtualEventWebinarByUserRole","Get-MgVirtualEventWebinarGetByUserRoleWithRole","Get-MgVirtualEventWebinarByUserRole" "GET","/subscribedSkus","keep",,"Get-MgSubscribedSku","Get-MgSubscribedSku" "GET","/subscribedSkus/{param}","keep",,"Get-MgSubscribedSku","Get-MgSubscribedSku" "GET","/subscriptions","keep",,"Get-MgSubscription","Get-MgSubscription" @@ -5993,6 +7255,7 @@ "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}/filesFolder/content","keep",,"Get-MgTeamChannelFileFolderContent","Get-MgTeamChannelFileFolderContent" "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" @@ -6055,6 +7318,7 @@ "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/filesFolder/content","keep",,"Get-MgTeamPrimaryChannelFileFolderContent","Get-MgTeamPrimaryChannelFileFolderContent" "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" @@ -6142,6 +7406,7 @@ "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}/filesFolder/content","keep",,"Get-MgTeamworkDeletedTeamChannelFileFolderContent","Get-MgTeamworkDeletedTeamChannelFileFolderContent" "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" @@ -6198,6 +7463,8 @@ "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/findTenantInformationByDomainName(domainName='{domainName}')","rename","TenantRelationshipTenantInformationByDomainName","Get-MgTenantRelationshipFindTenantInformationByDomainNameWithDomainName","Find-MgTenantRelationshipTenantInformationByDomainName" +"GET","/tenantRelationships/findTenantInformationByTenantId(tenantId='{tenantId}')","rename","TenantRelationshipTenantInformationByTenantId","Get-MgTenantRelationshipFindTenantInformationByTenantIdWithTenantId","Find-MgTenantRelationshipTenantInformationByTenantId" "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" @@ -6261,6 +7528,7 @@ "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/allowedCalendarSharingRoles(User='{User}')","rename","CalendarUserCalendarAllowedCalendarSharingRoles","Get-MgUserCalendarAllowedCalendarSharingRolesWithUser","Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles" "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" @@ -6273,6 +7541,7 @@ "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}/allowedCalendarSharingRoles(User='{User}')","suppress",,"Get-MgUserCalendarGroupCalendarAllowedCalendarSharingRolesWithUser","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/allowedCalendarSharingRoles(User='{User}') and 'Get-MgUserCalendarGroupCalendarAllowedCalendarSharingRolesWithUser' unshipped" "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" @@ -6389,13 +7658,22 @@ "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/{param}/servicePrincipal","keep",,"Get-MgUserCreatedObjectAsServicePrincipal","Get-MgUserCreatedObjectAsServicePrincipal" "GET","/users/{param}/createdObjects/$count","keep",,"Get-MgUserCreatedObjectCount","Get-MgUserCreatedObjectCount" +"GET","/users/{param}/createdObjects/servicePrincipal","keep",,"Get-MgUserCreatedObjectAsServicePrincipal","Get-MgUserCreatedObjectAsServicePrincipal" +"GET","/users/{param}/createdObjects/servicePrincipal/$count","keep",,"Get-MgUserCreatedObjectCountAsServicePrincipal","Get-MgUserCreatedObjectCountAsServicePrincipal" "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/{param}/orgContact","keep",,"Get-MgUserDirectReportAsOrgContact","Get-MgUserDirectReportAsOrgContact" +"GET","/users/{param}/directReports/{param}/user","keep",,"Get-MgUserDirectReportAsUser","Get-MgUserDirectReportAsUser" "GET","/users/{param}/directReports/$count","keep",,"Get-MgUserDirectReportCount","Get-MgUserDirectReportCount" +"GET","/users/{param}/directReports/orgContact","keep",,"Get-MgUserDirectReportAsOrgContact","Get-MgUserDirectReportAsOrgContact" +"GET","/users/{param}/directReports/orgContact/$count","keep",,"Get-MgUserDirectReportCountAsOrgContact","Get-MgUserDirectReportCountAsOrgContact" +"GET","/users/{param}/directReports/user","keep",,"Get-MgUserDirectReportAsUser","Get-MgUserDirectReportAsUser" +"GET","/users/{param}/directReports/user/$count","keep",,"Get-MgUserDirectReportCountAsUser","Get-MgUserDirectReportCountAsUser" "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" @@ -6414,6 +7692,7 @@ "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}/exportDeviceAndAppManagementData(skip={skip},top={top})","suppress",,"Get-MgUserExportDeviceAndAppManagementDataWithSkipWithTop","no oracle row for GET /users/{param}/exportDeviceAndAppManagementData(skip={skip},top={top}) and 'Get-MgUserExportDeviceAndAppManagementDataWithSkipWithTop' unshipped" "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" @@ -6455,6 +7734,7 @@ "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}/filesFolder/content","suppress",,"Get-MgUserJoinedTeamChannelFileFolderContent","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/content and 'Get-MgUserJoinedTeamChannelFileFolderContent' 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" @@ -6517,6 +7797,7 @@ "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/filesFolder/content","suppress",,"Get-MgUserJoinedTeamPrimaryChannelFileFolderContent","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/content and 'Get-MgUserJoinedTeamPrimaryChannelFileFolderContent' 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" @@ -6656,7 +7937,16 @@ "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/{param}/administrativeUnit","keep",,"Get-MgUserMemberOfAsAdministrativeUnit","Get-MgUserMemberOfAsAdministrativeUnit" +"GET","/users/{param}/memberOf/{param}/directoryRole","keep",,"Get-MgUserMemberOfAsDirectoryRole","Get-MgUserMemberOfAsDirectoryRole" +"GET","/users/{param}/memberOf/{param}/group","keep",,"Get-MgUserMemberOfAsGroup","Get-MgUserMemberOfAsGroup" "GET","/users/{param}/memberOf/$count","keep",,"Get-MgUserMemberOfCount","Get-MgUserMemberOfCount" +"GET","/users/{param}/memberOf/administrativeUnit","keep",,"Get-MgUserMemberOfAsAdministrativeUnit","Get-MgUserMemberOfAsAdministrativeUnit" +"GET","/users/{param}/memberOf/administrativeUnit/$count","keep",,"Get-MgUserMemberOfCountAsAdministrativeUnit","Get-MgUserMemberOfCountAsAdministrativeUnit" +"GET","/users/{param}/memberOf/directoryRole","keep",,"Get-MgUserMemberOfAsDirectoryRole","Get-MgUserMemberOfAsDirectoryRole" +"GET","/users/{param}/memberOf/directoryRole/$count","keep",,"Get-MgUserMemberOfCountAsDirectoryRole","Get-MgUserMemberOfCountAsDirectoryRole" +"GET","/users/{param}/memberOf/group","keep",,"Get-MgUserMemberOfAsGroup","Get-MgUserMemberOfAsGroup" +"GET","/users/{param}/memberOf/group/$count","keep",,"Get-MgUserMemberOfCountAsGroup","Get-MgUserMemberOfCountAsGroup" "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" @@ -6682,6 +7972,7 @@ "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}/content","keep",,"Get-MgUserOnenoteNotebookSectionGroupSectionPageContent","Get-MgUserOnenoteNotebookSectionGroupSectionPageContent" "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" @@ -6693,6 +7984,7 @@ "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}/content","keep",,"Get-MgUserOnenoteNotebookSectionPageContent","Get-MgUserOnenoteNotebookSectionPageContent" "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" @@ -6701,17 +7993,20 @@ "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/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})","rename","UserOnenoteNotebookRecentNotebook","Get-MgUserOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks","Get-MgUserOnenoteNotebookRecentNotebook" "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}/content","keep",,"Get-MgUserOnenotePageContent","Get-MgUserOnenotePageContent" "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/{param}/content","keep",,"Get-MgUserOnenoteResourceContent","Get-MgUserOnenoteResourceContent" "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" @@ -6721,6 +8016,7 @@ "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}/content","keep",,"Get-MgUserOnenoteSectionGroupSectionPageContent","Get-MgUserOnenoteSectionGroupSectionPageContent" "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" @@ -6732,6 +8028,7 @@ "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}/content","keep",,"Get-MgUserOnenoteSectionPageContent","Get-MgUserOnenoteSectionPageContent" "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" @@ -6747,13 +8044,17 @@ "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}/attendeeReport","keep",,"Get-MgUserOnlineMeetingAttendeeReport","Get-MgUserOnlineMeetingAttendeeReport" "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/{param}/content","keep",,"Get-MgUserOnlineMeetingRecordingContent","Get-MgUserOnlineMeetingRecordingContent" "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/{param}/content","keep",,"Get-MgUserOnlineMeetingTranscriptContent","Get-MgUserOnlineMeetingTranscriptContent" +"GET","/users/{param}/onlineMeetings/{param}/transcripts/{param}/metadataContent","keep",,"Get-MgUserOnlineMeetingTranscriptMetadataContent","Get-MgUserOnlineMeetingTranscriptMetadataContent" "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" @@ -6764,12 +8065,31 @@ "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}/outlook/supportedTimeZones(TimeZoneStandard='{TimeZoneStandard}')","suppress",,"Get-MgUserOutlookSupportedTimeZonesWithTimeZoneStandard","no oracle row for GET /users/{param}/outlook/supportedTimeZones(TimeZoneStandard='{TimeZoneStandard}') and 'Get-MgUserOutlookSupportedTimeZonesWithTimeZoneStandard' unshipped" "GET","/users/{param}/ownedDevices","keep",,"Get-MgUserOwnedDevice","Get-MgUserOwnedDevice" "GET","/users/{param}/ownedDevices/{param}","keep",,"Get-MgUserOwnedDevice","Get-MgUserOwnedDevice" +"GET","/users/{param}/ownedDevices/{param}/appRoleAssignment","keep",,"Get-MgUserOwnedDeviceAsAppRoleAssignment","Get-MgUserOwnedDeviceAsAppRoleAssignment" +"GET","/users/{param}/ownedDevices/{param}/device","keep",,"Get-MgUserOwnedDeviceAsDevice","Get-MgUserOwnedDeviceAsDevice" +"GET","/users/{param}/ownedDevices/{param}/endpoint","keep",,"Get-MgUserOwnedDeviceAsEndpoint","Get-MgUserOwnedDeviceAsEndpoint" "GET","/users/{param}/ownedDevices/$count","keep",,"Get-MgUserOwnedDeviceCount","Get-MgUserOwnedDeviceCount" +"GET","/users/{param}/ownedDevices/appRoleAssignment","keep",,"Get-MgUserOwnedDeviceAsAppRoleAssignment","Get-MgUserOwnedDeviceAsAppRoleAssignment" +"GET","/users/{param}/ownedDevices/appRoleAssignment/$count","keep",,"Get-MgUserOwnedDeviceCountAsAppRoleAssignment","Get-MgUserOwnedDeviceCountAsAppRoleAssignment" +"GET","/users/{param}/ownedDevices/device","keep",,"Get-MgUserOwnedDeviceAsDevice","Get-MgUserOwnedDeviceAsDevice" +"GET","/users/{param}/ownedDevices/device/$count","keep",,"Get-MgUserOwnedDeviceCountAsDevice","Get-MgUserOwnedDeviceCountAsDevice" +"GET","/users/{param}/ownedDevices/endpoint","keep",,"Get-MgUserOwnedDeviceAsEndpoint","Get-MgUserOwnedDeviceAsEndpoint" +"GET","/users/{param}/ownedDevices/endpoint/$count","keep",,"Get-MgUserOwnedDeviceCountAsEndpoint","Get-MgUserOwnedDeviceCountAsEndpoint" "GET","/users/{param}/ownedObjects","keep",,"Get-MgUserOwnedObject","Get-MgUserOwnedObject" "GET","/users/{param}/ownedObjects/{param}","keep",,"Get-MgUserOwnedObject","Get-MgUserOwnedObject" +"GET","/users/{param}/ownedObjects/{param}/application","keep",,"Get-MgUserOwnedObjectAsApplication","Get-MgUserOwnedObjectAsApplication" +"GET","/users/{param}/ownedObjects/{param}/group","keep",,"Get-MgUserOwnedObjectAsGroup","Get-MgUserOwnedObjectAsGroup" +"GET","/users/{param}/ownedObjects/{param}/servicePrincipal","keep",,"Get-MgUserOwnedObjectAsServicePrincipal","Get-MgUserOwnedObjectAsServicePrincipal" "GET","/users/{param}/ownedObjects/$count","keep",,"Get-MgUserOwnedObjectCount","Get-MgUserOwnedObjectCount" +"GET","/users/{param}/ownedObjects/application","keep",,"Get-MgUserOwnedObjectAsApplication","Get-MgUserOwnedObjectAsApplication" +"GET","/users/{param}/ownedObjects/application/$count","keep",,"Get-MgUserOwnedObjectCountAsApplication","Get-MgUserOwnedObjectCountAsApplication" +"GET","/users/{param}/ownedObjects/group","keep",,"Get-MgUserOwnedObjectAsGroup","Get-MgUserOwnedObjectAsGroup" +"GET","/users/{param}/ownedObjects/group/$count","keep",,"Get-MgUserOwnedObjectCountAsGroup","Get-MgUserOwnedObjectCountAsGroup" +"GET","/users/{param}/ownedObjects/servicePrincipal","keep",,"Get-MgUserOwnedObjectAsServicePrincipal","Get-MgUserOwnedObjectAsServicePrincipal" +"GET","/users/{param}/ownedObjects/servicePrincipal/$count","keep",,"Get-MgUserOwnedObjectCountAsServicePrincipal","Get-MgUserOwnedObjectCountAsServicePrincipal" "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" @@ -6807,7 +8127,17 @@ "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/{param}/appRoleAssignment","keep",,"Get-MgUserRegisteredDeviceAsAppRoleAssignment","Get-MgUserRegisteredDeviceAsAppRoleAssignment" +"GET","/users/{param}/registeredDevices/{param}/device","keep",,"Get-MgUserRegisteredDeviceAsDevice","Get-MgUserRegisteredDeviceAsDevice" +"GET","/users/{param}/registeredDevices/{param}/endpoint","keep",,"Get-MgUserRegisteredDeviceAsEndpoint","Get-MgUserRegisteredDeviceAsEndpoint" "GET","/users/{param}/registeredDevices/$count","keep",,"Get-MgUserRegisteredDeviceCount","Get-MgUserRegisteredDeviceCount" +"GET","/users/{param}/registeredDevices/appRoleAssignment","keep",,"Get-MgUserRegisteredDeviceAsAppRoleAssignment","Get-MgUserRegisteredDeviceAsAppRoleAssignment" +"GET","/users/{param}/registeredDevices/appRoleAssignment/$count","keep",,"Get-MgUserRegisteredDeviceCountAsAppRoleAssignment","Get-MgUserRegisteredDeviceCountAsAppRoleAssignment" +"GET","/users/{param}/registeredDevices/device","keep",,"Get-MgUserRegisteredDeviceAsDevice","Get-MgUserRegisteredDeviceAsDevice" +"GET","/users/{param}/registeredDevices/device/$count","keep",,"Get-MgUserRegisteredDeviceCountAsDevice","Get-MgUserRegisteredDeviceCountAsDevice" +"GET","/users/{param}/registeredDevices/endpoint","keep",,"Get-MgUserRegisteredDeviceAsEndpoint","Get-MgUserRegisteredDeviceAsEndpoint" +"GET","/users/{param}/registeredDevices/endpoint/$count","keep",,"Get-MgUserRegisteredDeviceCountAsEndpoint","Get-MgUserRegisteredDeviceCountAsEndpoint" +"GET","/users/{param}/reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')","rename","ViewUserReminder","Get-MgUserReminderViewWithStartDateTimeWithEndDateTime","Invoke-MgViewUserReminder" "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" @@ -6830,6 +8160,7 @@ "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/occurrencesView(startDateTime='{startDateTime}',endDateTime='{endDateTime}')","rename","ViewUserSettingWorkHourAndLocationOccurrence","Get-MgUserSettingWorkHourAndLocationOccurrencesViewWithStartDateTimeWithEndDateTime","Invoke-MgViewUserSettingWorkHourAndLocationOccurrence" "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" @@ -6862,6 +8193,7 @@ "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/{param}/content","rename","UserTodoTaskAttachmentSessionContent","Get-MgUserTodoListTaskAttachmentSessionContent","Get-MgUserTodoTaskAttachmentSessionContent" "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" @@ -6878,7 +8210,16 @@ "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/{param}/administrativeUnit","keep",,"Get-MgUserTransitiveMemberOfAsAdministrativeUnit","Get-MgUserTransitiveMemberOfAsAdministrativeUnit" +"GET","/users/{param}/transitiveMemberOf/{param}/directoryRole","keep",,"Get-MgUserTransitiveMemberOfAsDirectoryRole","Get-MgUserTransitiveMemberOfAsDirectoryRole" +"GET","/users/{param}/transitiveMemberOf/{param}/group","keep",,"Get-MgUserTransitiveMemberOfAsGroup","Get-MgUserTransitiveMemberOfAsGroup" "GET","/users/{param}/transitiveMemberOf/$count","keep",,"Get-MgUserTransitiveMemberOfCount","Get-MgUserTransitiveMemberOfCount" +"GET","/users/{param}/transitiveMemberOf/administrativeUnit","keep",,"Get-MgUserTransitiveMemberOfAsAdministrativeUnit","Get-MgUserTransitiveMemberOfAsAdministrativeUnit" +"GET","/users/{param}/transitiveMemberOf/administrativeUnit/$count","keep",,"Get-MgUserTransitiveMemberOfCountAsAdministrativeUnit","Get-MgUserTransitiveMemberOfCountAsAdministrativeUnit" +"GET","/users/{param}/transitiveMemberOf/directoryRole","keep",,"Get-MgUserTransitiveMemberOfAsDirectoryRole","Get-MgUserTransitiveMemberOfAsDirectoryRole" +"GET","/users/{param}/transitiveMemberOf/directoryRole/$count","keep",,"Get-MgUserTransitiveMemberOfCountAsDirectoryRole","Get-MgUserTransitiveMemberOfCountAsDirectoryRole" +"GET","/users/{param}/transitiveMemberOf/group","keep",,"Get-MgUserTransitiveMemberOfAsGroup","Get-MgUserTransitiveMemberOfAsGroup" +"GET","/users/{param}/transitiveMemberOf/group/$count","keep",,"Get-MgUserTransitiveMemberOfCountAsGroup","Get-MgUserTransitiveMemberOfCountAsGroup" "GET","/users/$count","keep",,"Get-MgUserCount","Get-MgUserCount" "GET","/users/delta","keep",,"Get-MgUserDelta","Get-MgUserDelta" "PATCH","/admin/configurationManagement","keep",,"Update-MgAdminConfigurationManagement","Update-MgAdminConfigurationManagement" @@ -6950,6 +8291,8 @@ "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}/organizer_v2","keep",,"Update-MgCommunicationCallRecordOrganizerV2","Update-MgCommunicationCallRecordOrganizerV2" +"PATCH","/communications/callRecords/{param}/participants_v2/{param}","keep",,"Update-MgCommunicationCallRecordParticipantV2","Update-MgCommunicationCallRecordParticipantV2" "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" @@ -7014,7 +8357,57 @@ "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}/androidLobApp/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion" +"PATCH","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/containedApps/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile" +"PATCH","/deviceAppManagement/mobileApps/{param}/androidStoreApp/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","Update-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment" "PATCH","/deviceAppManagement/mobileApps/{param}/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAssignment","Update-MgDeviceAppManagementMobileAppAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/iosLobApp/assignments/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppAssignment","Update-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","Update-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersion","Update-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","Update-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" +"PATCH","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/containedApps/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files/{param}","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionFile","Update-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","Update-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" +"PATCH","/deviceAppManagement/mobileApps/{param}/iosStoreApp/assignments/{param}","rename","DeviceAppManagementMobileAppAsIoStoreAppAssignment","Update-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","Update-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/iosVppApp/assignments/{param}","rename","DeviceAppManagementMobileAppAsIoVppAppAssignment","Update-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","Update-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion" +"PATCH","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/containedApps/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile" +"PATCH","/deviceAppManagement/mobileApps/{param}/macOSLobApp/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion" +"PATCH","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/containedApps/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile" +"PATCH","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion" +"PATCH","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/containedApps/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile" +"PATCH","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/assignments/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppAssignment","Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersion","Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" +"PATCH","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/containedApps/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files/{param}","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile","Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" +"PATCH","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion" +"PATCH","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/containedApps/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile" +"PATCH","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","Update-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/win32LobApp/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","Update-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion" +"PATCH","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/containedApps/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsAppX/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","Update-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/containedApps/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/assignments/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiAssignment","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/containedApps/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files/{param}","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/committedContainedApps/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/containedApps/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile" +"PATCH","/deviceAppManagement/mobileApps/{param}/windowsWebApp/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","Update-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment" "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" @@ -7393,6 +8786,15 @@ "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}/pages/{param}/sitePage/canvasLayout","keep",,"Update-MgGroupSitePageAsSitePageCanvaLayout","Update-MgGroupSitePageAsSitePageCanvaLayout" +"PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}","keep",,"Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection" +"PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}","keep",,"Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}","keep",,"Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection","keep",,"Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection","Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection" +"PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}","keep",,"Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/createdByUser/mailboxSettings","keep",,"Update-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting","Update-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting" +"PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/mailboxSettings","keep",,"Update-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting","Update-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting" +"PATCH","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts/{param}","keep",,"Update-MgGroupSitePageAsSitePageWebPart","Update-MgGroupSitePageAsSitePageWebPart" "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" @@ -7467,6 +8869,7 @@ "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/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{param}","rename","IdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication","Update-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","Update-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" "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" @@ -7677,7 +9080,24 @@ "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}/building/checkIns/{param}","rename","PlaceAsBuildingCheck","Update-MgPlaceAsBuildingCheckIn","Update-MgPlaceAsBuildingCheck" +"PATCH","/places/{param}/building/map","keep",,"Update-MgPlaceAsBuildingMap","Update-MgPlaceAsBuildingMap" +"PATCH","/places/{param}/building/map/footprints/{param}","keep",,"Update-MgPlaceAsBuildingMapFootprint","Update-MgPlaceAsBuildingMapFootprint" +"PATCH","/places/{param}/building/map/levels/{param}","keep",,"Update-MgPlaceAsBuildingMapLevel","Update-MgPlaceAsBuildingMapLevel" +"PATCH","/places/{param}/building/map/levels/{param}/fixtures/{param}","keep",,"Update-MgPlaceAsBuildingMapLevelFixture","Update-MgPlaceAsBuildingMapLevelFixture" +"PATCH","/places/{param}/building/map/levels/{param}/sections/{param}","keep",,"Update-MgPlaceAsBuildingMapLevelSection","Update-MgPlaceAsBuildingMapLevelSection" +"PATCH","/places/{param}/building/map/levels/{param}/units/{param}","keep",,"Update-MgPlaceAsBuildingMapLevelUnit","Update-MgPlaceAsBuildingMapLevelUnit" "PATCH","/places/{param}/checkIns/{param}","keep",,"Update-MgPlaceCheckIn","deliberate correction; oracle ships Update-MgPlaceCheck" +"PATCH","/places/{param}/desk/checkIns/{param}","rename","PlaceAsDeskCheck","Update-MgPlaceAsDeskCheckIn","Update-MgPlaceAsDeskCheck" +"PATCH","/places/{param}/floor/checkIns/{param}","rename","PlaceAsFloorCheck","Update-MgPlaceAsFloorCheckIn","Update-MgPlaceAsFloorCheck" +"PATCH","/places/{param}/room/checkIns/{param}","rename","PlaceAsRoomCheck","Update-MgPlaceAsRoomCheckIn","Update-MgPlaceAsRoomCheck" +"PATCH","/places/{param}/roomList/checkIns/{param}","rename","PlaceAsRoomListCheck","Update-MgPlaceAsRoomListCheckIn","Update-MgPlaceAsRoomListCheck" +"PATCH","/places/{param}/roomList/rooms/{param}","keep",,"Update-MgPlaceAsRoomListRoom","Update-MgPlaceAsRoomListRoom" +"PATCH","/places/{param}/roomList/rooms/{param}/checkIns/{param}","rename","PlaceAsRoomListRoomCheck","Update-MgPlaceAsRoomListRoomCheckIn","Update-MgPlaceAsRoomListRoomCheck" +"PATCH","/places/{param}/roomList/workspaces/{param}","keep",,"Update-MgPlaceAsRoomListWorkspace","Update-MgPlaceAsRoomListWorkspace" +"PATCH","/places/{param}/roomList/workspaces/{param}/checkIns/{param}","rename","PlaceAsRoomListWorkspaceCheck","Update-MgPlaceAsRoomListWorkspaceCheckIn","Update-MgPlaceAsRoomListWorkspaceCheck" +"PATCH","/places/{param}/section/checkIns/{param}","rename","PlaceAsSectionCheck","Update-MgPlaceAsSectionCheckIn","Update-MgPlaceAsSectionCheck" +"PATCH","/places/{param}/workspace/checkIns/{param}","rename","PlaceAsWorkspaceCheck","Update-MgPlaceAsWorkspaceCheckIn","Update-MgPlaceAsWorkspaceCheck" "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" @@ -7808,6 +9228,7 @@ "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_v2/{param}","keep",,"Update-MgSecurityAlertV2","Update-MgSecurityAlertV2" "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" @@ -7978,6 +9399,15 @@ "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}/pages/{param}/sitePage/canvasLayout","keep",,"Update-MgSitePageAsSitePageCanvaLayout","Update-MgSitePageAsSitePageCanvaLayout" +"PATCH","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}","keep",,"Update-MgSitePageAsSitePageCanvaLayoutHorizontalSection","Update-MgSitePageAsSitePageCanvaLayoutHorizontalSection" +"PATCH","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}","keep",,"Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"PATCH","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}","keep",,"Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"PATCH","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection","keep",,"Update-MgSitePageAsSitePageCanvaLayoutVerticalSection","Update-MgSitePageAsSitePageCanvaLayoutVerticalSection" +"PATCH","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}","keep",,"Update-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","Update-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"PATCH","/sites/{param}/pages/{param}/sitePage/createdByUser/mailboxSettings","keep",,"Update-MgSitePageAsSitePageCreatedByUserMailboxSetting","Update-MgSitePageAsSitePageCreatedByUserMailboxSetting" +"PATCH","/sites/{param}/pages/{param}/sitePage/lastModifiedByUser/mailboxSettings","keep",,"Update-MgSitePageAsSitePageLastModifiedByUserMailboxSetting","Update-MgSitePageAsSitePageLastModifiedByUserMailboxSetting" +"PATCH","/sites/{param}/pages/{param}/sitePage/webParts/{param}","keep",,"Update-MgSitePageAsSitePageWebPart","Update-MgSitePageAsSitePageWebPart" "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" @@ -8418,6 +9848,7 @@ "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}/participants_v2","keep",,"New-MgCommunicationCallRecordParticipantV2","New-MgCommunicationCallRecordParticipantV2" "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" @@ -8526,8 +9957,80 @@ "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}/androidLobApp/assignments","keep",,"New-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","New-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions","keep",,"New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion" +"POST","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/containedApps","keep",,"New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp" +"POST","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files","keep",,"New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files/{param}/commit","rename","CommitDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFile","Invoke-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCommit","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/androidLobApp/contentVersions/{param}/files/{param}/renewUpload","rename","RenewDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFileUpload","Invoke-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileRenewUpload","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFileUpload" +"POST","/deviceAppManagement/mobileApps/{param}/androidStoreApp/assignments","keep",,"New-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","New-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment" "POST","/deviceAppManagement/mobileApps/{param}/assign","rename","DeviceAppManagementMobileApp","Invoke-MgDeviceAppManagementMobileAppAssign","Set-MgDeviceAppManagementMobileApp" "POST","/deviceAppManagement/mobileApps/{param}/assignments","keep",,"New-MgDeviceAppManagementMobileAppAssignment","New-MgDeviceAppManagementMobileAppAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/iosLobApp/assignments","rename","DeviceAppManagementMobileAppAsiOSLobAppAssignment","New-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","New-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersion","New-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","New-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion" +"POST","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/containedApps","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp" +"POST","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files","rename","DeviceAppManagementMobileAppAsiOSLobAppContentVersionFile","New-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","New-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files/{param}/commit","rename","CommitDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFile","Invoke-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileCommit","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/iosLobApp/contentVersions/{param}/files/{param}/renewUpload","rename","RenewDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFileUpload","Invoke-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileRenewUpload","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFileUpload" +"POST","/deviceAppManagement/mobileApps/{param}/iosStoreApp/assignments","rename","DeviceAppManagementMobileAppAsIoStoreAppAssignment","New-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","New-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/iosVppApp/assignments","rename","DeviceAppManagementMobileAppAsIoVppAppAssignment","New-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","New-MgDeviceAppManagementMobileAppAsIoVppAppAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/assignments","keep",,"New-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions","keep",,"New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion" +"POST","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/containedApps","keep",,"New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp" +"POST","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files","keep",,"New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files/{param}/commit","rename","CommitDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFile","Invoke-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCommit","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/macOSDmgApp/contentVersions/{param}/files/{param}/renewUpload","rename","RenewDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFileUpload","Invoke-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileRenewUpload","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFileUpload" +"POST","/deviceAppManagement/mobileApps/{param}/macOSLobApp/assignments","keep",,"New-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","New-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions","keep",,"New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion" +"POST","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/containedApps","keep",,"New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp" +"POST","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files","keep",,"New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files/{param}/commit","rename","CommitDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFile","Invoke-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCommit","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/macOSLobApp/contentVersions/{param}/files/{param}/renewUpload","rename","RenewDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFileUpload","Invoke-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileRenewUpload","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFileUpload" +"POST","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/assignments","keep",,"New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions","keep",,"New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion" +"POST","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/containedApps","keep",,"New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp" +"POST","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files","keep",,"New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files/{param}/commit","rename","CommitDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFile","Invoke-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCommit","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/managedAndroidLobApp/contentVersions/{param}/files/{param}/renewUpload","rename","RenewDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFileUpload","Invoke-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileRenewUpload","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFileUpload" +"POST","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/assignments","rename","DeviceAppManagementMobileAppAsManagediOSLobAppAssignment","New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","New-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersion","New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","New-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion" +"POST","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/containedApps","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp" +"POST","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files","rename","DeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile","New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","New-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files/{param}/commit","rename","CommitDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFile","Invoke-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileCommit","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/managedIOSLobApp/contentVersions/{param}/files/{param}/renewUpload","rename","RenewDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFileUpload","Invoke-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileRenewUpload","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFileUpload" +"POST","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/assignments","keep",,"New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions","keep",,"New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion" +"POST","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/containedApps","keep",,"New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp" +"POST","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files","keep",,"New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files/{param}/commit","rename","CommitDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFile","Invoke-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCommit","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/managedMobileLobApp/contentVersions/{param}/files/{param}/renewUpload","rename","RenewDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFileUpload","Invoke-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileRenewUpload","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFileUpload" +"POST","/deviceAppManagement/mobileApps/{param}/microsoftStoreForBusinessApp/assignments","keep",,"New-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","New-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/win32LobApp/assignments","keep",,"New-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","New-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions","keep",,"New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion" +"POST","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/containedApps","keep",,"New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp" +"POST","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files","keep",,"New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files/{param}/commit","rename","CommitDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFile","Invoke-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCommit","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/win32LobApp/contentVersions/{param}/files/{param}/renewUpload","rename","RenewDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFileUpload","Invoke-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileRenewUpload","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFileUpload" +"POST","/deviceAppManagement/mobileApps/{param}/windowsAppX/assignments","keep",,"New-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","New-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions","keep",,"New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion" +"POST","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/containedApps","keep",,"New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp" +"POST","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files","keep",,"New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files/{param}/commit","rename","CommitDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFile","Invoke-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCommit","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/windowsAppX/contentVersions/{param}/files/{param}/renewUpload","rename","RenewDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFileUpload","Invoke-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileRenewUpload","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFileUpload" +"POST","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/assignments","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiAssignment","New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion","New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion" +"POST","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/containedApps","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp" +"POST","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files","rename","DeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile","New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files/{param}/commit","rename","CommitDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFile","Invoke-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileCommit","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/windowsMobileMSI/contentVersions/{param}/files/{param}/renewUpload","rename","RenewDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFileUpload","Invoke-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileRenewUpload","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFileUpload" +"POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/assignments","keep",,"New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment" +"POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/committedContainedApps","keep",,"New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp" +"POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions","keep",,"New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion" +"POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/containedApps","keep",,"New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp" +"POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files","keep",,"New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files/{param}/commit","rename","CommitDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFile","Invoke-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCommit","Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFile" +"POST","/deviceAppManagement/mobileApps/{param}/windowsUniversalAppX/contentVersions/{param}/files/{param}/renewUpload","rename","RenewDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFileUpload","Invoke-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileRenewUpload","Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFileUpload" +"POST","/deviceAppManagement/mobileApps/{param}/windowsWebApp/assignments","keep",,"New-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","New-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment" "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" @@ -8698,6 +10201,7 @@ "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/jobs/{param}/cancel","rename","DirectoryRecoveryJob","Invoke-MgDirectoryRecoveryJobCancel","Stop-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" @@ -8769,7 +10273,6 @@ "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" @@ -8799,15 +10302,26 @@ "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/beta_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionBeta_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/beta_Dist and 'Invoke-MgDriveItemWorkbookFunctionBeta_Dist' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/beta_Inv","suppress",,"Invoke-MgDriveItemWorkbookFunctionBeta_Inv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/beta_Inv and 'Invoke-MgDriveItemWorkbookFunctionBeta_Inv' 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/binom_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionBinom_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/binom_Dist and 'Invoke-MgDriveItemWorkbookFunctionBinom_Dist' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/binom_Dist_Range","suppress",,"Invoke-MgDriveItemWorkbookFunctionBinom_Dist_Range","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/binom_Dist_Range and 'Invoke-MgDriveItemWorkbookFunctionBinom_Dist_Range' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/binom_Inv","suppress",,"Invoke-MgDriveItemWorkbookFunctionBinom_Inv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/binom_Inv and 'Invoke-MgDriveItemWorkbookFunctionBinom_Inv' 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/ceiling_Math","suppress",,"Invoke-MgDriveItemWorkbookFunctionCeiling_Math","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ceiling_Math and 'Invoke-MgDriveItemWorkbookFunctionCeiling_Math' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/ceiling_Precise","suppress",,"Invoke-MgDriveItemWorkbookFunctionCeiling_Precise","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ceiling_Precise and 'Invoke-MgDriveItemWorkbookFunctionCeiling_Precise' 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/chiSq_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionChiSq_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/chiSq_Dist and 'Invoke-MgDriveItemWorkbookFunctionChiSq_Dist' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/chiSq_Dist_RT","suppress",,"Invoke-MgDriveItemWorkbookFunctionChiSq_Dist_RT","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/chiSq_Dist_RT and 'Invoke-MgDriveItemWorkbookFunctionChiSq_Dist_RT' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/chiSq_Inv","suppress",,"Invoke-MgDriveItemWorkbookFunctionChiSq_Inv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/chiSq_Inv and 'Invoke-MgDriveItemWorkbookFunctionChiSq_Inv' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/chiSq_Inv_RT","suppress",,"Invoke-MgDriveItemWorkbookFunctionChiSq_Inv_RT","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/chiSq_Inv_RT and 'Invoke-MgDriveItemWorkbookFunctionChiSq_Inv_RT' 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" @@ -8816,11 +10330,14 @@ "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/confidence_Norm","suppress",,"Invoke-MgDriveItemWorkbookFunctionConfidence_Norm","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/confidence_Norm and 'Invoke-MgDriveItemWorkbookFunctionConfidence_Norm' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/confidence_T","suppress",,"Invoke-MgDriveItemWorkbookFunctionConfidence_T","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/confidence_T and 'Invoke-MgDriveItemWorkbookFunctionConfidence_T' 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/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/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" @@ -8867,14 +10384,23 @@ "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/ecma_Ceiling","suppress",,"Invoke-MgDriveItemWorkbookFunctionEcma_Ceiling","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ecma_Ceiling and 'Invoke-MgDriveItemWorkbookFunctionEcma_Ceiling' 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/erf_Precise","suppress",,"Invoke-MgDriveItemWorkbookFunctionErf_Precise","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/erf_Precise and 'Invoke-MgDriveItemWorkbookFunctionErf_Precise' 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/erfC_Precise","suppress",,"Invoke-MgDriveItemWorkbookFunctionErfC_Precise","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/erfC_Precise and 'Invoke-MgDriveItemWorkbookFunctionErfC_Precise' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/error_Type","suppress",,"Invoke-MgDriveItemWorkbookFunctionError_Type","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/error_Type and 'Invoke-MgDriveItemWorkbookFunctionError_Type' 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/expon_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionExpon_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/expon_Dist and 'Invoke-MgDriveItemWorkbookFunctionExpon_Dist' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/f_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionF_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/f_Dist and 'Invoke-MgDriveItemWorkbookFunctionF_Dist' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/f_Dist_RT","suppress",,"Invoke-MgDriveItemWorkbookFunctionF_Dist_RT","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/f_Dist_RT and 'Invoke-MgDriveItemWorkbookFunctionF_Dist_RT' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/f_Inv","suppress",,"Invoke-MgDriveItemWorkbookFunctionF_Inv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/f_Inv and 'Invoke-MgDriveItemWorkbookFunctionF_Inv' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/f_Inv_RT","suppress",,"Invoke-MgDriveItemWorkbookFunctionF_Inv_RT","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/f_Inv_RT and 'Invoke-MgDriveItemWorkbookFunctionF_Inv_RT' 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" @@ -8883,10 +10409,15 @@ "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/floor_Math","suppress",,"Invoke-MgDriveItemWorkbookFunctionFloor_Math","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/floor_Math and 'Invoke-MgDriveItemWorkbookFunctionFloor_Math' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/floor_Precise","suppress",,"Invoke-MgDriveItemWorkbookFunctionFloor_Precise","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/floor_Precise and 'Invoke-MgDriveItemWorkbookFunctionFloor_Precise' 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/gamma_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionGamma_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gamma_Dist and 'Invoke-MgDriveItemWorkbookFunctionGamma_Dist' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/gamma_Inv","suppress",,"Invoke-MgDriveItemWorkbookFunctionGamma_Inv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gamma_Inv and 'Invoke-MgDriveItemWorkbookFunctionGamma_Inv' 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/gammaLn_Precise","suppress",,"Invoke-MgDriveItemWorkbookFunctionGammaLn_Precise","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gammaLn_Precise and 'Invoke-MgDriveItemWorkbookFunctionGammaLn_Precise' 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" @@ -8898,6 +10429,7 @@ "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/hypGeom_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionHypGeom_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hypGeom_Dist and 'Invoke-MgDriveItemWorkbookFunctionHypGeom_Dist' 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" @@ -8936,6 +10468,7 @@ "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/iso_Ceiling","suppress",,"Invoke-MgDriveItemWorkbookFunctionIso_Ceiling","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/iso_Ceiling and 'Invoke-MgDriveItemWorkbookFunctionIso_Ceiling' 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" @@ -8951,6 +10484,8 @@ "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/logNorm_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionLogNorm_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/logNorm_Dist and 'Invoke-MgDriveItemWorkbookFunctionLogNorm_Dist' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/logNorm_Inv","suppress",,"Invoke-MgDriveItemWorkbookFunctionLogNorm_Inv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/logNorm_Inv and 'Invoke-MgDriveItemWorkbookFunctionLogNorm_Inv' 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" @@ -8970,8 +10505,14 @@ "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/negBinom_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionNegBinom_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/negBinom_Dist and 'Invoke-MgDriveItemWorkbookFunctionNegBinom_Dist' 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/networkDays_Intl","suppress",,"Invoke-MgDriveItemWorkbookFunctionNetworkDays_Intl","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/networkDays_Intl and 'Invoke-MgDriveItemWorkbookFunctionNetworkDays_Intl' 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/norm_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionNorm_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/norm_Dist and 'Invoke-MgDriveItemWorkbookFunctionNorm_Dist' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/norm_Inv","suppress",,"Invoke-MgDriveItemWorkbookFunctionNorm_Inv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/norm_Inv and 'Invoke-MgDriveItemWorkbookFunctionNorm_Inv' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/norm_S_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionNorm_S_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/norm_S_Dist and 'Invoke-MgDriveItemWorkbookFunctionNorm_S_Dist' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/norm_S_Inv","suppress",,"Invoke-MgDriveItemWorkbookFunctionNorm_S_Inv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/norm_S_Inv and 'Invoke-MgDriveItemWorkbookFunctionNorm_S_Inv' 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" @@ -8987,11 +10528,16 @@ "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/percentile_Exc","suppress",,"Invoke-MgDriveItemWorkbookFunctionPercentile_Exc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/percentile_Exc and 'Invoke-MgDriveItemWorkbookFunctionPercentile_Exc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/percentile_Inc","suppress",,"Invoke-MgDriveItemWorkbookFunctionPercentile_Inc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/percentile_Inc and 'Invoke-MgDriveItemWorkbookFunctionPercentile_Inc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/percentRank_Exc","suppress",,"Invoke-MgDriveItemWorkbookFunctionPercentRank_Exc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/percentRank_Exc and 'Invoke-MgDriveItemWorkbookFunctionPercentRank_Exc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/percentRank_Inc","suppress",,"Invoke-MgDriveItemWorkbookFunctionPercentRank_Inc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/percentRank_Inc and 'Invoke-MgDriveItemWorkbookFunctionPercentRank_Inc' 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/poisson_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionPoisson_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/poisson_Dist and 'Invoke-MgDriveItemWorkbookFunctionPoisson_Dist' 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" @@ -9000,10 +10546,14 @@ "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/quartile_Exc","suppress",,"Invoke-MgDriveItemWorkbookFunctionQuartile_Exc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/quartile_Exc and 'Invoke-MgDriveItemWorkbookFunctionQuartile_Exc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/quartile_Inc","suppress",,"Invoke-MgDriveItemWorkbookFunctionQuartile_Inc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/quartile_Inc and 'Invoke-MgDriveItemWorkbookFunctionQuartile_Inc' 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/rank_Avg","suppress",,"Invoke-MgDriveItemWorkbookFunctionRank_Avg","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rank_Avg and 'Invoke-MgDriveItemWorkbookFunctionRank_Avg' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/rank_Eq","suppress",,"Invoke-MgDriveItemWorkbookFunctionRank_Eq","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rank_Eq and 'Invoke-MgDriveItemWorkbookFunctionRank_Eq' 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" @@ -9027,11 +10577,14 @@ "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/skew_p","suppress",,"Invoke-MgDriveItemWorkbookFunctionSkew_p","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/skew_p and 'Invoke-MgDriveItemWorkbookFunctionSkew_p' 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/stDev_P","suppress",,"Invoke-MgDriveItemWorkbookFunctionStDev_P","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/stDev_P and 'Invoke-MgDriveItemWorkbookFunctionStDev_P' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/stDev_S","suppress",,"Invoke-MgDriveItemWorkbookFunctionStDev_S","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/stDev_S and 'Invoke-MgDriveItemWorkbookFunctionStDev_S' 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" @@ -9042,6 +10595,11 @@ "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/t_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionT_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/t_Dist and 'Invoke-MgDriveItemWorkbookFunctionT_Dist' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/t_Dist_2T","suppress",,"Invoke-MgDriveItemWorkbookFunctionT_Dist_2T","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/t_Dist_2T and 'Invoke-MgDriveItemWorkbookFunctionT_Dist_2T' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/t_Dist_RT","suppress",,"Invoke-MgDriveItemWorkbookFunctionT_Dist_RT","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/t_Dist_RT and 'Invoke-MgDriveItemWorkbookFunctionT_Dist_RT' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/t_Inv","suppress",,"Invoke-MgDriveItemWorkbookFunctionT_Inv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/t_Inv and 'Invoke-MgDriveItemWorkbookFunctionT_Inv' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/t_Inv_2T","suppress",,"Invoke-MgDriveItemWorkbookFunctionT_Inv_2T","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/t_Inv_2T and 'Invoke-MgDriveItemWorkbookFunctionT_Inv_2T' 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" @@ -9061,13 +10619,17 @@ "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/var_P","suppress",,"Invoke-MgDriveItemWorkbookFunctionVar_P","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/var_P and 'Invoke-MgDriveItemWorkbookFunctionVar_P' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/var_S","suppress",,"Invoke-MgDriveItemWorkbookFunctionVar_S","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/var_S and 'Invoke-MgDriveItemWorkbookFunctionVar_S' 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/weibull_Dist","suppress",,"Invoke-MgDriveItemWorkbookFunctionWeibull_Dist","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/weibull_Dist and 'Invoke-MgDriveItemWorkbookFunctionWeibull_Dist' 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/workDay_Intl","suppress",,"Invoke-MgDriveItemWorkbookFunctionWorkDay_Intl","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/workDay_Intl and 'Invoke-MgDriveItemWorkbookFunctionWorkDay_Intl' 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" @@ -9076,6 +10638,7 @@ "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/functions/z_Test","suppress",,"Invoke-MgDriveItemWorkbookFunctionZ_Test","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/z_Test and 'Invoke-MgDriveItemWorkbookFunctionZ_Test' 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" @@ -9392,6 +10955,7 @@ "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}/items/{param}/addActivities","rename","ExternalConnectionItemActivity","Invoke-MgExternalConnectionItemAddActivities","Add-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" @@ -9567,6 +11131,14 @@ "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}/pages/{param}/sitePage/canvasLayout/horizontalSections","keep",,"New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection" +"POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns","keep",,"New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts","keep",,"New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}/getPositionOfWebPart","rename","GroupSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart","Invoke-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartGetPositionOfWebPart","Get-MgGroupSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart" +"POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts","keep",,"New-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","New-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}/getPositionOfWebPart","rename","GroupSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart","Invoke-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartGetPositionOfWebPart","Get-MgGroupSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart" +"POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts","keep",,"New-MgGroupSitePageAsSitePageWebPart","New-MgGroupSitePageAsSitePageWebPart" +"POST","/groups/{param}/sites/{param}/pages/{param}/sitePage/webParts/{param}/getPositionOfWebPart","rename","GroupSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart","Invoke-MgGroupSitePageAsSitePageWebPartGetPositionOfWebPart","Get-MgGroupSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart" "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" @@ -9716,6 +11288,9 @@ "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/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications","rename","IdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication","New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication" +"POST","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$ref","rename","IdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef","New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef","New-MgIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef" +"POST","/identity/authenticationEventsFlows/{param}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$ref","rename","IdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","New-MgIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef" "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" @@ -9880,11 +11455,40 @@ "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}/activate","rename","IdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowActivate","Initialize-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/activateWithScope","rename","IdentityGovernanceLifecycleWorkflowDeletedItemWorkflowWithScope","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowActivateWithScope","Initialize-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowWithScope" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/cancelProcessing","rename","IdentityGovernanceLifecycleWorkflowDeletedItemWorkflowProcessing","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCancelProcessing","Stop-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowProcessing" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/clearQuarantine","rename","IdentityGovernanceLifecycleWorkflowDeletedItemWorkflowQuarantine","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowClearQuarantine","Clear-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowQuarantine" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createNewVersion","rename","IdentityGovernanceLifecycleWorkflowDeletedItemWorkflowNewVersion","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreateNewVersion","New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowNewVersion" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewTaskFailures","rename","PreviewIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskFailure","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewTaskFailures","Invoke-MgPreviewIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskFailure" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewWorkflow","rename","PreviewIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewWorkflow","Invoke-MgPreviewIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/restore","rename","IdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRestore","Restore-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/resume","suppress",,"Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultResume","no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultResume' unshipped" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume","suppress",,"Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultResume","no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultResume' unshipped" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/resume","suppress",,"Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultResume","no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultResume' unshipped" "POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks","keep",,"New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/resume","suppress",,"Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultResume","no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultResume' unshipped" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume","suppress",,"Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultResume","no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultResume' unshipped" "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/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/resume","suppress",,"Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultResume","no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultResume' unshipped" "POST","/identityGovernance/lifecycleWorkflows/workflows","keep",,"New-MgIdentityGovernanceLifecycleWorkflow","New-MgIdentityGovernanceLifecycleWorkflow" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/activate","rename","IdentityGovernanceLifecycleWorkflow","Invoke-MgIdentityGovernanceLifecycleWorkflowActivate","Initialize-MgIdentityGovernanceLifecycleWorkflow" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/activateWithScope","rename","IdentityGovernanceLifecycleWorkflowWithScope","Invoke-MgIdentityGovernanceLifecycleWorkflowActivateWithScope","Initialize-MgIdentityGovernanceLifecycleWorkflowWithScope" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/cancelProcessing","rename","IdentityGovernanceLifecycleWorkflowProcessing","Invoke-MgIdentityGovernanceLifecycleWorkflowCancelProcessing","Stop-MgIdentityGovernanceLifecycleWorkflowProcessing" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/clearQuarantine","rename","IdentityGovernanceLifecycleWorkflowQuarantine","Invoke-MgIdentityGovernanceLifecycleWorkflowClearQuarantine","Clear-MgIdentityGovernanceLifecycleWorkflowQuarantine" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/createNewVersion","rename","IdentityGovernanceLifecycleWorkflowNewVersion","Invoke-MgIdentityGovernanceLifecycleWorkflowCreateNewVersion","New-MgIdentityGovernanceLifecycleWorkflowNewVersion" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewTaskFailures","rename","PreviewIdentityGovernanceLifecycleWorkflowTaskFailure","Invoke-MgIdentityGovernanceLifecycleWorkflowPreviewTaskFailures","Invoke-MgPreviewIdentityGovernanceLifecycleWorkflowTaskFailure" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewWorkflow","rename","PreviewIdentityGovernanceLifecycleWorkflow","Invoke-MgIdentityGovernanceLifecycleWorkflowPreviewWorkflow","Invoke-MgPreviewIdentityGovernanceLifecycleWorkflow" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/restore","rename","IdentityGovernanceLifecycleWorkflow","Invoke-MgIdentityGovernanceLifecycleWorkflowRestore","Restore-MgIdentityGovernanceLifecycleWorkflow" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/resume","rename","IdentityGovernanceLifecycleWorkflowRunTaskProcessingResult","Invoke-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultResume","Resume-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume","suppress",,"Invoke-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultResume","no oracle row for POST /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultResume' unshipped" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/resume","rename","IdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult","Invoke-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultResume","Resume-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult" "POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks","keep",,"New-MgIdentityGovernanceLifecycleWorkflowTask","New-MgIdentityGovernanceLifecycleWorkflowTask" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/resume","rename","IdentityGovernanceLifecycleWorkflowTaskProcessingResult","Invoke-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultResume","Resume-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume","suppress",,"Invoke-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultResume","no oracle row for POST /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultResume' unshipped" "POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks","keep",,"New-MgIdentityGovernanceLifecycleWorkflowVersionTask","New-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/resume","rename","IdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult","Invoke-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultResume","Resume-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult" +"POST","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/resume","rename","IdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult","Invoke-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultResume","Resume-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult" "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" @@ -9930,7 +11534,23 @@ "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}/building/checkIns","rename","PlaceAsBuildingCheck","New-MgPlaceAsBuildingCheckIn","New-MgPlaceAsBuildingCheck" +"POST","/places/{param}/building/map/footprints","keep",,"New-MgPlaceAsBuildingMapFootprint","New-MgPlaceAsBuildingMapFootprint" +"POST","/places/{param}/building/map/levels","keep",,"New-MgPlaceAsBuildingMapLevel","New-MgPlaceAsBuildingMapLevel" +"POST","/places/{param}/building/map/levels/{param}/fixtures","keep",,"New-MgPlaceAsBuildingMapLevelFixture","New-MgPlaceAsBuildingMapLevelFixture" +"POST","/places/{param}/building/map/levels/{param}/sections","keep",,"New-MgPlaceAsBuildingMapLevelSection","New-MgPlaceAsBuildingMapLevelSection" +"POST","/places/{param}/building/map/levels/{param}/units","keep",,"New-MgPlaceAsBuildingMapLevelUnit","New-MgPlaceAsBuildingMapLevelUnit" "POST","/places/{param}/checkIns","keep",,"New-MgPlaceCheckIn","deliberate correction; oracle ships New-MgPlaceCheck" +"POST","/places/{param}/desk/checkIns","rename","PlaceAsDeskCheck","New-MgPlaceAsDeskCheckIn","New-MgPlaceAsDeskCheck" +"POST","/places/{param}/floor/checkIns","rename","PlaceAsFloorCheck","New-MgPlaceAsFloorCheckIn","New-MgPlaceAsFloorCheck" +"POST","/places/{param}/room/checkIns","rename","PlaceAsRoomCheck","New-MgPlaceAsRoomCheckIn","New-MgPlaceAsRoomCheck" +"POST","/places/{param}/roomList/checkIns","rename","PlaceAsRoomListCheck","New-MgPlaceAsRoomListCheckIn","New-MgPlaceAsRoomListCheck" +"POST","/places/{param}/roomList/rooms","keep",,"New-MgPlaceAsRoomListRoom","New-MgPlaceAsRoomListRoom" +"POST","/places/{param}/roomList/rooms/{param}/checkIns","rename","PlaceAsRoomListRoomCheck","New-MgPlaceAsRoomListRoomCheckIn","New-MgPlaceAsRoomListRoomCheck" +"POST","/places/{param}/roomList/workspaces","keep",,"New-MgPlaceAsRoomListWorkspace","New-MgPlaceAsRoomListWorkspace" +"POST","/places/{param}/roomList/workspaces/{param}/checkIns","rename","PlaceAsRoomListWorkspaceCheck","New-MgPlaceAsRoomListWorkspaceCheckIn","New-MgPlaceAsRoomListWorkspaceCheck" +"POST","/places/{param}/section/checkIns","rename","PlaceAsSectionCheck","New-MgPlaceAsSectionCheckIn","New-MgPlaceAsSectionCheck" +"POST","/places/{param}/workspace/checkIns","rename","PlaceAsWorkspaceCheck","New-MgPlaceAsWorkspaceCheckIn","New-MgPlaceAsWorkspaceCheck" "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" @@ -10000,6 +11620,10 @@ "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","/reports/partners/billing/reconciliation/billed/export","rename","ReportPartnerBillingReconciliationBilled","Invoke-MgReportPartnerBillingReconciliationBilledExport","Export-MgReportPartnerBillingReconciliationBilled" +"POST","/reports/partners/billing/reconciliation/unbilled/export","rename","ReportPartnerBillingReconciliationUnbilled","Invoke-MgReportPartnerBillingReconciliationUnbilledExport","Export-MgReportPartnerBillingReconciliationUnbilled" +"POST","/reports/partners/billing/usage/billed/export","rename","ReportPartnerBillingUsageBilled","Invoke-MgReportPartnerBillingUsageBilledExport","Export-MgReportPartnerBillingUsageBilled" +"POST","/reports/partners/billing/usage/unbilled/export","rename","ReportPartnerBillingUsageUnbilled","Invoke-MgReportPartnerBillingUsageUnbilledExport","Export-MgReportPartnerBillingUsageUnbilled" "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" @@ -10032,6 +11656,8 @@ "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/alerts_v2","keep",,"New-MgSecurityAlertV2","New-MgSecurityAlertV2" +"POST","/security/alerts_v2/moveAlerts","rename","SecurityAlert","Invoke-MgSecurityAlertV2MoveAlerts","Move-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" @@ -10047,18 +11673,39 @@ "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}/close","rename","SecurityCaseEdiscoveryCase","Invoke-MgSecurityCaseEdiscoveryCaseClose","Close-MgSecurityCaseEdiscoveryCase" "POST","/security/cases/ediscoveryCases/{param}/custodians","keep",,"New-MgSecurityCaseEdiscoveryCaseCustodian","New-MgSecurityCaseEdiscoveryCaseCustodian" +"POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/activate","rename","SecurityCaseEdiscoveryCaseCustodian","Invoke-MgSecurityCaseEdiscoveryCaseCustodianActivate","Initialize-MgSecurityCaseEdiscoveryCaseCustodian" +"POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/applyHold","rename","SecurityCaseEdiscoveryCaseCustodianHold","Invoke-MgSecurityCaseEdiscoveryCaseCustodianApplyHold","Add-MgSecurityCaseEdiscoveryCaseCustodianHold" +"POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/release","rename","SecurityCaseEdiscoveryCaseCustodian","Invoke-MgSecurityCaseEdiscoveryCaseCustodianRelease","Publish-MgSecurityCaseEdiscoveryCaseCustodian" +"POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/removeHold","rename","SecurityCaseEdiscoveryCaseCustodianHold","Invoke-MgSecurityCaseEdiscoveryCaseCustodianRemoveHold","Remove-MgSecurityCaseEdiscoveryCaseCustodianHold" "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}/updateIndex","rename","SecurityCaseEdiscoveryCaseCustodianIndex","Invoke-MgSecurityCaseEdiscoveryCaseCustodianUpdateIndex","Update-MgSecurityCaseEdiscoveryCaseCustodianIndex" "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}/noncustodialDataSources/{param}/applyHold","rename","SecurityCaseEdiscoveryCaseNoncustodialDataSourceHold","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceApplyHold","Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold" +"POST","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/release","rename","SecurityCaseEdiscoveryCaseNoncustodialDataSource","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRelease","Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"POST","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/removeHold","rename","SecurityCaseEdiscoveryCaseNoncustodialDataSourceHold","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRemoveHold","Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold" +"POST","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/updateIndex","rename","SecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceUpdateIndex","Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex" "POST","/security/cases/ediscoveryCases/{param}/operations","keep",,"New-MgSecurityCaseEdiscoveryCaseOperation","New-MgSecurityCaseEdiscoveryCaseOperation" +"POST","/security/cases/ediscoveryCases/{param}/reopen","rename","ReopenSecurityCaseEdiscoveryCase","Invoke-MgSecurityCaseEdiscoveryCaseReopen","Invoke-MgReopenSecurityCaseEdiscoveryCase" "POST","/security/cases/ediscoveryCases/{param}/reviewSets","keep",,"New-MgSecurityCaseEdiscoveryCaseReviewSet","New-MgSecurityCaseEdiscoveryCaseReviewSet" +"POST","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/addToReviewSet","rename","SecurityCaseEdiscoveryCaseReviewSetToReviewSet","Invoke-MgSecurityCaseEdiscoveryCaseReviewSetAddToReviewSet","Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet" +"POST","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/export","rename","SecurityCaseEdiscoveryCaseReviewSet","Invoke-MgSecurityCaseEdiscoveryCaseReviewSetExport","Export-MgSecurityCaseEdiscoveryCaseReviewSet" "POST","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries","keep",,"New-MgSecurityCaseEdiscoveryCaseReviewSetQuery","New-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"POST","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}/applyTags","rename","SecurityCaseEdiscoveryCaseReviewSetQueryTag","Invoke-MgSecurityCaseEdiscoveryCaseReviewSetQueryApplyTags","Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag" +"POST","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}/export","rename","SecurityCaseEdiscoveryCaseReviewSetQuery","Invoke-MgSecurityCaseEdiscoveryCaseReviewSetQueryExport","Export-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}/searches/{param}/estimateStatistics","rename","EstimateSecurityCaseEdiscoveryCaseSearchStatistics","Invoke-MgSecurityCaseEdiscoveryCaseSearchEstimateStatistics","Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics" +"POST","/security/cases/ediscoveryCases/{param}/searches/{param}/exportReport","rename","SecurityCaseEdiscoveryCaseSearchReport","Invoke-MgSecurityCaseEdiscoveryCaseSearchExportReport","Export-MgSecurityCaseEdiscoveryCaseSearchReport" +"POST","/security/cases/ediscoveryCases/{param}/searches/{param}/exportResult","rename","SecurityCaseEdiscoveryCaseSearchResult","Invoke-MgSecurityCaseEdiscoveryCaseSearchExportResult","Export-MgSecurityCaseEdiscoveryCaseSearchResult" +"POST","/security/cases/ediscoveryCases/{param}/searches/{param}/purgeData","rename","SecurityCaseEdiscoveryCaseSearchData","Invoke-MgSecurityCaseEdiscoveryCaseSearchPurgeData","Clear-MgSecurityCaseEdiscoveryCaseSearchData" +"POST","/security/cases/ediscoveryCases/{param}/settings/resetToDefault","rename","SecurityCaseEdiscoveryCaseSettingToDefault","Invoke-MgSecurityCaseEdiscoveryCaseSettingResetToDefault","Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault" "POST","/security/cases/ediscoveryCases/{param}/tags","keep",,"New-MgSecurityCaseEdiscoveryCaseTag","New-MgSecurityCaseEdiscoveryCaseTag" "POST","/security/collaboration/analyzedEmails","keep",,"New-MgSecurityCollaborationAnalyzedEmail","New-MgSecurityCollaborationAnalyzedEmail" +"POST","/security/collaboration/analyzedEmails/remediate","rename","RemediateSecurityCollaborationAnalyzedEmail","Invoke-MgSecurityCollaborationAnalyzedEmailRemediate","Invoke-MgRemediateSecurityCollaborationAnalyzedEmail" "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" @@ -10067,9 +11714,13 @@ "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/identityAccounts/{param}/invokeAction","rename","InvokeSecurityIdentityAccountAction","Invoke-MgSecurityIdentityAccountInvokeAction","Invoke-MgInvokeSecurityIdentityAccountAction" "POST","/security/identities/sensorCandidates","keep",,"New-MgSecurityIdentitySensorCandidate","New-MgSecurityIdentitySensorCandidate" +"POST","/security/identities/sensorCandidates/activate","rename","SecurityIdentitySensorCandidate","Invoke-MgSecurityIdentitySensorCandidateActivate","Initialize-MgSecurityIdentitySensorCandidate" "POST","/security/identities/sensors","keep",,"New-MgSecurityIdentitySensor","New-MgSecurityIdentitySensor" +"POST","/security/identities/sensors/regenerateDeploymentAccessKey","rename","SecurityIdentitySensorDeploymentAccessKey","Invoke-MgSecurityIdentitySensorRegenerateDeploymentAccessKey","New-MgSecurityIdentitySensorDeploymentAccessKey" "POST","/security/incidents","keep",,"New-MgSecurityIncident","New-MgSecurityIncident" +"POST","/security/incidents/mergeIncidents","rename","SecurityIncident","Invoke-MgSecurityIncidentMergeIncidents","Merge-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" @@ -10078,6 +11729,7 @@ "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/runHuntingQuery","rename","SecurityHuntingQuery","Invoke-MgSecurityRunHuntingQuery","Start-MgSecurityHuntingQuery" "POST","/security/secureScoreControlProfiles","keep",,"New-MgSecuritySecureScoreControlProfile","New-MgSecuritySecureScoreControlProfile" "POST","/security/secureScores","keep",,"New-MgSecuritySecureScore","New-MgSecuritySecureScore" "POST","/security/subjectRightsRequests","keep",,"New-MgSecuritySubjectRightsRequest","New-MgSecuritySubjectRightsRequest" @@ -10239,6 +11891,14 @@ "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}/pages/{param}/sitePage/canvasLayout/horizontalSections","keep",,"New-MgSitePageAsSitePageCanvaLayoutHorizontalSection","New-MgSitePageAsSitePageCanvaLayoutHorizontalSection" +"POST","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns","keep",,"New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn" +"POST","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts","keep",,"New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart" +"POST","/sites/{param}/pages/{param}/sitePage/canvasLayout/horizontalSections/{param}/columns/{param}/webparts/{param}/getPositionOfWebPart","rename","SitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart","Invoke-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartGetPositionOfWebPart","Get-MgSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart" +"POST","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts","keep",,"New-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","New-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart" +"POST","/sites/{param}/pages/{param}/sitePage/canvasLayout/verticalSection/webparts/{param}/getPositionOfWebPart","rename","SitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart","Invoke-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartGetPositionOfWebPart","Get-MgSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart" +"POST","/sites/{param}/pages/{param}/sitePage/webParts","keep",,"New-MgSitePageAsSitePageWebPart","New-MgSitePageAsSitePageWebPart" +"POST","/sites/{param}/pages/{param}/sitePage/webParts/{param}/getPositionOfWebPart","rename","SitePageMicrosoftGraphSitePageWebPartPositionOfWebPart","Invoke-MgSitePageAsSitePageWebPartGetPositionOfWebPart","Get-MgSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart" "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" @@ -10850,43 +12510,43 @@ "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","/admin/serviceAnnouncement/messages/{param}/attachments/{param}/content","suppress",,"Set-MgAdminServiceAnnouncementMessageAttachmentContent","no oracle row for PUT /admin/serviceAnnouncement/messages/{param}/attachments/{param}/content 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","/communications/adhocCalls/{param}/recordings/{param}/content","keep",,"Set-MgCommunicationAdhocCallRecordingContent","Set-MgCommunicationAdhocCallRecordingContent" +"PUT","/communications/adhocCalls/{param}/transcripts/{param}/content","keep",,"Set-MgCommunicationAdhocCallTranscriptContent","Set-MgCommunicationAdhocCallTranscriptContent" +"PUT","/communications/onlineMeetings/{param}/recordings/{param}/content","keep",,"Set-MgCommunicationOnlineMeetingRecordingContent","Set-MgCommunicationOnlineMeetingRecordingContent" +"PUT","/communications/onlineMeetings/{param}/transcripts/{param}/content","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","/drives/{param}/bundles/{param}/content","keep",,"Set-MgDriveBundleContent","Set-MgDriveBundleContent" +"PUT","/drives/{param}/following/{param}/content","keep",,"Set-MgDriveFollowingContent","Set-MgDriveFollowingContent" +"PUT","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","suppress",,"Set-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent","no oracle row for PUT /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content and 'Set-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent' unshipped" +"PUT","/drives/{param}/items/{param}/children/{param}/content","keep",,"Set-MgDriveItemChildContent","Set-MgDriveItemChildContent" +"PUT","/drives/{param}/items/{param}/content","keep",,"Set-MgDriveItemContent","Set-MgDriveItemContent" +"PUT","/drives/{param}/items/{param}/versions/{param}/content","keep",,"Set-MgDriveItemVersionContent","Set-MgDriveItemVersionContent" +"PUT","/drives/{param}/list/items/{param}/driveItem/content","keep",,"Set-MgDriveListItemDriveItemContent","Set-MgDriveListItemDriveItemContent" +"PUT","/drives/{param}/root/content","keep",,"Set-MgDriveRootContent","Set-MgDriveRootContent" +"PUT","/drives/{param}/special/{param}/content","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}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","keep",,"Set-MgGroupOnenoteNotebookSectionGroupSectionPageContent","Set-MgGroupOnenoteNotebookSectionGroupSectionPageContent" +"PUT","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","keep",,"Set-MgGroupOnenoteNotebookSectionPageContent","Set-MgGroupOnenoteNotebookSectionPageContent" +"PUT","/groups/{param}/onenote/pages/{param}/content","keep",,"Set-MgGroupOnenotePageContent","Set-MgGroupOnenotePageContent" +"PUT","/groups/{param}/onenote/resources/{param}/content","keep",,"Set-MgGroupOnenoteResourceContent","Set-MgGroupOnenoteResourceContent" +"PUT","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","keep",,"Set-MgGroupOnenoteSectionGroupSectionPageContent","Set-MgGroupOnenoteSectionGroupSectionPageContent" +"PUT","/groups/{param}/onenote/sections/{param}/pages/{param}/content","keep",,"Set-MgGroupOnenoteSectionPageContent","Set-MgGroupOnenoteSectionPageContent" +"PUT","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","keep",,"Set-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent","Set-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent" +"PUT","/groups/{param}/sites/{param}/lists/{param}/items/{param}/driveItem/content","keep",,"Set-MgGroupSiteListItemDriveItemContent","Set-MgGroupSiteListItemDriveItemContent" +"PUT","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","keep",,"Set-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent","Set-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent" +"PUT","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","keep",,"Set-MgGroupSiteOnenoteNotebookSectionPageContent","Set-MgGroupSiteOnenoteNotebookSectionPageContent" +"PUT","/groups/{param}/sites/{param}/onenote/pages/{param}/content","keep",,"Set-MgGroupSiteOnenotePageContent","Set-MgGroupSiteOnenotePageContent" +"PUT","/groups/{param}/sites/{param}/onenote/resources/{param}/content","keep",,"Set-MgGroupSiteOnenoteResourceContent","Set-MgGroupSiteOnenoteResourceContent" +"PUT","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","keep",,"Set-MgGroupSiteOnenoteSectionGroupSectionPageContent","Set-MgGroupSiteOnenoteSectionGroupSectionPageContent" +"PUT","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/content","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/channels/{param}/filesFolder/content","keep",,"Set-MgGroupTeamChannelFileFolderContent","Set-MgGroupTeamChannelFileFolderContent" +"PUT","/groups/{param}/team/primaryChannel/filesFolder/content","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" @@ -10895,35 +12555,35 @@ "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","/shares/{param}/driveItem/content","keep",,"Set-MgShareDriveItemContent","Set-MgShareDriveItemContent" +"PUT","/shares/{param}/items/{param}/content","keep",,"Set-MgShareItemContent","Set-MgShareItemContent" +"PUT","/shares/{param}/list/items/{param}/driveItem/content","keep",,"Set-MgShareListItemDriveItemContent","Set-MgShareListItemDriveItemContent" +"PUT","/shares/{param}/root/content","keep",,"Set-MgShareRootContent","Set-MgShareRootContent" +"PUT","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content","keep",,"Set-MgSiteAnalyticItemActivityStatActivityDriveItemContent","Set-MgSiteAnalyticItemActivityStatActivityDriveItemContent" +"PUT","/sites/{param}/lists/{param}/items/{param}/driveItem/content","keep",,"Set-MgSiteListItemDriveItemContent","Set-MgSiteListItemDriveItemContent" +"PUT","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","keep",,"Set-MgSiteOnenoteNotebookSectionGroupSectionPageContent","Set-MgSiteOnenoteNotebookSectionGroupSectionPageContent" +"PUT","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","keep",,"Set-MgSiteOnenoteNotebookSectionPageContent","Set-MgSiteOnenoteNotebookSectionPageContent" +"PUT","/sites/{param}/onenote/pages/{param}/content","keep",,"Set-MgSiteOnenotePageContent","Set-MgSiteOnenotePageContent" +"PUT","/sites/{param}/onenote/resources/{param}/content","keep",,"Set-MgSiteOnenoteResourceContent","Set-MgSiteOnenoteResourceContent" +"PUT","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","keep",,"Set-MgSiteOnenoteSectionGroupSectionPageContent","Set-MgSiteOnenoteSectionGroupSectionPageContent" +"PUT","/sites/{param}/onenote/sections/{param}/pages/{param}/content","keep",,"Set-MgSiteOnenoteSectionPageContent","Set-MgSiteOnenoteSectionPageContent" +"PUT","/teams/{param}/channels/{param}/filesFolder/content","keep",,"Set-MgTeamChannelFileFolderContent","Set-MgTeamChannelFileFolderContent" +"PUT","/teams/{param}/primaryChannel/filesFolder/content","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","/teamwork/deletedTeams/{param}/channels/{param}/filesFolder/content","keep",,"Set-MgTeamworkDeletedTeamChannelFileFolderContent","Set-MgTeamworkDeletedTeamChannelFileFolderContent" +"PUT","/users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/content","suppress",,"Set-MgUserJoinedTeamChannelFileFolderContent","no oracle row for PUT /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/content and 'Set-MgUserJoinedTeamChannelFileFolderContent' unshipped" +"PUT","/users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/content","suppress",,"Set-MgUserJoinedTeamPrimaryChannelFileFolderContent","no oracle row for PUT /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/content 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}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/content","keep",,"Set-MgUserOnenoteNotebookSectionGroupSectionPageContent","Set-MgUserOnenoteNotebookSectionGroupSectionPageContent" +"PUT","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/content","keep",,"Set-MgUserOnenoteNotebookSectionPageContent","Set-MgUserOnenoteNotebookSectionPageContent" +"PUT","/users/{param}/onenote/pages/{param}/content","keep",,"Set-MgUserOnenotePageContent","Set-MgUserOnenotePageContent" +"PUT","/users/{param}/onenote/resources/{param}/content","keep",,"Set-MgUserOnenoteResourceContent","Set-MgUserOnenoteResourceContent" +"PUT","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/content","keep",,"Set-MgUserOnenoteSectionGroupSectionPageContent","Set-MgUserOnenoteSectionGroupSectionPageContent" +"PUT","/users/{param}/onenote/sections/{param}/pages/{param}/content","keep",,"Set-MgUserOnenoteSectionPageContent","Set-MgUserOnenoteSectionPageContent" +"PUT","/users/{param}/onlineMeetings/{param}/recordings/{param}/content","keep",,"Set-MgUserOnlineMeetingRecordingContent","Set-MgUserOnlineMeetingRecordingContent" +"PUT","/users/{param}/onlineMeetings/{param}/transcripts/{param}/content","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" +"PUT","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}/content","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 index adb7b8888b2..eba507fd43d 100644 --- a/tools/WrapperGenerator/data/parity-suppressions.v1.0.json +++ b/tools/WrapperGenerator/data/parity-suppressions.v1.0.json @@ -62,11 +62,11 @@ { "apiVersion": "v1.0", "method": "DELETE", - "uri": "/admin/serviceannouncement/messages/{}/attachments/{}/$value", + "uri": "/admin/serviceannouncement/messages/{}/attachments/{}/content", "action": "suppress", "evidence": { "ourCommand": "Remove-MgAdminServiceAnnouncementMessageAttachmentContent", - "oracle": "no oracle row for DELETE /admin/serviceAnnouncement/messages/{param}/attachments/{param}/$value and 'Remove-MgAdminServiceAnnouncementMessageAttachmentContent' unshipped" + "oracle": "no oracle row for DELETE /admin/serviceAnnouncement/messages/{param}/attachments/{param}/content and 'Remove-MgAdminServiceAnnouncementMessageAttachmentContent' unshipped" } }, { @@ -252,11 +252,11 @@ { "apiVersion": "v1.0", "method": "DELETE", - "uri": "/drives/{}/items/{}/analytics/itemactivitystats/{}/activities/{}/driveitem/$value", + "uri": "/drives/{}/items/{}/analytics/itemactivitystats/{}/activities/{}/driveitem/content", "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" + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content and 'Remove-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent' unshipped" } }, { @@ -2232,11 +2232,11 @@ { "apiVersion": "v1.0", "method": "DELETE", - "uri": "/users/{}/joinedteams/{}/channels/{}/filesfolder/$value", + "uri": "/users/{}/joinedteams/{}/channels/{}/filesfolder/content", "action": "suppress", "evidence": { "ourCommand": "Remove-MgUserJoinedTeamChannelFileFolderContent", - "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/$value and 'Remove-MgUserJoinedTeamChannelFileFolderContent' unshipped" + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/content and 'Remove-MgUserJoinedTeamChannelFileFolderContent' unshipped" } }, { @@ -2402,11 +2402,11 @@ { "apiVersion": "v1.0", "method": "DELETE", - "uri": "/users/{}/joinedteams/{}/primarychannel/filesfolder/$value", + "uri": "/users/{}/joinedteams/{}/primarychannel/filesfolder/content", "action": "suppress", "evidence": { "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannelFileFolderContent", - "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/$value and 'Remove-MgUserJoinedTeamPrimaryChannelFileFolderContent' unshipped" + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/content and 'Remove-MgUserJoinedTeamPrimaryChannelFileFolderContent' unshipped" } }, { @@ -2939,6 +2939,26 @@ "oracle": "no oracle row for GET /communications/callRecords/{param}/sessions/{param}/segments/{param} and 'Get-MgCommunicationCallRecordSessionSegment' unshipped" } }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/communications/callrecords/getdirectroutingcalls(fromdatetime={fromdatetime},todatetime={todatetime})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgCommunicationCallRecordGetDirectRoutingCallsWithFromDateTimeWithToDateTime", + "oracle": "no oracle row for GET /communications/callRecords/getDirectRoutingCalls(fromDateTime={fromDateTime},toDateTime={toDateTime}) and 'Get-MgCommunicationCallRecordGetDirectRoutingCallsWithFromDateTimeWithToDateTime' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/communications/callrecords/getpstncalls(fromdatetime={fromdatetime},todatetime={todatetime})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgCommunicationCallRecordGetPstnCallsWithFromDateTimeWithToDateTime", + "oracle": "no oracle row for GET /communications/callRecords/getPstnCalls(fromDateTime={fromDateTime},toDateTime={toDateTime}) and 'Get-MgCommunicationCallRecordGetPstnCallsWithFromDateTimeWithToDateTime' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -2959,6 +2979,16 @@ "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/{}/driveitem/content", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content and 'Get-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -2969,6 +2999,16 @@ "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/{}/getactivitiesbyinterval(startdatetime='{startdatetime}',enddatetime='{enddatetime}',interval='{interval}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgDriveItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3079,6 +3119,36 @@ "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/boundingrect(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookNameRangeBoundingRectWithAnotherRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/cell(row={row},column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookNameRangeCellWithRowWithColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/column(column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookNameRangeColumnWithColumn' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3089,6 +3159,16 @@ "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/columnsafter(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookNameRangeColumnsAfterWithCount' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3099,6 +3179,16 @@ "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/columnsbefore(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookNameRangeColumnsBeforeWithCount' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3119,6 +3209,16 @@ "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/intersection(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookNameRangeIntersectionWithAnotherRange' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3149,6 +3249,36 @@ "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/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookNameRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookNameRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/row(row={row})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookNameRangeRowWithRow' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3159,6 +3289,16 @@ "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/rowsabove(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookNameRangeRowsAboveWithCount' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3169,6 +3309,16 @@ "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/rowsbelow(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookNameRangeRowsBelowWithCount' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3179,6 +3329,16 @@ "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/usedrange(valuesonly={valuesonly})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookNameRangeUsedRangeWithValuesOnly' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3239,6 +3399,26 @@ "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/sessioninforesource(key='{key}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookSessionInfoResourceWithKey", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/sessionInfoResource(key='{key}') and 'Get-MgDriveItemWorkbookSessionInfoResourceWithKey' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tablerowoperationresult(key='{key}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowOperationResultWithKey", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tableRowOperationResult(key='{key}') and 'Get-MgDriveItemWorkbookTableRowOperationResultWithKey' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3289,6 +3469,36 @@ "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/boundingrect(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeBoundingRectWithAnotherRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/cell(row={row},column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeCellWithRowWithColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/column(column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/column(column={column}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnWithColumn' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3299,6 +3509,16 @@ "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/columnsafter(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfterWithCount' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3309,6 +3529,16 @@ "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/columnsbefore(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsBeforeWithCount' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3329,6 +3559,16 @@ "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/intersection(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeIntersectionWithAnotherRange' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -3362,3411 +3602,6011 @@ { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/rowsabove", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/usedrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/row(row={row}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/visibleview", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/rowsabove", "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" + "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/{}/filter", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/rowsbelow", "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" + "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/{}/headerrowrange/columnsafter", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/rowsbelow(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/usedrange", "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" + "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/{}/headerrowrange/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/entirerow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/visibleview", "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" + "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/{}/headerrowrange/lastcell", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter", "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" + "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/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange", "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" + "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/lastrow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/boundingrect(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/rowsabove", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/usedrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/columnsafter", "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" + "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/visibleview", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/columnsafter(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/columnsbefore", "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" + "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/{}/range/columnsafter", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/columnsbefore(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBeforeWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/entirecolumn", "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" + "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/{}/range/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/entirerow", "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" + "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/{}/range/entirerow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/intersection(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/lastcell", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/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" + "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/{}/range/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/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" + "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/{}/range/lastrow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/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" + "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/{}/range/rowsabove", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/usedrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/visibleview", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/rowsabove", "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" + "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/{}/totalrowrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/columnsafter", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/rowsbelow", "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" + "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/{}/totalrowrange/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/rowsbelow(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/usedrange", "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" + "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/{}/totalrowrange/entirerow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/lastcell", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/visibleview", "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" + "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/{}/totalrowrange/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range", "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" + "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/{}/totalrowrange/lastrow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/boundingrect(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/rowsabove", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableColumnRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookTableColumnRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/usedrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/columnsafter", "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" + "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/{}/totalrowrange/visibleview", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/columnsafter(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableColumnRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/$count", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/columnsbefore", "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" + "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/{}/databodyrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/columnsbefore(count={count})", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRange", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange and 'Get-MgDriveItemWorkbookTableDataBodyRange' unshipped" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableColumnRangeColumnsBeforeWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/columnsafter", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/entirecolumn", "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" + "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/{}/databodyrange/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/entirerow", "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" + "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/{}/databodyrange/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/intersection(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/entirerow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/lastcell", "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" + "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/{}/databodyrange/lastcell", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/lastcolumn", "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" + "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/{}/databodyrange/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/lastrow", "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" + "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/{}/databodyrange/lastrow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/rowsabove", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookTableColumnRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/usedrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/rowsabove", "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" + "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/{}/databodyrange/visibleview", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableColumnRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/rowsbelow", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRange", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange and 'Get-MgDriveItemWorkbookTableHeaderRowRange' unshipped" + "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/{}/headerrowrange/columnsafter", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/rowsbelow(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableColumnRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/usedrange", "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" + "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/{}/headerrowrange/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableColumnRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/entirerow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/visibleview", "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" + "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/{}/headerrowrange/lastcell", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange", "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" + "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/{}/headerrowrange/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/boundingrect(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/lastrow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/rowsabove", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/columnsafter", "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" + "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/{}/headerrowrange/usedrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/columnsafter(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/visibleview", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/columnsbefore", "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" + "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/{}/range", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/columnsbefore(count={count})", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookTableRange", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range and 'Get-MgDriveItemWorkbookTableRange' unshipped" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsBeforeWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/range/columnsafter", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/entirecolumn", "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" + "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/{}/range/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/entirerow", "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" + "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/{}/range/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/intersection(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/range/entirerow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/lastcell", "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" + "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/{}/range/lastcell", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/lastcolumn", "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" + "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/{}/range/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/lastrow", "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" + "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/{}/range/lastrow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/range/rowsabove", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/range/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/range/usedrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/rowsabove", "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" + "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/{}/range/visibleview", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/rows", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/rowsbelow", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookTableRow", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows and 'Get-MgDriveItemWorkbookTableRow' unshipped" + "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/{}/rows/{}", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/rowsbelow(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/usedrange", "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" + "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/{}/rows/{}/range/columnsafter", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/visibleview", "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" + "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/{}/rows/{}/range/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/count", "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" + "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/{}/rows/{}/range/entirerow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/itemat(index={index})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableColumnItemAtWithIndex", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/itemAt(index={index}) and 'Get-MgDriveItemWorkbookTableColumnItemAtWithIndex' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/lastcell", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange", "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" + "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/{}/rows/{}/range/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/boundingrect(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableDataBodyRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/lastrow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/rowsabove", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/column(column={column}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/columnsafter", "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" + "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/{}/rows/{}/range/usedrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/columnsafter(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/visibleview", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/columnsbefore", "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" + "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/{}/rows/$count", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/columnsbefore(count={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" + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeColumnsBeforeWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/sort", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/entirecolumn", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookTableSort", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/sort and 'Get-MgDriveItemWorkbookTableSort' unshipped" + "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/{}/totalrowrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/entirerow", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRange", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange and 'Get-MgDriveItemWorkbookTableTotalRowRange' unshipped" + "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/{}/totalrowrange/columnsafter", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/intersection(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableDataBodyRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/lastcell", "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" + "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/{}/totalrowrange/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/lastcolumn", "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" + "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/{}/totalrowrange/entirerow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/lastrow", "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" + "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/{}/totalrowrange/lastcell", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/lastrow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/row(row={row}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/rowsabove", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/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" + "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/{}/totalrowrange/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/usedrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/rowsbelow", "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" + "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/{}/totalrowrange/visibleview", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/rowsbelow(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/tables/{}/worksheet", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/usedrange", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookTableWorksheet", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/worksheet and 'Get-MgDriveItemWorkbookTableWorksheet' unshipped" + "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/$count", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/usedrange(valuesonly={valuesonly})", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookTableCount", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/$count and 'Get-MgDriveItemWorkbookTableCount' unshipped" + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableDataBodyRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/visibleview", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookWorksheet", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets and 'Get-MgDriveItemWorkbookWorksheet' unshipped" + "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/worksheets/{}", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookWorksheet", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param} and 'Get-MgDriveItemWorkbookWorksheet' unshipped" + "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/worksheets/{}/charts", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/boundingrect(anotherrange='{anotherrange}')", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookWorksheetChart", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts and 'Get-MgDriveItemWorkbookWorksheetChart' unshipped" + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableHeaderRowRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/columnsafter", "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" + "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/worksheets/{}/charts/{}/axes/categoryaxis/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/columnsafter(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/format/font", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/columnsbefore", "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" + "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/worksheets/{}/charts/{}/axes/categoryaxis/format/line", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/columnsbefore(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsBeforeWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/entirecolumn", "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" + "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/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/entirerow", "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" + "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/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines/format/line", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/intersection(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableHeaderRowRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/lastcell", "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" + "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/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/lastcolumn", "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" + "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/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines/format/line", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/lastrow", "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" + "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/worksheets/{}/charts/{}/axes/categoryaxis/title", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/title/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/title/format/font", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/rowsabove", "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" + "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/worksheets/{}/charts/{}/axes/seriesaxis/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/format/font", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/rowsbelow", "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" + "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/worksheets/{}/charts/{}/axes/seriesaxis/format/line", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/rowsbelow(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/usedrange", "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" + "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/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableHeaderRowRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines/format/line", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/visibleview", "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" + "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/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range", "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" + "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/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/boundingrect(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines/format/line", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/title", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookTableRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/title/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/columnsafter", "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" + "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/worksheets/{}/charts/{}/axes/seriesaxis/title/format/font", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/columnsafter(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/columnsbefore", "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" + "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/worksheets/{}/charts/{}/axes/valueaxis/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/columnsbefore(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableRangeColumnsBeforeWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/format/font", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/entirecolumn", "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" + "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/worksheets/{}/charts/{}/axes/valueaxis/format/line", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/entirerow", "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" + "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/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/intersection(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/lastcell", "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" + "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/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines/format/line", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/lastcolumn", "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" + "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/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/lastrow", "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" + "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/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines/format/line", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/title", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookTableRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/title/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/rowsabove", "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" + "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/worksheets/{}/charts/{}/axes/valueaxis/title/format/font", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/rowsbelow", "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" + "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/worksheets/{}/charts/{}/datalabels/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/rowsbelow(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels/format/fill", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/usedrange", "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" + "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/worksheets/{}/charts/{}/datalabels/format/font", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/visibleview", "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" + "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/worksheets/{}/charts/{}/format/fill", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows", "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" + "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/worksheets/{}/charts/{}/format/font", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}", "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" + "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/worksheets/{}/charts/{}/image", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range", "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" + "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/worksheets/{}/charts/{}/legend", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/boundingrect(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableRowRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableRowRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format/fill", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookTableRowRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format/font", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/columnsafter", "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" + "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/worksheets/{}/charts/{}/series", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/columnsafter(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableRowRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/columnsbefore", "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" + "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/worksheets/{}/charts/{}/series/{}/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/columnsbefore(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableRowRangeColumnsBeforeWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format/fill", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/entirecolumn", "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" + "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/worksheets/{}/charts/{}/series/{}/format/line", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/entirerow", "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" + "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/worksheets/{}/charts/{}/series/{}/points", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/intersection(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableRowRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points/{}/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/lastcell", "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" + "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/worksheets/{}/charts/{}/series/{}/points/{}/format/fill", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/lastcolumn", "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" + "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/worksheets/{}/charts/{}/series/{}/points/$count", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/lastrow", "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" + "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/worksheets/{}/charts/{}/series/$count", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookTableRowRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format/fill", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/rowsabove", "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" + "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/worksheets/{}/charts/{}/title/format/font", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableRowRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/worksheet", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/rowsbelow", "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" + "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/worksheets/{}/charts/$count", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/rowsbelow(count={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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableRowRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/usedrange", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookWorksheetName", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names and 'Get-MgDriveItemWorkbookWorksheetName' unshipped" + "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/worksheets/{}/names/{}/range", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableRowRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/columnsafter", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/visibleview", "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" + "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/worksheets/{}/names/{}/range/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/count", "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" + "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/worksheets/{}/names/{}/range/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/itemat(index={index})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableRowItemAtWithIndex", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/itemAt(index={index}) and 'Get-MgDriveItemWorkbookTableRowItemAtWithIndex' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/entirerow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/sort", "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" + "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/worksheets/{}/names/{}/range/lastcell", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange", "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" + "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/worksheets/{}/names/{}/range/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/boundingrect(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableTotalRowRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/lastrow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/rowsabove", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/columnsafter", "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" + "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/worksheets/{}/names/{}/range/usedrange", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/columnsafter(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/visibleview", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/columnsbefore", "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" + "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/worksheets/{}/names/{}/worksheet", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/columnsbefore(count={count})", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameWorksheet", + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeColumnsBeforeWithCount' 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/intersection(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookTableTotalRowRangeIntersectionWithAnotherRange' 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/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/row(row={row})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeRowWithRow' 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/rowsabove(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeRowsAboveWithCount' 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/rowsbelow(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeRowsBelowWithCount' 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/usedrange(valuesonly={valuesonly})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookTableTotalRowRangeUsedRangeWithValuesOnly' 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/tables/itemat(index={index})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableItemAtWithIndex", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/itemAt(index={index}) and 'Get-MgDriveItemWorkbookTableItemAtWithIndex' 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/{}/cell(row={row},column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetCellWithRowWithColumn' 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/{}/image(width={width},height={height},fittingmode='{fittingmode}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartImageWithWidthWithHeightWithFittingMode", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image(width={width},height={height},fittingMode='{fittingMode}') and 'Get-MgDriveItemWorkbookWorksheetChartImageWithWidthWithHeightWithFittingMode' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/image(width={width},height={height})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartImageWithWidthWithHeight", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image(width={width},height={height}) and 'Get-MgDriveItemWorkbookWorksheetChartImageWithWidthWithHeight' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/image(width={width})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartImageWithWidth", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image(width={width}) and 'Get-MgDriveItemWorkbookWorksheetChartImageWithWidth' 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/{}/points/itemat(index={index})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartSeryPointItemAtWithIndex", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/itemAt(index={index}) and 'Get-MgDriveItemWorkbookWorksheetChartSeryPointItemAtWithIndex' 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/{}/series/itemat(index={index})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartSeryItemAtWithIndex", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/itemAt(index={index}) and 'Get-MgDriveItemWorkbookWorksheetChartSeryItemAtWithIndex' 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/{}/charts/item(name='{name}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartItemWithName", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/item(name='{name}') and 'Get-MgDriveItemWorkbookWorksheetChartItemWithName' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/itemat(index={index})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartItemAtWithIndex", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/itemAt(index={index}) and 'Get-MgDriveItemWorkbookWorksheetChartItemAtWithIndex' 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/boundingrect(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetNameRangeBoundingRectWithAnotherRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/cell(row={row},column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeCellWithRowWithColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/column(column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeColumnWithColumn' 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/columnsafter(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeColumnsAfterWithCount' 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/columnsbefore(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeColumnsBeforeWithCount' 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/intersection(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetNameRangeIntersectionWithAnotherRange' 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/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/row(row={row})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeRowWithRow' 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/rowsabove(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeRowsAboveWithCount' 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/rowsbelow(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeRowsBelowWithCount' 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/usedrange(valuesonly={valuesonly})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetNameRangeUsedRangeWithValuesOnly' 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", + "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(address='{address}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeWithAddress", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range(address='{address}') and 'Get-MgDriveItemWorkbookWorksheetRangeWithAddress' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/boundingrect(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetRangeBoundingRectWithAnotherRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/cell(row={row},column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetRangeCellWithRowWithColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/column(column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetRangeColumnWithColumn' 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/columnsafter(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetRangeColumnsAfterWithCount' 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/columnsbefore(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetRangeColumnsBeforeWithCount' 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/intersection(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetRangeIntersectionWithAnotherRange' 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/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/row(row={row})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetRangeRowWithRow' 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/rowsabove(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetRangeRowsAboveWithCount' 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/rowsbelow(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetRangeRowsBelowWithCount' 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/usedrange(valuesonly={valuesonly})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetRangeUsedRangeWithValuesOnly' 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/boundingrect(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeBoundingRectWithAnotherRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/cell(row={row},column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeCellWithRowWithColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/column(column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnWithColumn' 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/columnsafter(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfterWithCount' 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/columnsbefore(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBeforeWithCount' 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/intersection(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeIntersectionWithAnotherRange' 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/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/row(row={row})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowWithRow' 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/rowsabove(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAboveWithCount' 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/rowsbelow(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelowWithCount' 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/usedrange(valuesonly={valuesonly})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRangeWithValuesOnly' 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/boundingrect(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeBoundingRectWithAnotherRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/cell(row={row},column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeCellWithRowWithColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/column(column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnWithColumn' 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/columnsafter(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfterWithCount' 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/columnsbefore(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBeforeWithCount' 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/intersection(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeIntersectionWithAnotherRange' 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/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/row(row={row})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowWithRow' 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/rowsabove(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAboveWithCount' 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/rowsbelow(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelowWithCount' 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/usedrange(valuesonly={valuesonly})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRangeWithValuesOnly' 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/boundingrect(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeBoundingRectWithAnotherRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/cell(row={row},column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeCellWithRowWithColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/column(column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnWithColumn' 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/columnsafter(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfterWithCount' 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/columnsbefore(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsBeforeWithCount' 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/intersection(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeIntersectionWithAnotherRange' 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/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/row(row={row})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowWithRow' 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/rowsabove(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsAboveWithCount' 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/rowsbelow(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsBelowWithCount' 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/usedrange(valuesonly={valuesonly})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeUsedRangeWithValuesOnly' 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/boundingrect(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeBoundingRectWithAnotherRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/cell(row={row},column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeCellWithRowWithColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/column(column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnWithColumn' 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/columnsafter(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfterWithCount' 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/columnsbefore(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBeforeWithCount' 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/intersection(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeIntersectionWithAnotherRange' 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-MgDriveItemWorkbookWorksheetNameCount", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/$count and 'Get-MgDriveItemWorkbookWorksheetNameCount' unshipped" + "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/{}/pivottables", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookWorksheetPivotTable", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables and 'Get-MgDriveItemWorkbookWorksheetPivotTable' unshipped" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/pivottables/{}", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/pivottables/{}/worksheet", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/pivottables/$count", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/rowsabove", "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" + "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/{}/protection", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/rowsabove(count={count})", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookWorksheetProtection", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/protection and 'Get-MgDriveItemWorkbookWorksheetProtection' unshipped" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/rowsbelow", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookWorksheetRange", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range and 'Get-MgDriveItemWorkbookWorksheetRange' unshipped" + "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/{}/range/columnsafter", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/rowsbelow(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/usedrange", "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" + "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/{}/range/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/entirerow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/visibleview", "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" + "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/{}/range/lastcell", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/count", "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" + "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/{}/range/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/itemat(index={index})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnItemAtWithIndex", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/itemAt(index={index}) and 'Get-MgDriveItemWorkbookWorksheetTableColumnItemAtWithIndex' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/lastrow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange", "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" + "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/{}/range/rowsabove", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/boundingrect(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/usedrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/visibleview", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/columnsafter", "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" + "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", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/columnsafter(count={count})", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookWorksheetTable", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables and 'Get-MgDriveItemWorkbookWorksheetTable' unshipped" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/columnsbefore", "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" + "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/{}/columns", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/columnsbefore(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBeforeWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/entirecolumn", "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" + "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/{}/columns/{}/databodyrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/entirerow", "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" + "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/{}/columns/{}/databodyrange/columnsafter", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/intersection(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/lastcell", "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" + "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/{}/columns/{}/databodyrange/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/lastcolumn", "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" + "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/{}/columns/{}/databodyrange/entirerow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/lastrow", "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" + "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/{}/columns/{}/databodyrange/lastcell", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/lastrow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/rowsabove", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/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" + "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/{}/columns/{}/databodyrange/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/rowsabove(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAboveWithCount' 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/rowsbelow(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelowWithCount' 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/usedrange(valuesonly={valuesonly})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRangeWithValuesOnly' 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/boundingrect(anotherrange='{anotherrange}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeBoundingRectWithAnotherRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/cell(row={row},column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeCellWithRowWithColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/column(column={column})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnWithColumn' 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/columnsafter(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfterWithCount' 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/columnsbefore(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBeforeWithCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/entirecolumn", "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" + "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/{}/columns/{}/databodyrange/usedrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/entirerow", "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" + "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/{}/columns/{}/databodyrange/visibleview", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/intersection(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/lastcell", "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" + "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/{}/columns/{}/headerrowrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/lastcolumn", "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" + "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/{}/columns/{}/headerrowrange/columnsafter", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/lastrow", "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" + "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/{}/columns/{}/headerrowrange/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/entirerow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/lastcell", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/rowsabove", "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" + "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/{}/columns/{}/headerrowrange/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/lastrow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/rowsbelow", "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" + "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/{}/columns/{}/headerrowrange/rowsabove", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/rowsbelow(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/usedrange", "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" + "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/{}/columns/{}/headerrowrange/usedrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/visibleview", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/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" + "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/{}/columns/{}/range", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/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" + "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/{}/columns/{}/range/columnsafter", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/boundingrect(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/entirerow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/columnsafter", "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" + "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/{}/columns/{}/range/lastcell", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/columnsafter(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/columnsbefore", "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" + "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/{}/columns/{}/range/lastrow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/columnsbefore(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeColumnsBeforeWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/rowsabove", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/entirecolumn", "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" + "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/{}/columns/{}/range/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/entirerow", "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" + "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/{}/columns/{}/range/usedrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/intersection(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/visibleview", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/lastcell", "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" + "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/{}/columns/{}/totalrowrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/lastcolumn", "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" + "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/{}/columns/{}/totalrowrange/columnsafter", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/lastrow", "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" + "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/{}/columns/{}/totalrowrange/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/entirerow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/lastcell", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/rowsabove", "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" + "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/{}/columns/{}/totalrowrange/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/lastrow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/rowsbelow", "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" + "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/{}/columns/{}/totalrowrange/rowsabove", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/rowsbelow(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/usedrange", "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" + "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/{}/columns/{}/totalrowrange/usedrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/visibleview", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/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" + "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/{}/columns/$count", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows", "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" + "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/{}/databodyrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}", "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" + "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/{}/databodyrange/columnsafter", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range", "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" + "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/{}/databodyrange/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/boundingrect(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/entirerow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/lastcell", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/columnsafter", "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" + "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/{}/databodyrange/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/columnsafter(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/lastrow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/columnsbefore", "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" + "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/{}/databodyrange/rowsabove", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/columnsbefore(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsBeforeWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/entirecolumn", "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" + "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/{}/databodyrange/usedrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/entirerow", "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" + "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/{}/databodyrange/visibleview", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/intersection(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/lastcell", "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" + "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/{}/headerrowrange/columnsafter", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/lastcolumn", "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" + "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/{}/headerrowrange/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/lastrow", "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" + "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/{}/headerrowrange/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/entirerow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/lastcell", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/rowsabove", "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" + "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/{}/headerrowrange/lastrow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/rowsabove", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/rowsbelow", "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" + "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/{}/headerrowrange/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/rowsbelow(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/usedrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/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" + "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/{}/headerrowrange/visibleview", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/visibleview", "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" + "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/{}/range/columnsafter", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/count", "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" + "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/{}/range/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/itemat(index={index})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowItemAtWithIndex", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/itemAt(index={index}) and 'Get-MgDriveItemWorkbookWorksheetTableRowItemAtWithIndex' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/sort", "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" + "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/{}/range/entirerow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange", "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" + "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/{}/range/lastcell", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/boundingrect(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/lastrow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/rowsabove", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/columnsafter", "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" + "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/{}/range/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/columnsafter(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/usedrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/columnsbefore", "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" + "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/{}/range/visibleview", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/columnsbefore(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBeforeWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/entirecolumn", "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" + "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/{}/rows/{}", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/entirerow", "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" + "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/{}/rows/{}/range", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/intersection(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/columnsafter", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/lastcell", "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" + "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/{}/rows/{}/range/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/lastcolumn", "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" + "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/{}/rows/{}/range/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/lastrow", "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" + "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/{}/rows/{}/range/entirerow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/lastcell", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/lastrow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/rowsabove", "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" + "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/{}/rows/{}/range/rowsabove", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAboveWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/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" + "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/{}/rows/{}/range/usedrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/rowsbelow(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelowWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/visibleview", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/usedrange", "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" + "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/{}/rows/$count", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/sort", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/visibleview", "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" + "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/{}/totalrowrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/worksheet", "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" + "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/{}/totalrowrange/columnsafter", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/count", "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" + "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/{}/tables/{}/totalrowrange/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/itemat(index={index})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableItemAtWithIndex", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/itemAt(index={index}) and 'Get-MgDriveItemWorkbookWorksheetTableItemAtWithIndex' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange", "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" + "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/{}/tables/{}/totalrowrange/entirerow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange(valuesonly={valuesonly})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeWithValuesOnly", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange(valuesOnly={valuesOnly}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeWithValuesOnly' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/lastcell", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/boundingrect(anotherrange='{anotherrange}')", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeBoundingRectWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/boundingRect(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetUsedRangeBoundingRectWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/cell(row={row},column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeCellWithRowWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/cell(row={row},column={column}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeCellWithRowWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/lastrow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/column(column={column})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeColumnWithColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/column(column={column}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeColumnWithColumn' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/rowsabove", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/columnsafter", "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" + "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/{}/tables/{}/totalrowrange/rowsbelow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/columnsafter(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsAfterWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsAfter(count={count}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsAfterWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/usedrange", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/columnsbefore", "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" + "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/{}/tables/{}/totalrowrange/visibleview", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/columnsbefore(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsBeforeWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsBefore(count={count}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsBeforeWithCount' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/worksheet", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/entirecolumn", "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" + "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/{}/tables/$count", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/entirerow", "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" + "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", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/intersection(anotherrange='{anotherrange}')", "action": "suppress", "evidence": { - "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRange", - "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange and 'Get-MgDriveItemWorkbookWorksheetUsedRange' unshipped" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeIntersectionWithAnotherRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/intersection(anotherRange='{anotherRange}') and 'Get-MgDriveItemWorkbookWorksheetUsedRangeIntersectionWithAnotherRange' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/columnsafter", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/lastcell", "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" + "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/columnsbefore", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/lastcolumn", "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" + "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/entirecolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/lastrow", "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" + "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/entirerow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/offsetrange(rowoffset={rowoffset},columnoffset={columnoffset})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeOffsetRangeWithRowOffsetWithColumnOffset", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeOffsetRangeWithRowOffsetWithColumnOffset' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/lastcell", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/resizedrange(deltarows={deltarows},deltacolumns={deltacolumns})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeResizedRangeWithDeltaRowsWithDeltaColumns", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeResizedRangeWithDeltaRowsWithDeltaColumns' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/lastcolumn", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/row(row={row})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeRowWithRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/row(row={row}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeRowWithRow' unshipped" } }, { "apiVersion": "v1.0", "method": "GET", - "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/lastrow", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/rowsabove", "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" + "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/rowsabove", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/rowsabove(count={count})", "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" + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeRowsAboveWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsAbove(count={count}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeRowsAboveWithCount' unshipped" } }, { @@ -6779,6 +9619,16 @@ "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/rowsbelow(count={count})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeRowsBelowWithCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsBelow(count={count}) and 'Get-MgDriveItemWorkbookWorksheetUsedRangeRowsBelowWithCount' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -6799,6 +9649,16 @@ "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/{}/getactivitiesbyinterval(startdatetime='{startdatetime}',enddatetime='{enddatetime}',interval='{interval}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval", + "oracle": "no oracle row for GET /drives/{param}/list/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgDriveListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -7199,6 +10059,16 @@ "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/{}/getactivitiesbyinterval(startdatetime='{startdatetime}',enddatetime='{enddatetime}',interval='{interval}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval", + "oracle": "no oracle row for GET /groups/{param}/sites/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgGroupSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -7239,6 +10109,16 @@ "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/{}/items/{}/getactivitiesbyinterval(startdatetime='{startdatetime}',enddatetime='{enddatetime}',interval='{interval}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval", + "oracle": "no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgGroupSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -8089,6 +10969,16 @@ "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/assignments/{param}/target and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentTarget' unshipped" } }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignments/additionalaccess(accesspackageid='{accesspackageid}',incompatibleaccesspackageid='{incompatibleaccesspackageid}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccessWithAccessPackageIdWithIncompatibleAccessPackageId", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/assignments/additionalAccess(accessPackageId='{accessPackageId}',incompatibleAccessPackageId='{incompatibleAccessPackageId}') and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccessWithAccessPackageIdWithIncompatibleAccessPackageId' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -8639,6 +11529,16 @@ "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/{}/userprocessingresults/summary(startdatetime={startdatetime},enddatetime={enddatetime})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime}) and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -8649,6 +11549,16 @@ "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/{}/runs/summary(startdatetime={startdatetime},enddatetime={enddatetime})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunSummaryWithStartDateTimeWithEndDateTime", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/summary(startDateTime={startDateTime},endDateTime={endDateTime}) and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunSummaryWithStartDateTimeWithEndDateTime' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -8759,6 +11669,16 @@ "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/{}/taskreports/summary(startdatetime={startdatetime},enddatetime={enddatetime})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/summary(startDateTime={startDateTime},endDateTime={endDateTime}) and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -9009,6 +11929,16 @@ "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/{}/userprocessingresults/summary(startdatetime={startdatetime},enddatetime={enddatetime})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime}) and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -9619,6 +12549,16 @@ "oracle": "no oracle row for GET /reports and 'Get-MgReport' unshipped" } }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/authenticationmethods/usersregisteredbyfeature(includedusertypes='{includedusertypes}',includeduserroles='{includeduserroles}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportAuthenticationMethodUsersRegisteredByFeatureWithIncludedUserTypesWithIncludedUserRoles", + "oracle": "no oracle row for GET /reports/authenticationMethods/usersRegisteredByFeature(includedUserTypes='{includedUserTypes}',includedUserRoles='{includedUserRoles}') and 'Get-MgReportAuthenticationMethodUsersRegisteredByFeatureWithIncludedUserTypesWithIncludedUserRoles' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -9629,6 +12569,206 @@ "oracle": "no oracle row for GET /reports/authenticationMethods/usersRegisteredByMethod and 'Get-MgReportAuthenticationMethodUsersRegisteredByMethod' unshipped" } }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/authenticationmethods/usersregisteredbymethod(includedusertypes='{includedusertypes}',includeduserroles='{includeduserroles}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportAuthenticationMethodUsersRegisteredByMethodWithIncludedUserTypesWithIncludedUserRoles", + "oracle": "no oracle row for GET /reports/authenticationMethods/usersRegisteredByMethod(includedUserTypes='{includedUserTypes}',includedUserRoles='{includedUserRoles}') and 'Get-MgReportAuthenticationMethodUsersRegisteredByMethodWithIncludedUserTypesWithIncludedUserRoles' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getemailactivityuserdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetEmailActivityUserDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getEmailActivityUserDetail(period='{period}') and 'Get-MgReportGetEmailActivityUserDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getemailappusageuserdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetEmailAppUsageUserDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getEmailAppUsageUserDetail(period='{period}') and 'Get-MgReportGetEmailAppUsageUserDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getm365appuserdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetM365AppUserDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getM365AppUserDetail(period='{period}') and 'Get-MgReportGetM365AppUserDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getoffice365activeuserdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetOffice365ActiveUserDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getOffice365ActiveUserDetail(period='{period}') and 'Get-MgReportGetOffice365ActiveUserDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getoffice365groupsactivitydetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetOffice365GroupsActivityDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getOffice365GroupsActivityDetail(period='{period}') and 'Get-MgReportGetOffice365GroupsActivityDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getonedriveactivityuserdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetOneDriveActivityUserDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getOneDriveActivityUserDetail(period='{period}') and 'Get-MgReportGetOneDriveActivityUserDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getonedriveusageaccountdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetOneDriveUsageAccountDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getOneDriveUsageAccountDetail(period='{period}') and 'Get-MgReportGetOneDriveUsageAccountDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getsharepointactivityuserdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetSharePointActivityUserDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getSharePointActivityUserDetail(period='{period}') and 'Get-MgReportGetSharePointActivityUserDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getsharepointsiteusagedetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetSharePointSiteUsageDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getSharePointSiteUsageDetail(period='{period}') and 'Get-MgReportGetSharePointSiteUsageDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getskypeforbusinessactivityuserdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetSkypeForBusinessActivityUserDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getSkypeForBusinessActivityUserDetail(period='{period}') and 'Get-MgReportGetSkypeForBusinessActivityUserDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getskypeforbusinessdeviceusageuserdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetSkypeForBusinessDeviceUsageUserDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getSkypeForBusinessDeviceUsageUserDetail(period='{period}') and 'Get-MgReportGetSkypeForBusinessDeviceUsageUserDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsdeviceusageuserdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsDeviceUsageUserDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getTeamsDeviceUsageUserDetail(period='{period}') and 'Get-MgReportGetTeamsDeviceUsageUserDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsteamactivitydetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsTeamActivityDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getTeamsTeamActivityDetail(period='{period}') and 'Get-MgReportGetTeamsTeamActivityDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getteamsuseractivityuserdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetTeamsUserActivityUserDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getTeamsUserActivityUserDetail(period='{period}') and 'Get-MgReportGetTeamsUserActivityUserDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getyammeractivityuserdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetYammerActivityUserDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getYammerActivityUserDetail(period='{period}') and 'Get-MgReportGetYammerActivityUserDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getyammerdeviceusageuserdetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetYammerDeviceUsageUserDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getYammerDeviceUsageUserDetail(period='{period}') and 'Get-MgReportGetYammerDeviceUsageUserDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getyammergroupsactivitydetail(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportGetYammerGroupsActivityDetailWithPeriod", + "oracle": "no oracle row for GET /reports/getYammerGroupsActivityDetail(period='{period}') and 'Get-MgReportGetYammerGroupsActivityDetailWithPeriod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/manageddeviceenrollmentfailuredetails(skip={skip},top={top},filter='{filter}',skiptoken='{skiptoken}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportManagedDeviceEnrollmentFailureDetailsWithSkipWithTopWithFilterWithSkipToken", + "oracle": "no oracle row for GET /reports/managedDeviceEnrollmentFailureDetails(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}') and 'Get-MgReportManagedDeviceEnrollmentFailureDetailsWithSkipWithTopWithFilterWithSkipToken' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/manageddeviceenrollmenttopfailures(period='{period}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportManagedDeviceEnrollmentTopFailuresWithPeriod", + "oracle": "no oracle row for GET /reports/managedDeviceEnrollmentTopFailures(period='{period}') and 'Get-MgReportManagedDeviceEnrollmentTopFailuresWithPeriod' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -9689,6 +12829,16 @@ "oracle": "no oracle row for GET /servicePrincipals/{param}/federatedIdentityCredentials/$count and 'Get-MgServicePrincipalFederatedIdentityCredentialCount' unshipped" } }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/items/{}/getactivitiesbyinterval(startdatetime='{startdatetime}',enddatetime='{enddatetime}',interval='{interval}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgShareListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval", + "oracle": "no oracle row for GET /shares/{param}/list/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgShareListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -9789,6 +12939,16 @@ "oracle": "no oracle row for GET /shares/{param}/list/permissions/$count and 'Get-MgShareListPermissionCount' unshipped" } }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/getactivitiesbyinterval(startdatetime='{startdatetime}',enddatetime='{enddatetime}',interval='{interval}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval", + "oracle": "no oracle row for GET /sites/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -9829,6 +12989,26 @@ "oracle": "no oracle row for GET /sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/$count and 'Get-MgSiteListContentTypeBaseTypeCount' unshipped" } }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/items/{}/getactivitiesbyinterval(startdatetime='{startdatetime}',enddatetime='{enddatetime}',interval='{interval}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval", + "oracle": "no oracle row for GET /sites/{param}/lists/{param}/items/{param}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') and 'Get-MgSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/solutions/backuprestore/browsesessions/{}/browse(nextfetchtoken='{nextfetchtoken}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgSolutionBackupRestoreBrowseSessionBrowseWithNextFetchToken", + "oracle": "no oracle row for GET /solutions/backupRestore/browseSessions/{param}/browse(nextFetchToken='{nextFetchToken}') and 'Get-MgSolutionBackupRestoreBrowseSessionBrowseWithNextFetchToken' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -10019,6 +13199,16 @@ "oracle": "no oracle row for GET /users/{param}/calendar/events/delta and 'Get-MgUserCalendarEventDelta' unshipped" } }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/allowedcalendarsharingroles(user='{user}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarAllowedCalendarSharingRolesWithUser", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/allowedCalendarSharingRoles(User='{User}') and 'Get-MgUserCalendarGroupCalendarAllowedCalendarSharingRolesWithUser' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -10259,6 +13449,16 @@ "oracle": "no oracle row for GET /users/{param}/chats/getAllMessages and 'Get-MgUserChatGetAllMessages' unshipped" } }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/exportdeviceandappmanagementdata(skip={skip},top={top})", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserExportDeviceAndAppManagementDataWithSkipWithTop", + "oracle": "no oracle row for GET /users/{param}/exportDeviceAndAppManagementData(skip={skip},top={top}) and 'Get-MgUserExportDeviceAndAppManagementDataWithSkipWithTop' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -10379,6 +13579,16 @@ "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/{}/filesfolder/content", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelFileFolderContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/content and 'Get-MgUserJoinedTeamChannelFileFolderContent' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -10999,6 +14209,16 @@ "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/filesfolder/content", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelFileFolderContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/content and 'Get-MgUserJoinedTeamPrimaryChannelFileFolderContent' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -11739,6 +14959,16 @@ "oracle": "no oracle row for GET /users/{param}/outlook and 'Get-MgUserOutlook' unshipped" } }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/outlook/supportedtimezones(timezonestandard='{timezonestandard}')", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserOutlookSupportedTimeZonesWithTimeZoneStandard", + "oracle": "no oracle row for GET /users/{param}/outlook/supportedTimeZones(TimeZoneStandard='{TimeZoneStandard}') and 'Get-MgUserOutlookSupportedTimeZonesWithTimeZoneStandard' unshipped" + } + }, { "apiVersion": "v1.0", "method": "GET", @@ -15539,16 +18769,6 @@ "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", @@ -15839,6 +19059,26 @@ "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/beta_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBeta_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/beta_Dist and 'Invoke-MgDriveItemWorkbookFunctionBeta_Dist' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/beta_inv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBeta_Inv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/beta_Inv and 'Invoke-MgDriveItemWorkbookFunctionBeta_Inv' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -15869,6 +19109,36 @@ "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/binom_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBinom_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/binom_Dist and 'Invoke-MgDriveItemWorkbookFunctionBinom_Dist' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/binom_dist_range", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBinom_Dist_Range", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/binom_Dist_Range and 'Invoke-MgDriveItemWorkbookFunctionBinom_Dist_Range' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/binom_inv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBinom_Inv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/binom_Inv and 'Invoke-MgDriveItemWorkbookFunctionBinom_Inv' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -15919,6 +19189,26 @@ "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/ceiling_math", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCeiling_Math", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ceiling_Math and 'Invoke-MgDriveItemWorkbookFunctionCeiling_Math' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/ceiling_precise", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCeiling_Precise", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ceiling_Precise and 'Invoke-MgDriveItemWorkbookFunctionCeiling_Precise' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -15929,6 +19219,46 @@ "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/chisq_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionChiSq_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/chiSq_Dist and 'Invoke-MgDriveItemWorkbookFunctionChiSq_Dist' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/chisq_dist_rt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionChiSq_Dist_RT", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/chiSq_Dist_RT and 'Invoke-MgDriveItemWorkbookFunctionChiSq_Dist_RT' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/chisq_inv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionChiSq_Inv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/chiSq_Inv and 'Invoke-MgDriveItemWorkbookFunctionChiSq_Inv' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/chisq_inv_rt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionChiSq_Inv_RT", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/chiSq_Inv_RT and 'Invoke-MgDriveItemWorkbookFunctionChiSq_Inv_RT' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -16009,6 +19339,26 @@ "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/confidence_norm", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionConfidence_Norm", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/confidence_Norm and 'Invoke-MgDriveItemWorkbookFunctionConfidence_Norm' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/confidence_t", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionConfidence_T", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/confidence_T and 'Invoke-MgDriveItemWorkbookFunctionConfidence_T' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -16059,6 +19409,16 @@ "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/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", @@ -16519,6 +19879,16 @@ "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/ecma_ceiling", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionEcma_Ceiling", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ecma_Ceiling and 'Invoke-MgDriveItemWorkbookFunctionEcma_Ceiling' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -16559,6 +19929,16 @@ "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/erf_precise", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionErf_Precise", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/erf_Precise and 'Invoke-MgDriveItemWorkbookFunctionErf_Precise' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -16569,6 +19949,26 @@ "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/erfc_precise", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionErfC_Precise", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/erfC_Precise and 'Invoke-MgDriveItemWorkbookFunctionErfC_Precise' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/error_type", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionError_Type", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/error_Type and 'Invoke-MgDriveItemWorkbookFunctionError_Type' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -16599,6 +19999,56 @@ "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/expon_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionExpon_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/expon_Dist and 'Invoke-MgDriveItemWorkbookFunctionExpon_Dist' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/f_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionF_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/f_Dist and 'Invoke-MgDriveItemWorkbookFunctionF_Dist' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/f_dist_rt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionF_Dist_RT", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/f_Dist_RT and 'Invoke-MgDriveItemWorkbookFunctionF_Dist_RT' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/f_inv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionF_Inv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/f_Inv and 'Invoke-MgDriveItemWorkbookFunctionF_Inv' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/f_inv_rt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionF_Inv_RT", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/f_Inv_RT and 'Invoke-MgDriveItemWorkbookFunctionF_Inv_RT' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -16679,6 +20129,26 @@ "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/floor_math", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionFloor_Math", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/floor_Math and 'Invoke-MgDriveItemWorkbookFunctionFloor_Math' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/floor_precise", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionFloor_Precise", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/floor_Precise and 'Invoke-MgDriveItemWorkbookFunctionFloor_Precise' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -16709,6 +20179,26 @@ "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/gamma_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionGamma_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gamma_Dist and 'Invoke-MgDriveItemWorkbookFunctionGamma_Dist' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/gamma_inv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionGamma_Inv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gamma_Inv and 'Invoke-MgDriveItemWorkbookFunctionGamma_Inv' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -16719,6 +20209,16 @@ "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/gammaln_precise", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionGammaLn_Precise", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gammaLn_Precise and 'Invoke-MgDriveItemWorkbookFunctionGammaLn_Precise' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -16829,6 +20329,16 @@ "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/hypgeom_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionHypGeom_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hypGeom_Dist and 'Invoke-MgDriveItemWorkbookFunctionHypGeom_Dist' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -17209,6 +20719,16 @@ "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/iso_ceiling", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIso_Ceiling", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/iso_Ceiling and 'Invoke-MgDriveItemWorkbookFunctionIso_Ceiling' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -17352,11 +20872,31 @@ { "apiVersion": "v1.0", "method": "POST", - "uri": "/drives/{}/items/{}/workbook/functions/log10", + "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/lognorm_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLogNorm_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/logNorm_Dist and 'Invoke-MgDriveItemWorkbookFunctionLogNorm_Dist' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/lognorm_inv", "action": "suppress", "evidence": { - "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLog10", - "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/log10 and 'Invoke-MgDriveItemWorkbookFunctionLog10' unshipped" + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLogNorm_Inv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/logNorm_Inv and 'Invoke-MgDriveItemWorkbookFunctionLogNorm_Inv' unshipped" } }, { @@ -17549,6 +21089,16 @@ "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/negbinom_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNegBinom_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/negBinom_Dist and 'Invoke-MgDriveItemWorkbookFunctionNegBinom_Dist' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -17559,6 +21109,16 @@ "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/networkdays_intl", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNetworkDays_Intl", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/networkDays_Intl and 'Invoke-MgDriveItemWorkbookFunctionNetworkDays_Intl' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -17569,6 +21129,46 @@ "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/norm_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNorm_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/norm_Dist and 'Invoke-MgDriveItemWorkbookFunctionNorm_Dist' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/norm_inv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNorm_Inv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/norm_Inv and 'Invoke-MgDriveItemWorkbookFunctionNorm_Inv' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/norm_s_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNorm_S_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/norm_S_Dist and 'Invoke-MgDriveItemWorkbookFunctionNorm_S_Dist' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/norm_s_inv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNorm_S_Inv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/norm_S_Inv and 'Invoke-MgDriveItemWorkbookFunctionNorm_S_Inv' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -17719,6 +21319,46 @@ "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/percentile_exc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPercentile_Exc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/percentile_Exc and 'Invoke-MgDriveItemWorkbookFunctionPercentile_Exc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/percentile_inc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPercentile_Inc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/percentile_Inc and 'Invoke-MgDriveItemWorkbookFunctionPercentile_Inc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/percentrank_exc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPercentRank_Exc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/percentRank_Exc and 'Invoke-MgDriveItemWorkbookFunctionPercentRank_Exc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/percentrank_inc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPercentRank_Inc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/percentRank_Inc and 'Invoke-MgDriveItemWorkbookFunctionPercentRank_Inc' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -17769,6 +21409,16 @@ "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/poisson_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPoisson_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/poisson_Dist and 'Invoke-MgDriveItemWorkbookFunctionPoisson_Dist' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -17849,6 +21499,26 @@ "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/quartile_exc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionQuartile_Exc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/quartile_Exc and 'Invoke-MgDriveItemWorkbookFunctionQuartile_Exc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/quartile_inc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionQuartile_Inc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/quartile_Inc and 'Invoke-MgDriveItemWorkbookFunctionQuartile_Inc' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -17889,6 +21559,26 @@ "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/rank_avg", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRank_Avg", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rank_Avg and 'Invoke-MgDriveItemWorkbookFunctionRank_Avg' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/rank_eq", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRank_Eq", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rank_Eq and 'Invoke-MgDriveItemWorkbookFunctionRank_Eq' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -18119,6 +21809,16 @@ "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/skew_p", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSkew_p", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/skew_p and 'Invoke-MgDriveItemWorkbookFunctionSkew_p' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -18169,6 +21869,26 @@ "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/stdev_p", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionStDev_P", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/stDev_P and 'Invoke-MgDriveItemWorkbookFunctionStDev_P' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/stdev_s", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionStDev_S", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/stDev_S and 'Invoke-MgDriveItemWorkbookFunctionStDev_S' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -18269,6 +21989,56 @@ "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/t_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionT_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/t_Dist and 'Invoke-MgDriveItemWorkbookFunctionT_Dist' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/t_dist_2t", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionT_Dist_2T", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/t_Dist_2T and 'Invoke-MgDriveItemWorkbookFunctionT_Dist_2T' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/t_dist_rt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionT_Dist_RT", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/t_Dist_RT and 'Invoke-MgDriveItemWorkbookFunctionT_Dist_RT' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/t_inv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionT_Inv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/t_Inv and 'Invoke-MgDriveItemWorkbookFunctionT_Inv' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/t_inv_2t", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionT_Inv_2T", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/t_Inv_2T and 'Invoke-MgDriveItemWorkbookFunctionT_Inv_2T' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -18459,6 +22229,26 @@ "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/var_p", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionVar_P", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/var_P and 'Invoke-MgDriveItemWorkbookFunctionVar_P' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/var_s", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionVar_S", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/var_S and 'Invoke-MgDriveItemWorkbookFunctionVar_S' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -18519,6 +22309,16 @@ "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/weibull_dist", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionWeibull_Dist", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/weibull_Dist and 'Invoke-MgDriveItemWorkbookFunctionWeibull_Dist' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -18529,6 +22329,16 @@ "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/workday_intl", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionWorkDay_Intl", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/workDay_Intl and 'Invoke-MgDriveItemWorkbookFunctionWorkDay_Intl' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -18609,6 +22419,16 @@ "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/functions/z_test", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionZ_Test", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/z_Test and 'Invoke-MgDriveItemWorkbookFunctionZ_Test' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -21159,6 +24979,56 @@ "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/{}/runs/{}/taskprocessingresults/{}/resume", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultResume", + "oracle": "no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultResume' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/resume", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultResume", + "oracle": "no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultResume' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/{}/taskprocessingresults/{}/resume", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultResume", + "oracle": "no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultResume' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/tasks/{}/taskprocessingresults/{}/resume", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultResume", + "oracle": "no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultResume' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/resume", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultResume", + "oracle": "no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultResume' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -21169,6 +25039,36 @@ "oracle": "no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks and 'New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask' unshipped" } }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}/taskprocessingresults/{}/resume", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultResume", + "oracle": "no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultResume' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/resume", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultResume", + "oracle": "no oracle row for POST /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultResume' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/resume", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultResume", + "oracle": "no oracle row for POST /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/resume and 'Invoke-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultResume' unshipped" + } + }, { "apiVersion": "v1.0", "method": "POST", @@ -22632,41 +26532,41 @@ { "apiVersion": "v1.0", "method": "PUT", - "uri": "/admin/serviceannouncement/messages/{}/attachments/{}/$value", + "uri": "/admin/serviceannouncement/messages/{}/attachments/{}/content", "action": "suppress", "evidence": { "ourCommand": "Set-MgAdminServiceAnnouncementMessageAttachmentContent", - "oracle": "no oracle row for PUT /admin/serviceAnnouncement/messages/{param}/attachments/{param}/$value and 'Set-MgAdminServiceAnnouncementMessageAttachmentContent' unshipped" + "oracle": "no oracle row for PUT /admin/serviceAnnouncement/messages/{param}/attachments/{param}/content and 'Set-MgAdminServiceAnnouncementMessageAttachmentContent' unshipped" } }, { "apiVersion": "v1.0", "method": "PUT", - "uri": "/drives/{}/items/{}/analytics/itemactivitystats/{}/activities/{}/driveitem/$value", + "uri": "/drives/{}/items/{}/analytics/itemactivitystats/{}/activities/{}/driveitem/content", "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" + "oracle": "no oracle row for PUT /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/content and 'Set-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent' unshipped" } }, { "apiVersion": "v1.0", "method": "PUT", - "uri": "/users/{}/joinedteams/{}/channels/{}/filesfolder/$value", + "uri": "/users/{}/joinedteams/{}/channels/{}/filesfolder/content", "action": "suppress", "evidence": { "ourCommand": "Set-MgUserJoinedTeamChannelFileFolderContent", - "oracle": "no oracle row for PUT /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/$value and 'Set-MgUserJoinedTeamChannelFileFolderContent' unshipped" + "oracle": "no oracle row for PUT /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/content and 'Set-MgUserJoinedTeamChannelFileFolderContent' unshipped" } }, { "apiVersion": "v1.0", "method": "PUT", - "uri": "/users/{}/joinedteams/{}/primarychannel/filesfolder/$value", + "uri": "/users/{}/joinedteams/{}/primarychannel/filesfolder/content", "action": "suppress", "evidence": { "ourCommand": "Set-MgUserJoinedTeamPrimaryChannelFileFolderContent", - "oracle": "no oracle row for PUT /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/$value and 'Set-MgUserJoinedTeamPrimaryChannelFileFolderContent' unshipped" + "oracle": "no oracle row for PUT /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/content and 'Set-MgUserJoinedTeamPrimaryChannelFileFolderContent' unshipped" } }, {