Skip to main content

project_catalog_image_definition_build_build_details

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

Overview

Nameproject_catalog_image_definition_build_build_details
TypeResource
Idazure.dev_center.project_catalog_image_definition_build_build_details

Fields

The following fields are returned by SELECT queries:

OK. The request has succeeded.

NameDatatypeDescription
endTimestring (date-time)End time of the task group.
errorDetailsobjectDetails for image creation error. Populated when the image creation is not successful.
imageReferenceobjectThe specific image version used by the build.
startTimestring (date-time)Start time of the task group.
statusstringThe status of the build.
taskGroupsarrayThe list of task groups executed during the image definition build.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, projectName, catalogName, imageDefinitionName, buildNameGets Build details

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
buildNamestringThe ID of the Image Definition Build.
catalogNamestringThe name of the Catalog.
imageDefinitionNamestringThe name of the Image Definition.
projectNamestringThe name of the project.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Gets Build details

SELECT
endTime,
errorDetails,
imageReference,
startTime,
status,
taskGroups
FROM azure.dev_center.project_catalog_image_definition_build_build_details
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND projectName = '{{ projectName }}' -- required
AND catalogName = '{{ catalogName }}' -- required
AND imageDefinitionName = '{{ imageDefinitionName }}' -- required
AND buildName = '{{ buildName }}' -- required
;