Skip to content

Commit b5fc112

Browse files
authored
Merge pull request #218147 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents dc17146 + 008a335 commit b5fc112

File tree

12 files changed

+30
-10
lines changed

12 files changed

+30
-10
lines changed

articles/active-directory/develop/scopes-oidc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ The Microsoft identity platform implements the [OAuth 2.0](active-directory-v2-p
1919

2020
In this article, you'll learn about scopes and permissions in the identity platform.
2121

22-
The following list shows are some examples of Microsoft web-hosted resources:
22+
The following list shows some examples of Microsoft web-hosted resources:
2323

2424
- Microsoft Graph: `https://graph.microsoft.com`
2525
- Microsoft 365 Mail API: `https://outlook.office.com`
2626
- Azure Key Vault: `https://vault.azure.net`
2727

28-
The same is true for any third-party resources that have integrated with the Microsoft identity platform. Any of these resources also can define a set of permissions that can be used to divide the functionality of that resource into smaller chunks. As an example, [Microsoft Graph](https://graph.microsoft.com) has defined permissions to do the following tasks, among others:
28+
The same is true for any third-party resources that have integrated with the Microsoft identity platform. Any of these resources can also define a set of permissions that can be used to divide the functionality of that resource into smaller chunks. As an example, [Microsoft Graph](https://graph.microsoft.com) has defined permissions to do the following tasks, among others:
2929

3030
- Read a user's calendar
3131
- Write to a user's calendar

articles/active-directory/hybrid/how-to-connect-group-writeback-enable.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ Group writeback requires enabling both the original and new versions of the feat
5252
``` PowerShell
5353
Set-ADSyncScheduler -SyncCycleEnabled $true
5454
```
55+
6. Run a full sync cycle if group writeback was previously configured and will not be configured in the ⁠Azure AD Connect wizard:
56+
``` PowerShell
57+
Start-ADSyncSyncCycle -PolicyType Initial
58+
```
59+
5560

5661
### Enable group writeback by using the Azure AD Connect wizard
5762
If the original version of group writeback was not previously enabled, continue with the following steps:

articles/app-service/app-service-undelete.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ Restore-AzDeletedWebApp -TargetResourceGroupName <my_rg> -Name <my_app> -TargetA
7474

7575
> [!NOTE]
7676
> Deployment slots are not restored as part of your app. If you need to restore a staging slot, use the `-Slot <slot-name>` flag.
77+
> The commandlet is restoring original slot to the target app's production slot.
7778
> By default `Restore-AzDeletedWebApp` will restore both your app configuration as well any content to target app. If you want to only restore content, you use the `-RestoreContentOnly` flag with this commandlet.
7879
7980
>Restore only site content to the target app
@@ -95,7 +96,7 @@ The inputs for command are:
9596
- **Name**: Name for the app, should be globally unique.
9697
- **ResourceGroupName**: Original resource group for the deleted app
9798
- **Slot**: Slot for the deleted app
98-
- **RestoreContentOnly**: y default `Restore-AzDeletedWebApp` will restore both your app configuration as well any content. If you want to only restore content, you use the `-RestoreContentOnly` flag with this commandlet.
99+
- **RestoreContentOnly**: By default `Restore-AzDeletedWebApp` will restore both your app configuration as well any content. If you want to only restore content, you can use the `-RestoreContentOnly` flag with this commandlet.
99100

100101
> [!NOTE]
101102
> If the app was hosted on and then deleted from an App Service Environment, it can be restored only if the corresponding App Service Environment still exists.

articles/azure-monitor/logs/api/authentication-authorization.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,19 @@ You can also use this flow to request a token to `https://api.loganalytics.io`.
4545
&client_secret=YOUR_CLIENT_SECRET
4646
```
4747

48+
##### Microsoft identity platform v2.0
49+
50+
```
51+
POST /YOUR_AAD_TENANT/oauth2/v2.0/token HTTP/1.1
52+
Host: https://login.microsoftonline.com
53+
Content-Type: application/x-www-form-urlencoded
54+
55+
grant_type=client_credentials
56+
&client_id=YOUR_CLIENT_ID
57+
&scope=https://management.azure.com/.default
58+
&client_secret=YOUR_CLIENT_SECRET
59+
```
60+
4861
A successful request receives an access token:
4962

5063
```

articles/cloud-services/cloud-services-python-ptvs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ $is_python2 = $env:PYTHON2 -eq "on"
170170
$nl = [Environment]::NewLine
171171
172172
if (-not $is_emulated){
173-
Write-Output "Checking if python is installed...$nl"
173+
Write-Output "Checking if Python is installed...$nl"
174174
if ($is_python2) {
175175
& "${env:SystemDrive}\Python27\python.exe" -V | Out-Null
176176
}

articles/cognitive-services/Speech-Service/includes/release-notes/release-notes-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ms.author: eur
2121
- **Java**
2222
- Temporarily Published updated POM and Javadocs files to Maven Central to enable the docs pipeline to update online reference docs.
2323
- **Python**
24-
- Fix regression where python speak_text(ssml) returns void.
24+
- Fix regression where Python speak_text(ssml) returns void.
2525

2626

2727
### Speech SDK 1.24.0: October 2022 release

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can review and download the sample code for this quick start on [GitHub](htt
2626

2727
## Setting up
2828

29-
### Create a new python application
29+
### Create a new Python application
3030

3131
In a terminal or console window, create a new folder for your application and navigate to it.
3232

articles/machine-learning/how-to-create-data-assets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ paths:
243243
- pattern: ./*.txt
244244
transformations:
245245
- read_delimited:
246-
delimiter: ,
246+
delimiter: ','
247247
encoding: ascii
248248
header: all_files_same_headers
249249
```

articles/machine-learning/migrate-to-v2-resource-datastore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ blob_datastore = Datastore.register_azure_blob_container(workspace=ws,
157157
subscription_id=subscription_id,
158158
resource_group_name=resource_group)
159159

160-
datastore = ml_client.datastores.get(datastore_name='your datastore name')
160+
datastore = ml_client.datastores.get(name='your datastore name')
161161
```
162162

163163
## Mapping of key functionality in SDK v1 and SDK v2

articles/machine-learning/reference-yaml-mltable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ paths:
6565
- pattern: ./*.txt
6666
transformations:
6767
- read_delimited:
68-
delimiter: ,
68+
delimiter: ','
6969
encoding: ascii
7070
header: all_files_same_headers
7171
- columns: [Trip_Pickup_DateTime, Trip_Dropoff_DateTime]

0 commit comments

Comments
 (0)