Skip to main content

mam_user_flagged_enrolled_apps

Creates, updates, deletes, gets or lists a mam_user_flagged_enrolled_apps resource.

Overview

Namemam_user_flagged_enrolled_apps
TypeResource
Idazure_extras.intune.mam_user_flagged_enrolled_apps

Fields

The following fields are returned by SELECT queries:

Flagged enrolled Apps as collection response

NameDatatypeDescription
idstringResource Id
namestringResource name
locationstringResource Location
propertiesobject
tagsobjectResource Tags
typestringResource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselecthostName, userName$filter, $top, $selectReturns Intune flagged enrolled app collection for the User

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
hostNamestringLocation hostName for the tenant
userNamestringUser name for the tenant
$filterstringThe filter to apply on the operation.
$selectstringselect specific fields in entity.
$topinteger (int32)

SELECT examples

Returns Intune flagged enrolled app collection for the User

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_extras.intune.mam_user_flagged_enrolled_apps
WHERE hostName = '{{ hostName }}' -- required
AND userName = '{{ userName }}' -- required
AND $filter = '{{ $filter }}'
AND $top = '{{ $top }}'
AND $select = '{{ $select }}'
;