Azure.Template 1.0.3-alpha.20220223.4

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. 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-alpha.20220223.4
NuGet\Install-Package Azure.Template -Version 1.0.3-alpha.20220223.4
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-alpha.20220223.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Azure.Template --version 1.0.3-alpha.20220223.4
#r "nuget: Azure.Template, 1.0.3-alpha.20220223.4"
#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.
// Install Azure.Template as a Cake Addin
#addin nuget:?package=Azure.Template&version=1.0.3-alpha.20220223.4&prerelease

// Install Azure.Template as a Cake Tool
#tool nuget:?package=Azure.Template&version=1.0.3-alpha.20220223.4&prerelease

README.md template

Use the guidelines in each section of this template to ensure consistency and readability of your README. The README resides in your package's GitHub repository at the root of its directory within the repo. It's also used as the package distribution page (NuGet, PyPi, npm, etc.) and as a Quickstart on docs.microsoft.com. See Azure.Template/README.md for an example following this template.

Title: The H1 of your README should be in the format: # [Product Name] client library for [Language]

Azure Template client library for .NET

Introduction: The introduction appears directly under the title (H1) of your README.

  • DO NOT use an "Introduction" or "Overview" heading (H2) for this section.

  • First sentence: Describe the service briefly. You can usually use the first line of the service's docs landing page for this (Example: Cosmos DB docs landing page).

  • Next, add a bulleted list of the most common tasks supported by the package or library, prefaced with "Use the client library for [Product Name] to:". Then, provide code snippets for these tasks in the Examples section later in the document. Keep the task list short but include those tasks most developers need to perform with your package.

  • Include this single line of links targeting your product's content at the bottom of the introduction, making any adjustments as necessary (for example, NuGet instead of PyPi):

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

TIP: Your README should be as brief as possible but no more brief than necessary to get a developer new to Azure, the service, or the package up and running quickly. Keep it brief, but include everything a developer needs to make their first API call successfully.

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 pip install package-name, but should enable a developer to successfully install the package from NuGet, pip, npm, Maven, or even cloning a GitHub repository.

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, Cosmos DB account (SQL API), and Python 3.6+ to use this package.

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

Include code snippets and short descriptions for each task you listed in the Introduction (the bulleted list). Briefly explain each operation, but include enough clarity to explain complex or otherwise tricky operations.

If possible, use the same example snippets that your in-code documentation uses. For example, use the snippets in your examples.py that Sphinx ingests via its literalinclude directive. The examples.py file containing the snippets should reside alongside your package's code, and should be tested in an automated fashion.

Each example in the Examples section starts with an H3 that describes the example. At the top of this section, just under the Examples H2, add a bulleted list linking to each example H3. Each example should deep-link to the types and/or members used in the example.

Get a secret

The GetSecret method retrieves a secret from the service.

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

SecretBundle secret = client.GetSecret("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. 
.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-for-net
This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net.
Version Downloads Last updated
1.0.3-beta.20201117 1,107 11/17/2020
1.0.3-beta.20201112 1,894 11/13/2020
1.0.3-beta.20201111 227 11/12/2020
1.0.3-beta.20201110 297 11/11/2020
1.0.3-beta.3921138 36 6/28/2024
1.0.3-beta.3920534 32 6/28/2024
1.0.3-beta.3920437 31 6/28/2024
1.0.3-beta.3795970 87 5/17/2024
1.0.3-beta.3791706 49 5/15/2024
1.0.3-beta.3789903 33 5/15/2024
1.0.3-beta.3789610 34 5/15/2024
1.0.3-beta.3789538 27 5/15/2024
1.0.3-beta.3789428 44 5/15/2024
1.0.3-beta.3743527 63 4/29/2024
1.0.3-beta.3738129 51 4/27/2024
1.0.3-beta.3707580 61 4/17/2024
1.0.3-beta.3706998 40 4/17/2024
1.0.3-beta.3698829 36 4/17/2024
1.0.3-beta.3677095 61 4/8/2024
1.0.3-beta.3672318 47 4/5/2024
1.0.3-beta.3671955 48 4/5/2024
1.0.3-beta.3671847 50 4/5/2024
1.0.3-beta.3630496 70 3/22/2024
1.0.3-beta.3607578 46 3/18/2024
1.0.3-beta.3602364 51 3/15/2024
1.0.3-beta.3576863 56 3/8/2024
1.0.3-beta.3576851 56 3/9/2024
1.0.3-beta.3570448 52 3/7/2024
1.0.3-beta.3570216 45 3/7/2024
1.0.3-beta.3569635 51 3/7/2024
1.0.3-beta.3490066 80 2/12/2024
1.0.3-beta.3454866 65 1/31/2024
1.0.3-beta.3454044 53 1/31/2024
1.0.3-beta.3419945 57 1/19/2024
1.0.3-beta.3419376 45 1/19/2024
1.0.3-beta.3410393 67 1/16/2024
1.0.3-beta.3408806 53 1/16/2024
1.0.3-beta.3406027 57 1/15/2024
1.0.3-beta.3405791 47 1/15/2024
1.0.3-beta.3405614 53 1/15/2024
1.0.3-beta.3396092 54 1/11/2024
1.0.3-beta.2997675 232 8/11/2023
1.0.3-beta.2802061 180 5/25/2023
1.0.3-beta.2652424 177 3/23/2023
1.0.3-beta.2184851 131 2/13/2023
1.0.3-beta.2174521 95 2/9/2023
1.0.3-beta.2173418 92 2/8/2023
1.0.3-beta.2172980 93 2/8/2023
1.0.3-beta.2170352 92 2/8/2023
1.0.3-beta.2115645 107 1/13/2023
1.0.3-beta.2113581 135 1/13/2023
1.0.3-beta.2113078 103 1/12/2023
1.0.3-beta.2107473 105 1/11/2023
1.0.3-beta.2107297 109 1/11/2023
1.0.3-beta.2046422 133 12/10/2022
1.0.3-beta.1934445 186 10/22/2022
1.0.3-beta.1934026 112 10/20/2022
1.0.3-beta.1920605 99 10/14/2022
1.0.3-beta.1914829 125 10/13/2022
1.0.3-beta.1914281 98 10/12/2022
1.0.3-beta.1914049 93 10/12/2022
1.0.3-beta.1913910 103 10/14/2022
1.0.3-beta.1910727 105 10/12/2022
1.0.3-beta.1910627 94 10/11/2022
1.0.3-beta.1910278 112 10/11/2022
1.0.3-beta.1910176 94 10/11/2022
1.0.3-beta.1907629 111 10/10/2022
1.0.3-beta.1907149 106 10/10/2022
1.0.3-beta.1895077 116 10/4/2022
1.0.3-beta.1886094 117 9/29/2022
1.0.3-beta.1846089 140 9/13/2022
1.0.3-beta.1845705 107 9/13/2022
1.0.3-beta.1804328 152 8/24/2022
1.0.3-beta.1756346 157 8/3/2022
1.0.3-beta.1739991 125 7/28/2022
1.0.3-beta.1692146 153 7/7/2022
1.0.3-beta.1641347 155 6/14/2022
1.0.3-beta.1601333 161 5/26/2022
1.0.3-beta.1541903 174 5/2/2022
1.0.3-beta.1534290 129 4/28/2022
1.0.3-beta.1519533 154 4/20/2022
1.0.3-beta.1515713 123 4/20/2022
1.0.3-beta.1483814 156 4/5/2022
1.0.3-beta.1483563 127 4/5/2022
1.0.3-beta.1401172 177 3/1/2022
1.0.3-beta.1375725 144 2/18/2022
1.0.3-beta.1346477 157 2/4/2022
1.0.3-beta.1346365 134 2/4/2022
1.0.3-beta.1344880 139 2/4/2022
1.0.3-beta.1344133 134 2/3/2022
1.0.3-beta.1343893 132 2/3/2022
1.0.3-beta.1342030 147 2/2/2022
1.0.3-beta.1341681 138 2/2/2022
1.0.3-beta.1341178 144 2/2/2022
1.0.3-beta.1341176 140 2/2/2022
1.0.3-beta.1341068 137 2/2/2022
1.0.3-beta.1335033 130 2/2/2022
1.0.3-beta.1325149 141 1/25/2022
1.0.3-beta.1318891 132 1/21/2022
1.0.3-beta.1293620 158 1/14/2022
1.0.3-beta.1234789 208 12/8/2021
1.0.3-beta.1232429 153 12/6/2021
1.0.3-beta.1232214 153 12/6/2021
1.0.3-beta.1232012 145 12/6/2021
1.0.3-beta.1226092 159 12/2/2021
1.0.3-beta.1226006 148 12/2/2021
1.0.3-beta.1225862 148 12/2/2021
1.0.3-beta.1225746 144 12/2/2021
1.0.3-beta.1218030 1,320 11/29/2021
1.0.3-beta.1211548 6,530 11/24/2021
1.0.3-beta.1211400 6,055 11/23/2021
1.0.3-beta.1210005 148 11/23/2021
1.0.3-beta.1209909 142 11/23/2021
1.0.3-beta.1206678 672 11/21/2021
1.0.3-beta.1116220 242 9/28/2021
1.0.3-beta.1108851 160 9/22/2021
1.0.3-beta.1106843 164 9/22/2021
1.0.3-beta.1106514 172 9/21/2021
1.0.3-beta.1101427 153 9/17/2021
1.0.3-beta.1100940 171 9/16/2021
1.0.3-beta.1085412 203 9/8/2021
1.0.3-beta.1084978 157 9/7/2021
1.0.3-beta.1081747 163 9/4/2021
1.0.3-beta.1081550 163 9/3/2021
1.0.3-beta.1081546 161 9/3/2021
1.0.3-beta.1081463 170 9/3/2021
1.0.3-beta.1081444 167 9/3/2021
1.0.3-beta.1081373 155 9/3/2021
1.0.3-beta.1081340 162 9/3/2021
1.0.3-beta.1081286 144 9/3/2021
1.0.3-beta.1072759 162 8/30/2021
1.0.3-beta.1071753 151 8/30/2021
1.0.3-beta.1070969 149 8/28/2021
1.0.3-beta.1070885 169 8/28/2021
1.0.3-beta.1070716 160 8/27/2021
1.0.3-beta.1070206 150 8/27/2021
1.0.3-beta.1070200 155 8/27/2021
1.0.3-beta.1068556 152 8/27/2021
1.0.3-beta.1067279 160 8/26/2021
1.0.3-beta.1066546 164 8/26/2021
1.0.3-beta.1066355 166 8/26/2021
1.0.3-beta.1066009 155 8/25/2021
1.0.3-beta.1065850 152 8/25/2021
1.0.3-beta.1064219 172 8/25/2021
1.0.3-beta.1064112 162 8/24/2021
1.0.3-beta.1063890 152 8/24/2021
1.0.3-beta.1063790 146 8/24/2021
1.0.3-beta.1063749 157 8/24/2021
1.0.3-beta.1063557 154 8/24/2021
1.0.3-beta.1062322 160 8/24/2021
1.0.3-beta.1062165 159 8/23/2021
1.0.3-beta.1050443 176 8/16/2021
1.0.3-beta.1046302 154 8/13/2021
1.0.3-beta.1045742 159 8/12/2021
1.0.3-beta.1045649 164 8/12/2021
1.0.3-beta.1043120 151 8/11/2021
1.0.3-beta.1019598 157 7/30/2021
1.0.3-beta.1017382 205 7/27/2021
1.0.3-beta.1006309 169 7/22/2021
1.0.3-beta.976435 205 7/1/2021
1.0.3-beta.973673 216 6/30/2021
1.0.3-beta.957326 175 6/21/2021
1.0.3-beta.954366 151 6/18/2021
1.0.3-beta.942244 241 6/10/2021
1.0.3-beta.942099 264 6/10/2021
1.0.3-beta.914605 203 5/26/2021
1.0.3-beta.914419 164 5/26/2021
1.0.3-beta.901012 212 5/18/2021
1.0.3-beta.839233 159 4/13/2021
1.0.3-beta.838947 163 4/13/2021
1.0.3-beta.838731 162 4/13/2021
1.0.3-beta.838229 147 4/12/2021
1.0.3-beta.808200 207 3/26/2021
1.0.3-beta.807700 226 3/26/2021
1.0.3-beta.807490 185 3/26/2021
1.0.3-beta.804876 200 3/25/2021
1.0.3-beta.804860 195 3/25/2021
1.0.3-beta.804774 169 3/25/2021
1.0.3-beta.804401 196 3/25/2021
1.0.3-beta.803947 178 3/25/2021
1.0.3-beta.803257 200 3/25/2021
1.0.3-beta.802445 187 3/24/2021
1.0.3-beta.797309 217 3/23/2021
1.0.3-beta.796372 145 3/22/2021
1.0.3-beta.793829 241 3/19/2021
1.0.3-beta.793409 255 3/19/2021
1.0.3-beta.789641 157 3/18/2021
1.0.3-beta.787210 176 3/17/2021
1.0.3-beta.786654 215 3/16/2021
1.0.3-beta.786382 170 3/17/2021
1.0.3-beta.786376 183 3/16/2021
1.0.3-beta.775155 157 3/15/2021
1.0.3-beta.769719 230 3/8/2021
1.0.3-beta.766656 164 3/4/2021
1.0.3-beta.765452 178 3/4/2021
1.0.3-beta.756200 152 2/26/2021
1.0.3-beta.752126 176 2/25/2021
1.0.3-beta.710043 153 1/29/2021
1.0.3-beta.700710 176 1/25/2021
1.0.3-beta.696559 210 1/21/2021
1.0.3-beta.688019 156 1/15/2021
1.0.3-beta.687557 167 1/14/2021
1.0.3-beta.681527 219 1/11/2021
1.0.3-beta.678518 227 1/8/2021
1.0.3-beta.674938 213 1/6/2021
1.0.3-beta.674608 201 1/6/2021
1.0.3-beta.672927 214 1/5/2021
1.0.3-beta.650593 243 12/11/2020
1.0.3-beta.640290 243 12/3/2020
1.0.3-beta.625285 298 11/19/2020
1.0.3-beta.57 222 11/5/2020
1.0.3-beta.56 243 11/5/2020
1.0.3-beta.55 235 11/4/2020
1.0.3-beta.54 268 11/4/2020
1.0.3-beta.53 267 10/29/2020
1.0.3-beta.52 237 10/23/2020
1.0.3-beta.51 321 10/23/2020
1.0.3-beta.50 216 10/22/2020
1.0.3-beta.49 226 10/22/2020
1.0.3-beta.47 252 10/22/2020
1.0.3-beta.46 239 10/22/2020
1.0.3-beta.45 249 10/21/2020
1.0.3-beta.44 256 10/21/2020
1.0.3-beta.43 267 10/21/2020
1.0.3-beta.42 228 10/20/2020
1.0.3-beta.41 250 10/20/2020
1.0.3-beta.40 287 10/19/2020
1.0.3-beta.39 265 10/19/2020
1.0.3-beta.38 282 10/19/2020
1.0.3-beta.37 255 10/19/2020
1.0.3-beta.36 278 10/19/2020
1.0.3-beta.35 213 10/16/2020
1.0.3-beta.34 229 10/16/2020
1.0.3-beta.33 246 10/16/2020
1.0.3-beta.32 216 10/16/2020
1.0.3-beta.31 271 10/15/2020
1.0.3-beta.30 252 10/15/2020
1.0.3-beta.29 266 10/14/2020
1.0.3-beta.28 221 10/14/2020
1.0.3-beta.27 239 10/14/2020
1.0.3-beta.26 251 10/9/2020
1.0.3-beta.25 295 10/8/2020
1.0.3-beta.24 245 10/7/2020
1.0.3-beta.23 271 10/7/2020
1.0.3-beta.22 226 10/2/2020
1.0.3-beta.21 224 10/2/2020
1.0.3-beta.20 323 10/1/2020
1.0.3-beta.19 277 9/30/2020
1.0.3-beta.18 242 9/24/2020
1.0.3-beta.17 255 9/17/2020
1.0.3-beta.16 307 9/16/2020
1.0.3-beta.15 270 9/15/2020
1.0.3-beta.14 287 9/14/2020
1.0.3-beta.13 251 9/14/2020
1.0.3-beta.12 371 9/13/2020
1.0.3-beta.11 278 9/11/2020
1.0.3-beta.10 255 9/10/2020
1.0.3-beta.9 277 9/9/2020
1.0.3-beta.8 222 9/9/2020
1.0.3-beta.7 266 9/4/2020
1.0.3-beta.6 279 9/2/2020
1.0.3-beta.5 289 9/2/2020
1.0.3-beta.3 266 9/2/2020
1.0.3-beta.2 244 8/29/2020
1.0.3-beta.1 231 8/28/2020
1.0.3-alpha.20220223.4 123 2/23/2022
1.0.3-alpha.20200917.3 292 9/17/2020
1.0.2-preview.17 297 7/24/2020
1.0.2-preview.15 263 6/29/2020
1.0.2-preview.14 321 6/3/2020
1.0.2-preview.13 240 6/3/2020
1.0.2-preview.11 254 3/23/2020
1.0.2-preview.10 256 3/23/2020
1.0.2-preview.9 327 3/18/2020
1.0.2-preview.8 316 3/13/2020
1.0.2-preview.7 298 3/7/2020
1.0.2-preview.6 267 2/25/2020
1.0.2-preview.5 257 2/24/2020
1.0.2-preview.4 303 12/19/2019
1.0.2-preview.3 286 12/18/2019
1.0.2-preview.2 266 11/7/2019
1.0.2-preview.1 277 10/26/2019
1.0.2-dev.20191017.8 274 10/18/2019