PipelineRunRequest Class
The request properties provided for a pipeline run.
- Inheritance
-
azure.mgmt.containerregistry._serialization.ModelPipelineRunRequest
Constructor
PipelineRunRequest(*, pipeline_resource_id: str | None = None, artifacts: List[str] | None = None, source: _models.PipelineRunSourceProperties | None = None, target: _models.PipelineRunTargetProperties | None = None, catalog_digest: str | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
pipeline_resource_id
|
The resource ID of the pipeline to run. |
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'). |
source
|
The source properties of the pipeline run. |
target
|
The target properties of the pipeline run. |
catalog_digest
|
The digest of the tar used to transfer the artifacts. |
Variables
Name | Description |
---|---|
pipeline_resource_id
|
The resource ID of the pipeline to run. |
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'). |
source
|
The source properties of the pipeline run. |
target
|
The target properties of the pipeline run. |
catalog_digest
|
The digest of the tar used to transfer the artifacts. |
Azure SDK for Python