Skip to main content

ios_groups_for_mam_policies

Creates, updates, deletes, gets or lists an ios_groups_for_mam_policies resource.

Overview

Nameios_groups_for_mam_policies
TypeResource
Idazure_extras.intune.ios_groups_for_mam_policies

Fields

The following fields are returned by SELECT queries:

groups 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, policyNameReturns groups for a given iOSMAMPolicy.

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
policyNamestringpolicy name for the tenant

SELECT examples

Returns groups for a given iOSMAMPolicy.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_extras.intune.ios_groups_for_mam_policies
WHERE hostName = '{{ hostName }}' -- required
AND policyName = '{{ policyName }}' -- required
;