Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial Azure.ResourceManager.AppPlatform #29059

Merged
merged 9 commits into from
Jun 7, 2022
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 7 additions & 0 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,13 @@
"filename": "**/eng/pipelines/templates/jobs/ci.yml",
"words": ["warnaserror"]
},
{
"filename": "**/sdk/appplatform/**/*.cs",
"words": [
"dynatrace",
"fqdns"
]
},
{
"filename": "**/sdk/azurestackhci/**/*.cs",
"words": [
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30309.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F271E003-A81A-48A2-96B9-CAE7BBF5A754}") = "Azure.ResourceManager.AppPlatform", "src\Azure.ResourceManager.AppPlatform.csproj", "{D7B363AB-EBBC-408E-BA52-C119BA655BBA}"
EndProject
Project("{F271E003-A81A-48A2-96B9-CAE7BBF5A754}") = "Azure.ResourceManager.AppPlatform.Tests", "tests\Azure.ResourceManager.AppPlatform.Tests.csproj", "{37213941-3324-4223-AE2E-05734ABCA205}"
EndProject
Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8089EA1C-C2F1-40FE-BCBD-9CB5A474F3E6}
EndGlobalSection
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D7B363AB-EBBC-408E-BA52-C119BA655BBA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D7B363AB-EBBC-408E-BA52-C119BA655BBA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D7B363AB-EBBC-408E-BA52-C119BA655BBA}.Debug|x64.ActiveCfg = Debug|Any CPU
{D7B363AB-EBBC-408E-BA52-C119BA655BBA}.Debug|x64.Build.0 = Debug|Any CPU
{D7B363AB-EBBC-408E-BA52-C119BA655BBA}.Debug|x86.ActiveCfg = Debug|Any CPU
{D7B363AB-EBBC-408E-BA52-C119BA655BBA}.Debug|x86.Build.0 = Debug|Any CPU
{D7B363AB-EBBC-408E-BA52-C119BA655BBA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D7B363AB-EBBC-408E-BA52-C119BA655BBA}.Release|Any CPU.Build.0 = Release|Any CPU
{D7B363AB-EBBC-408E-BA52-C119BA655BBA}.Release|x64.ActiveCfg = Release|Any CPU
{D7B363AB-EBBC-408E-BA52-C119BA655BBA}.Release|x64.Build.0 = Release|Any CPU
{D7B363AB-EBBC-408E-BA52-C119BA655BBA}.Release|x86.ActiveCfg = Release|Any CPU
{D7B363AB-EBBC-408E-BA52-C119BA655BBA}.Release|x86.Build.0 = Release|Any CPU
{37213941-3324-4223-AE2E-05734ABCA205}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{37213941-3324-4223-AE2E-05734ABCA205}.Debug|Any CPU.Build.0 = Debug|Any CPU
{37213941-3324-4223-AE2E-05734ABCA205}.Debug|x64.ActiveCfg = Debug|Any CPU
{37213941-3324-4223-AE2E-05734ABCA205}.Debug|x64.Build.0 = Debug|Any CPU
{37213941-3324-4223-AE2E-05734ABCA205}.Debug|x86.ActiveCfg = Debug|Any CPU
{37213941-3324-4223-AE2E-05734ABCA205}.Debug|x86.Build.0 = Debug|Any CPU
{37213941-3324-4223-AE2E-05734ABCA205}.Release|Any CPU.ActiveCfg = Release|Any CPU
{37213941-3324-4223-AE2E-05734ABCA205}.Release|Any CPU.Build.0 = Release|Any CPU
{37213941-3324-4223-AE2E-05734ABCA205}.Release|x64.ActiveCfg = Release|Any CPU
{37213941-3324-4223-AE2E-05734ABCA205}.Release|x64.Build.0 = Release|Any CPU
{37213941-3324-4223-AE2E-05734ABCA205}.Release|x86.ActiveCfg = Release|Any CPU
{37213941-3324-4223-AE2E-05734ABCA205}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
15 changes: 15 additions & 0 deletions sdk/appplatform/Azure.ResourceManager.AppPlatform/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Release History

## 1.0.0-beta.1 (Unreleased)

### General New Features

- Support MSAL.NET, Azure.Identity is out of box for supporting MSAL.NET
- Support [OpenTelemetry](https://opentelemetry.io/) for distributed tracing
- HTTP pipeline with custom policies
- Better error-handling
- Support uniform telemetry across all languages

This package follows the [Azure SDK Design Guidelines for .NET](https://azure.github.io/azure-sdk/dotnet_introduction.html) which provide a number of core capabilities that are shared amongst all Azure SDKs, including the intuitive Azure Identity library, an HTTP Pipeline with custom policies, error-handling, distributed tracing, and much more.

This is a Public Preview version, so expect incompatible changes in subsequent releases as we improve the product. To provide feedback, please submit an issue in our [Azure SDK for .NET GitHub repo](https://github.com/Azure/azure-sdk-for-net/issues).
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
Add any shared properties you want for the projects under this package directory that need to be set before the auto imported Directory.Build.props
-->
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., Directory.Build.props))\Directory.Build.props" />
</Project>
76 changes: 76 additions & 0 deletions sdk/appplatform/Azure.ResourceManager.AppPlatform/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Azure AppPlatform Management client library for .NET

This package follows the [new Azure SDK guidelines](https://azure.github.io/azure-sdk/general_introduction.html) which provide a number of core capabilities that are shared amongst all Azure SDKs, including the intuitive Azure Identity library, an HTTP Pipeline with custom policies, error-handling, distributed tracing, and much more.

## Getting started

### Install the package

Install the Azure AppPlatform management library for .NET with [NuGet](https://www.nuget.org/):

```dotnetcli
dotnet add package Azure.ResourceManager.AppPlatform --prerelease
```

### Prerequisites

* You must have an [Azure subscription](https://azure.microsoft.com/free/dotnet/)

### Authenticate the Client

To create an authenticated client and start interacting with Azure resources, please see the [quickstart guide here](https://github.com/Azure/azure-sdk-for-net/blob/main/doc/mgmt_preview_quickstart.md)

## Key concepts

Key concepts of the Azure .NET SDK can be found [here](https://azure.github.io/azure-sdk/dotnet_introduction.html)

## Documentation

Documentation is available to help you learn how to use this package

- [Quickstart](https://github.com/Azure/azure-sdk-for-net/blob/main/doc/mgmt_preview_quickstart.md)
- [API References](https://docs.microsoft.com/dotnet/api/?view=azure-dotnet)
- [Authentication](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/identity/Azure.Identity/README.md)

## Examples

Code samples for using the management library for .NET can be found in the following locations
- [.NET Management Library Code Samples](https://docs.microsoft.com/samples/browse/?branch=master&languages=csharp&term=managing%20using%20Azure%20.NET%20SDK)

## Troubleshooting

- File an issue via [Github
Issues](https://github.com/Azure/azure-sdk-for-net/issues)
- Check [previous
questions](https://stackoverflow.com/questions/tagged/azure+.net)
or ask new ones on Stack Overflow using azure and .net tags.


## Next steps

For more information on Azure SDK, please refer to [this website](https://azure.github.io/azure-sdk/)

## Contributing

For details on contributing to this repository, see the [contributing
guide][cg].

This project welcomes contributions and suggestions. Most contributions
require you to agree to a Contributor License Agreement (CLA) declaring
that you have the right to, and actually do, grant us the rights to use
your contribution. For details, visit <https://cla.microsoft.com>.

When you submit a pull request, a CLA-bot will automatically determine
whether you need to provide a CLA and decorate the PR appropriately
(e.g., label, comment). Simply follow the instructions provided by the
bot. You will only need to do this once across all repositories using
our CLA.

This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For
more information see the [Code of Conduct FAQ][coc_faq] or contact
<[email protected]> with any additional questions or comments.

<!-- LINKS -->
[cg]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/resourcemanager/Azure.ResourceManager/docs/CONTRIBUTING.md
[coc]: https://opensource.microsoft.com/codeofconduct/
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
Loading