virtual_machine_image_templates_run_outputs
Creates, updates, deletes, gets or lists a virtual_machine_image_templates_run_outputs
resource.
Overview
Name | virtual_machine_image_templates_run_outputs |
Type | Resource |
Id | azure.image_builder.virtual_machine_image_templates_run_outputs |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
properties | object | The properties of the run output |
Name | Datatype | Description |
---|---|---|
properties | object | The properties of the run output |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , imageTemplateName , runOutputName | Get the specified run output for the specified image template resource | |
list | select | subscriptionId , resourceGroupName , imageTemplateName | List all run outputs for the specified Image Template resource |
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 |
---|---|---|
imageTemplateName | string | The name of the image Template |
resourceGroupName | string | The name of the resource group. |
runOutputName | string | The name of the run output |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription Id forms part of the URI for every service call. |
SELECT
examples
- get
- list
Get the specified run output for the specified image template resource
SELECT
properties
FROM azure.image_builder.virtual_machine_image_templates_run_outputs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND imageTemplateName = '{{ imageTemplateName }}' -- required
AND runOutputName = '{{ runOutputName }}' -- required
;
List all run outputs for the specified Image Template resource
SELECT
properties
FROM azure.image_builder.virtual_machine_image_templates_run_outputs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND imageTemplateName = '{{ imageTemplateName }}' -- required
;