Skip to main content

android_mam_policy_by_names

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

Overview

Nameandroid_mam_policy_by_names
TypeResource
Idazure_extras.intune.android_mam_policy_by_names

Fields

The following fields are returned by SELECT queries:

iOSMAMPolicy entity.

NameDatatypeDescription
idstringResource Id
namestringResource name
locationstringResource Location
propertiesobjectIntune MAM iOS Policy Properties.
tagsobjectResource Tags
typestringResource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselecthostName, policyName$selectReturns AndroidMAMPolicy with given name.

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
policyNamestringUnique name for the policy
$selectstringselect specific fields in entity.

SELECT examples

Returns AndroidMAMPolicy with given name.

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