published_artifacts
Creates, updates, deletes, gets or lists a published_artifacts
resource.
Overview
Name | published_artifacts |
Type | Resource |
Id | azure.blueprints.published_artifacts |
Fields
Name | Datatype | Description |
---|---|---|
id | string | String Id used to locate any resource on Azure. |
name | string | Name of this resource. |
kind | string | Specifies the kind of blueprint artifact. |
type | string | Type of this resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | artifactName, blueprintName, resourceScope, versionId | Get an artifact for a published blueprint definition. |
list | SELECT | blueprintName, resourceScope, versionId | List 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 }}';