Fix 17304: make ingestion pipeline APIs public (#17700)

* chore(api): make ingestion pipeline APIs public

* format

---------

Co-authored-by: Ashish Gupta <ashish@getcollate.io>
This commit is contained in:
Imri Paran 2024-09-11 16:28:20 +02:00 committed by GitHub
parent fd2b080ed6
commit 0e43aeb1b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,7 +21,6 @@ import static org.openmetadata.service.Entity.FIELD_PIPELINE_STATUS;
import static org.openmetadata.service.jdbi3.IngestionPipelineRepository.validateProfileSample; import static org.openmetadata.service.jdbi3.IngestionPipelineRepository.validateProfileSample;
import io.swagger.v3.oas.annotations.ExternalDocumentation; import io.swagger.v3.oas.annotations.ExternalDocumentation;
import io.swagger.v3.oas.annotations.Hidden;
import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter; import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.media.Content; import io.swagger.v3.oas.annotations.media.Content;
@ -93,7 +92,6 @@ import org.openmetadata.service.util.ResultList;
@Tag( @Tag(
name = "Ingestion Pipelines", name = "Ingestion Pipelines",
description = "APIs related pipelines/workflows created by the system to ingest metadata.") description = "APIs related pipelines/workflows created by the system to ingest metadata.")
@Hidden
@Produces(MediaType.APPLICATION_JSON) @Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON)
@Collection(name = "IngestionPipelines") @Collection(name = "IngestionPipelines")