v1

latestOpenAPI 3.1.02026-07-22106199311.5 KB
Shared Pipeline Artifacts

Enable or Disable a Shared Pipeline Artifact Version

Enables or disables a specific version of a shared pipeline artifact. The sharedPipelineIdPrefix identifies the shared pipeline group.

patch/v1/shared-pipelines/artifacts

Request body

enabledboolean required

Whether this version of the shared pipeline is enabled

sharedPipelineIdPrefixstring required

The prefix identifier grouping related shared pipelines

versionNamestring required

The version name of the shared pipeline artifact

Example request

{
  "enabled": true,
  "sharedPipelineIdPrefix": "my-shared-pipeline",
  "versionName": "1.0.0"
}

Response

Shared pipeline artifact version updated successfully

enabledboolean

Whether this version of the shared pipeline is enabled

versionNamestring

The version name of the shared pipeline artifact

Example response

{
  "enabled": true,
  "versionName": "1.0.0"
}