apps_templates
Creates, updates, deletes, gets or lists an apps_templates
resource.
Overview
Name | apps_templates |
Type | Resource |
Id | azure.iot_central.apps_templates |
Fields
The following fields are returned by SELECT
queries:
- list
The body contains all the IoT Central application templates.
Name | Datatype | Description |
---|---|---|
name | string | The name of the template. |
description | string | The description of the template. |
industry | string | The industry of the template. |
locations | array | A list of locations that support the template. |
manifestId | string | The ID of the template. |
manifestVersion | string | The version of the template. |
order | number | The order of the template in the templates list. |
title | string | The title of the template. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | api-version | Get all available application templates. |
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 |
---|---|---|
subscriptionId | string | The subscription identifier. |
api-version | string | The version of the API. |
SELECT
examples
- list
Get all available application templates.
SELECT
name,
description,
industry,
locations,
manifestId,
manifestVersion,
order,
title
FROM azure.iot_central.apps_templates
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND api-version = '{{ api-version }}'
;