ios_groups_for_mam_policies
Creates, updates, deletes, gets or lists an ios_groups_for_mam_policies
resource.
Overview
Name | ios_groups_for_mam_policies |
Type | Resource |
Id | azure_extras.intune.ios_groups_for_mam_policies |
Fields
The following fields are returned by SELECT
queries:
- get
groups as collection response
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
location | string | Resource Location |
properties | object | |
tags | object | Resource Tags |
type | string | Resource type |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | hostName , policyName | Returns 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.
Name | Datatype | Description |
---|---|---|
hostName | string | Location hostName for the tenant |
policyName | string | policy name for the tenant |
SELECT
examples
- get
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
;