Skip to main content

ios_group_for_mam_policies

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

Overview

Nameios_group_for_mam_policies
TypeResource
Idazure_extras.intune.ios_group_for_mam_policies

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
deletedeletehostName, policyName, groupIdDelete Group for iOS Policy

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
groupIdstringapplication unique Name
hostNamestringLocation hostName for the tenant
policyNamestringUnique name for the policy

DELETE examples

Delete Group for iOS Policy

DELETE FROM azure_extras.intune.ios_group_for_mam_policies
WHERE hostName = '{{ hostName }}' --required
AND policyName = '{{ policyName }}' --required
AND groupId = '{{ groupId }}' --required
;