CosmosDB
3.5.2.487
This module provides cmdlets for working with Azure Cosmos DB databases, collections, documents, attachments, offers, users, permissions, triggers, stored procedures and user defined functions.
Minimum PowerShell version
5.1
See the version list below for details.
Installation Options
Owners
Copyright
(c) 2020 Daniel Scott-Raynsford. All rights reserved.
Package Details
Author(s)
- Daniel Scott-Raynsford
Tags
CosmosDB DocumentDb Azure Windows Linux MacOS
Functions
Get-CosmosDbAccount Get-CosmosDbAccountConnectionString Get-CosmosDbAccountMasterKey Get-CosmosDbAttachment Get-CosmosDbAttachmentResourcePath Get-CosmosDbCollection Get-CosmosDbCollectionResourcePath Get-CosmosDbCollectionSize Get-CosmosDbContextToken Get-CosmosDBDatabase Get-CosmosDBDatabaseResourcePath Get-CosmosDBDocument Get-CosmosDBDocumentResourcePath Get-CosmosDBOffer Get-CosmosDBOfferResourcePath Get-CosmosDbPermission Get-CosmosDbPermissionResourcePath Get-CosmosDbStoredProcedure Get-CosmosDbStoredProcedureResourcePath Get-CosmosDbTrigger Get-CosmosDbTriggerResourcePath Get-CosmosDbUser Get-CosmosDbUserResourcePath Get-CosmosDbUserDefinedFunction Get-CosmosDbUserDefinedFunctionResourcePath Invoke-CosmosDbStoredProcedure New-CosmosDbAccount New-CosmosDbAccountMasterKey New-CosmosDbAttachment New-CosmosDbBackoffPolicy New-CosmosDbCollection New-CosmosDbCollectionIncludedPathIndex New-CosmosDbCollectionIncludedPath New-CosmosDbCollectionExcludedPath New-CosmosDbCollectionIndexingPolicy New-CosmosDbCollectionUniqueKey New-CosmosDbCollectionUniqueKeyPolicy New-CosmosDbDatabase New-CosmosDbDocument New-CosmosDbContext New-CosmosDbContextToken New-CosmosDbPermission New-CosmosDbStoredProcedure New-CosmosDbTrigger New-CosmosDbUser New-CosmosDbUserDefinedFunction Remove-CosmosDbAccount Remove-CosmosDbAttachment Remove-CosmosDbCollection Remove-CosmosDbDatabase Remove-CosmosDbDocument Remove-CosmosDbPermission Remove-CosmosDbStoredProcedure Remove-CosmosDbTrigger Remove-CosmosDbUser Remove-CosmosDbUserDefinedFunction Set-CosmosDbAccount Set-CosmosDbAttachment Set-CosmosDbCollection Set-CosmosDbDocument Set-CosmosDbOffer Set-CosmosDbStoredProcedure Set-CosmosDbTrigger Set-CosmosDbUser Set-CosmosDbUserDefinedFunction
PSEditions
Dependencies
-
- Az.Accounts (>= 1.0.0)
- Az.Resources (>= 1.0.0)
Release Notes
## What is New in CosmosDB 3.5.2.487
- Update `BuildHelpers` to version 2.0.11.
- Update `Psake` to version 4.9.0.
- Update `Pester` to version 4.10.1.
- Update `PSScriptAnalyzer` to version 1.18.3.
- Change Azure Pipeline Linux build to test PowerShell Core 6.2.3-1.
- Change TravisCI Linux build to test PowerShell Core 6.2.3-1.
- Change TravisCI MacOS build to test PowerShell Core 6.2.3-1.
- Add PowerShell 7 test to Azure Pipeline - fixes [Issue #325](https://github.com/PlagueHO/CosmosDB/issues/325).
- Fix bug converting Secure String in PowerShell 7 on Linux - fixes [Issue #323](https://github.com/PlagueHO/CosmosDB/issues/323).
- Fix issue in Azure Pipeline in MacOS build job - fixes [Issue #326](https://github.com/PlagueHO/CosmosDB/issues/326).
- Remove TravisCI Pipeline - fixes [Issue #327](https://github.com/PlagueHO/CosmosDB/issues/327).
## What is New in CosmosDB 3.5.1.458
November 12, 2019
- Change `psakefile.ps1` to detect Azure Pipelines correctly.
- Updated `BuildHelpers` support module for CI pipelines to 2.0.10.
- Added PowerShell Gallery badge to `README.md`.
- Refactored `Invoke-CosmosDbRequest` and added
`Get-CosmosDbAuthorizationHeadersFromContext` to split out function to pull
token out of `Context` object. This was done to reduce the size of the
`Invoke-CosmosDbRequest` function and to improve testability.
- Fix TravisCI MacOS build - fixes [Issue #313](https://github.com/PlagueHO/CosmosDB/issues/313).
- Created helper function `Format-CosmosDbDocumentPartitionKey` to
format the partition key string passed to `x-ms-documentdb-partitionkey`
in document functions.
- Add support for integer partition keys to functions
`Get-CosmosDbDocument`, `New-CosmosDbDocument`, `Remove-CosmosDbDocument`
and `Set-CosmosDbDocument`.
## What is New in CosmosDB 3.5.0.425
July 19, 2019
- Fix issue with integration test execution error in Azure DevOps
when running against a pull request and the contributor has not
set build environment variables for connecting to Azure - fixes [Issue #304](https://github.com/PlagueHO/CosmosDB/issues/304).
- Added `.markdownlint.json` to enable linting of markdown files.
- Added optional `ETag` parameter to `Set-CosmosDbDocument` to check if
the document has been updated since last get.
## What is New in CosmosDB 3.4.0.410
June 29, 2019
- Added `OfferThroughput` parameter to `New-CosmosDbDatabase`
function - fixes [Issue #110](https://github.com/PlagueHO/CosmosDB/issues/110).
## What is New in CosmosDB 3.3.0.404
June 22, 2019
- Moved CosmosDB namespace class definitions into C# project to be built
into a .NET Standard 2.0 DLL that can be loaded instead of a CS file.
This is to work around a problem with Azure Functions 2.0 where
types can not be compiled in the runtime (see [this issue](https://github.com/Azure/azure-functions-powershell-worker/issues/220)) -
fixes [Issue #290](https://github.com/PlagueHO/CosmosDB/issues/290).
## What is New in CosmosDB 3.2.4.375
May 30, 2019
- Update `requirements.psd1` to install modules `Az.Resources` 1.3.1 and
`Az.Accounts` 1.5.1.
- Change `requirements.psd1` to specify `minimumversion` of `Az.Resources`
and `Az.Accounts`.
- Enabled tests and removed the warning when executing the function
`Get-CosmosDbAccountConnectionString` because the underlying REST API
has been fixed and now functions correctly - fixes [Issue #291](https://github.com/PlagueHO/CosmosDB/issues/291).
- Added parameter `MasterKeyType` to function `Get-CosmosDbAccountConnectionString`
to only return a specific connection string - fixes [Issue #291](https://github.com/PlagueHO/CosmosDB/issues/291).
## What is New in CosmosDB 3.2.3.358
April 5, 2019
- Fix incorrectly encoded strings being returned by `Get-CosmosDbDocument`
when UTF-8 results are returned - fixes [Issues #282](https://github.com/PlagueHO/CosmosDB/issues/282).
- Rename `CosmosDb.psdepend.ps1` to `requirements.psd1` to be a more
generic name.
## What is New in CosmosDB 3.2.2.348
March 19, 2019
- Added Azure Pipelines YAML definition for executing automated
testing on a daily schedule - fixes [Issue #272](https://github.com/PlagueHO/CosmosDB/issues/272).
- Extend AppVeyor test automation to run on Windows Server 2012R2
and Windows Server 2016.
- Update `cosmosdb.psdepend.psd1` to install modules `Az.Resources` 1.2.0 and
`Az.Accounts` 1.4.0.
- Added `Windows`, `Linux` and `MacOS` tags to module manifest to
improve searchability in PowerShell Gallery.
## What is New in CosmosDB 3.2.1.331
February 22, 2019
- Added support for `PartitionKey` in `*-CosmosDBAttachment`
functions - fixes [Issue #274](https://github.com/PlagueHO/CosmosDB/issues/274).
- Update `cosmosdb.psdepend.psd1` to install modules `Az.Resources` 1.1.2 and
`Az.Accounts` 1.3.0.
- Suppress verbose output when loading module during automated
testing to reduce output.
## What is New in CosmosDB 3.2.0.320
February 6, 2019
- Convert module name to be a variable in PSake file to make it more
easily portable between projects.
- Fix `Notes` display in Readme Markdown - fixes [Issue #269](https://github.com/PlagueHO/CosmosDB/issues/269).
- Update `cosmosdb.psdepend.psd1` to install modules `Az` 1.2.1 and
`Pester` 4.7.0.
- Deprecate `Hash` index policy kind and throw exception when used
in `New-CosmosDbCollectionIncludedPathIndex`. See [this page](https://docs.microsoft.com/en-us/azure/cosmos-db/index-types#index-kind)
for more information - fixes [Issue #271](https://github.com/PlagueHO/CosmosDB/issues/271).
## What is New in CosmosDB 3.1.0.293
December 26, 2018
- Updated manifest to include required modules `Az.Accounts` 1.0.0
and `Az.Resources` 1.0.0.
- Updated manifest to include `CompatiblePSEditions` of 'Desktop' and
'Core'.
- Updated minimum supported PowerShell version to 5.1.
- Updated `cosmosdb.depend.psd1` to ensure `Az` modules are installed
when running 'Deploy' PSake task.
- Improve build task code to ensure Git tag is correctly set.
FileList
- CosmosDB.nuspec
- CHANGELOG.md
- CosmosDB-help.xml
- CosmosDB.dll
- CosmosDB.psd1
- CosmosDB.psm1
- LICENSE
- README.md
- RELEASENOTES.md
- en-US\CosmosDB.strings.psd1
- formats\attachments.formats.ps1xml
- formats\collections.formats.ps1xml
- formats\databases.formats.ps1xml
- formats\documents.formats.ps1xml
- formats\offers.formats.ps1xml
- formats\permissions.formats.ps1xml
- formats\storedprocedures.formats.ps1xml
- formats\triggers.formats.ps1xml
- formats\userdefinedfunctions.formats.ps1xml
- formats\users.formats.ps1xml
- types\attachments.types.ps1xml
- types\collections.types.ps1xml
- types\databases.types.ps1xml
- types\documents.types.ps1xml
- types\offers.types.ps1xml
- types\permissions.types.ps1xml
- types\storedprocedures.types.ps1xml
- types\triggers.types.ps1xml
- types\userdefinedfunctions.types.ps1xml
- types\users.types.ps1xml
Version History
Version | Downloads | Last updated |
---|---|---|
5.0.1-previe... | 26 | 10/18/2024 |
5.0.1-previe... | 219 | 8/12/2024 |
5.0.0 | 424,955 | 6/7/2024 |
5.0.0-previe... | 112,898 | 5/19/2024 |
5.0.0-previe... | 6 | 5/19/2024 |
4.7.0 | 1,168,037 | 1/29/2023 |
4.7.0-previe... | 16 | 1/22/2023 |
4.6.0 | 99,734 | 8/7/2022 |
4.6.0-previe... | 32 | 8/7/2022 |
4.6.0-previe... | 218 | 5/30/2022 |
4.6.0-previe... | 238 | 9/17/2021 |
4.6.0-previe... | 32 | 9/2/2021 |
4.5.0 | 212,505 | 5/29/2021 |
4.5.0-previe... | 31 | 5/23/2021 |
4.5.0-previe... | 32 | 5/23/2021 |
4.4.3 | 49,585 | 11/13/2020 |
4.4.3-previe... | 31 | 11/12/2020 |
4.4.2 | 2,741 | 11/11/2020 |
4.4.2-previe... | 31 | 11/11/2020 |
4.4.1 | 2,423 | 10/27/2020 |
4.4.1-previe... | 31 | 10/27/2020 |
4.4.0 | 5,996 | 8/30/2020 |
4.4.0-previe... | 32 | 8/30/2020 |
4.3.0 | 4,820 | 8/11/2020 |
4.3.0-previe... | 34 | 8/10/2020 |
4.2.2-previe... | 33 | 8/8/2020 |
4.2.2-previe... | 32 | 8/8/2020 |
4.2.1 | 12,745 | 6/15/2020 |
4.2.1-previe... | 34 | 6/15/2020 |
4.2.0 | 3,023 | 6/1/2020 |
4.2.0-previe... | 33 | 6/1/2020 |
4.2.0-previe... | 33 | 5/31/2020 |
4.2.0-previe... | 33 | 5/31/2020 |
4.2.0-previe... | 33 | 5/30/2020 |
4.1.0 | 7,890 | 5/15/2020 |
4.1.0-previe... | 854 | 5/15/2020 |
4.0.0 | 1,928 | 5/11/2020 |
4.0.0-previe... | 407 | 5/11/2020 |
4.0.0-previe... | 408 | 5/11/2020 |
3.7.0 | 9,471 | 3/24/2020 |
3.7.0-previe... | 415 | 3/24/2020 |
3.6.2-previe... | 411 | 3/21/2020 |
3.6.2-previe... | 414 | 3/20/2020 |
3.6.2-previe... | 412 | 3/20/2020 |
3.6.1 | 10,665 | 3/19/2020 |
3.6.1-previe... | 413 | 3/19/2020 |
3.5.2.487 (current version) | 1,159 | 3/14/2020 |
3.5.1.458 | 24,958 | 11/12/2019 |
3.5.0.426 | 44,118 | 7/20/2019 |
3.4.0.411 | 1,500 | 6/29/2019 |
3.3.0.405 | 923 | 6/22/2019 |
3.2.4.376 | 1,750 | 5/30/2019 |
3.2.3.359 | 5,268 | 4/5/2019 |
3.2.2.347 | 1,170 | 3/20/2019 |
3.2.1.332 | 2,067 | 2/22/2019 |
3.2.0.320 | 1,582 | 2/7/2019 |
3.1.0.293 | 7,118 | 12/26/2018 |
3.0.0.279 | 2,006 | 12/23/2018 |
2.1.15.239 | 130,073 | 11/18/2018 |
2.1.14.222 | 968 | 11/15/2018 |
2.1.13.215 | 1,972 | 11/6/2018 |
2.1.12.137 | 1,400 | 10/29/2018 |
2.1.11.130 | 499 | 10/27/2018 |
2.1.10.104 | 845 | 10/22/2018 |
2.1.10.103 | 427 | 10/22/2018 |
2.1.9.95 | 478 | 10/21/2018 |
2.1.8.59 | 1,863 | 10/3/2018 |
2.1.8.58 | 417 | 10/3/2018 |
2.1.7.675 | 7,940 | 9/11/2018 |
2.1.7.635 | 511 | 9/10/2018 |
2.1.6.561 | 21,672 | 8/24/2018 |
2.1.5.548 | 1,414 | 8/4/2018 |
2.1.4.536 | 944 | 7/25/2018 |
2.1.3.528 | 6,891 | 7/12/2018 |
2.1.2.514 | 725 | 7/3/2018 |
2.1.1.498 | 558 | 6/26/2018 |
2.1.0.487 | 465 | 6/24/2018 |
2.0.16.465 | 697 | 6/20/2018 |
2.0.15.454 | 570 | 6/15/2018 |
2.0.14.439 | 567 | 6/12/2018 |
2.0.13.427 | 690 | 6/3/2018 |
2.0.12.418 | 1,633 | 5/20/2018 |
2.0.11.407 | 2,318 | 5/12/2018 |
2.0.10.388 | 808 | 4/26/2018 |
2.0.10.382 | 443 | 4/25/2018 |
2.0.9.364 | 654 | 4/9/2018 |
2.0.9.360 | 421 | 4/9/2018 |
2.0.8.350 | 493 | 4/5/2018 |
2.0.7.288 | 3,311 | 3/11/2018 |
2.0.6.247 | 455 | 3/9/2018 |
2.0.5.216 | 513 | 3/5/2018 |
2.0.4.202 | 832 | 2/27/2018 |
2.0.3.190 | 1,754 | 2/24/2018 |
2.0.2.184 | 429 | 2/24/2018 |
2.0.1.173 | 3,527 | 1/27/2018 |
2.0.0.163 | 1,038 | 1/14/2018 |
2.0.0.152 | 509 | 12/23/2017 |
1.0.12.126 | 448 | 12/8/2017 |
1.0.11.117 | 431 | 12/8/2017 |
1.0.10.108 | 435 | 12/6/2017 |
1.0.9.100 | 445 | 11/5/2017 |
1.0.8.91 | 453 | 11/5/2017 |
1.0.7.85 | 437 | 11/3/2017 |
1.0.6.79 | 433 | 11/2/2017 |