Skip to content

Commit 8c9dd90

Browse files
authored
Merge pull request #84677 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 0aefc1b + 5f323f0 commit 8c9dd90

File tree

9 files changed

+45
-6
lines changed

9 files changed

+45
-6
lines changed

articles/active-directory/develop/authentication-flows-app-scenarios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ For more information, read [Mobile app that calls web APIs](scenario-mobile-over
140140

141141
### Protected Web API
142142

143-
You can use the Microsoft identity platform endpoint to secure web services, such as your app's RESTful Web API. A protected Web API is called with an access token to secure its data and to authenticate incoming requests. The caller of a Web API appends an access token in the authorization header of an HTTP request. If you want to protect you ASP.NET or ASP.NET Core Web API, you will need to validate the access token. For this, you'll use the ASP.NET JWT middleware. Under the hood, the validation is done by the [IdentityModel extensions for .NET](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/wiki) library, not MSAL.NET
143+
You can use the Microsoft identity platform endpoint to secure web services, such as your app's RESTful Web API. A protected Web API is called with an access token to secure its data and to authenticate incoming requests. The caller of a Web API appends an access token in the authorization header of an HTTP request. If you want to protect your ASP.NET or ASP.NET Core Web API, you will need to validate the access token. For this, you'll use the ASP.NET JWT middleware. Under the hood, the validation is done by the [IdentityModel extensions for .NET](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/wiki) library, not MSAL.NET
144144

145145
For more information, read [Protected Web API](scenario-protected-web-api-overview.md).
146146

articles/active-directory/devices/hybrid-azuread-join-federated-domains.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ If you don't use WPAD and want to configure proxy settings on your computer, you
9292
9393
If your organization requires access to the internet via an authenticated outbound proxy, you must make sure that your Windows 10 computers can successfully authenticate to the outbound proxy. Because Windows 10 computers run device registration by using machine context, you must configure outbound proxy authentication by using machine context. Follow up with your outbound proxy provider on the configuration requirements.
9494

95+
To verify if the device is able to access the above Microsoft resources under the system account, you can use [Test Device Registration Connectivity](https://gallery.technet.microsoft.com/Test-Device-Registration-3dc944c0) script.
96+
9597
## Configure hybrid Azure AD join
9698

9799
To configure a hybrid Azure AD join by using Azure AD Connect, you need:

articles/active-directory/devices/hybrid-azuread-join-manual.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ For Windows 10 devices on version 1703 or earlier, if your organization requires
7171

7272
Beginning with Windows 10 1803, even if a hybrid Azure AD join attempt by a device in a federated domain through AD FS fails, and if Azure AD Connect is configured to sync the computer/device objects to Azure AD, the device will try to complete the hybrid Azure AD join by using the synced computer/device.
7373

74+
To verify if the device is able to access the above Microsoft resources under the system account, you can use [Test Device Registration Connectivity](https://gallery.technet.microsoft.com/Test-Device-Registration-3dc944c0) script.
75+
7476
## Verify configuration steps
7577

7678
You can configure hybrid Azure AD joined devices for various types of Windows device platforms. This topic includes the required steps for all typical configuration scenarios.

articles/azure-monitor/app/correlation.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,39 @@ public void ConfigureServices(IServiceCollection services)
139139
> [!IMPORTANT]
140140
> Make sure that both incoming and outgoing configurations are exactly the same.
141141
142+
#### Enable W3C distributed tracing support for Web apps
143+
144+
This feature is in `Microsoft.ApplicationInsights.JavaScript`. It's disabled by default. To enable it, use `distributedTracingMode` config. AI_AND_W3C is provided for back-compatibility with any legacy Application Insights instrumented services:
145+
146+
- **NPM Setup (ignore if using Snippet Setup)**
147+
148+
```javascript
149+
import { ApplicationInsights, DistributedTracingModes } from '@microsoft/applicationinsights-web';
150+
151+
const appInsights = new ApplicationInsights({ config: {
152+
instrumentationKey: 'YOUR_INSTRUMENTATION_KEY_GOES_HERE',
153+
distributedTracingMode: DistributedTracingModes.W3C
154+
/* ...Other Configuration Options... */
155+
} });
156+
appInsights.loadAppInsights();
157+
```
158+
159+
- **Snippet Setup (Ignore if using NPM Setup)**
160+
161+
```
162+
<script type="text/javascript">
163+
var sdkInstance="appInsightsSDK";window[sdkInstance]="appInsights";var aiName=window[sdkInstance],aisdk=window[aiName]||function(e){function n(e){i[e]=function(){var n=arguments;i.queue.push(function(){i[e].apply(i,n)})}}var i={config:e};i.initialize=!0;var a=document,t=window;setTimeout(function(){var n=a.createElement("script");n.src=e.url||"https://az416426.vo.msecnd.net/scripts/b/ai.2.min.js",a.getElementsByTagName("script")[0].parentNode.appendChild(n)});try{i.cookie=a.cookie}catch(e){}i.queue=[],i.version=2;for(var r=["Event","PageView","Exception","Trace","DependencyData","Metric","PageViewPerformance"];r.length;)n("track"+r.pop());n("startTrackPage"),n("stopTrackPage");var o="Track"+r[0];if(n("start"+o),n("stop"+o),!(!0===e.disableExceptionTracking||e.extensionConfig&&e.extensionConfig.ApplicationInsightsAnalytics&&!0===e.extensionConfig.ApplicationInsightsAnalytics.disableExceptionTracking)){n("_"+(r="onerror"));var s=t[r];t[r]=function(e,n,a,t,o){var c=s&&s(e,n,a,t,o);return!0!==c&&i["_"+r]({message:e,url:n,lineNumber:a,columnNumber:t,error:o}),c},e.autoExceptionInstrumented=!0}return i}
164+
(
165+
{
166+
instrumentationKey:"INSTRUMENTATION_KEY",
167+
distributedTracingMode: 2 // DistributedTracingModes.W3C
168+
/* ...Other Configuration Options... */
169+
}
170+
);
171+
window[aiName]=aisdk,aisdk.queue&&0===aisdk.queue.length&&aisdk.trackPageView({});
172+
</script>
173+
```
174+
142175
## OpenTracing and Application Insights
143176
144177
The [OpenTracing data model specification](https://opentracing.io/) and Application Insights data models map in the following way:

articles/backup/backup-azure-vms-encryption.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,12 @@ You restore encrypted VMs as follows:
147147
1. [Restore the VM disk](backup-azure-arm-restore-vms.md#restore-disks).
148148
2. Then do one of the following:
149149
- Use the template that's generated during the restore operation to customize VM settings, and trigger VM deployment. [Learn more](backup-azure-arm-restore-vms.md#use-templates-to-customize-a-restored-vm).
150-
- Create a new VM from the restored disks using Powershell. [Learn more](backup-azure-vms-automation.md#create-a-vm-from-restored-disks).
150+
- Create a new VM from the restored disks using PowerShell. [Learn more](backup-azure-vms-automation.md#create-a-vm-from-restored-disks).
151+
- For Linux VMs, reset the ADE extension so the data disks are open and mounted.
151152

152153
## Next steps
153154

154-
If you run into any issues, review
155+
If you run into any issues, review these articles:
155156

156157
- [Common errors](backup-azure-vms-troubleshoot.md) when backing up and restoring encrypted Azure VMs.
157158
- [Azure VM agent/backup extension](backup-azure-troubleshoot-vm-backup-fails-snapshot-timeout.md) issues.

articles/data-factory/connector-oracle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ To copy data from Oracle, set the source type in the copy activity to `OracleSou
205205
| partitionNames | The list of physical partitions that needs to be copied. <br>Apply when the partition option is `PhysicalPartitionsOfTable`. If you use a query to retrieve the source data, hook `?AdfTabularPartitionName` in the WHERE clause. For an example, see the [Parallel copy from Oracle](#parallel-copy-from-oracle) section. | No |
206206
| partitionColumnName | Specify the name of the source column **in integer type** that will be used by range partitioning for parallel copy. If not specified, the primary key of the table is auto-detected and used as the partition column. <br>Apply when the partition option is `DynamicRange`. If you use a query to retrieve the source data, hook `?AdfRangePartitionColumnName` in the WHERE clause. For an example, see the [Parallel copy from Oracle](#parallel-copy-from-oracle) section. | No |
207207
| partitionUpperBound | The maximum value of the partition column to copy data out. <br>Apply when the partition option is `DynamicRange`. If you use a query to retrieve the source data, hook `?AdfRangePartitionUpbound` in the WHERE clause. For an example, see the [Parallel copy from Oracle](#parallel-copy-from-oracle) section. | No |
208-
| PartitionLowerBound | The minimum value of the partition column to copy data out. <br>Apply when the partition option is `DynamicRange`. If you use a query to retrieve the source data, hook `?AdfRangePartitionLowbound` in the WHERE clause. For an example, see the [Parallel copy from Oracle](#parallel-copy-from-oracle) section. | No |
208+
| partitionLowerBound | The minimum value of the partition column to copy data out. <br>Apply when the partition option is `DynamicRange`. If you use a query to retrieve the source data, hook `?AdfRangePartitionLowbound` in the WHERE clause. For an example, see the [Parallel copy from Oracle](#parallel-copy-from-oracle) section. | No |
209209

210210
**Example: copy data by using a basic query without partition**
211211

articles/lab-services/classroom-labs/tutorial-setup-classroom-lab.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ A lab owner can add other users to the **Lab Creator** role. For example, a lab
3939
2. Select **Sign in** and enter your credentials. Azure Lab Services supports organizational accounts and Microsoft accounts.
4040
3. In the **New Lab** window, do the following actions:
4141
1. Specify a **name** for your lab.
42-
2. Specify the maximum **number of virtual machines** in the lab. You can increase or decreate the number of VMs after creating the lab or in an existing lab. For more information, see [Update number of VMs in a lab](how-to-configure-student-usage.md#update-number-of-virtual-machines-in-lab)
42+
2. Specify the maximum **number of virtual machines** in the lab. You can increase or decrease the number of VMs after creating the lab or in an existing lab. For more information, see [Update number of VMs in a lab](how-to-configure-student-usage.md#update-number-of-virtual-machines-in-lab)
4343
6. Select **Save**.
4444

4545
![Create a classroom lab](../media/tutorial-setup-classroom-lab/new-lab-window.png)

articles/managed-applications/publish-service-catalog-app.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ Add the following starter JSON to the file and save it.
134134
"location": "[location()]"
135135
}
136136
}
137+
}
137138
```
138139

139140
To learn more, see [Get started with CreateUiDefinition](create-uidefinition-overview.md).

articles/network-watcher/network-watcher-nsg-flow-logging-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Flow logs include the following properties:
5454
* **flows** - a collection of flows
5555
* **mac** - The MAC address of the NIC for the VM where the flow was collected
5656
* **flowTuples** - A string that contains multiple properties for the flow tuple in comma-separated format
57-
* **Time Stamp** - This value is the time stamp of when the flow occurred in UNIX EPOCH format
57+
* **Time Stamp** - This value is the time stamp of when the flow occurred in UNIX epoch format
5858
* **Source IP** - The source IP
5959
* **Destination IP** - The destination IP
6060
* **Source Port** - The source port

0 commit comments

Comments
 (0)