customization_tasks
Creates, updates, deletes, gets or lists a customization_tasks
resource.
Overview
Name | customization_tasks |
Type | Resource |
Id | azure.dev_center.customization_tasks |
Fields
- vw_customization_tasks
- customization_tasks
Name | Datatype | Description |
---|---|---|
catalogName | text | field from the properties object |
devCenterName | text | field from the properties object |
inputs | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
taskName | text | field from the properties object |
timeout | text | field from the properties object |
validation_status | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Properties of a Task. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | catalogName, devCenterName, resourceGroupName, subscriptionId, taskName | Gets a Task from the catalog |
list_by_catalog | SELECT | catalogName, devCenterName, resourceGroupName, subscriptionId | List Tasks in the catalog. |
SELECT
examples
List Tasks in the catalog.
- vw_customization_tasks
- customization_tasks
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 }}';
SELECT
properties
FROM azure.dev_center.customization_tasks
WHERE catalogName = '{{ catalogName }}'
AND devCenterName = '{{ devCenterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';