Skip to content

Commit

Permalink
Follow up PR - 5593 Azure.ResourceManager.Core Readme (#22262)
Browse files Browse the repository at this point in the history
* Change the accessbility to virtual for Resource.Id

* Changing temporary links to absolute ones.

Co-authored-by: YalinLi0312 <yall@microsoft.com>
Co-authored-by: m-nash <prognash@microsoft.com>
Co-authored-by: m-nash <prognash@gmail.com>
  • Loading branch information
4 people authored Jun 29, 2021
1 parent 184bbba commit 8fe07a7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions sdk/resourcemanager/Azure.ResourceManager.Core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Set up a way to authenticate to Azure with Azure Identity.
Some options are:
- Through the [Azure CLI Login](https://docs.microsoft.com/cli/azure/authenticate-azure-cli).
- Via [Visual Studio](https://docs.microsoft.com/dotnet/api/overview/azure/identity-readme?view=azure-dotnet#authenticating-via-visual-studio).
- Setting [Environment Variables]<--(docs/AuthUsingEnvironmentVariables.md)-->.
- Setting [Environment Variables](https://github.com/Azure/azure-sdk-for-net/blob/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core/docs/AuthUsingEnvironmentVariables.md).

More information and different authentication approaches using Azure Identity can be found in [this document](https://docs.microsoft.com/dotnet/api/overview/azure/identity-readme?view=azure-dotnet).

Expand Down Expand Up @@ -129,7 +129,7 @@ await foreach (ResourceGroup rg in response)
}
```

For more detailed examples, take a look at [samples]<--(samples/)--> we have available.
For more detailed examples, take a look at [samples](https://github.com/Azure/azure-sdk-for-net/tree/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core/samples) we have available.

## Troubleshooting

Expand All @@ -141,8 +141,8 @@ For more detailed examples, take a look at [samples]<--(samples/)--> we have ava
## Next steps
### More sample code

- [Managing Resource Groups]<--(samples/ManagingResourceGroups.md)-->
- [Creating a Virtual Network]<--(samples/CreatingAVirtualNetwork.md)-->
- [Managing Resource Groups](https://github.com/Azure/azure-sdk-for-net/blob/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core/samples/Sample2_ManagingResourceGroups.md)
- [Creating a Virtual Network](https://github.com/Azure/azure-sdk-for-net/blob/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core/samples/Sample3_CreatingAVirtualNetwork.md)
- [.NET Management Library Code Samples](https://docs.microsoft.com/samples/browse/?branch=master&languages=csharp&term=managing%20using%20Azure%20.NET%20SDK)

### Additional Documentation
Expand All @@ -151,7 +151,7 @@ For more information on Azure SDK, please refer to [this website](https://azure.
## Contributing

For details on contributing to this repository, see the [contributing
guide]<--(docs/CONTRIBUTING.md)-->.
guide](https://github.com/Azure/azure-sdk-for-net/blob/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core/docs/CONTRIBUTING.md).

This project welcomes contributions and suggestions. Most contributions
require you to agree to a Contributor License Agreement (CLA) declaring
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: Samples for the Azure.ResourceManager.Core client library

# Azure.ResourceManager.Core Samples

- [Hello World - Getting a subscription]<--(Sample1_HelloWorld.md)-->
- [Hello World - Getting a subscription async]<--(Sample1_HelloWorldAsync.md)-->
- [Managing Resource Groups]<--(Sample2_ManagingResourceGroups.md)-->
- [Creating a virtual network]<--(Sample3_CreatingAVirtualNetwork.md)-->
- [Hello World - Getting a subscription](https://github.com/Azure/azure-sdk-for-net/blob/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core/samples/Sample1_HelloWorld.md)
- [Hello World - Getting a subscription async](https://github.com/Azure/azure-sdk-for-net/blob/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core/samples/Sample1_HelloWorldAsync.md)
- [Managing Resource Groups](https://github.com/Azure/azure-sdk-for-net/blob/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core/samples/Sample2_ManagingResourceGroups.md)
- [Creating a virtual network](https://github.com/Azure/azure-sdk-for-net/blob/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core/samples/Sample3_CreatingAVirtualNetwork.md)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Example: Getting a subscription

>Note: Before getting started with the samples, make sure to go trough the [prerequisites]<--(./README.md#Prerequisites)-->.
>Note: Before getting started with the samples, make sure to go trough the [prerequisites](https://github.com/Azure/azure-sdk-for-net/tree/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core#prerequisites).
The following code shows how to get the default subscription:

Expand All @@ -26,4 +26,4 @@ ResourceGroupContainer rgContainer = subscription.GetResourceGroups();
```

## Next stepts
Take a look at the [Managing Resource Groups]<--(Sample2_ManagingResourceGroups.md)--> samples.
Take a look at the [Managing Resource Groups](https://github.com/Azure/azure-sdk-for-net/blob/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core/samples/Sample2_ManagingResourceGroups.md) samples.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Example: Getting a subscription

>Note: Before getting started with the samples, go through the [prerequisites]<--(./README.md#Prerequisites)-->.
>Note: Before getting started with the samples, go through the [prerequisites](https://github.com/Azure/azure-sdk-for-net/tree/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core#prerequisites).
The following code shows how to get the default subscription:

Expand Down Expand Up @@ -28,4 +28,4 @@ ResourceGroupContainer rgContainer = subscription.GetResourceGroups();
```

## Next stepts
Take a look at the [Managing Resource Groups]<--(Sample2_ManagingResourceGroups.md)--> samples.
Take a look at the [Managing Resource Groups](https://github.com/Azure/azure-sdk-for-net/blob/feature/mgmt-track2/sdk/resourcemanager/Azure.ResourceManager.Core/samples/Sample2_ManagingResourceGroups.md) samples.

0 comments on commit 8fe07a7

Please sign in to comment.