Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.base.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.consistent_hash_ring.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.constants.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.cosmos_client_connection.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.default_retry_policy.rst

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.execution_context.aggregators.rst

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

23 changes: 0 additions & 23 deletions doc/sphinx/ref/azure.cosmos.execution_context.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.global_endpoint_manager.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.hash_partition_resolver.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.location_cache.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.murmur_hash.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.partition.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.query_iterable.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.range.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.range_partition_resolver.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.request_object.rst

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.retry_options.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.retry_utility.rst

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.routing.routing_map_provider.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.routing.routing_range.rst

This file was deleted.

19 changes: 0 additions & 19 deletions doc/sphinx/ref/azure.cosmos.routing.rst

This file was deleted.

32 changes: 0 additions & 32 deletions doc/sphinx/ref/azure.cosmos.rst
Original file line number Diff line number Diff line change
@@ -1,56 +1,24 @@
azure.cosmos package
====================

Subpackages
-----------

.. toctree::

azure.cosmos.execution_context
azure.cosmos.routing

Submodules
----------

.. toctree::

azure.cosmos.auth
azure.cosmos.base
azure.cosmos.consistent_hash_ring
azure.cosmos.constants
azure.cosmos.container
azure.cosmos.cosmos_client
azure.cosmos.cosmos_client_connection
azure.cosmos.database
azure.cosmos.default_retry_policy
azure.cosmos.diagnostics
azure.cosmos.documents
azure.cosmos.endpoint_discovery_retry_policy
azure.cosmos.errors
azure.cosmos.global_endpoint_manager
azure.cosmos.hash_partition_resolver
azure.cosmos.http_constants
azure.cosmos.location_cache
azure.cosmos.murmur_hash
azure.cosmos.offer
azure.cosmos.partition
azure.cosmos.partition_key
azure.cosmos.permission
azure.cosmos.query_iterable
azure.cosmos.range
azure.cosmos.range_partition_resolver
azure.cosmos.request_object
azure.cosmos.resource_throttle_retry_policy
azure.cosmos.retry_options
azure.cosmos.retry_utility
azure.cosmos.runtime_constants
azure.cosmos.scripts
azure.cosmos.session
azure.cosmos.session_retry_policy
azure.cosmos.synchronized_request
azure.cosmos.user
azure.cosmos.utils
azure.cosmos.vector_session_token

Module contents
---------------
Expand Down
7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.runtime_constants.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.session.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.session_retry_policy.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.synchronized_request.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.utils.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/sphinx/ref/azure.cosmos.vector_session_token.rst

This file was deleted.

15 changes: 15 additions & 0 deletions sdk/cosmos/azure-cosmos/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log azure-cosmos

## Version 4.0.0b4:

- Added support for a `timeout` keyword argument to all operations to specify an absolute timeout in seconds
within which the operation must be completed. If the timeout value is exceeded, a `azure.cosmos.errors.CosmosClientTimeoutError` will be raised.
- Added a new `ConnectionRetryPolicy` to manage retry behaviour during HTTP connection errors.
- Added new constructor and per-operation configuration keyword arguments:
-`retry_total` - Maximum retry attempts.
-`retry_backoff_max` - Maximum retry wait time in seconds.
-`retry_fixed_interval` - Fixed retry interval in milliseconds.
-`retry_read` - Maximum number of socket read retry attempts.
-`retry_connect` - Maximum number of connection error retry attempts.
-`retry_status` - Maximum number of retry attempts on error status codes.
-`retry_on_status_codes` - A list of specific status codes to retry on.
-`retry_backoff_factor` - Factor to calculate wait time between retry attempts.

## Version 4.0.0b3:

- Added `create_database_if_not_exists()` and `create_container_if_not_exists` functionalities to CosmosClient and Database respectively.
Expand Down
Loading