Skip to content

Commit ea9f3b1

Browse files
authored
Merge pull request #227573 from MicrosoftDocs/main
Merge main to live, 4 AM
2 parents 9d990d6 + a78e728 commit ea9f3b1

File tree

97 files changed

+1095
-928
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+1095
-928
lines changed

articles/active-directory-b2c/azure-ad-b2c-global-identity-proof-of-concept-funnel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The following block diagram shows the proof of concept. The guidance will show h
2828

2929
1. [Create a tenant.](../active-directory-b2c/tutorial-create-tenant.md)
3030

31-
1. [Configure federations to each Azure AD B2C tenant/policy combination](tenant-management.md)
31+
1. [Configure federations to each Azure AD B2C tenant/policy combination](../active-directory-b2c/tutorial-create-user-flows.md?pivots=b2c-user-flow)
3232

3333
1. Configure client_id mapping to region – use [lookup claim transformation](general-transformations.md) to emulate.
3434

articles/active-directory/authentication/how-to-mfa-number-match.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ GET https://graph.microsoft.com/beta/authenticationMethodsPolicy/authenticationM
305305

306306
### When will my tenant see number matching if I don't use the Azure portal or Graph API to roll out the change?
307307

308-
Number match will be enabled for all users of Microsoft Authenticator push notifications after May 8, 2023. We had previously announced that we will remove the admin controls and enforce the number match experience tenant-wide for all users of Microsoft Authenticator push notifications starting May 8, 2023. After listening to customers, we will extend the availability of the rollout controls for a few more weeks.
308+
Number match will be enabled for all users of Microsoft Authenticator push notifications after May 8, 2023. We had previously announced that we will remove the admin controls and enforce the number match experience tenant-wide for all users of Microsoft Authenticator push notifications starting February 27, 2023. After listening to customers, we will extend the availability of the rollout controls for a few more weeks.
309309

310310
Relevant services will begin deploying these changes after May 8, 2023 and users will start to see number match in approval requests. As services deploy, some may see number match while others don't. To ensure consistent behavior for all your users, we highly recommend you use the Azure portal or Graph API to roll out number match for all Microsoft Authenticator users.
311311

articles/active-directory/reports-monitoring/reference-azure-ad-sla-performance.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -44,20 +44,20 @@ To help you plan for moving workloads to Azure AD, we publish past SLA performan
4444

4545
The SLA attainment is truncated at three places after the decimal. Numbers are not rounded up, so actual SLA attainment is higher than indicated.
4646

47-
| Month | 2021 | 2022 |
48-
| --- | --- | --- |
49-
| January | | 99.998% |
50-
| February | 99.999% | 99.999% |
51-
| March | 99.568% | 99.998% |
52-
| April | 99.999% | 99.999% |
53-
| May | 99.999% | 99.999% |
54-
| June | 99.999% | 99.999% |
55-
| July | 99.999% | 99.999% |
56-
| August | 99.999% | 99.999% |
57-
| September | 99.999% | 99.998% |
58-
| October | 99.999% | 99.999% |
59-
| November | 99.998% | 99.999% |
60-
| December | 99.978% | 99.999% |
47+
| Month | 2021 | 2022 | 2023 |
48+
| --- | --- | --- | --- |
49+
| January | | 99.998% | 99.998% |
50+
| February | 99.999% | 99.999% | |
51+
| March | 99.568% | 99.998% | |
52+
| April | 99.999% | 99.999% | |
53+
| May | 99.999% | 99.999% | |
54+
| June | 99.999% | 99.999% | |
55+
| July | 99.999% | 99.999% | |
56+
| August | 99.999% | 99.999% | |
57+
| September | 99.999% | 99.998% | |
58+
| October | 99.999% | 99.999% | |
59+
| November | 99.998% | 99.999% | |
60+
| December | 99.978% | 99.999% | |
6161

6262
### How is Azure AD SLA measured?
6363

articles/aks/azure-disk-csi.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In addition to in-tree driver features, Azure Disks CSI driver supports the foll
3030
- `Premium_ZRS`, `StandardSSD_ZRS` disk types are supported. ZRS disk could be scheduled on the zone or non-zone node, without the restriction that disk volume should be co-located in the same zone as a given node. For more information, including which regions are supported, see [Zone-redundant storage for managed disks](../virtual-machines/disks-redundancy.md).
3131
- [Snapshot](#volume-snapshots)
3232
- [Volume clone](#clone-volumes)
33-
- [Resize disk PV without downtime(Preview)](#resize-a-persistent-volume-without-downtime-preview)
33+
- [Resize disk PV without downtime](#resize-a-persistent-volume-without-downtime)
3434

3535
> [!NOTE]
3636
> Depending on the VM SKU that's being used, the Azure Disks CSI driver might have a per-node volume limit. For some powerful VMs (for example, 16 cores), the limit is 64 volumes per node. To identify the limit per VM SKU, review the **Max data disks** column for each VM SKU offered. For a list of VM SKUs offered and their corresponding detailed capacity limits, see [General purpose virtual machine sizes][general-purpose-machine-sizes].
@@ -281,17 +281,7 @@ outfile
281281
test.txt
282282
```
283283

284-
## Resize a persistent volume without downtime (Preview)
285-
286-
> [!IMPORTANT]
287-
> Azure Disks CSI driver supports expanding PVCs without downtime (Preview).
288-
> Follow this [link][expand-an-azure-managed-disk] to register the disk online resize feature.
289-
>
290-
> az feature register --namespace Microsoft.Compute --name LiveResize
291-
>
292-
> az feature show --namespace Microsoft.Compute --name LiveResize
293-
>
294-
> Follow this [link][expand-pvc-with-downtime] to expand PVCs **with** downtime if you cannot try preview feature.
284+
## Resize a persistent volume without downtime
295285

296286
You can request a larger volume for a PVC. Edit the PVC object, and specify a larger size. This change triggers the expansion of the underlying volume that backs the PV.
297287

@@ -460,4 +450,4 @@ The output of the command resembles the following example:
460450
[az-on-demand-bursting]: ../virtual-machines/disk-bursting.md#on-demand-bursting
461451
[enable-on-demand-bursting]: ../virtual-machines/disks-enable-bursting.md?tabs=azure-cli
462452
[az-premium-ssd]: ../virtual-machines/disks-types.md#premium-ssds
463-
[general-purpose-machine-sizes]: ../virtual-machines/sizes-general.md
453+
[general-purpose-machine-sizes]: ../virtual-machines/sizes-general.md

articles/app-service/quickstart-arc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Get a sample Node.js app using Git and deploy it using [ZIP deploy](deploy-zip.m
5252
git clone https://github.com/Azure-Samples/nodejs-docs-hello-world
5353
cd nodejs-docs-hello-world
5454
zip -r package.zip .
55-
az webapp config appsettings set --resource-group myResourceGroup --name --settings SCM_DO_BUILD_DURING_DEPLOYMENT=true
55+
az webapp config appsettings set --resource-group myResourceGroup --name <app-name> --settings SCM_DO_BUILD_DURING_DEPLOYMENT=true
5656
az webapp deployment source config-zip --resource-group myResourceGroup --name <app-name> --src package.zip
5757
```
5858

articles/azure-arc/data/validation-program.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ To see how all Azure Arc-enabled components are validated, see [Validation progr
3434

3535
|Solution and version | Kubernetes version | Azure Arc-enabled data services version | SQL engine version | PostgreSQL server version
3636
|-----|-----|-----|-----|-----|
37+
| Unity XT |1.25.4|1.15.0_2023-01-10|16.0.816.19223 |Not validated|
3738
| PowerStore T|1.25.4|1.15.0_2023-01-10|16.0.816.19223 |Not validated|
3839
| Dell EMC PowerFlex |1.21.5|1.4.1_2022-03-08|15.0.2255.119 | postgres 12.3 (Ubuntu 12.3-1) |
3940
| PowerFlex version 3.6 |1.21.5|1.4.1_2022-03-08|15.0.2255.119 | postgres 12.3 (Ubuntu 12.3-1) |
@@ -45,6 +46,7 @@ To see how all Azure Arc-enabled components are validated, see [Validation progr
4546

4647
|Solution and version | Kubernetes version | Azure Arc-enabled data services version | SQL engine version | PostgreSQL server version
4748
|-----|-----|-----|-----|-----|
49+
|HPE Superdome Flex 280 | 1.26.0 | 1.15.0_2023-01-10 | 16.0.816.19223 | Postgres 14.5(ubuntu 20.04)|
4850
|HPE Apollo 4200 Gen10 Plus | 1.22.6 | 1.11.0_2022-09-13 |16.0.312.4243|12.3 (Ubuntu 12.3-1)|
4951
|HPE Superdome Flex 280|1.20.0|1.8.0_2022-06-14|16.0.41.7339|12.3 (Ubuntu 12.3-1)
5052

articles/azure-video-indexer/deploy-with-bicep.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In this tutorial, you create an Azure Video Indexer account by using [Bicep](../
2323

2424
The Bicep file used in this tutorial is:
2525

26-
:::code language="bicep" source="~/media-services-video-indexer/ARM-Quick-Start/avam.template.bicep":::
26+
:::code language="bicep" source="~/media-services-video-indexer/Deploy-Samples/ArmTemplates/avam.template.bicep":::
2727

2828
One Azure resource is defined in the bicep file:
2929

0 commit comments

Comments
 (0)