Data/Operations/ManagedDevice.Get.psd1
|
<# Operation descriptor - data only. Loaded with Import-PowerShellDataFile. A single-object read is modelled as a non-paging Collection read: the v1 handler-strategy registry has no 'Singleton' kind prefix, and the Collection.Default strategy already performs a plain GET (no .value unwrapping) for non-paging operations, which is exactly the singleton shape. #> @{ SchemaVersion = 1 Type = 'ManagedDevice' Operation = 'Get' OperationKind = 'Collection' HandlerStrategyId = 'Collection.Default' ApiVersion = 'v1.0' Stability = 'Stable' BetaReason = $null Method = 'GET' PathTemplate = '/deviceManagement/managedDevices/{id}' RequestBodyKind = $null ResponseKind = 'Json' PagingStrategy = 'None' RequiredPagingHeaders = @() DeduplicationKey = $null SupportsAll = $false SupportsDelta = $false ReplayPolicy = 'Safe' Condition = $null Reconciliation = $null AdvancedQuery = @{ Supported = $false } Concurrency = @{ Mode = 'None'; Header = $null; Required = $false; AllowWildcard = $false } CredentialPolicy = 'GraphBearer' AllowedHosts = @() RedirectPolicy = 'None' IdentityRequirement = 'Verified' ResourceFamily = 'Intune.ManagedDevices' ThrottleClass = 'Read' SupportedAuthModes = @('Certificate', 'ClientSecret', 'ManagedIdentity') RequiredPermissions = @( @{ Type = 'Application'; Value = 'DeviceManagementManagedDevices.Read.All' } ) RequiredLicense = @('Microsoft Intune') SupportedClouds = @('Global', 'USGov', 'USGovDoD') } |