Skip to main content

customization_tasks

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

Overview

Namecustomization_tasks
TypeResource
Idazure.dev_center.customization_tasks

Fields

NameDatatypeDescription
catalogNametextfield from the properties object
devCenterNametextfield from the properties object
inputstextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
taskNametextfield from the properties object
timeouttextfield from the properties object
validation_statustextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTcatalogName, devCenterName, resourceGroupName, subscriptionId, taskNameGets a Task from the catalog
list_by_catalogSELECTcatalogName, devCenterName, resourceGroupName, subscriptionIdList Tasks in the catalog.

SELECT examples

List Tasks in the catalog.

SELECT
catalogName,
devCenterName,
inputs,
resourceGroupName,
subscriptionId,
taskName,
timeout,
validation_status
FROM azure.dev_center.vw_customization_tasks
WHERE catalogName = '{{ catalogName }}'
AND devCenterName = '{{ devCenterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';