Skip to content

Commit c393c84

Browse files
authored
Merge pull request #94625 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/Microsoft/azure-docs (branch master)
2 parents e5e6e36 + 0ba02ff commit c393c84

27 files changed

+215
-61
lines changed

articles/active-directory/authentication/howto-mfa-mfasettings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ If your organization deploys the NPS extension to provide MFA to on-premises app
295295

296296
| Azure AD tenant type | Trusted IPs feature options |
297297
|:--- |:--- |
298-
| Managed |**Specific range of IP addresses**: Administrators specify a range of IP addresses that can bypass two-step verification for users who sign in from the company intranet.|
298+
| Managed |**Specific range of IP addresses**: Administrators specify a range of IP addresses that can bypass two-step verification for users who sign in from the company intranet. A maximum of 50 Trusted IP ranges can be configured.|
299299
| Federated |**All Federated Users**: All federated users who sign in from inside of the organization can bypass two-step verification. The users bypass verification by using a claim that is issued by Active Directory Federation Services (AD FS).<br/>**Specific range of IP addresses**: Administrators specify a range of IP addresses that can bypass two-step verification for users who sign in from the company intranet. |
300300

301301
The Trusted IPs bypass works only from inside of the company intranet. If you select the **All Federated Users** option and a user signs in from outside the company intranet, the user has to authenticate by using two-step verification. The process is the same even if the user presents an AD FS claim.

articles/active-directory/authentication/howto-mfa-userstates.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@ function Set-MfaState {
171171
Get-MsolUser -All | Set-MfaState -State Disabled
172172
```
173173

174+
> [!NOTE]
175+
> We recently changed the behavior and PowerShell script above accordingly. Previously, the script saved off the MFA methods, disabled MFA, and restored the methods. This is no longer necessary now that the default behavior for disable doesn't clear the methods.
176+
174177
## Next steps
175178

176179
* Why was a user prompted or not prompted to perform MFA? See the section [Azure AD sign-ins report in the Reports in Azure Multi-Factor Authentication document](howto-mfa-reporting.md#azure-ad-sign-ins-report).

articles/asc-for-iot/resources-frequently-asked-questions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The Azure Security Center for IoT security agent is open source and available on
6666

6767
## Where does the Azure Security Center for IoT agent get installed?
6868

69-
Detailed installation and agent deployment information can be found in GitHub: https://github.com/Azure/Azure-Security-IoT.
69+
Detailed installation and agent deployment information can be found in GitHub: https://github.com/Azure/Azure-IoT-Security.
7070

7171
## What are the dependencies and prerequisites of the agent?
7272

articles/azure-functions/functions-bindings-service-bus.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -471,12 +471,12 @@ public static void Run(TimerInfo myTimer, ILogger log, out string outputSbQueue)
471471
Here's C# script code that creates multiple messages:
472472

473473
```cs
474-
public static void Run(TimerInfo myTimer, ILogger log, ICollector<string> outputSbQueue)
474+
public static async Task Run(TimerInfo myTimer, ILogger log, IAsyncCollector<string> outputSbQueue)
475475
{
476476
string message = $"Service Bus queue messages created at: {DateTime.Now}";
477477
log.LogInformation(message);
478-
outputSbQueue.Add("1 " + message);
479-
outputSbQueue.Add("2 " + message);
478+
await outputSbQueue.AddAsync("1 " + message);
479+
await outputSbQueue.AddAsync("2 " + message);
480480
}
481481
```
482482

articles/azure-maps/mobility-coverage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The following table provides coverage information for Azure Maps Mobility serv
5252
| Australia | <p>Adelaide, Alice Springs, Bowen, Brisbane, Bundaberg QLD, Burnie, Cairns, Canberra, Darwin, Gladstone, Hobart, Innisfail, Launceston, Mackay, Magnetic Island, Maryborough-Hervey Bay, Melbourne, New South Wales, Perth, RockHampton, South East Queensland, Sydney, Toowoomba, Townsville, Victoria, Warwick, Yeppoon</p> |
5353
| China | <p> Changchun, Changsha, Chengdu, Chongqing, Dalian, Datong, Dongguan, Hangzhou, Jiangyin, Jinan, Nanjing, Nantong, Ningbo, Pingdingshan, Qingdao, Shenyang, Suzhou, Tangshan, Tianjin, Weifang, Wuhan, Wuxi, Yantai, Yixing, Zhuhai, Shanghai, Beijing, Guangzhou, Shenzhen, Zhengzhou</P>|
5454
| Hong Kong SAR | Hong Kong SAR*|
55-
| Macau SAR | Macau SAR*|
55+
| Macao SAR | Macao SAR*|
5656
| India | Ahmedabad, Bengaluru, Delhi, Mumbai, Mysuru|
5757
| Indonesia | Bandung, Banyuwangi, Batam, Denpasar, Jakarta, Kediri, Malang, Palembang, Semarang, Surabaya, Surakarta, Yogyakarta |
5858
| Japan | Shizuoka Prefecture, Tokyo, Wakkanai, Yamanashi Prefecture |

articles/azure-maps/tutorial-search-location.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,13 +246,16 @@ The map that we've made so far only looks at the longitude/latitude data for the
246246
var position = e.shapes[0].getCoordinates();
247247

248248
//Create HTML from properties of the selected result.
249-
var html = ['<div style="padding:5px"><div><b>', p.poi.name,
250-
'</b></div><div>', p.address.freeformAddress,
251-
'</div><div>', position[1], ', ', position[0], '</div></div>'];
249+
var html = `
250+
<div style="padding:5px">
251+
<div><b>${p.poi.name}</b></div>
252+
<div>${p.address.freeformAddress}</div>
253+
<div>${position[1]}, ${position[0]}</div>
254+
</div>`;
252255

253256
//Update the content and position of the popup.
254257
popup.setPopupOptions({
255-
content: html.join(''),
258+
content: html,
256259
position: position
257260
});
258261

articles/azure-monitor/app/app-map.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,24 @@ appInsights.defaultClient.addTelemetryProcessor(envelope => {
176176

177177
### Java
178178

179+
Starting with Application Insights Java SDK 2.5.0, you can specify the cloud role name
180+
by adding `<RoleName>` to your `ApplicationInsights.xml` file, e.g.
181+
182+
```XML
183+
<?xml version="1.0" encoding="utf-8"?>
184+
<ApplicationInsights xmlns="http://schemas.microsoft.com/ApplicationInsights/2013/Settings" schemaVersion="2014-05-30">
185+
<InstrumentationKey>** Your instrumentation key **</InstrumentationKey>
186+
<RoleName>** Your role name **</RoleName>
187+
...
188+
</ApplicationInsights>
189+
```
190+
179191
If you use Spring Boot with the Application Insights Spring Boot starter, the only required change is to set your custom name for the application in the application.properties file.
180192

181193
`spring.application.name=<name-of-app>`
182194

183195
The Spring Boot starter will automatically assign cloud role name to the value you enter for the spring.application.name property.
184196

185-
For further information on Java correlation and how to configure cloud role name for non-SpringBoot applications checkout this [section](https://docs.microsoft.com/azure/application-insights/application-insights-correlation#role-name) on correlation.
186-
187197
### Client/browser-side JavaScript
188198

189199
```javascript

articles/azure-monitor/app/correlation.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -331,25 +331,23 @@ In order to correlate telemetry in Asynchronous Spring Boot application, please
331331
332332
At times, you might want to customize the way component names are displayed in the [Application Map](../../azure-monitor/app/app-map.md). To do so, you can manually set the `cloud_RoleName` by doing one of the following:
333333
334-
- If you use Spring Boot with the Application Insights Spring Boot starter, the only required change is to set your custom name for the application in the application.properties file.
335-
336-
`spring.application.name=<name-of-app>`
337-
338-
The Spring Boot starter automatically assigns `cloudRoleName` to the value you enter for the `spring.application.name` property.
339-
340-
- If you're using the `WebRequestTrackingFilter`, the `WebAppNameContextInitializer` sets the application name automatically. Add the following to your configuration file (ApplicationInsights.xml):
334+
- Starting with Application Insights Java SDK 2.5.0, you can specify the cloud role name
335+
by adding `<RoleName>` to your `ApplicationInsights.xml` file, e.g.
341336
342337
```XML
343-
<ContextInitializers>
344-
<Add type="com.microsoft.applicationinsights.web.extensibility.initializers.WebAppNameContextInitializer" />
345-
</ContextInitializers>
338+
<?xml version="1.0" encoding="utf-8"?>
339+
<ApplicationInsights xmlns="http://schemas.microsoft.com/ApplicationInsights/2013/Settings" schemaVersion="2014-05-30">
340+
<InstrumentationKey>** Your instrumentation key **</InstrumentationKey>
341+
<RoleName>** Your role name **</RoleName>
342+
...
343+
</ApplicationInsights>
346344
```
347345
348-
- If you use the cloud context class:
346+
- If you use Spring Boot with the Application Insights Spring Boot starter, the only required change is to set your custom name for the application in the application.properties file.
349347
350-
```Java
351-
telemetryClient.getContext().getCloud().setRole("My Component Name");
352-
```
348+
`spring.application.name=<name-of-app>`
349+
350+
The Spring Boot starter automatically assigns `cloudRoleName` to the value you enter for the `spring.application.name` property.
353351
354352
## Next steps
355353

articles/azure-resource-manager/deployment-quota-exceeded.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To delete all deployments older than five days, use:
3131

3232
```azurecli-interactive
3333
startdate=$(date +%F -d "-5days")
34-
deployments=$(az group deployment list --resource-group exampleGroup --query "[?properties.timestamp>'$startdate'].name" --output tsv)
34+
deployments=$(az group deployment list --resource-group exampleGroup --query "[?properties.timestamp<'$startdate'].name" --output tsv)
3535
3636
for deployment in $deployments
3737
do

articles/azure-resource-manager/resource-group-template-deploy-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ If you want to execute a deployment but not use any of the templates in the Mark
8484
1. You see several options for creating a template:
8585

8686
- **Build your own template in editor**: create a template using the portal template editor. The editor is capable to add a resource template schema.
87-
- **Common templates**: There are four common templatess for creating a Linux virtual machine, Windows virtual machine, a web application, and an Azure SQL database.
87+
- **Common templates**: There are four common templates for creating a Linux virtual machine, Windows virtual machine, a web application, and an Azure SQL database.
8888
- **Load a GitHub quickstart template**: use an existing [quickstart templates](https://azure.microsoft.com/resources/templates/).
8989

9090
![View options](./media/resource-group-template-deploy-portal/see-options.png)

0 commit comments

Comments
 (0)