Skip to content

Commit 50aeda3

Browse files
committed
Policheck updates
1 parent 6664944 commit 50aeda3

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

learn-pr/azure/azure-sql-replication/includes/2-track-data-changes-with-cdc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Scenario
22

3-
Let's remember our scenario, in which you're the CTO of a healthcare business that sells medical equipment in different regions around the country. You have different inventory databases in each region, and you want to ensure that these databases are all replicating data changes to a central country-wide inventory database that offers you a status on each sale. You might decide to use change data capture (CDC) and enable it on each of your regional inventory databases in order to track data changes on your source database, then you might decide to use a streaming service such as Azure Data Factory to consume changes from the CDC tables and stream them to the national/regional database.
3+
Let's remember our scenario, in which you're the CTO of a healthcare business that sells medical equipment in different regions around the country/region. You have different inventory databases in each region, and you want to ensure that these databases are all replicating data changes to a central country/region-wide inventory database that offers you a status on each sale. You might decide to use change data capture (CDC) and enable it on each of your regional inventory databases in order to track data changes on your source database, then you might decide to use a streaming service such as Azure Data Factory to consume changes from the CDC tables and stream them to the national/regional database.
44

55
Let's learn more about CDC.
66

learn-pr/azure/intro-to-azure-incident-readiness/includes/3-prepare-for-unexpected.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ When an alert is triggered, you can define the actions to be taken using action
8888
|---|---|---|
8989
| Email Azure Resource Manager role | Send an email to the subscription members, based on their role.<br>A notification email is sent only to the primary email address configured for the Microsoft Entra user.<br>The email is only sent to Microsoft Entra user members of the selected role, not to Microsoft Entra groups or service principals. | Enter the primary email address configured for the Microsoft Entra user. See [Email](/azure/azure-monitor/alerts/action-groups?WT.mc_id=Portal-Microsoft_Azure_Monitoring#email). |
9090
| Email | Ensure that your email filtering and any malware/spam prevention services are configured appropriately. Emails are sent from the following email addresses:<br>- [email protected]<br>- [email protected]<br>- [email protected] | Enter the email where the notification should be sent.
91-
| SMS | SMS notifications support bi-directional communication. The SMS contains the following information:<br>- Shortname of the action group this alert was sent to<br>- The title of the alert.<br>A user can respond to an SMS to:<br>- Unsubscribe from all SMS alerts for all action groups or a single action group.<br>- Resubscribe to alerts<br>- Request help.<br>For more information about supported SMS replies, see [SMS replies](/azure/azure-monitor/alerts/action-groups?WT.mc_id=Portal-Microsoft_Azure_Monitoring#sms-replies). | Enter the **Country code** and the **Phone number** for the SMS recipient. If you can't select your country/region code in the Azure portal, SMS isn't supported for your country/region. If your country/region code isn't available, you can vote to have your country/region added at [Share your ideas](https://feedback.azure.com/d365community/idea/e527eaa6-2025-ec11-b6e6-000d3a4f09d0). As a workaround until your country is supported, configure the action group to call a webhook to a third-party SMS provider that supports your country/region.
91+
| SMS | SMS notifications support bi-directional communication. The SMS contains the following information:<br>- Shortname of the action group this alert was sent to<br>- The title of the alert.<br>A user can respond to an SMS to:<br>- Unsubscribe from all SMS alerts for all action groups or a single action group.<br>- Resubscribe to alerts<br>- Request help.<br>For more information about supported SMS replies, see [SMS replies](/azure/azure-monitor/alerts/action-groups?WT.mc_id=Portal-Microsoft_Azure_Monitoring#sms-replies). | Enter the **Country code** and the **Phone number** for the SMS recipient. If you can't select your country/region code in the Azure portal, SMS isn't supported for your country/region. If your country/region code isn't available, you can vote to have your country/region added at [Share your ideas](https://feedback.azure.com/d365community/idea/e527eaa6-2025-ec11-b6e6-000d3a4f09d0). As a workaround until your country/region is supported, configure the action group to call a webhook to a third-party SMS provider that supports your country/region.
9292
| Azure app Push notifications | Send notifications to the Azure mobile app. To enable push notifications to the Azure mobile app, provide the For more information about the Azure mobile app, see [Azure mobile app](https://azure.microsoft.com/features/azure-portal/mobile-app/). | In the **Azure account email** field, enter the email address that you use as your account ID when you configure the Azure mobile app. |
93-
| Voice | Voice notification. | Enter the **Country code** and the **Phone number** for the recipient of the notification. If you can't select your country/region code in the Azure portal, voice notifications aren't supported for your country/region. If your country/region code isn't available, you can vote to have your country/region added at [Share your ideas](https://feedback.azure.com/d365community/idea/e527eaa6-2025-ec11-b6e6-000d3a4f09d0). As a workaround until your country is supported, configure the action group to call a webhook to a third-party voice call provider that supports your country/region.
93+
| Voice | Voice notification. | Enter the **Country code** and the **Phone number** for the recipient of the notification. If you can't select your country/region code in the Azure portal, voice notifications aren't supported for your country/region. If your country/region code isn't available, you can vote to have your country/region added at [Share your ideas](https://feedback.azure.com/d365community/idea/e527eaa6-2025-ec11-b6e6-000d3a4f09d0). As a workaround until your country/region is supported, configure the action group to call a webhook to a third-party voice call provider that supports your country/region.
9494

9595
#### Full list of actions you can trigger
9696

learn-pr/github/advanced-github-copilot/includes/5-exercise-update-a-web-api.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ An API acts as the intermediary that allows different applications to communicat
66

77
## Extend the Web API
88

9-
The current API isn't exposing country, which needs to be implemented to list cities. The route should allow only GET HTTP requests with a JSON response providing information from the historical high and low for that country, city, and given month.
9+
The current API isn't exposing country/region, which needs to be implemented to list cities. The route should allow only GET HTTP requests with a JSON response providing information from the historical high and low for that country/region, city, and given month.
1010

1111
>[!Note]
1212
> For this exercise, use the [Codespace with the preconfigured environment](https://codespaces.new/MicrosoftDocs/mslearn-advanced-copilot?azure-portal=true) in your browser.
1313
1414
### Step 1: Add a new route
1515

16-
Open the main.py file, and use the inline chat with the command **Ctrl+i** (on Windows) or **Command+i** (on Mac). This command asks GitHub Copilot to help you create a new API that shows you the cities of a country. Use the following prompt:
16+
Open the main.py file, and use the inline chat with the command **Ctrl+i** (on Windows) or **Command+i** (on Mac). This command asks GitHub Copilot to help you create a new API that shows you the cities of a country/region. Use the following prompt:
1717

1818
```text
19-
Create a new route that exposes the cities of a country.
19+
Create a new route that exposes the cities of a country/region.
2020
```
2121

2222
This prompt should give you something similar like this:
@@ -34,10 +34,10 @@ def cities(country: str):
3434
3535
### Step 2: Create a test
3636

37-
Now that you created a new route, create a test with Copilot Chat for this route that uses Spain as the country. Remember to select your code, and ask Copilot Chat to help you with this specific API that we just created. You can use the inline-chat or the dedicated chat pane with the following prompt:
37+
Now that you created a new route, create a test with Copilot Chat for this route that uses Spain as the country/region. Remember to select your code, and ask Copilot Chat to help you with this specific API that we just created. You can use the inline-chat or the dedicated chat pane with the following prompt:
3838

3939
```text
40-
/tests help me to create a new test for this route that uses Spain as the country.
40+
/tests help me to create a new test for this route that uses Spain as the country/region.
4141
```
4242

4343
Once Copilot helps you create your test, try it. If this isn't functioning as expected, feel free to share those details with Copilot in the chat. For example:

learn-pr/wwl-azure/share-knowledge-within-teams/includes/4-integrate-github-azure-devops-microsoft-teams.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can install the GitHub app for Microsoft Teams from the Teams app store or d
88

99
To subscribe to notifications for pull requests and issues in an organization or repository, use the @github subscribe &lt;organization&gt;/&lt;repository&gt; command. Notifications can be customized by subscribing to specific features using @github subscribe owner/repo \[feature\] and unsubscribing from less relevant activities using @github unsubscribe owner/repo \[feature\]. Default features include issues, pull requests, commits, comments, deployments, and releases. It's possible to selectively enable or disable other features, such as reviews, workflows, branches, and discussions.
1010

11-
To further scope notifications, use filtering. Branch filters allow limiting commit notifications to specific branches or patterns of branches. Label filters limit incoming events based on whitelisted labels, such as priority or specific team labels.
11+
To further scope notifications, use filtering. Branch filters allow limiting commit notifications to specific branches or patterns of branches. Label filters limit incoming events based on allowlisted labels, such as priority or specific team labels.
1212

1313
You can also organize notifications by using pull request and issue notification cards and threading. Notifications for pull requests and issues are grouped under parent cards as replies, displaying relevant metadata and providing threading for improved collaboration.
1414

learn-pr/wwl-data-ai/close-out-microsoft-learn-educators-course/includes/2-review-your-certification-plan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Additional certification exam support for students and educators is available th
66

77
Within the Microsoft Credential portfolio, Microsoft offers two main certification categories: Fundamentals and Advanced Role-Based (ARB). Fundamental certifications focus on skills within Microsoft's specific technology products, such as Azure, Azure AI, Azure Data Identity, Security and Compliance, and business applications. For students thinking about a career in technology, Microsoft's ARB exams assess associate level knowledge of Microsoft Cloud and business application services. ARB certifications focus on the skills needed for specific job roles that leverage Microsoft technology products.
88

9-
For students, Microsoft offers academic pricing on Microsoft certification exams in most countries. To qualify, students must identify that they are a student during registration and verify their academic status. Once verified, students will receive a [student discount](https://aka.ms/mslestudentsdiscount) when registering for an exam.
9+
For students, Microsoft offers academic pricing on Microsoft certification exams in most countries/regions. To qualify, students must identify that they are a student during registration and verify their academic status. Once verified, students will receive a [student discount](https://aka.ms/mslestudentsdiscount) when registering for an exam.
1010

1111
As an institution, you can offer Microsoft certification exams by purchasing exam vouchers through [Microsoft Volume Licensing Program](https://aka.ms/mslevolumelicensing), a customizable Microsoft software purchase program that grants discounted access to Microsoft Certification Solutions. Exam vouchers purchased through Microsoft Volume Licensing program can be used for Microsoft Certification exams, including Microsoft Fundamentals and Microsoft Advanced Role Based certification exams.
1212

learn-pr/wwl-data-ai/enforce-power-bi-model-security/includes/2-restrict-access-to-power-bi-model-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You can also create and manage roles by using SQL Server Management Studio (SSMS
1212

1313
To gain a better understanding of how RLS restricts access to data, watch the following animated image.
1414

15-
![Animated diagram demonstrates how row-level security works for two users who each have access to specific country data.](../media/introduce-row-level-security.gif)
15+
![Animated diagram demonstrates how row-level security works for two users who each have access to specific country/region data.](../media/introduce-row-level-security.gif)
1616

1717
## Apply star schema design principles
1818

learn-pr/wwl-data-ai/training-certification-course-planning-microsoft-learn-educators/includes/6-determine-how-you-and-your-students-will-get-certified.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To request a certification exam voucher, log into the [Microsoft Learn for Educa
88

99
You'll need to take your certification exam at the [Pearson VUE Testing Center](https://home.pearsonvue.com/Test-centers.aspx) or use the online proctoring option.
1010

11-
For students, Microsoft offers academic pricing on Microsoft certification exams in most countries. To qualify, students must identify that they're a student during registration and verify their academic status. Once verified, students will receive a [student discount](https://aka.ms/mslestudentsdiscount) when registering for an exam.
11+
For students, Microsoft offers academic pricing on Microsoft certification exams in most countries/regions. To qualify, students must identify that they're a student during registration and verify their academic status. Once verified, students will receive a [student discount](https://aka.ms/mslestudentsdiscount) when registering for an exam.
1212

1313
As an institution, you can offer Microsoft certification exams by purchasing exam vouchers through [Microsoft Volume Licensing Program](https://aka.ms/mslevolumelicensing), a customizable Microsoft software purchase program that grants discounted access to Microsoft Certification Solutions. Exam vouchers purchased through Microsoft Volume Licensing program can be used for Microsoft certified professional exams, including Microsoft Fundamentals and Microsoft Advanced Role Based certification exams.
1414

learn-pr/wwl-mba/enable-digital-transformation/includes/7-summary-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Digital technologies are reshaping industries and enterprises. The Microsoft approach to digital transformation can help organizations across any industry reimagine how to bring together people, data, and processes to create value for customers and maintain a competitive advantage in a digital-first world.
1+
Digital technologies are reshaping industries and enterprises. The Microsoft approach to digital transformation can help organizations across any industry reimagine how to bring together people, data, and processes to create value for customers and maintain a competitive advantage in a digital-first culture.
22

33
Now that you have reviewed this module, you should be able to:
44
- Define digital transformation.

learn-pr/wwl-sci/implement-initial-configuration-of-azure-active-directory/includes/9-exercise-set-tenant-wide-properties.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@
99
4. In the **Name** box, change the tenant name. For example, Contoso Marketing Company can be changed to Contoso Marketing Company 2.
1010
5. Select **Save** to update the tenant properties.
1111

12-
### Find the Country / region associated with your tenant
12+
### Find the Country/Region associated with your tenant
1313

1414
6. In the **Microsoft Entra ID** screen, in the Manage section, select **Properties**.
15-
7. Under **Tenant properties**, locate **Country / region** and review the information.
15+
7. Under **Tenant properties**, locate **Country/Region** and review the information.
1616

1717
> [!IMPORTANT]
18-
> When the tenant is created, the Country / region is specified at that time. This setting cannot be changed later.
18+
> When the tenant is created, the Country/Region is specified at that time. This setting cannot be changed later.
1919
2020
### Find the location associated with your tenant
2121

22-
Just as the Country / region is found in the Microsoft Entra ID Properties dialog, so is the location information.
22+
Just as the Country/Region is found in the Microsoft Entra ID Properties dialog, so is the location information.
2323

2424
8. In the **Properties** screen, under **Tenant properties**, locate **Location** and review the information.
2525

learn-pr/wwl-sci/implement-manage-external-identities/includes/12-implement-manager-entra-verified-id.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Microsoft Entra Verified ID safeguards your organization with an identity solution that's seamless and decentralized. The service allows you to issue and verify credentials. For issuers, Microsoft Entra ID provides a service that they can customize and use to issue their own verifiable credentials. For verifiers, the service provides a free REST API that makes it easy to request and accept verifiable credentials in your apps and services.
66

7-
We use IDs in our daily lives. We have drivers licenses that we use as evidence of our ability to operate a car. Universities issue diplomas that prove we attained a level of education. We use passports to prove who we are to authorities as we arrive to other countries / regions. The data model describes how we could handle these types of scenarios when working over the internet but in a secure manner that respects users' privacy. In short, verifiable credentials are data objects consisting of claims made by the issuer attesting information about a subject. These claims are identified by schema and include the DID issuer and subject. The issuer's DID creates a digital signature as proof that they attest to this information.
7+
We use IDs in our daily lives. We have drivers licenses that we use as evidence of our ability to operate a car. Universities issue diplomas that prove we attained a level of education. We use passports to prove who we are to authorities as we arrive to other countries/regions. The data model describes how we could handle these types of scenarios when working over the internet but in a secure manner that respects users' privacy. In short, verifiable credentials are data objects consisting of claims made by the issuer attesting information about a subject. These claims are identified by schema and include the DID issuer and subject. The issuer's DID creates a digital signature as proof that they attest to this information.
88

99
### Deploying the Microsoft Entra Verified ID service
1010

0 commit comments

Comments
 (0)