The registries/pipelineRuns resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.ContainerRegistry/registries/pipelineRuns resource, add the following JSON to your template.
{
"type": "Microsoft.ContainerRegistry/registries/pipelineRuns",
"apiVersion": "2023-01-01-preview",
"name": "string",
"properties": {
"forceUpdateTag": "string",
"request": {
"artifacts": [ "string" ],
"catalogDigest": "string",
"pipelineResourceId": "string",
"source": {
"name": "string",
"type": "AzureStorageBlob"
},
"target": {
"name": "string",
"type": "AzureStorageBlob"
}
}
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.ContainerRegistry/registries/pipelineRuns' |
apiVersion | The resource api version | '2023-01-01-preview' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) |
properties | The properties of a pipeline run. | PipelineRunProperties |
Name | Description | Value |
---|---|---|
forceUpdateTag | How the pipeline run should be forced to recreate even if the pipeline run configuration has not changed. | string |
request | The request parameters for a pipeline run. | PipelineRunRequest |
Name | Description | Value |
---|---|---|
artifacts | List of source artifacts to be transferred by the pipeline. Specify an image by repository ('hello-world'). This will use the 'latest' tag. Specify an image by tag ('hello-world:latest'). Specify an image by sha256-based manifest digest ('hello-world@sha256:abc123'). |
string[] |
catalogDigest | The digest of the tar used to transfer the artifacts. | string |
pipelineResourceId | The resource ID of the pipeline to run. | string |
source | The source properties of the pipeline run. | PipelineRunSourceProperties |
target | The target properties of the pipeline run. | PipelineRunTargetProperties |
Name | Description | Value |
---|---|---|
name | The name of the source. | string |
type | The type of the source. | 'AzureStorageBlob' |
Name | Description | Value |
---|---|---|
name | The name of the target. | string |
type | The type of the target. | 'AzureStorageBlob' |