Skip to content

Commit 2c5bebd

Browse files
authored
Merge pull request #227957 from MicrosoftDocs/main
2/20 AM Publish
2 parents a16f719 + 4b3b787 commit 2c5bebd

32 files changed

+310
-284
lines changed

articles/active-directory-b2c/technical-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The primary resources you work with in an Azure AD B2C tenant are:
3838
An Azure AD B2C tenant is the first resource you need to create to get started with Azure AD B2C. Learn how to:
3939

4040
* [Create an Azure Active Directory B2C tenant](tutorial-create-tenant.md).
41-
* [Manage your Azure AD B2C tenant](tenant-management.md)
41+
* [Manage your Azure AD B2C tenant](tenant-management-manage-administrator.md)
4242

4343
## Accounts in Azure AD B2C
4444

articles/active-directory-b2c/user-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In Azure Active Directory B2C (Azure AD B2C), there are several types of account
2121
The following types of accounts are available:
2222

2323
- **Work account** - A work account can access resources in a tenant, and with an administrator role, can manage tenants.
24-
- **Guest account** - A guest account can only be a Microsoft account or an Azure AD user that can be used to share administration responsibilities such as [managing a tenant](tenant-management.md).
24+
- **Guest account** - A guest account can only be a Microsoft account or an Azure AD user that can be used to share administration responsibilities such as [managing a tenant](tenant-management-manage-administrator.md).
2525
- **Consumer account** - A consumer account is used by a user of the applications you've registered with Azure AD B2C. Consumer accounts can be created by:
2626
- The user going through a sign-up user flow in an Azure AD B2C application
2727
- Using Microsoft Graph API

articles/active-directory/develop/scenario-desktop-acquire-token-device-code-flow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ static async Task<AuthenticationResult> GetATokenForGraph()
6868
}
6969
catch (MsalUiRequiredException ex)
7070
{
71-
// No token found in the cache or AAD insists that a form interactive auth is required (e.g. the tenant admin turned on MFA)
71+
// No token found in the cache or Azure AD insists that a form interactive auth is required (e.g. the tenant admin turned on MFA)
7272
// If you want to provide a more complex user experience, check out ex.Classification
7373
7474
return await AcquireByDeviceCodeAsync(pca);
@@ -253,7 +253,7 @@ if accounts:
253253
result = app.acquire_token_silent(config["scope"], account=chosen)
254254

255255
if not result:
256-
logging.info("No suitable token exists in cache. Let's get a new one from AAD.")
256+
logging.info("No suitable token exists in cache. Let's get a new one from Azure AD.")
257257

258258
flow = app.initiate_device_flow(scopes=config["scope"])
259259
if "user_code" not in flow:

articles/active-directory/governance/understanding-lifecycle-workflows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ For delegated scenarios, the admin needs one of the following [Azure AD roles](/
3333
- Global reader
3434
- Lifecycle workflows administrator
3535

36-
## Restrictions
36+
## Limits
3737

3838

39-
|Column1 |Limit |
39+
|Category |Limit |
4040
|---------|---------|
4141
|Number of Workflows | 50 per tenant |
4242
|Number of Tasks | 25 per workflow |

articles/api-management/how-to-self-hosted-gateway-on-kubernetes-in-production.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Request throttling in a self-hosted gateway can be enabled by using the API Mana
186186
## Security
187187
The self-hosted gateway is able to run as non-root in Kubernetes allowing customers to run the gateway securely.
188188

189-
Here's an example of the security context for the self-hosted gateway:
189+
Here's an example of the security context for the self-hosted gateway container:
190190
```yml
191191
securityContext:
192192
allowPrivilegeEscalation: false

articles/azure-monitor/essentials/prometheus-metrics-enable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ Deploy the template with the parameter file using any valid method for deploying
295295

296296
## Verify Deployment
297297

298-
Run the following command to which verify that the daemon set was deployed properly:
298+
Run the following command to verify that the daemon set was deployed properly:
299299

300300
```
301301
kubectl get ds ama-metrics-node --namespace=kube-system

articles/azure-signalr/server-graceful-shutdown.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ In general, there will be four stages in a graceful shutdown process:
4444

4545
Azure SignalR Service will try to reroute the client connection on this server to another valid server.
4646

47-
In this scenario, `OnConnectedAsync` and `OnDisconnectedAsync` will be triggered on the new server and the old server respectively with an `IConnectionMigrationFeature` set in the `Context`, which can be used to identify if the client connection was being migrated-in our migrated-out. It could be useful especially for stateful scenarios.
47+
In this scenario, `OnConnectedAsync` and `OnDisconnectedAsync` will be triggered on the new server and the old server respectively with an `IConnectionMigrationFeature` set in the `Context`, which can be used to identify if the client connection was being migrated-in or migrated-out. It could be useful especially for stateful scenarios.
4848

4949
The client connection will be immediately migrated after the current message has been delivered, which means the next message will be routed to the new server.
5050

articles/azure-signalr/signalr-howto-troubleshoot-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ public class ThreadPoolStarvationDetector : EventListener
389389
{
390390
// See: https://learn.microsoft.com/dotnet/framework/performance/thread-pool-etw-events#threadpoolworkerthreadadjustmentadjustment
391391
if (eventData.EventId == EventIdForThreadPoolWorkerThreadAdjustmentAdjustment &&
392-
eventData.Payload[3] as uint? == ReasonForStarvation)
392+
eventData.Payload[2] as uint? == ReasonForStarvation)
393393
{
394394
_logger.LogWarning("Thread pool starvation detected!");
395395
}

articles/backup/restore-sql-database-azure-vm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ To relocate the database files from the target restore server, you can frame a T
220220
GO
221221
```
222222

223-
If there are more than two files for the database, you can add additional move clauses to the restore query. You can also use SSMS for database recovery using `.bak` files. [Learn more]( /sql/relational-databases/backup-restore/restore-a-database-backup-using-ssms?view=sql-server-ver16).
223+
If there are more than two files for the database, you can add additional `MOVE` clauses to the restore query. You can also use SSMS for database recovery using `.bak` files. [Learn more](/sql/relational-databases/backup-restore/restore-a-database-backup-using-ssms?view=sql-server-ver16).
224224

225225
>[!Note]
226226
>For large database recovery, we recommend you to use TSQL statements. If you want to relocate the specific database files, see the list of database files in the JSON format created during the **Restore as Files** operation.

articles/cosmos-db/whitepapers.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
11
---
2-
title: Whitepapers that describe Azure Cosmos DB concepts
3-
description: Get the list of whitepapers for Azure Cosmos DB, these whitepapers describe the concepts in depth.
2+
title: Conceptual whitepapers
3+
titleSuffix: Azure Cosmos DB
4+
description: This list of conceptual whitepapers describes various Azure Cosmos DB service, development, and data concepts in depth.
45
ms.service: cosmos-db
56
ms.subservice: nosql
67
author: seesharprun
78
ms.author: sidandrews
89
ms.reviewer: mjbrown
910
ms.topic: conceptual
10-
ms.date: 05/07/2021
11+
ms.date: 02/20/2023
1112
ms.custom: seodec18, ignite-2022
1213
---
1314

14-
# Azure Cosmos DB whitepapers
15+
# Azure Cosmos DB conceptual whitepapers
16+
1517
[!INCLUDE[NoSQL, MongoDB, Cassandra, Gremlin, Table](includes/appliesto-nosql-mongodb-cassandra-gremlin-table.md)]
1618

1719
Whitepapers allow you to explore Azure Cosmos DB concepts at a deeper level. This article provides you with a list of available whitepapers for Azure Cosmos DB.
1820

1921
| **Whitepaper** | **Description** |
2022
| --- | --- |
21-
|[Schema-Agnostic Indexing with Azure Cosmos DB](https://www.vldb.org/pvldb/vol8/p1668-shukla.pdf) | This paper describes Azure Cosmos DB's indexing subsystem. This paper includes Azure Cosmos DB capabilities such as document representation, query language, document indexing approach, core index support, and early production experiences.|
22-
| [Azure Cosmos DB and personal data](https://servicetrust.microsoft.com/ViewPage/TrustDocuments?command=Download&downloadType=Document&downloadId=87cc6456-4b23-473c-94d3-6c713b8b8956&docTab=6d000410-c9e9-11e7-9a91-892aae8839ad_FAQ_and_White_Papers)| This paper provides guidance for Azure Cosmos DB customers managing a cloud-based database, an on-premises database, or both, and who need to ensure that the personal data in their database systems is handled and protected in accordance with current rules. |
23-
|[Next-gen app development with Azure Cosmos DB](https://azure.microsoft.com/resources/microsoft-azure-cosmos-db-flexible-reliable-cloud-nosql-at-any-scale/) | This paper explores how Azure Cosmos DB is uniquely positioned to address the data requirements of modern apps. It includes three customers spotlights highlighting the API for MongoDB, simplified data management, cost-effective scalability, market-leading performance, and reliability. |
23+
| [Schema-Agnostic Indexing with Azure Cosmos DB](https://www.vldb.org/pvldb/vol8/p1668-shukla.pdf) | This paper describes Azure Cosmos DB's indexing subsystem. This paper includes a deep dive into various Azure Cosmos DB capabilities. These capabilities include; document representation, query language, document indexing approach, core index support, and early production experiences. |
24+
| [Azure Cosmos DB and personal data](https://servicetrust.microsoft.com/ViewPage/TrustDocuments?command=Download&downloadType=Document&downloadId=87cc6456-4b23-473c-94d3-6c713b8b8956&docTab=6d000410-c9e9-11e7-9a91-892aae8839ad_FAQ_and_White_Papers) | This paper provides guidance for Azure Cosmos DB customers managing a cloud-based database, an on-premises database, or both. This paper is ideal for customers who want to learn more about the rules related to how we handle and protect their personal data in their database systems. |
25+
| [Next-gen app development with Azure Cosmos DB](https://azure.microsoft.com/resources/microsoft-azure-cosmos-db-flexible-reliable-cloud-nosql-at-any-scale/) | This paper explores how we uniquely positioned Azure Cosmos DB to address the data requirements of modern apps. It includes three customers spotlights highlighting the API for MongoDB, simplified data management, cost-effective scalability, market-leading performance, and reliability. |
26+
| [Cloud-Scale Data for Spring Developers](https://azure.github.io/cloud-scale-data-for-devs-guide/) | This paper helps you build cloud-native Java applications in Azure. This paper helps you gain insights about using NoSQL and why you should consider Azure Cosmos DB, our fully managed, distributed NoSQL database service on Azure. |
27+
28+
## Next steps
29+
30+
- Learn about [common Azure Cosmos DB use cases](use-cases.md)

0 commit comments

Comments
 (0)