Skip to content

Commit a3c7b02

Browse files
author
ajburnle
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into azuread-fundamentals-removeaka
2 parents 51dddeb + 1deedd4 commit a3c7b02

9 files changed

+289
-137
lines changed

articles/azure-app-configuration/quickstart-feature-flag-aspnet-core.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,13 @@ The Secret Manager tool stores sensitive data for development work outside of yo
124124

125125
You can access this secret with the App Configuration API. A colon (:) works in the configuration name with the App Configuration API on all supported platforms. See [Configuration by environment](https://docs.microsoft.com/aspnet/core/fundamentals/configuration).
126126

127-
1. Update the `CreateWebHostBuilder` method to use App Configuration by calling the `config.AddAzureAppConfiguration()` method.
128-
127+
1. In *Program.cs*, update the `CreateWebHostBuilder` method to use App Configuration by calling the `config.AddAzureAppConfiguration()` method.
128+
129129
> [!IMPORTANT]
130130
> `CreateHostBuilder` replaces `CreateWebHostBuilder` in .NET Core 3.0. Select the correct syntax based on your environment.
131131

132132
#### [.NET Core 2.x](#tab/core2x)
133-
133+
134134
```csharp
135135
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
136136
WebHost.CreateDefaultBuilder(args)
@@ -146,7 +146,7 @@ The Secret Manager tool stores sensitive data for development work outside of yo
146146
```
147147

148148
#### [.NET Core 3.x](#tab/core3x)
149-
149+
150150
```csharp
151151
public static IHostBuilder CreateHostBuilder(string[] args) =>
152152
Host.CreateDefaultBuilder(args)
@@ -186,11 +186,11 @@ The Secret Manager tool stores sensitive data for development work outside of yo
186186
services.AddControllersWithViews();
187187
services.AddFeatureManagement();
188188
}
189-
```
189+
190190
---
191191

192192
1. Update the `Configure` method to add a middleware to allow the feature flag values to be refreshed at a recurring interval while the ASP.NET Core web app continues to receive requests.
193-
193+
194194
#### [.NET Core 2.x](#tab/core2x)
195195
```csharp
196196
public void Configure(IApplicationBuilder app, IHostingEnvironment env)

articles/azure-resource-manager/management/resources-without-resource-group-limit.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Resources without 800 count limit
33
description: Lists the Azure resource types that can have more than 800 instances in a resource group.
44
ms.topic: conceptual
5-
ms.date: 01/30/2020
5+
ms.date: 04/06/2020
66
---
77

88
# Resources not limited to 800 instances per resource group
@@ -21,7 +21,6 @@ For some resource types, you need to contact support to have the 800 instance li
2121
* registrations
2222
* registrations/customerSubscriptions
2323
* registrations/products
24-
* verificationKeys
2524

2625
## Microsoft.BotService
2726

@@ -30,6 +29,9 @@ For some resource types, you need to contact support to have the 800 instance li
3029
## Microsoft.Compute
3130

3231
* disks
32+
* galleries
33+
* galleries/images
34+
* galleries/images/versions
3335
* images
3436
* snapshots
3537
* virtualMachines
@@ -62,6 +64,11 @@ For some resource types, you need to contact support to have the 800 instance li
6264
* serverGroups
6365
* servers
6466
* serversv2
67+
* singleServers
68+
69+
## Microsoft.DevTestLab
70+
71+
* schedules - By default, limited to 800 instances. That limit can be increased by contacting support.
6572

6673
## Microsoft.EnterpriseKnowledgeGraph
6774

@@ -85,7 +92,7 @@ For some resource types, you need to contact support to have the 800 instance li
8592
* softwareUpdateProfile
8693
* softwareUpdates
8794

88-
## Microsoft.Insights
95+
## microsoft.insights
8996

9097
* metricalerts
9198

0 commit comments

Comments
 (0)