Add more overload of CRUD on cosmos encryption #23999
Labels
azure-cosmos-encryption
Issues related to azure cosmos encryption project
Client
This issue points to a problem in the data-plane of the library.
Cosmos
Currently we have single overload of crud operation.
for example we have
public <T> Mono<CosmosItemResponse<T>> createItem(T item, PartitionKey partitionKey, CosmosItemRequestOptions requestOptions)
We need below two as well
'public Mono<CosmosItemResponse> createItem(T item) '
public <T> Mono<CosmosItemResponse<T>> createItem(T item, CosmosItemRequestOptions options)
The text was updated successfully, but these errors were encountered: