Azure.Template 1.0.3-beta.4257287

Prefix Reserved
This is a prerelease version of Azure.Template.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Azure.Template --version 1.0.3-beta.4257287
                    
NuGet\Install-Package Azure.Template -Version 1.0.3-beta.4257287
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Azure.Template" Version="1.0.3-beta.4257287" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Azure.Template" Version="1.0.3-beta.4257287" />
                    
Directory.Packages.props
<PackageReference Include="Azure.Template" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Azure.Template --version 1.0.3-beta.4257287
                    
#r "nuget: Azure.Template, 1.0.3-beta.4257287"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Azure.Template@1.0.3-beta.4257287
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Azure.Template&version=1.0.3-beta.4257287&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Azure.Template&version=1.0.3-beta.4257287&prerelease
                    
Install as a Cake Tool

Azure Template client library for .NET

Azure Template is a managed service that helps developers get secret simply and securely.

Use the client library for to:

[Source code][source_root] | [Package (NuGet)][package] | [API reference documentation][reference_docs] | [Product documentation][azconfig_docs] | [Samples][source_samples]

Source code | Package (NuGet) | API reference documentation | Product documentation

Getting started

This section should include everything a developer needs to do to install and create their first client connection very quickly.

Install the package

First, provide instruction for obtaining and installing the package or library. This section might include only a single line of code, like dotnet add package package-name, but should enable a developer to successfully install the package from NuGet, npm, or even cloning a GitHub repository.

Install the client library for .NET with NuGet:

dotnet add package Azure.Template --prerelease

Prerequisites

Include a section after the install command that details any requirements that must be satisfied before a developer can authenticate and test all of the snippets in the Examples section. For example, for Cosmos DB:

You must have an Azure subscription and Cosmos DB account (SQL API). In order to take advantage of the C# 8.0 syntax, it is recommended that you compile using the .NET Core SDK 3.0 or higher with a language version of latest. It is also possible to compile with the .NET Core SDK 2.1.x using a language version of preview.

Authenticate the client

If your library requires authentication for use, such as for Azure services, include instructions and example code needed for initializing and authenticating.

For example, include details on obtaining an account key and endpoint URI, setting environment variables for each, and initializing the client object.

Key concepts

The Key concepts section should describe the functionality of the main classes. Point out the most important and useful classes in the package (with links to their reference pages) and explain how those classes work together. Feel free to use bulleted lists, tables, code blocks, or even diagrams for clarity.

Include the Thread safety and Additional concepts sections below at the end of your Key concepts section. You may remove or add links depending on what your library makes use of:

Thread safety

We guarantee that all client instance methods are thread-safe and independent of each other (guideline). This ensures that the recommendation of reusing client instances is always safe, even across threads.

Additional concepts

Client options | Accessing the response | Long-running operations | Handling failures | Diagnostics | Mocking | Client lifetime

Examples

You can familiarize yourself with different APIs using Samples.

Get secret

The GetSecret method retrieves a secret from the service.

string endpoint = "https://myvault.vault.azure.net";
var credential = new DefaultAzureCredential();
var client = new TemplateClient(endpoint, credential);

SecretBundle secret = client.GetSecretValue("TestSecret");

Console.WriteLine(secret.Value);
```Python
things = client.list_things()

Troubleshooting

Describe common errors and exceptions, how to "unpack" them if necessary, and include guidance for graceful handling and recovery.

Provide information to help developers avoid throttling or other service-enforced errors they might encounter. For example, provide guidance and examples for using retry or connection policies in the API.

If the package or a related package supports it, include tips for logging or enabling instrumentation to help them debug their code.

Next steps

  • Provide a link to additional code examples, ideally to those sitting alongside the README in the package's /samples directory.
  • If appropriate, point users to other packages that might be useful.
  • If you think there's a good chance that developers might stumble across your package in error (because they're searching for specific functionality and mistakenly think the package provides that functionality), point them to the packages they might be looking for.

Contributing

This is a template, but your SDK readme should include details on how to contribute code to the repo/package.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Azure.Template:

Repository Stars
Azure/azure-sdk-tools
Tools repository leveraged by the Azure SDK team.
Version Downloads Last Updated
1.0.3-beta.20201117 1,577 11/17/2020
1.0.3-beta.20201112 3,697 11/13/2020
1.0.3-beta.20201111 310 11/12/2020
1.0.3-beta.20201110 393 11/11/2020
1.0.3-beta.5106894 35 7/18/2025
1.0.3-beta.4979745 119 6/16/2025
1.0.3-beta.4941449 149 6/4/2025
1.0.3-beta.4937780 116 6/4/2025
1.0.3-beta.4937207 124 6/3/2025
1.0.3-beta.4936822 123 6/3/2025
1.0.3-beta.4936344 119 6/3/2025
1.0.3-beta.4649524 258 3/13/2025
1.0.3-beta.4646654 130 3/13/2025
1.0.3-beta.4644937 144 3/12/2025
1.0.3-beta.4637537 145 3/11/2025
1.0.3-beta.4636983 152 3/11/2025
1.0.3-beta.4636705 148 3/10/2025
1.0.3-beta.4636369 145 3/10/2025
1.0.3-beta.4626680 151 3/10/2025
1.0.3-beta.4625446 198 3/6/2025
1.0.3-beta.4620850 192 3/5/2025
1.0.3-beta.4577188 98 2/19/2025
1.0.3-beta.4574451 83 2/25/2025
1.0.3-beta.4488203 125 1/20/2025
1.0.3-beta.4270287 218 10/25/2024
1.0.3-beta.4266396 79 10/25/2024
1.0.3-beta.4265484 73 10/25/2024
1.0.3-beta.4262009 76 10/24/2024
1.0.3-beta.4261622 74 10/23/2024
1.0.3-beta.4261486 61 10/23/2024
1.0.3-beta.4257506 79 10/22/2024
1.0.3-beta.4257287 69 10/22/2024
1.0.3-beta.4257112 73 10/22/2024
1.0.3-beta.4252172 91 10/21/2024
1.0.3-beta.4219884 99 10/10/2024
1.0.3-beta.4083221 144 8/27/2024
1.0.3-beta.4055065 558 8/16/2024
1.0.3-beta.4054872 92 8/15/2024
1.0.3-beta.4052017 86 8/15/2024
1.0.3-beta.3958396 162 7/16/2024
1.0.3-beta.3932908 93 7/4/2024
1.0.3-beta.3921138 86 6/28/2024
1.0.3-beta.3920534 79 6/28/2024
1.0.3-beta.3920437 86 6/28/2024
1.0.3-beta.3795970 123 5/17/2024
1.0.3-beta.3791706 86 5/15/2024
1.0.3-beta.3789903 75 5/15/2024
1.0.3-beta.3789610 68 5/15/2024
1.0.3-beta.3789538 64 5/15/2024
1.0.3-beta.3789428 77 5/15/2024
1.0.3-beta.3743527 99 4/29/2024
1.0.3-beta.3738129 101 4/27/2024
1.0.3-beta.3707580 93 4/17/2024
1.0.3-beta.3706998 75 4/17/2024
1.0.3-beta.3698829 76 4/17/2024
1.0.3-beta.3677095 94 4/8/2024
1.0.3-beta.3672318 80 4/5/2024
1.0.3-beta.3671955 80 4/5/2024
1.0.3-beta.3671847 84 4/5/2024
1.0.3-beta.3630496 100 3/22/2024
1.0.3-beta.3607578 80 3/18/2024
1.0.3-beta.3602364 83 3/15/2024
1.0.3-beta.3576863 91 3/8/2024
1.0.3-beta.3576851 92 3/9/2024
1.0.3-beta.3570448 80 3/7/2024
1.0.3-beta.3570216 79 3/7/2024
1.0.3-beta.3569635 84 3/7/2024
1.0.3-beta.3490066 113 2/12/2024
1.0.3-beta.3454866 106 1/31/2024
1.0.3-beta.3454044 84 1/31/2024
1.0.3-beta.3419945 94 1/19/2024
1.0.3-beta.3419376 78 1/19/2024
1.0.3-beta.3410393 100 1/16/2024
1.0.3-beta.3408806 87 1/16/2024
1.0.3-beta.3406027 88 1/15/2024
1.0.3-beta.3405791 80 1/15/2024
1.0.3-beta.3405614 86 1/15/2024
1.0.3-beta.3396092 85 1/11/2024
1.0.3-beta.2997675 274 8/11/2023
1.0.3-beta.2802061 237 5/25/2023
1.0.3-beta.2652424 245 3/23/2023
1.0.3-beta.2184851 185 2/13/2023
1.0.3-beta.2174521 156 2/9/2023
1.0.3-beta.2173418 152 2/8/2023
1.0.3-beta.2172980 149 2/8/2023
1.0.3-beta.2170352 153 2/8/2023
1.0.3-beta.2115645 162 1/13/2023
1.0.3-beta.2113581 196 1/13/2023
1.0.3-beta.2113078 162 1/12/2023
1.0.3-beta.2107473 161 1/11/2023
1.0.3-beta.2107297 165 1/11/2023
1.0.3-beta.2046422 190 12/10/2022
1.0.3-beta.1934445 244 10/22/2022
1.0.3-beta.1934026 172 10/20/2022
1.0.3-beta.1920605 159 10/14/2022
1.0.3-beta.1914829 182 10/13/2022
1.0.3-beta.1914281 158 10/12/2022
1.0.3-beta.1914049 152 10/12/2022
1.0.3-beta.1913910 163 10/14/2022
1.0.3-beta.1910727 164 10/12/2022
1.0.3-beta.1910627 151 10/11/2022
1.0.3-beta.1910278 169 10/11/2022
1.0.3-beta.1910176 151 10/11/2022
1.0.3-beta.1907629 169 10/10/2022
1.0.3-beta.1907149 165 10/10/2022
1.0.3-beta.1895077 175 10/4/2022
1.0.3-beta.1886094 177 9/29/2022
1.0.3-beta.1846089 199 9/13/2022
1.0.3-beta.1845705 170 9/13/2022
1.0.3-beta.1804328 211 8/24/2022
1.0.3-beta.1756346 219 8/3/2022
1.0.3-beta.1739991 191 7/28/2022
1.0.3-beta.1692146 218 7/7/2022
1.0.3-beta.1641347 228 6/14/2022
1.0.3-beta.1601333 229 5/26/2022
1.0.3-beta.1541903 242 5/2/2022
1.0.3-beta.1534290 202 4/28/2022
1.0.3-beta.1519533 226 4/20/2022
1.0.3-beta.1515713 197 4/20/2022
1.0.3-beta.1483814 226 4/5/2022
1.0.3-beta.1483563 199 4/5/2022
1.0.3-beta.1401172 253 3/1/2022
1.0.3-beta.1375725 217 2/18/2022
1.0.3-beta.1346477 235 2/4/2022
1.0.3-beta.1346365 217 2/4/2022
1.0.3-beta.1344880 215 2/4/2022
1.0.3-beta.1344133 212 2/3/2022
1.0.3-beta.1343893 216 2/3/2022
1.0.3-beta.1342030 223 2/2/2022
1.0.3-beta.1341681 214 2/2/2022
1.0.3-beta.1341178 227 2/2/2022
1.0.3-beta.1341176 215 2/2/2022
1.0.3-beta.1341068 211 2/2/2022
1.0.3-beta.1335033 205 2/2/2022
1.0.3-beta.1325149 217 1/25/2022
1.0.3-beta.1318891 205 1/21/2022
1.0.3-beta.1293620 230 1/14/2022
1.0.3-beta.1234789 280 12/8/2021
1.0.3-beta.1232429 236 12/6/2021
1.0.3-beta.1232214 228 12/6/2021
1.0.3-beta.1232012 218 12/6/2021
1.0.3-beta.1226092 231 12/2/2021
1.0.3-beta.1226006 224 12/2/2021
1.0.3-beta.1225862 224 12/2/2021
1.0.3-beta.1225746 216 12/2/2021
1.0.3-beta.1218030 2,220 11/29/2021
1.0.3-beta.1211548 6,608 11/24/2021
1.0.3-beta.1211400 6,133 11/23/2021
1.0.3-beta.1210005 220 11/23/2021
1.0.3-beta.1209909 222 11/23/2021
1.0.3-beta.1206678 747 11/21/2021
1.0.3-beta.1116220 315 9/28/2021
1.0.3-beta.1108851 233 9/22/2021
1.0.3-beta.1106843 235 9/22/2021
1.0.3-beta.1106514 246 9/21/2021
1.0.3-beta.1101427 226 9/17/2021
1.0.3-beta.1100940 249 9/16/2021
1.0.3-beta.1085412 275 9/8/2021
1.0.3-beta.1084978 232 9/7/2021
1.0.3-beta.1081747 239 9/4/2021
1.0.3-beta.1081550 236 9/3/2021
1.0.3-beta.1081546 234 9/3/2021
1.0.3-beta.1081463 247 9/3/2021
1.0.3-beta.1081444 240 9/3/2021
1.0.3-beta.1081373 227 9/3/2021
1.0.3-beta.1081340 239 9/3/2021
1.0.3-beta.1081286 219 9/3/2021
1.0.3-beta.1072759 237 8/30/2021
1.0.3-beta.1071753 225 8/30/2021
1.0.3-beta.1070969 223 8/28/2021
1.0.3-beta.1070885 241 8/28/2021
1.0.3-beta.1070716 241 8/27/2021
1.0.3-beta.1070206 221 8/27/2021
1.0.3-beta.1070200 229 8/27/2021
1.0.3-beta.1068556 222 8/27/2021
1.0.3-beta.1067279 231 8/26/2021
1.0.3-beta.1066546 238 8/26/2021
1.0.3-beta.1066355 241 8/26/2021
1.0.3-beta.1066009 226 8/25/2021
1.0.3-beta.1065850 229 8/25/2021
1.0.3-beta.1064219 258 8/25/2021
1.0.3-beta.1064112 236 8/24/2021
1.0.3-beta.1063890 225 8/24/2021
1.0.3-beta.1063790 223 8/24/2021
1.0.3-beta.1063749 228 8/24/2021
1.0.3-beta.1063557 227 8/24/2021
1.0.3-beta.1062322 235 8/24/2021
1.0.3-beta.1062165 234 8/23/2021
1.0.3-beta.1050443 249 8/16/2021
1.0.3-beta.1046302 226 8/13/2021
1.0.3-beta.1045742 234 8/12/2021
1.0.3-beta.1045649 240 8/12/2021
1.0.3-beta.1043120 227 8/11/2021
1.0.3-beta.1019598 234 7/30/2021
1.0.3-beta.1017382 278 7/27/2021
1.0.3-beta.1006309 241 7/22/2021
1.0.3-beta.976435 283 7/1/2021
1.0.3-beta.973673 298 6/30/2021
1.0.3-beta.957326 248 6/21/2021
1.0.3-beta.954366 227 6/18/2021
1.0.3-beta.942244 322 6/10/2021
1.0.3-beta.942099 339 6/10/2021
1.0.3-beta.914605 277 5/26/2021
1.0.3-beta.914419 238 5/26/2021
1.0.3-beta.901012 287 5/18/2021
1.0.3-beta.839233 240 4/13/2021
1.0.3-beta.838947 242 4/13/2021
1.0.3-beta.838731 241 4/13/2021
1.0.3-beta.838229 228 4/12/2021
1.0.3-beta.808200 286 3/26/2021
1.0.3-beta.807700 310 3/26/2021
1.0.3-beta.807490 266 3/26/2021
1.0.3-beta.804876 280 3/25/2021
1.0.3-beta.804860 277 3/25/2021
1.0.3-beta.804774 248 3/25/2021
1.0.3-beta.804401 277 3/25/2021
1.0.3-beta.803947 258 3/25/2021
1.0.3-beta.803257 282 3/25/2021
1.0.3-beta.802445 266 3/24/2021
1.0.3-beta.797309 297 3/23/2021
1.0.3-beta.796372 225 3/22/2021
1.0.3-beta.793829 321 3/19/2021
1.0.3-beta.793409 336 3/19/2021
1.0.3-beta.789641 237 3/18/2021
1.0.3-beta.787210 256 3/17/2021
1.0.3-beta.786654 297 3/16/2021
1.0.3-beta.786382 253 3/17/2021
1.0.3-beta.786376 265 3/16/2021
1.0.3-beta.775155 238 3/15/2021
1.0.3-beta.769719 312 3/8/2021
1.0.3-beta.766656 244 3/4/2021
1.0.3-beta.765452 257 3/4/2021
1.0.3-beta.756200 234 2/26/2021
1.0.3-beta.752126 259 2/25/2021
1.0.3-beta.710043 240 1/29/2021
1.0.3-beta.700710 260 1/25/2021
1.0.3-beta.696559 292 1/21/2021
1.0.3-beta.688019 239 1/15/2021
1.0.3-beta.687557 248 1/14/2021
1.0.3-beta.681527 303 1/11/2021
1.0.3-beta.678518 312 1/8/2021
1.0.3-beta.674938 295 1/6/2021
1.0.3-beta.674608 282 1/6/2021
1.0.3-beta.672927 297 1/5/2021
1.0.3-beta.650593 330 12/11/2020
1.0.3-beta.640290 329 12/3/2020
1.0.3-beta.625285 383 11/19/2020
1.0.3-beta.57 307 11/5/2020
1.0.3-beta.56 329 11/5/2020
1.0.3-beta.55 320 11/4/2020
1.0.3-beta.54 352 11/4/2020
1.0.3-beta.53 355 10/29/2020
1.0.3-beta.52 322 10/23/2020
1.0.3-beta.51 409 10/23/2020
1.0.3-beta.50 308 10/22/2020
1.0.3-beta.49 314 10/22/2020
1.0.3-beta.47 342 10/22/2020
1.0.3-beta.46 324 10/22/2020
1.0.3-beta.45 335 10/21/2020
1.0.3-beta.44 341 10/21/2020
1.0.3-beta.43 352 10/21/2020
1.0.3-beta.42 312 10/20/2020
1.0.3-beta.41 335 10/20/2020
1.0.3-beta.40 370 10/19/2020
1.0.3-beta.39 351 10/19/2020
1.0.3-beta.38 367 10/19/2020
1.0.3-beta.37 337 10/19/2020
1.0.3-beta.36 364 10/19/2020
1.0.3-beta.35 296 10/16/2020
1.0.3-beta.34 315 10/16/2020
1.0.3-beta.33 330 10/16/2020
1.0.3-beta.32 301 10/16/2020
1.0.3-beta.31 361 10/15/2020
1.0.3-beta.30 337 10/15/2020
1.0.3-beta.29 350 10/14/2020
1.0.3-beta.28 305 10/14/2020
1.0.3-beta.27 323 10/14/2020
1.0.3-beta.26 334 10/9/2020
1.0.3-beta.25 379 10/8/2020
1.0.3-beta.24 331 10/7/2020
1.0.3-beta.23 357 10/7/2020
1.0.3-beta.22 312 10/2/2020
1.0.3-beta.21 306 10/2/2020
1.0.3-beta.20 409 10/1/2020
1.0.3-beta.19 359 9/30/2020
1.0.3-beta.18 331 9/24/2020
1.0.3-beta.17 338 9/17/2020
1.0.3-beta.16 388 9/16/2020
1.0.3-beta.15 352 9/15/2020
1.0.3-beta.14 381 9/14/2020
1.0.3-beta.13 338 9/14/2020
1.0.3-beta.12 459 9/13/2020
1.0.3-beta.11 360 9/11/2020
1.0.3-beta.10 341 9/10/2020
1.0.3-beta.9 360 9/9/2020
1.0.3-beta.8 306 9/9/2020
1.0.3-beta.7 351 9/4/2020
1.0.3-beta.6 365 9/2/2020
1.0.3-beta.5 370 9/2/2020
1.0.3-beta.3 350 9/2/2020
1.0.3-beta.2 329 8/29/2020
1.0.3-beta.1 317 8/28/2020
1.0.3-alpha.20250324.1 476 3/24/2025
1.0.3-alpha.20220223.4 200 2/23/2022
1.0.3-alpha.20200917.3 374 9/17/2020
1.0.2-preview.17 382 7/24/2020
1.0.2-preview.15 347 6/29/2020
1.0.2-preview.14 408 6/3/2020
1.0.2-preview.13 328 6/3/2020
1.0.2-preview.11 348 3/23/2020
1.0.2-preview.10 346 3/23/2020
1.0.2-preview.9 418 3/18/2020
1.0.2-preview.8 406 3/13/2020
1.0.2-preview.7 388 3/7/2020
1.0.2-preview.6 357 2/25/2020
1.0.2-preview.5 345 2/24/2020
1.0.2-preview.4 395 12/19/2019
1.0.2-preview.3 379 12/18/2019
1.0.2-preview.2 357 11/7/2019
1.0.2-preview.1 371 10/26/2019
1.0.2-dev.20191017.8 370 10/18/2019