Uses of Class
com.azure.cosmos.models.CosmosBatchItemRequestOptions
Package
Description
This package provides rest contracts for interacting with Azure Cosmos DB SQL APIs.
-
Uses of CosmosBatchItemRequestOptions in com.azure.cosmos.models
Modifier and TypeMethodDescriptionCosmosBatchItemRequestOptions.setIfMatchETag
(String ifMatchETag) Sets the If-Match (ETag) associated with the operation in CosmosBatch.CosmosBatchItemRequestOptions.setIfNoneMatchETag
(String ifNoneMatchEtag) Sets the If-None-Match (ETag) associated with the request in operation in CosmosBatch.CosmosBatchItemRequestOptions.setThroughputControlGroupName
(String throughputControlGroupName) Sets the throughput control group name.Modifier and TypeMethodDescriptionCosmosBatch.createItemOperation
(T item, CosmosBatchItemRequestOptions requestOptions) Adds an operation to create an item into the batch.CosmosBatch.deleteItemOperation
(String id, CosmosBatchItemRequestOptions requestOptions) Adds an operation to delete an item into the batch.CosmosBatch.readItemOperation
(String id, CosmosBatchItemRequestOptions requestOptions) Adds an operation to read an item into the batch.CosmosBatch.replaceItemOperation
(String id, T item, CosmosBatchItemRequestOptions requestOptions) Adds an operation to replace an item into the batch.CosmosBatch.upsertItemOperation
(T item, CosmosBatchItemRequestOptions requestOptions) Adds an operation to upsert an item into the batch.