Uses of Class
com.azure.data.cosmos.CosmosItemRequestOptions
-
Packages that use CosmosItemRequestOptions Package Description com.azure.data.cosmos This package provides Rx interfaces for interacting with Azure Cosmos DB.com.azure.data.cosmos.sync This package provides synchronous interfaces for interacting with Azure Cosmos DB. -
-
Uses of CosmosItemRequestOptions in com.azure.data.cosmos
Methods in com.azure.data.cosmos that return CosmosItemRequestOptions Modifier and Type Method Description CosmosItemRequestOptions
CosmosItemRequestOptions. accessCondition(AccessCondition accessCondition)
Sets the conditions associated with the request.CosmosItemRequestOptions
CosmosItemRequestOptions. consistencyLevel(ConsistencyLevel consistencyLevel)
Sets the consistency level required for the request.CosmosItemRequestOptions
CosmosItemRequestOptions. indexingDirective(IndexingDirective indexingDirective)
Sets the indexing directive (index, do not index etc).CosmosItemRequestOptions
CosmosItemRequestOptions. partitionKey(PartitionKey partitionKey)
Sets the partition keyCosmosItemRequestOptions
CosmosItemRequestOptions. postTriggerInclude(List<String> postTriggerInclude)
Sets the triggers to be invoked after the operation.CosmosItemRequestOptions
CosmosItemRequestOptions. preTriggerInclude(List<String> preTriggerInclude)
Sets the triggers to be invoked before the operation.CosmosItemRequestOptions
CosmosItemRequestOptions. sessionToken(String sessionToken)
Sets the token for use with session consistency.Methods in com.azure.data.cosmos with parameters of type CosmosItemRequestOptions Modifier and Type Method Description Mono<CosmosItemResponse>
CosmosContainer. createItem(Object item, CosmosItemRequestOptions options)
Creates a cosmos item.Mono<CosmosItemResponse>
CosmosItem. delete(CosmosItemRequestOptions options)
Deletes the item.Mono<CosmosItemResponse>
CosmosItem. read(CosmosItemRequestOptions options)
Reads an item.Mono<CosmosItemResponse>
CosmosItem. replace(Object item, CosmosItemRequestOptions options)
Replaces an item with the passed in item.Mono<CosmosItemResponse>
CosmosContainer. upsertItem(Object item, CosmosItemRequestOptions options)
Upserts a cosmos item. -
Uses of CosmosItemRequestOptions in com.azure.data.cosmos.sync
Methods in com.azure.data.cosmos.sync with parameters of type CosmosItemRequestOptions Modifier and Type Method Description CosmosSyncItemResponse
CosmosSyncContainer. createItem(Object item, CosmosItemRequestOptions options)
Create item cosmos sync item response.CosmosSyncItemResponse
CosmosSyncItem. delete(CosmosItemRequestOptions options)
Delete cosmos sync item response.CosmosSyncItemResponse
CosmosSyncItem. read(CosmosItemRequestOptions options)
Read cosmos sync item response.CosmosSyncItemResponse
CosmosSyncItem. replace(Object item, CosmosItemRequestOptions options)
Replace cosmos sync item response.CosmosSyncItemResponse
CosmosSyncContainer. upsertItem(Object item, CosmosItemRequestOptions options)
Upsert item cosmos sync item response.
-