Skip to main content

mam_flagged_user_by_names

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

Overview

Namemam_flagged_user_by_names
TypeResource
Idazure_extras.intune.mam_flagged_user_by_names

Fields

The following fields are returned by SELECT queries:

Flagged user details in 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$selectReturns Intune flagged user details

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
userNamestringFlagged userName
$selectstringselect specific fields in entity.

SELECT examples

Returns Intune flagged user details

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