Skip to main content

published_artifacts

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

Overview

Namepublished_artifacts
TypeResource
Idazure.blueprints.published_artifacts

Fields

NameDatatypeDescription
idstringString Id used to locate any resource on Azure.
namestringName of this resource.
kindstringSpecifies the kind of blueprint artifact.
typestringType of this resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTartifactName, blueprintName, resourceScope, versionIdGet an artifact for a published blueprint definition.
listSELECTblueprintName, resourceScope, versionIdList artifacts for a version of a published blueprint definition.

SELECT examples

List artifacts for a version of a published blueprint definition.

SELECT
id,
name,
kind,
type
FROM azure.blueprints.published_artifacts
WHERE blueprintName = '{{ blueprintName }}'
AND resourceScope = '{{ resourceScope }}'
AND versionId = '{{ versionId }}';