Package org.fiware.ngsi.api
Interface BatchOperationsApi
@Generated(value="org.openapitools.codegen.languages.MicronautCodegen",
date="2024-08-06T06:12:43.920683610Z[Etc/UTC]")
public interface BatchOperationsApi
-
Method Summary
Modifier and TypeMethodDescriptionio.micronaut.http.HttpResponse<BatchOperationResultVO>
batchEntityCreation
(EntityListVO entityListVO) io.micronaut.http.HttpResponse<BatchOperationResultVO>
batchEntityDelete
(List<URI> javaNetURI) io.micronaut.http.HttpResponse<BatchOperationResultVO>
batchEntityUpdate
(EntityListVO entityListVO, String options) io.micronaut.http.HttpResponse<BatchOperationResultVO>
batchEntityUpsert
(EntityListVO entityListVO, String options)
-
Method Details
-
batchEntityCreation
@Post("/entityOperations/create") @Consumes("application/ld+json") @Produces("application/ld+json") io.micronaut.http.HttpResponse<BatchOperationResultVO> batchEntityCreation(@Body EntityListVO entityListVO) -
batchEntityDelete
@Post("/entityOperations/delete") @Consumes("application/ld+json") @Produces("application/ld+json") io.micronaut.http.HttpResponse<BatchOperationResultVO> batchEntityDelete(@Body List<URI> javaNetURI) -
batchEntityUpdate
@Post("/entityOperations/update") @Consumes("application/ld+json") @Produces("application/ld+json") io.micronaut.http.HttpResponse<BatchOperationResultVO> batchEntityUpdate(@Body EntityListVO entityListVO, @Nullable @QueryValue("options") String options) -
batchEntityUpsert
@Post("/entityOperations/upsert") @Consumes("application/ld+json") @Produces("application/ld+json") io.micronaut.http.HttpResponse<BatchOperationResultVO> batchEntityUpsert(@Body EntityListVO entityListVO, @Nullable @QueryValue("options") String options)
-