Forrest logo
back to the az tool

az-pipelines:tldr:8136f

az-pipelines: Delete a specific pipeline.
$ az pipelines delete --org ${organization_url} --project ${project_name} --id ${pipeline_id}
try on your machine

The command az pipelines delete is used to delete a pipeline in Azure DevOps, which is a cloud-based service for collaboration on code development and delivery.

Here's a breakdown of the command and its parameters:

  • --org ${organization_url}: This parameter specifies the Azure DevOps organization URL where the pipeline exists. You need to replace ${organization_url} with the actual URL of your Azure DevOps organization.

  • --project ${project_name}: This parameter specifies the name of the project where the pipeline exists. You need to replace ${project_name} with the actual name of your project.

  • --id ${pipeline_id}: This parameter specifies the ID of the pipeline to be deleted. You need to replace ${pipeline_id} with the actual ID of the pipeline you want to delete.

By running this command with the appropriate values filled in, you can delete the specified pipeline from your Azure DevOps organization.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the az tool