Uses of Class
com.azure.spring.data.cosmos.repository.support.CosmosEntityInformation
Packages that use CosmosEntityInformation
Package
Description
This package contains the core classes of cosmos db, includes converters,
query generators and mapping to cosmos entities
This package contains the process cosmos queries
This package contains the support classes of setting up cosmosdb repositories and factories
-
Uses of CosmosEntityInformation in com.azure.spring.data.cosmos.core
Methods in com.azure.spring.data.cosmos.core with parameters of type CosmosEntityInformationModifier and TypeMethodDescriptioncom.azure.cosmos.models.CosmosContainerPropertiesCosmosOperations.createContainerIfNotExists(CosmosEntityInformation<?, ?> information) Creates container if not existscom.azure.cosmos.models.CosmosContainerPropertiesCosmosTemplate.createContainerIfNotExists(CosmosEntityInformation<?, ?> information) Mono<com.azure.cosmos.models.CosmosContainerResponse> ReactiveCosmosOperations.createContainerIfNotExists(CosmosEntityInformation<?, ?> information) Creates a container if it doesn't already existMono<com.azure.cosmos.models.CosmosContainerResponse> ReactiveCosmosTemplate.createContainerIfNotExists(CosmosEntityInformation<?, ?> information) Creates a container if it doesn't already exist<S extends T,T>
voidCosmosOperations.deleteEntities(CosmosEntityInformation<T, ?> information, Iterable<S> entities) Delete using a list of entities with bulk<S extends T,T>
voidCosmosTemplate.deleteEntities(CosmosEntityInformation<T, ?> information, Iterable<S> entities) Deletes the entities using bulkReactiveCosmosOperations.deleteEntities(CosmosEntityInformation<T, ?> entityInformation, Iterable<S> entities) Delete all items with bulk.ReactiveCosmosOperations.deleteEntities(CosmosEntityInformation<T, ?> entityInformation, Flux<S> entities) Delete all items with bulk.ReactiveCosmosTemplate.deleteEntities(CosmosEntityInformation<T, ?> entityInformation, Iterable<S> entities) Delete all items with bulk.ReactiveCosmosTemplate.deleteEntities(CosmosEntityInformation<T, ?> entityInformation, Flux<S> entities) Delete all items with bulk.<S extends T,T>
Iterable<S> CosmosOperations.insertAll(CosmosEntityInformation<T, ?> information, Iterable<S> entities) Insert items using bulk operations.<S extends T,T>
Iterable<S> CosmosTemplate.insertAll(CosmosEntityInformation<T, ?> information, Iterable<S> entities) Insert all items with bulk.<S extends T,T>
Flux<S> ReactiveCosmosOperations.insertAll(CosmosEntityInformation<T, ?> entityInformation, Iterable<S> entities) Insert all items with bulk.<S extends T,T>
Flux<S> ReactiveCosmosOperations.insertAll(CosmosEntityInformation<T, ?> entityInformation, Flux<S> entities) Insert all items with bulk.<S extends T,T>
Flux<S> ReactiveCosmosTemplate.insertAll(CosmosEntityInformation<T, ?> entityInformation, Iterable<S> entities) Insert all items with bulk.<S extends T,T>
Flux<S> ReactiveCosmosTemplate.insertAll(CosmosEntityInformation<T, ?> entityInformation, Flux<S> entities) Insert all items with bulk. -
Uses of CosmosEntityInformation in com.azure.spring.data.cosmos.repository.query
Constructors in com.azure.spring.data.cosmos.repository.query with parameters of type CosmosEntityInformationModifierConstructorDescriptionSimpleCosmosEntityMetadata(Class<T> type, CosmosEntityInformation<T, String> entityInformation) InitializationSimpleReactiveCosmosEntityMetadata(Class<T> type, CosmosEntityInformation<T, String> entityInformation) Initialization -
Uses of CosmosEntityInformation in com.azure.spring.data.cosmos.repository.support
Methods in com.azure.spring.data.cosmos.repository.support that return CosmosEntityInformationModifier and TypeMethodDescriptionstatic CosmosEntityInformation<?, ?> CosmosEntityInformation.getInstance(Class<?> domainClass) Static FactoryConstructors in com.azure.spring.data.cosmos.repository.support with parameters of type CosmosEntityInformationModifierConstructorDescriptionSimpleCosmosRepository(CosmosEntityInformation<T, ID> metadata, CosmosOperations dbOperations) InitializationSimpleReactiveCosmosRepository(CosmosEntityInformation<T, K> metadata, ReactiveCosmosOperations reactiveCosmosOperations) Initialization with metadata and reactiveCosmosOperations