Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cosmosdb pitr timestamp fixes #2914

Merged
merged 5 commits into from
Jan 25, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Updating the version
  • Loading branch information
kavskalyan committed Jan 18, 2021
commit 441f2edd90ad675ef86dffc619e0a87e2fc02524
5 changes: 5 additions & 0 deletions src/cosmosdb-preview/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release History
===============

0.2.0
++++++
* Utc is taken as the default timezone when the timezone is not specified in the restore timestamp
* Added the `--name` parameter to `az cosmosdb restorable-database-account list` to return all the restorable database accounts with the given name

0.1.0
++++++
* Create Azure CosmosDB continuous backup accounts
Expand Down
8 changes: 8 additions & 0 deletions src/cosmosdb-preview/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@ This command returns all the continuous mode backup accounts that can be restore
az cosmosdb restorable-database-account list
```

#### List all the CosmosDB accounts with the given name that can be restored (live and deleted) ####

This command returns all the continuous mode backup accounts with the given name that can be restored.

```sh
az cosmosdb restorable-database-account list --name "account-name"
```

#### Restore from an existing(live or deleted) database account to a new account ####

```sh
Expand Down