Skip to content

Commit 81c99eb

Browse files
authored
Merge pull request #288750 from MicrosoftDocs/main
10/18/2024 PM Publish
2 parents 19a0bd1 + 9cf49e7 commit 81c99eb

File tree

137 files changed

+703
-819
lines changed

Some content is hidden

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

137 files changed

+703
-819
lines changed

articles/azure-functions/durable/durable-functions-external-events.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import azure.functions as func
6363
import azure.durable_functions as df
6464

6565
def orchestrator_function(context: df.DurableOrchestrationContext):
66-
approved = context.wait_for_external_event('Approval')
66+
approved = yield context.wait_for_external_event('Approval')
6767
if approved:
6868
# approval granted - do the approved action
6969
else:
@@ -169,7 +169,7 @@ def orchestrator_function(context: df.DurableOrchestrationContext):
169169
event2 = context.wait_for_external_event('Event2')
170170
event3 = context.wait_for_external_event('Event3')
171171

172-
winner = context.task_any([event1, event2, event3])
172+
winner = yield context.task_any([event1, event2, event3])
173173
if winner == event1:
174174
# ...
175175
elif winner == event2:
@@ -426,4 +426,4 @@ In this case, the instance ID is hardcoded as *MyInstanceId*.
426426
> [Learn how to implement error handling](durable-functions-error-handling.md)
427427
428428
> [!div class="nextstepaction"]
429-
> [Run a sample that waits for human interaction](durable-functions-phone-verification.md)
429+
> [Run a sample that waits for human interaction](durable-functions-phone-verification.md)
2.39 KB
Loading
56 Bytes
Loading
-15.2 KB
Loading
-87 Bytes
Loading
-81.3 KB
Loading
1.99 KB
Loading

articles/azure-maps/tutorial-ev-routing.md

Lines changed: 37 additions & 134 deletions
Large diffs are not rendered by default.

articles/azure-netapp-files/TOC.yml

Lines changed: 37 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -103,42 +103,44 @@
103103
href: large-volumes-requirements-considerations.md
104104
- name: Performance
105105
items:
106-
- name: Performance considerations for Azure NetApp Files
107-
href: azure-netapp-files-performance-considerations.md
108-
- name: Performance benchmark test recommendations for Azure NetApp Files
109-
href: azure-netapp-files-performance-metrics-volumes.md
110-
- name: Performance benchmarks for Linux
111-
href: performance-benchmarks-linux.md
112-
- name: Large volume performance benchmarks for Linux
113-
href: performance-large-volumes-linux.md
114-
- name: Performance impact of Kerberos on NFSv4.1
115-
href: performance-impact-kerberos.md
116-
- name: Performance considerations for cool access
117-
href: performance-considerations-cool-access.md
118-
- name: Oracle database performance on Azure NetApp Files single volumes
119-
href: performance-oracle-single-volumes.md
120-
- name: Oracle database performance on Azure NetApp Files multiple volumes
121-
href: performance-oracle-multiple-volumes.md
122-
- name: Azure NetApp Files datastore performance benchmarks for AVS
123-
href: performance-benchmarks-azure-vmware-solution.md
124-
- name: AVS datastore performance considerations for Azure NetApp Files
125-
href: performance-azure-vmware-solution-datastore.md
126-
- name: Performance reference for Azure NetApp Files
106+
- name: Best practices and considerations
127107
items:
128-
- name: Linux direct I/O best practices
129-
href: performance-linux-direct-io.md
130-
- name: Linux filesystem cache best practices
131-
href: performance-linux-filesystem-cache.md
132-
- name: Linux NFS mount options best practices
133-
href: performance-linux-mount-options.md
134-
- name: Linux concurrency best practices
135-
href: performance-linux-concurrency-session-slots.md
136-
- name: Linux NFS read-ahead best practices
137-
href: performance-linux-nfs-read-ahead.md
138-
- name: SMB performance best practices
139-
href: azure-netapp-files-smb-performance.md
140-
- name: Azure virtual machine SKUs' best practices
141-
href: performance-virtual-machine-sku.md
108+
- name: General performance considerations for Azure NetApp Files
109+
href: azure-netapp-files-performance-considerations.md
110+
- name: Linux direct I/O best practices
111+
href: performance-linux-direct-io.md
112+
- name: Linux filesystem cache best practices
113+
href: performance-linux-filesystem-cache.md
114+
- name: Linux NFS mount options best practices
115+
href: performance-linux-mount-options.md
116+
- name: Linux concurrency best practices
117+
href: performance-linux-concurrency-session-slots.md
118+
- name: Linux NFS read-ahead best practices
119+
href: performance-linux-nfs-read-ahead.md
120+
- name: SMB performance best practices
121+
href: azure-netapp-files-smb-performance.md
122+
- name: Azure virtual machine SKUs best practices
123+
href: performance-virtual-machine-sku.md
124+
- name: Performance considerations for cool access tiering
125+
href: performance-considerations-cool-access.md
126+
- name: Performance impact of Kerberos on NFSv4.1
127+
href: performance-impact-kerberos.md
128+
- name: AVS datastore performance considerations for Azure NetApp Files
129+
href: performance-azure-vmware-solution-datastore.md
130+
- name: Performance tests
131+
items:
132+
- name: Performance benchmark test recommendations for Azure NetApp Files
133+
href: azure-netapp-files-performance-metrics-volumes.md
134+
- name: Regular volume performance benchmarks for Linux
135+
href: performance-benchmarks-linux.md
136+
- name: Large volume performance benchmarks for Linux
137+
href: performance-large-volumes-linux.md
138+
- name: Oracle database performance on Azure NetApp Files single volumes
139+
href: performance-oracle-single-volumes.md
140+
- name: Oracle database performance on Azure NetApp Files multiple volumes
141+
href: performance-oracle-multiple-volumes.md
142+
- name: Azure NetApp Files datastore performance benchmarks for AVS
143+
href: performance-benchmarks-azure-vmware-solution.md
142144
- name: Application volume groups
143145
items:
144146
- name: Understand application volume groups

articles/azure-netapp-files/access-smb-volume-from-windows-client.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.service: azure-netapp-files
55
ms.topic: how-to
66
author: b-ahibbard
77
ms.author: anfdocs
8-
ms.date: 08/20/2024
8+
ms.date: 10/18/2024
99
---
1010
# Access SMB volumes from Microsoft Entra joined Windows virtual machines
1111

@@ -91,7 +91,7 @@ The configuration process takes you through five process:
9191
* `$servicePrincipalName`: The SPN details from mounting the Azure NetApp Files volume. Use the CIFS/FQDN format. For example: `CIFS/NETBIOS-1234.CONTOSO.COM`
9292
* `$targetApplicationID`: Application (client) ID of the Microsoft Entra application.
9393
* `$domainCred`: use `Get-Credential` (should be an AD DS domain administrator)
94-
* `$cloudCred`: use `Get-Credential` (should be a Microsoft Entra Global Administrator)
94+
* `$cloudCred`: use `Get-Credential` (likely a [Hybrid Identity Administrator](/entra/identity/role-based-access-control/permissions-reference#hybrid-identity-administrator))
9595
9696
```powershell
9797
$servicePrincipalName = CIFS/NETBIOS-1234.CONTOSO.COM

0 commit comments

Comments
 (0)