## [DEPRECATED] Delete Pipeline `pipelines.delete(strpipeline_name, PipelineDeleteParams**kwargs)` **delete** `/accounts/{account_id}/pipelines/{pipeline_name}` [DEPRECATED] Delete a pipeline. Use the new /pipelines/v1/pipelines endpoint instead. ### Parameters - `account_id: str` Specifies the public ID of the account. - `pipeline_name: str` Defines the name of the pipeline. ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) client.pipelines.delete( pipeline_name="sample_pipeline", account_id="0123105f4ecef8ad9ca31a8372d0c353", ) ```