Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
fd9a8b8
[CosmosDB] Updated to version 2023-03-15-preview
SrinikhilReddy Jun 30, 2023
6a94d62
Merge branch 'Azure:main' into main
SrinikhilReddy Jul 5, 2023
0767fd3
Merge branch 'main' of https://github.com/Azure/azure-cli-extensions
SrinikhilReddy Jul 5, 2023
1399017
Merge branch 'main' of https://github.com/SrinikhilReddy/azure-cli-ex…
SrinikhilReddy Jul 5, 2023
8c77969
Revert "[CosmosDB] Updated to version 2023-03-15-preview"
SrinikhilReddy Jul 5, 2023
2d0792a
[CosmosDB] Updated to version 2023-03-15-preview
SrinikhilReddy Jul 5, 2023
a161b4c
Merge branch 'Azure:main' into main
SrinikhilReddy Jul 6, 2023
a3f7735
[CosmosDB] Updated to version 2023-03-15-preview
SrinikhilReddy Jul 7, 2023
906d6dc
Save changes
SrinikhilReddy Jul 7, 2023
458cfa5
adding materializedview option for container create and update
Jul 12, 2023
a74948a
adding tests for cli extensions
Jul 19, 2023
2707e15
modifying test to verify MV definition content in response
Jul 20, 2023
b5d5a21
minor changes
Jul 20, 2023
e818bdf
fixing static analysis error
Jul 20, 2023
680ccd9
Merge branch 'Azure:main' into main
SrinikhilReddy Jul 24, 2023
778e90c
Save test recording
SrinikhilReddy Jul 24, 2023
afa99f3
Merge branch 'main' of https://github.com/SrinikhilReddy/azure-cli-ex…
SrinikhilReddy Jul 24, 2023
98e6277
Save Recordings
SrinikhilReddy Jul 25, 2023
67087db
Save changes
SrinikhilReddy Jul 26, 2023
6b953a8
Save changes
SrinikhilReddy Jul 26, 2023
ed7b13d
Save Recordings
SrinikhilReddy Jul 26, 2023
8baba4e
Save Recordings
SrinikhilReddy Jul 26, 2023
b1b5ae9
Save Recordings
SrinikhilReddy Jul 26, 2023
c9bfaaa
Update src/cosmosdb-preview/azext_cosmosdb_preview/_help.py
SrinikhilReddy Jul 26, 2023
a83805a
Save changes
SrinikhilReddy Jul 26, 2023
ca6b272
Address code changes.
SrinikhilReddy Jul 28, 2023
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
4 changes: 4 additions & 0 deletions src/cosmosdb-preview/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release History
===============
0.25.0
* Add support for performing database merge for Sql and MongoDB database account.

++++++
0.24.0
* Create and manage mongo clusters.
* Add 'source_backup_location' parameter to 'cosmosdb restore' command
Expand Down
18 changes: 18 additions & 0 deletions src/cosmosdb-preview/azext_cosmosdb_preview/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,24 @@
az cosmosdb mongodb collection merge -g my-resource-group -a my-account -d my-db --name my-mongodb-collection
"""

helps['cosmosdb sql database merge'] = """
type: command
short-summary: "Merge the partitions of a sql database."
examples:
- name: Merge partitions of database my-database
text: |-
az cosmosdb sql database merge -g my-resource-group -a my-account --name my-database
"""

helps['cosmosdb mongodb database merge'] = """
type: command
short-summary: "Merges the partitions of a mongodb database."
examples:
- name: merge partitions of database my-mongodb-database
text: |-
az cosmosdb mongodb database merge -g my-resource-group -a my-account --name my-mongodb-collection
"""

helps['cosmosdb sql container retrieve-partition-throughput'] = """
type: command
short-summary: "Retrieve the partition throughput of a sql container."
Expand Down
1,062 changes: 562 additions & 500 deletions src/cosmosdb-preview/azext_cosmosdb_preview/_params.py

Large diffs are not rendered by default.

542 changes: 279 additions & 263 deletions src/cosmosdb-preview/azext_cosmosdb_preview/commands.py

Large diffs are not rendered by default.

Loading