Skip to main content

virtual_machine_image_templates_run_outputs

Creates, updates, deletes, gets or lists a virtual_machine_image_templates_run_outputs resource.

Overview

Namevirtual_machine_image_templates_run_outputs
TypeResource
Idazure.image_builder.virtual_machine_image_templates_run_outputs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectThe properties of the run output

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, imageTemplateName, runOutputNameGet the specified run output for the specified image template resource
listselectsubscriptionId, resourceGroupName, imageTemplateNameList 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.

NameDatatypeDescription
imageTemplateNamestringThe name of the image Template
resourceGroupNamestringThe name of the resource group.
runOutputNamestringThe name of the run output
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription Id forms part of the URI for every service call.

SELECT examples

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
;