kvps-cli
0.1.141
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet tool install --global kvps-cli --version 0.1.141
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
dotnet tool install --local kvps-cli --version 0.1.141
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=kvps-cli&version=0.1.141
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package kvps-cli --version 0.1.141
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
kvps-cli
A dotnet CLI tool for key value pair management.
Getting Started
Dependenices
You'll need the .Net 8 runtime installed on your Windows machine.
⚠️ This tool will not behave correctly under Linux or Mac OS.
Installation
kvps-cli is available from Nuget:
dotnet tool install kvps-cli -g
How to use
Help:
dotnet kvps
or if installed globally:
kvps -?
Set a key value
dotnet kvps set -?
Set a key's value, with optional tags:
dotnet kvps set <KEY> -v <value> -t <TAG1> -t <TAG2>
Get a key value
Get help:
dotnet kvps get -?
Return the given key's value:
dotnet kvps get <KEY>
Return only the key's value without metadata, with the value masked if it's not public:
dotnet kvps get <KEY> -vo
Reveal the key's value:
dotnet kvps get <KEY> -r
Return only the key's value without metadata, with the value unmasked:
dotnet kvps get <KEY> -vo -r
Delete a key
dotnet kvps del -?
Delete a given key:
dotnet kvps del <KEY>
List keys
dotnet kvps list -?
Display all keys:
dotnet kvps list
Display all keys that match any of the given tags:
dotnet kvps list -t <TAG1> -t <TAG2>
Powershell integration
Single value
Store a key's value:
dotnet kvps set my_email_id -v joe@email.com
Later, extract the value:
$email = dotnet kvps get my_email_id -vo -r
.\Get-Data.ps1 -Email $email
Json objects
Store some JSON:
dotnet kvps set json_test -v "{ myTenantId: '1234abcd' }" -p
Extract:
$v = dotnet kvps get json_test -vo -r
$j = $v | ConvertFrom-Json
or
$j = dotnet kvps get json_test -vo -r | ConvertFrom-Json
$j.myTenantId
Security
⚠️ This tool is not a key vault equivalent!
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.2.2 | 173 | 3/9/2026 |
| 0.2.1 | 132 | 2/15/2026 |
| 0.2.0 | 134 | 2/5/2026 |
| 0.1.207 | 135 | 2/5/2026 |
| 0.1.202 | 129 | 2/5/2026 |
| 0.1.199 | 131 | 1/30/2026 |
| 0.1.196 | 138 | 1/23/2026 |
| 0.1.193 | 136 | 1/21/2026 |
| 0.1.186 | 225 | 12/26/2025 |
| 0.1.178 | 167 | 11/29/2025 |
| 0.1.175 | 169 | 11/29/2025 |
| 0.1.160 | 255 | 9/20/2025 |
| 0.1.157 | 199 | 9/6/2025 |
| 0.1.154 | 248 | 9/1/2025 |
| 0.1.151 | 238 | 9/1/2025 |
| 0.1.144 | 259 | 6/26/2025 |
| 0.1.141 | 252 | 5/21/2025 |
| 0.1.139-preview | 190 | 5/21/2025 |
| 0.1.138 | 223 | 5/17/2025 |
| 0.1.135 | 280 | 3/31/2025 |
Loading failed