published_artifacts
Creates, updates, deletes, gets or lists a published_artifacts
resource.
Overview
Name | published_artifacts |
Type | Resource |
Id | azure.blueprints.published_artifacts |
Fields
The following fields are returned by SELECT
queries:
- get
- list
OK -- artifact of published blueprint definition retrieved.
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. |
OK -- artifacts of a version of published blueprint definition retrieved.
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceScope , blueprintName , versionId , artifactName | Get an artifact for a published blueprint definition. | |
list | select | resourceScope , blueprintName , versionId | List artifacts for a version of a published blueprint definition. |
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.
Name | Datatype | Description |
---|---|---|
artifactName | string | Name of the blueprint artifact. |
blueprintName | string | Name of the blueprint definition. |
resourceScope | string | The scope of the resource. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroup}'), subscription (format: '/subscriptions/{subscriptionId}'). |
versionId | string | Version of the published blueprint definition. |
SELECT
examples
- get
- list
Get an artifact for a published blueprint definition.
SELECT
id,
name,
kind,
type
FROM azure.blueprints.published_artifacts
WHERE resourceScope = '{{ resourceScope }}' -- required
AND blueprintName = '{{ blueprintName }}' -- required
AND versionId = '{{ versionId }}' -- required
AND artifactName = '{{ artifactName }}' -- required
;
List artifacts for a version of a published blueprint definition.
SELECT
id,
name,
kind,
type
FROM azure.blueprints.published_artifacts
WHERE resourceScope = '{{ resourceScope }}' -- required
AND blueprintName = '{{ blueprintName }}' -- required
AND versionId = '{{ versionId }}' -- required
;