/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ package org.opensearch.action.search; import org.opensearch.action.ActionType; import org.opensearch.action.support.master.AcknowledgedResponse; /** * Action type to delete a search pipeline * * @opensearch.internal */ public class DeleteSearchPipelineAction extends ActionType { public static final DeleteSearchPipelineAction INSTANCE = new DeleteSearchPipelineAction(); public static final String NAME = "cluster:admin/search/pipeline/delete"; public DeleteSearchPipelineAction() { super(NAME, AcknowledgedResponse::new); } }