apps
Creates, updates, deletes, gets or lists an apps resource.
Overview
| Name | apps |
| Type | Resource |
| Id | azure_extras.intune.apps |
Fields
The following fields are returned by SELECT queries:
- get
applications 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 | $filter, $top, $select | Returns Intune Manageable apps. |
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 |
$filter | string | The filter to apply on the operation. |
$select | string | select specific fields in entity. |
$top | integer (int32) |
SELECT examples
- get
Returns Intune Manageable apps.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_extras.intune.apps
WHERE hostName = '{{ hostName }}' -- required
AND $filter = '{{ $filter }}'
AND $top = '{{ $top }}'
AND $select = '{{ $select }}'
;