Skip to main content

apps_templates

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

Overview

Nameapps_templates
TypeResource
Idazure.iot_central.apps_templates

Fields

The following fields are returned by SELECT queries:

The body contains all the IoT Central application templates.

NameDatatypeDescription
namestringThe name of the template.
descriptionstringThe description of the template.
industrystringThe industry of the template.
locationsarrayA list of locations that support the template.
manifestIdstringThe ID of the template.
manifestVersionstringThe version of the template.
ordernumberThe order of the template in the templates list.
titlestringThe title of the template.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdapi-versionGet 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.

NameDatatypeDescription
subscriptionIdstringThe subscription identifier.
api-versionstringThe version of the API.

SELECT examples

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 }}'
;