Skip to content

Commit ff19d83

Browse files
authored
Merge branch 'MicrosoftDocs:main' into FixingCloudBursting
2 parents 7bc9cf2 + 85af13f commit ff19d83

30 files changed

+333
-181
lines changed

articles/api-management/api-management-howto-api-inspector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Detailed steps follow.
9797
9898
```json
9999
{
100-
"credentialsExpireAfter": PT1H,
100+
"credentialsExpireAfter": "PT1H",
101101
"apiId": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}",
102102
"purposes": ["tracing"]
103103
}

articles/azure-netapp-files/application-volume-group-manage-volumes-oracle.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,10 @@ description: Describes how to manage a volume from its application volume group
44
services: azure-netapp-files
55
documentationcenter: ''
66
author: b-hchen
7-
manager: ''
8-
editor: ''
9-
10-
ms.assetid:
117
ms.service: azure-netapp-files
128
ms.workload: storage
13-
ms.tgt_pltfrm: na
149
ms.topic: how-to
15-
ms.date: 04/19/2024
10+
ms.date: 04/17/2025
1611
ms.author: anfdocs
1712
---
1813
# Manage volumes in an application volume group for Oracle
@@ -39,7 +34,7 @@ You can manage a volume from its volume group. You can resize, delete, or change
3934
> Changing the protocol type involves reconfiguration at the Linux host. When using dNFS, it's not recommended to mix volumes using NFSv3 and NFSv4.1.
4035
4136
> [!NOTE]
42-
> Using Azure NetApp Files built-in automated snapshots doesn't create database consistent backups. Instead, use data protection software such as [AzAcSnap](azacsnap-introduction.md) that supports snapshot-based data protection for Oracle.
37+
> Using Azure NetApp Files built-in automated snapshots doesn't create database consistent backups. Instead, use data protection software such as [SnapCenter](https://docs.netapp.com/us-en/snapcenter/protect-azure/protect-applications-azure-netapp-files.html) and [AzAcSnap](azacsnap-introduction.md) that supports snapshot-based data protection for Oracle.
4338
4439
* **Change Throughput**
4540
You can adapt the throughput of the volume.

articles/azure-resource-manager/bicep/modules.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ Use the symbolic name to reference the module in another part of the Bicep file.
6565

6666
The path can be either a local file or a file in a registry. The local file can be either a Bicep file or an ARM template for JSON. For more information, see [Path to a module](#path-to-a-module).
6767

68-
The `name` property is required. It becomes the name of the nested deployment resource in the generated template.
68+
The `name` property is optional. It becomes the name of the nested deployment resource in the generated template. If no name is provided, a GUID will be generated as the name for the nested deployment resource.
6969

70-
If a module with a static name is deployed concurrently to the same scope, there's the potential for one deployment to interfere with the output from the other deployment. For example, if two Bicep files use the same module with the same static name (`examplemodule`) and are targeted to the same resource group, one deployment might show the wrong output. If you're concerned about concurrent deployments to the same scope, give your module a unique name.
70+
If a module with a static name is deployed concurrently to the same scope, there's the potential for one deployment to interfere with the output from the other deployment. For example, if two Bicep files use the same module with the same static name (`examplemodule`) and are targeted to the same resource group, one deployment might show the wrong output. If you're concerned about concurrent deployments to the same scope, give your module a unique name. Another way to ensure unique module names is to leave out the `name` property, an unique module name will be generated automatically.
7171

7272
The following example concatenates the deployment name to the module name. If you provide a unique name for the deployment, the module name is also unique.
7373

@@ -78,6 +78,14 @@ module stgModule 'storageAccount.bicep' = {
7878
}
7979
```
8080

81+
Not providing any module name is also valid. A GUID will be generate as the module name.
82+
83+
```bicep
84+
module stgModule 'storageAccount.bicep' = {
85+
scope: resourceGroup('demoRG')
86+
}
87+
```
88+
8189
If you need to *specify a scope* that's different than the scope for the main file, add the scope property. For more information, see [Set module scope](#set-module-scope).
8290

8391
```bicep

articles/batch/TOC.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@
120120
href: batch-custom-image-pools-to-azure-compute-gallery-migration-guide.md
121121
- name: Low-priority virtual machines
122122
href: low-priority-vms-retirement-migration-guide.md
123+
- name: Classic compute node communication model
124+
href: batch-pools-to-simplified-compute-node-communication-model-migration-guide.md
123125
- name: How-to guides
124126
items:
125127
- name: Manage Batch accounts
@@ -155,7 +157,7 @@
155157
href: credential-access-key-vault.md
156158
- name: Role-based access control for Azure Batch service
157159
displayName: rbac, access control
158-
href: batch-role-based-access-control.md
160+
href: batch-role-based-access-control.md
159161
- name: Copy files and applications to pool nodes
160162
items:
161163
- name: Copying applications and data to pool nodes
@@ -232,7 +234,7 @@
232234
displayName: release, job release
233235
href: batch-job-prep-release.md
234236
- name: Configure Container Data Isolation Task
235-
href: batch-container-isolation-task.md
237+
href: batch-container-isolation-task.md
236238
- name: Concurrent node tasks
237239
displayName: variable, maximize
238240
href: batch-parallel-node-tasks.md

0 commit comments

Comments
 (0)