Skip to content

Commit 43df0c4

Browse files
Merge pull request #53036 from JeffKoMS/bug-fixes-20260102
SE Bug fixes for three different modules
2 parents 78d48c0 + ddb6be1 commit 43df0c4

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

learn-pr/wwl-azure/explore-api-management/9-knowledge-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ durationInMinutes: 3
1717
quiz:
1818
title: "Check your knowledge"
1919
questions:
20-
- content: "Which of the following components of the API Management service would a developer use if they need to create an account and subscribe to get API keys?"
20+
- content: "Which of the following components of the API Management service would a developer use if they need to create an account and subscribe to get subscription keys?"
2121
choices:
2222
- content: "API gateway"
2323
isCorrect: false
@@ -27,7 +27,7 @@ quiz:
2727
explanation: "Incorrect. The Azure portal is the administrative interface where you set up your API program."
2828
- content: "Developer portal"
2929
isCorrect: true
30-
explanation: "Correct. The Developer portal serves as the main web presence for developers, and is where they can subscribe to get API keys."
30+
explanation: "Correct. The Developer portal serves as the main web presence for developers, and is where they can subscribe to get subscription keys."
3131
- content: "Which of the following API Management policies applies a policy based on a condition?"
3232
choices:
3333
- content: "forward-request"

learn-pr/wwl-azure/explore-azure-cosmos-db/includes/6-cosmos-db-supported-apis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ API for MongoDB, PostgreSQL, Cassandra, Gremlin, and Table implement the wire pr
1414

1515
## API for NoSQL
1616

17-
The Azure Cosmos DB API for NoSQL stores data in document format. It offers the best end-to-end experience as we have full control over the interface, service, and the SDK client libraries. Any new feature that is rolled out to Azure Cosmos DB is first available on API for NoSQL accounts. NoSQL accounts provide support for querying items using the Structured Query Language (SQL) syntax.
17+
The Azure Cosmos DB API for NoSQL stores data as JSON documents (called items). It offers the best end-to-end experience as we have full control over the interface, service, and the SDK client libraries. Any new feature that is rolled out to Azure Cosmos DB is first available on API for NoSQL accounts. NoSQL accounts provide support for querying items using the Structured Query Language (SQL) syntax.
1818

1919
## API for MongoDB
2020

learn-pr/wwl-azure/introduction-to-azure-app-service/includes/6-network-features.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ There are two main deployment types for Azure App Service:
99

1010
Azure App Service is a distributed system. The roles that handle incoming HTTP or HTTPS requests are called *front ends*. The roles that host the customer workload are called *workers*. All the roles in an App Service deployment exist in a multitenant network. Because there are many different customers in the same App Service scale unit, you can't connect the App Service network directly to your network.
1111

12-
Instead of connecting the networks, you need features to handle the various aspects of application communication. The features that handle requests to your app can't be used to solve problems when you're making calls from your app. Likewise, the features that solve problems for calls from your app can't be used to solve problems to your app.
12+
Instead of directly connecting the networks, App Service provides networking features for different aspects of application communication. Inbound features control traffic coming to your app, and outbound features govern connections your app makes to external endpoints. Use inbound features to solve inbound problems and outbound features to solve outbound problems.
1313

1414
| Inbound features | Outbound features |
1515
|--|--|
@@ -45,7 +45,7 @@ You can find the same information by running the following Azure CLI command in
4545
```bash
4646
az webapp show \
4747
--resource-group <group_name> \
48-
--name <app_name> \
48+
--name <app_name> \
4949
--query outboundIpAddresses \
5050
--output tsv
5151
```
@@ -54,8 +54,8 @@ To find all possible outbound IP addresses for your app, regardless of pricing t
5454

5555
```bash
5656
az webapp show \
57-
--resource-group <group_name> \
58-
--name <app_name> \
57+
--resource-group <group_name> \
58+
--name <app_name> \
5959
--query possibleOutboundIpAddresses \
6060
--output tsv
6161
```

0 commit comments

Comments
 (0)