Skip to content

Commit 502e9aa

Browse files
Merge pull request #305719 from MicrosoftDocs/main
Auto Publish – main to live - 2025-09-18 05:00 UTC
2 parents 96a2598 + a870960 commit 502e9aa

22 files changed

Lines changed: 349 additions & 37 deletions

articles/azure-netapp-files/manage-cool-access.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: azure-netapp-files
55
author: b-ahibbard
66
ms.service: azure-netapp-files
77
ms.topic: how-to
8-
ms.date: 09/16/2025
8+
ms.date: 09/17/2025
99
ms.author: anfdocs
1010
ms.custom:
1111
- build-2025
@@ -88,7 +88,7 @@ There are several considerations to be aware of when using cool access.
8888

8989
## Enable cool access
9090

91-
You must register for cool access with the Premium or Ultra service levels before you can enable it at the capacity pool and volume levels. No registration is required for the Standard service level.
91+
You must register for cool access with the Flexible, Premium, or Ultra service levels before you can enable it at the capacity pool and volume levels. No registration is required for the Standard service level.
9292

9393
### Register the feature
9494

@@ -138,7 +138,7 @@ No registration is required to use cool access at the Standard service level.
138138
139139
# [Flexible](#tab/flexible)
140140
141-
Cool access with the Flexible service level is currently in preview. You must register the feature before using it.
141+
You must register cool access with the Flexible service level before using it.
142142
143143
1. Register the feature:
144144

articles/azure-netapp-files/whats-new.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ Azure NetApp Files is updated regularly. This article provides a summary about t
1919

2020
## September 2025
2121

22+
* [Flexible service level](manage-cool-access.md?tabs=flexible#register-the-feature) with cool access is now generally available (GA)
23+
24+
Azure NetApp Files supports cool access for the Flexible service level, enabling you to further optimize performance and cost by automatically tiering infrequently accessed data to lower-cost Azure storage accounts. This enhancement builds on the Flexible service level's ability to decouple storage capacity and throughput, allowing precise resource alignment for diverse workloads while maintaining configured throughput levels—even with cool access enabled. These features help organizations reduce total cost of ownership without compromising performance. This feature is now generally available (GA).
25+
2226
* [Flexible service level](azure-netapp-files-set-up-capacity-pool.md) is now generally available (GA)
2327

2428
The [Flexible service level](azure-netapp-files-service-levels.md#Flexible) allows you to independently configure storage capacity and throughput, optimizing costs by right-sizing according to storage and performance requirements. With separate pricing for capacity and throughput, the Flexible service level prevents overprovisioning and supports up to 640 MiB/second per TiB. This throughput is five times the performance of the Ultra service level, making it ideal for demanding workloads and offering higher throughput for smaller capacity pools and adapting to changing requirements without the need for volume moves.

articles/azure-resource-manager/bicep/bicep-core-diagnostics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ If you need more information about a particular diagnostic code, select the **Fe
4242
| <a id='BCP025' />BCP025 | Error | The property `{property}` is declared multiple times in this object. Remove or rename the duplicate properties. |
4343
| <a id='BCP026' />BCP026 | Error | The output expects a value of type `{expectedType}`, but the provided value is of type `{actualType}`. |
4444
| <a id='BCP028' />BCP028 | Error | Identifier `{identifier}` is declared multiple times. Remove or rename the duplicates. |
45-
| <a id='BCP029' />BCP029 | Error | The resource type isn't valid. Specify a valid resource type of format `<types>@<apiVersion>`. |
45+
| <a id='BCP029' />[BCP029](./diagnostics/bcp029.md) | Error | The resource type isn't valid. Specify a valid resource type of format `<types>@<apiVersion>`. |
4646
| <a id='BCP030' />BCP030 | Error | The output type isn't valid. Specify one of the following types: `{ToQuotedString(validTypes)}`. |
4747
| <a id='BCP031' />BCP031 | Error | The parameter type isn't valid. Specify one of the following types: `{ToQuotedString(validTypes)}`. |
4848
| <a id='BCP032' />BCP032 | Error | The value must be a compile-time constant. |
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
title: BCP029
3+
description: The resource type isn't valid. Specify a valid resource type of format <types>@<apiVersion>.
4+
ms.topic: reference
5+
ms.custom: devx-track-bicep
6+
ms.date: 09/17/2025
7+
---
8+
9+
# Bicep diagnostic code - BCP029
10+
11+
This diagnostic occurs when you specify an invalid format of a resource type.
12+
13+
## Description
14+
15+
The resource type isn't valid. Specify a valid resource type of format \<types>@\<apiVersion>.
16+
17+
## Level
18+
19+
Error
20+
21+
## Solution
22+
23+
Use the valid format of resource type.
24+
25+
## Examples
26+
27+
The following example raises the diagnostic because the `Microsoft.Storage/storageAccounts` resource type requires an API version:
28+
29+
```bicep
30+
param location string = resourceGroup().location
31+
32+
resource storage 'Microsoft.Storage/storageAccounts' = {
33+
name: 'mystorageacct'
34+
location: location
35+
sku: {
36+
name: 'Standard_LRS'
37+
}
38+
kind: 'StorageV2'
39+
}
40+
```
41+
42+
You can fix the diagnostic by providing an API version:
43+
44+
```bicep
45+
param location string = resourceGroup().location
46+
47+
resource storage 'Microsoft.Storage/storageAccounts@2025-01-01' = {
48+
name: 'mystorageacct'
49+
location: location
50+
sku: {
51+
name: 'Standard_LRS'
52+
}
53+
kind: 'StorageV2'
54+
}
55+
```
56+
57+
## Next steps
58+
59+
For more information about Bicep diagnostics, see [Bicep core diagnostics](../bicep-core-diagnostics.md).

articles/azure-resource-manager/bicep/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -636,6 +636,8 @@ items:
636636
href: diagnostics/bcp009.md
637637
- name: BCP018
638638
href: diagnostics/bcp018.md
639+
- name: BCP029
640+
href: diagnostics/bcp029.md
639641
- name: BCP033
640642
href: diagnostics/bcp033.md
641643
- name: BCP035

articles/communication-services/tutorials/audio-quality-enhancements/includes/web.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: sloanster
66
ms.author: micahvivion
77

88
services: azure-communication-services
9-
ms.date: 06/28/2025
9+
ms.date: 09/17/2025
1010
ms.topic: include
1111
ms.service: azure-communication-services
1212
ms.subservice: calling
@@ -35,12 +35,13 @@ Key traits for echo cancelation:
3535
> **Noise Suppression** features are available in GA WebJS SDK version `1.28.4` or later, alongside the Azure Communication Services Calling Effects SDK version GA `1.1.2` or later. Alternatively, if you opt to use the public preview version, Calling SDK versions `1.24.2-beta.1` and later also support noise suppression.
3636
3737
> [!IMPORTANT]
38-
> **Echo Cancellation** features are available in public preview SDK version [1.37.1](https://github.com/Azure/Communication/blob/master/releasenotes/acs-javascript-calling-library-release-notes.md#1371-beta1-2025-06-16). Also note that to use echo cancelation you must use public preview audio effects SDK version beta version [1.21.1-beta](https://www.npmjs.com/package/@azure/communication-calling-effects/v/1.2.1-beta.1) or later.
38+
> **Echo Cancellation** features are available in GA WebJS SDK version [1.38.1](https://github.com/Azure/Communication/blob/master/releasenotes/acs-javascript-calling-library-release-notes.md#1381-2025-09-02) or later. Also note that to use echo cancelation you must use the audio effects SDK version GA version [1.31.1](https://www.npmjs.com/package/@azure/communication-calling-effects/v/1.3.1) or later. Alternatively, if you opt to use the public preview version, Calling SDK versions [1.38.1-beta.1](https://github.com/Azure/Communication/blob/master/releasenotes/acs-javascript-calling-library-release-notes.md#1381-beta1-2025-07-21) and later also support noise suppression.
3939
4040
> [!NOTE]
4141
> - Utilizing audio effects is available only on Chrome and Edge desktop browsers.
4242
> - The audio effects library isn't a standalone module and can't function independently. To utilize its capabilities the effects package must be integrated with the Azure Communication Services Calling client library for WebJS.
4343
> - If you use the GA version of the Calling SDK, you must use the [GA version](https://www.npmjs.com/package/@azure/communication-calling-effects/v/latest) of the Calling audio effects package.
44+
> - If you use the public preview version of the Calling SDK, you must use the [public prevew version](https://www.npmjs.com/package/@azure/communication-calling-effects/v/latest) of the Calling audio effects package.
4445
4546
## Install the Audio Effects Package
4647
Use the `npm install` command to install the Azure Communication Services Audio Effects SDK for JavaScript.

articles/healthcare-apis/known-issues.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Refer to the table for details about resolution dates or possible workarounds.
2020

2121
|Issue | Date discovered | Workaround | Date resolved |
2222
| :------------------------------------- | :------------ | :------------- | :------------- |
23+
| Customers are seeing inconsistent behavior with custom search parameters after reindex | Sept 16, 2025 | We recently updated the infrastructure with a reindex operation, which caused the latest search parameters to be out of sync for a period ranging from minutes to potentially days. Please create a support ticket to get the parameters synchronized.||
2324
| Customers are unable to select storage account in the FHIR instance export configuration. The issue is caused by throttling due to a large number of resource groups and storage accounts, leading to errors like "Storage account doesn't exist" on the Export blade. | May 15, 2025 2:05 pm PST | PowerShell commands to configure the storage account for export manually:<br><br>Run this command to install the Az Module: <br>```Install-Module -Name Az```<br><br> If Az module is already installed:<br>```Update-Module -Name Az```<br><br> Connect to Azure Account:<br>```Connect-AzAccount```<br><br>Initialize the variable resourceGroupName, fhirServiceName, and storageAccountName:<br>```$resourceGroupName = "YOUR_RESOURCEGROUP_NAME"```<br>```$fhirServiceName = "YOUR_FHIRSERVICE_NAME"```<br>```$exportConfig = @{ "storageAccountName" = "YOUR_STORAGEACCOUNT_NAME" }```<br><br>Run this command to set the storage account for export:<br>```Set-AzResource -ResourceGroupName $resourceGroupName -ResourceType "Microsoft.HealthcareApis/services" -ResourceName $fhirServiceName -ApiVersion "2021-11-01" -Properties @{ "exportConfiguration" = $exportConfig }```<br><br>Running this command confirms if the setting was successful: <br>```Get-AzResource -ResourceGroupName $resourceGroupName -ResourceType "Microsoft.HealthcareApis/services" -ResourceName $fhirServiceName \| Select-Object -ExpandProperty Properties \| Select-Object -ExpandProperty exportConfiguration```| -- |
2425
| Patient-everything operation returns a 500 error when run using a SMART patient fhirUser token. | April 9, 2025 | A fix is being released in the upcoming FHIR release. | |
2526
|Customers can't access FHIR, DICOM, or Medtech through the portal. | October 31, 2024 1:00 pm PST | ARM calls are still operational, and there's no disruption to existing services. | November 1, 2024 |

articles/reliability/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,8 @@ items:
280280
href: ../databox/data-box-disk-faq.yml?toc=/azure/reliability/toc.json&bc=/azure/reliability/breadcrumb/toc.json#how-can-i-recover-my-data-if-an-entire-region-fails-
281281
- name: Azure Elastic SAN
282282
href: reliability-elastic-san.md
283+
- name: Azure Files
284+
href: reliability-storage-files.md
283285
- name: Azure NetApp Files
284286
href: reliability-netapp-files.md
285287
- name: Azure Queue Storage

articles/reliability/availability-zones-enable-zone-resiliency.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ This table summarizes the availability zone support for many Azure services and
152152
| [Azure Elastic SAN](reliability-elastic-san.md#availability-zone-migration) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | | Redeployment |
153153
| [Azure Event Hubs](./reliability-event-hubs.md) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | | Always zone-resilient |
154154
| [Azure ExpressRoute](/azure/expressroute/expressroute-howto-gateway-migration-portal) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | | Modification |
155-
| [Azure Files](migrate-storage.md) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | | Enablement |
155+
| [Azure Files](./reliability-storage-files.md#availability-zone-support) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | | Enablement |
156156
| [Azure Firewall](./reliability-firewall.md#availability-zone-support) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | Modification |
157157
| [Azure Functions](reliability-functions.md#availability-zone-migration) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | | Redeployment |
158158
| [Azure HDInsight](reliability-hdinsight.md#availability-zone-migration) | | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | Redeployment |

articles/reliability/availability-zones-service-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Some Azure services are *nonregional*, which means that you don't deploy the ser
6060
| [Azure Event Grid](reliability-event-grid.md#availability-zone-support) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | |
6161
| [Azure Event Hubs](/azure/event-hubs/event-hubs-business-continuity-outages-disasters#availability-zones) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | |
6262
| [Azure ExpressRoute](../expressroute/designing-for-high-availability-with-expressroute.md) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | |
63-
| [AzureFiles](../storage/common/storage-redundancy.md#supported-azure-storage-services) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | |
63+
| [Azure Files](./reliability-storage-files.md#availability-zone-support) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | |
6464
| [Azure Firewall](reliability-firewall.md#availability-zone-support) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: |
6565
| [Azure Firewall Manager](../firewall-manager/quick-firewall-policy.md) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | |
6666
| [Azure Functions](./reliability-functions.md#availability-zone-support) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | |

0 commit comments

Comments
 (0)