project_catalog_image_definitions
Creates, updates, deletes, gets or lists a project_catalog_image_definitions
resource.
Overview
Name | project_catalog_image_definitions |
Type | Resource |
Id | azure.dev_center.project_catalog_image_definitions |
Fields
- vw_project_catalog_image_definitions
- project_catalog_image_definitions
Name | Datatype | Description |
---|---|---|
catalogName | text | field from the properties object |
file_url | text | field from the properties object |
imageDefinitionName | text | field from the properties object |
image_reference | text | field from the properties object |
latest_build | text | field from the properties object |
projectName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Properties of an Image Definition. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_by_project_catalog | SELECT | catalogName, imageDefinitionName, projectName, resourceGroupName, subscriptionId | Gets an Image Definition from the catalog |
list_by_project_catalog | SELECT | catalogName, projectName, resourceGroupName, subscriptionId | List Image Definitions in the catalog. |
build_image | EXEC | catalogName, imageDefinitionName, projectName, resourceGroupName, subscriptionId | Builds an image for the specified Image Definition. |
SELECT
examples
List Image Definitions in the catalog.
- vw_project_catalog_image_definitions
- project_catalog_image_definitions
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 }}';
SELECT
properties
FROM azure.dev_center.project_catalog_image_definitions
WHERE catalogName = '{{ catalogName }}'
AND projectName = '{{ projectName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';