Skip to main content

project_catalog_image_definitions

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

Overview

Nameproject_catalog_image_definitions
TypeResource
Idazure.dev_center.project_catalog_image_definitions

Fields

NameDatatypeDescription
catalogNametextfield from the properties object
file_urltextfield from the properties object
imageDefinitionNametextfield from the properties object
image_referencetextfield from the properties object
latest_buildtextfield from the properties object
projectNametextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
get_by_project_catalogSELECTcatalogName, imageDefinitionName, projectName, resourceGroupName, subscriptionIdGets an Image Definition from the catalog
list_by_project_catalogSELECTcatalogName, projectName, resourceGroupName, subscriptionIdList Image Definitions in the catalog.
build_imageEXECcatalogName, imageDefinitionName, projectName, resourceGroupName, subscriptionIdBuilds an image for the specified Image Definition.

SELECT examples

List Image Definitions in the catalog.

SELECT
catalogName,
file_url,
imageDefinitionName,
image_reference,
latest_build,
projectName,
resourceGroupName,
subscriptionId
FROM azure.dev_center.vw_project_catalog_image_definitions
WHERE catalogName = '{{ catalogName }}'
AND projectName = '{{ projectName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';