arm_templates
Creates, updates, deletes, gets or lists a arm_templates
resource.
Overview
Name | arm_templates |
Type | Resource |
Id | azure.dev_test_labs.arm_templates |
Fields
- vw_arm_templates
- arm_templates
Name | Datatype | Description |
---|---|---|
id | text | The identifier of the resource. |
name | text | The name of the resource. |
description | text | field from the properties object |
artifactSourceName | text | field from the properties object |
contents | text | field from the properties object |
created_date | text | field from the properties object |
display_name | text | field from the properties object |
enabled | text | field from the properties object |
icon | text | field from the properties object |
labName | text | field from the properties object |
location | text | The location of the resource. |
parameters_value_files_info | text | field from the properties object |
publisher | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | The tags of the resource. |
type | text | The type of the resource. |
Name | Datatype | Description |
---|---|---|
id | string | The identifier of the resource. |
name | string | The name of the resource. |
location | string | The location of the resource. |
properties | object | Properties of an Azure Resource Manager template. |
tags | object | The tags of the resource. |
type | string | The type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | artifactSourceName, labName, name, resourceGroupName, subscriptionId | Get azure resource manager template. |
list | SELECT | artifactSourceName, labName, resourceGroupName, subscriptionId | List azure resource manager templates in a given artifact source. |
SELECT
examples
List azure resource manager templates in a given artifact source.
- vw_arm_templates
- arm_templates
SELECT
id,
name,
description,
artifactSourceName,
contents,
created_date,
display_name,
enabled,
icon,
labName,
location,
parameters_value_files_info,
publisher,
resourceGroupName,
subscriptionId,
tags,
type
FROM azure.dev_test_labs.vw_arm_templates
WHERE artifactSourceName = '{{ artifactSourceName }}'
AND labName = '{{ labName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.dev_test_labs.arm_templates
WHERE artifactSourceName = '{{ artifactSourceName }}'
AND labName = '{{ labName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';