Uses of Class
com.azure.cosmos.models.CosmosContainerResponse
Packages that use CosmosContainerResponse
Package
Description
This package provides interfaces for interacting with Azure Cosmos DB.
-
Uses of CosmosContainerResponse in com.azure.cosmos
Methods in com.azure.cosmos that return CosmosContainerResponseModifier and TypeMethodDescriptionCosmosDatabase.createContainer(CosmosContainerProperties containerProperties) Creates a Cosmos container.CosmosDatabase.createContainer(CosmosContainerProperties containerProperties, CosmosContainerRequestOptions options) Creates a Cosmos container while passing additional request options.CosmosDatabase.createContainer(CosmosContainerProperties containerProperties, ThroughputProperties throughputProperties) Creates a Cosmos container with custom throughput setting.CosmosDatabase.createContainer(CosmosContainerProperties containerProperties, ThroughputProperties throughputProperties, CosmosContainerRequestOptions options) Creates a Cosmos container.CosmosDatabase.createContainer(String id, String partitionKeyPath) Create a Cosmos container.CosmosDatabase.createContainer(String id, String partitionKeyPath, ThroughputProperties throughputProperties) Create a Cosmos container.CosmosDatabase.createContainerIfNotExists(CosmosContainerProperties containerProperties) Create container if one matching the id in the properties object does not exist.CosmosDatabase.createContainerIfNotExists(CosmosContainerProperties containerProperties, ThroughputProperties throughputProperties) Creates a Cosmos container if one matching the id in the properties object does not exist.CosmosDatabase.createContainerIfNotExists(String id, String partitionKeyPath) Creates a Cosmos container if one matching the id does not exist.CosmosDatabase.createContainerIfNotExists(String id, String partitionKeyPath, ThroughputProperties throughputProperties) Creates a Cosmos container if one matching the id does not exist.CosmosContainer.delete()Deletes the current cosmos container.CosmosContainer.delete(CosmosContainerRequestOptions options) Deletes the current Cosmos container while specifying additional options such as If-Match.CosmosContainer.read()Reads the current container.CosmosContainer.read(CosmosContainerRequestOptions options) Reads the current container while specifying additional options such as If-Match.CosmosContainer.replace(CosmosContainerProperties containerProperties) Replaces the current container properties.CosmosContainer.replace(CosmosContainerProperties containerProperties, CosmosContainerRequestOptions options) Replaces the current container properties while specifying additional options such as If-Match.Methods in com.azure.cosmos that return types with arguments of type CosmosContainerResponseModifier and TypeMethodDescriptionCosmosAsyncDatabase.createContainer(CosmosContainerProperties containerProperties) Creates a Cosmos container.CosmosAsyncDatabase.createContainer(CosmosContainerProperties containerProperties, CosmosContainerRequestOptions options) Creates a Cosmos container.CosmosAsyncDatabase.createContainer(CosmosContainerProperties containerProperties, ThroughputProperties throughputProperties) Creates a Cosmos container with custom throughput properties.CosmosAsyncDatabase.createContainer(CosmosContainerProperties containerProperties, ThroughputProperties throughputProperties, CosmosContainerRequestOptions options) Creates a container.CosmosAsyncDatabase.createContainer(String id, String partitionKeyPath) Creates a Cosmos container.CosmosAsyncDatabase.createContainer(String id, String partitionKeyPath, ThroughputProperties throughputProperties) Creates a Cosmos container.CosmosAsyncDatabase.createContainerIfNotExists(CosmosContainerProperties containerProperties) Creates a Cosmos container if it does not exist on the service.CosmosAsyncDatabase.createContainerIfNotExists(CosmosContainerProperties containerProperties, ThroughputProperties throughputProperties) Creates a Cosmos container if it does not exist on the service.CosmosAsyncDatabase.createContainerIfNotExists(String id, String partitionKeyPath) Creates a Cosmos container if it does not exist on the service.CosmosAsyncDatabase.createContainerIfNotExists(String id, String partitionKeyPath, ThroughputProperties throughputProperties) Creates a Cosmos container if it does not exist on the service.CosmosAsyncContainer.delete()Deletes the current container.CosmosAsyncContainer.delete(CosmosContainerRequestOptions options) Deletes the containerCosmosAsyncContainer.read()Reads the current container.CosmosAsyncContainer.read(CosmosContainerRequestOptions options) Reads the current container while specifying additional options such as If-Match.CosmosAsyncContainer.replace(CosmosContainerProperties containerProperties) Replaces the current container's properties.CosmosAsyncContainer.replace(CosmosContainerProperties containerProperties, CosmosContainerRequestOptions options) Replaces the current container properties while using non-default request options.