Uses of Class
com.azure.data.cosmos.CosmosItemProperties
-
Packages that use CosmosItemProperties 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 CosmosItemProperties in com.azure.data.cosmos
Methods in com.azure.data.cosmos that return CosmosItemProperties Modifier and Type Method Description CosmosItemProperties
CosmosItemProperties. id(String id)
Sets the idCosmosItemProperties
CosmosItemResponse. properties()
Gets the itemSettingsMethods in com.azure.data.cosmos that return types with arguments of type CosmosItemProperties Modifier and Type Method Description Flux<FeedResponse<CosmosItemProperties>>
CosmosContainer. queryChangeFeedItems(ChangeFeedOptions changeFeedOptions)
Query for documents in a items in a container After subscription the operation will be performed.Flux<FeedResponse<CosmosItemProperties>>
CosmosContainer. queryItems(SqlQuerySpec querySpec)
Query for documents in a items in a container After subscription the operation will be performed.Flux<FeedResponse<CosmosItemProperties>>
CosmosContainer. queryItems(SqlQuerySpec querySpec, FeedOptions options)
Query for documents in a items in a container After subscription the operation will be performed.Flux<FeedResponse<CosmosItemProperties>>
CosmosContainer. queryItems(String query)
Query for documents in a items in a container After subscription the operation will be performed.Flux<FeedResponse<CosmosItemProperties>>
CosmosContainer. queryItems(String query, FeedOptions options)
Query for documents in a items in a container After subscription the operation will be performed.Flux<FeedResponse<CosmosItemProperties>>
CosmosContainer. readAllItems()
Reads all cosmos items in the container.Flux<FeedResponse<CosmosItemProperties>>
CosmosContainer. readAllItems(FeedOptions options)
Reads all cosmos items in a container.Method parameters in com.azure.data.cosmos with type arguments of type CosmosItemProperties Modifier and Type Method Description ChangeFeedProcessor.BuilderDefinition
ChangeFeedProcessor.BuilderDefinition. handleChanges(Consumer<List<CosmosItemProperties>> consumer)
Sets a consumer function which will be called to process changes. -
Uses of CosmosItemProperties in com.azure.data.cosmos.sync
Methods in com.azure.data.cosmos.sync that return CosmosItemProperties Modifier and Type Method Description CosmosItemProperties
CosmosSyncItemResponse. properties()
Gets the itemSettingsMethods in com.azure.data.cosmos.sync that return types with arguments of type CosmosItemProperties Modifier and Type Method Description Iterator<FeedResponse<CosmosItemProperties>>
CosmosSyncContainer. queryChangeFeedItems(ChangeFeedOptions changeFeedOptions)
Query change feed items iterator.Iterator<FeedResponse<CosmosItemProperties>>
CosmosSyncContainer. queryItems(SqlQuerySpec querySpec, FeedOptions options)
Query items iterator.Iterator<FeedResponse<CosmosItemProperties>>
CosmosSyncContainer. queryItems(String query, FeedOptions options)
Query items iterator.Iterator<FeedResponse<CosmosItemProperties>>
CosmosSyncContainer. readAllItems(FeedOptions options)
Read all items iterator.
-