Skip to content

Commit f4d5f85

Browse files
authored
Merge pull request #185323 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/MicrosoftDocs/azure-docs (branch master)
2 parents c5ba2b2 + f023af4 commit f4d5f85

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

articles/azure-functions/durable/durable-functions-orchestrations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ A few notes on the column values:
158158

159159
* **PartitionKey**: Contains the instance ID of the orchestration.
160160
* **EventType**: Represents the type of the event. May be one of the following types:
161-
* **OrchestrationStarted**: The orchestrator function resumed from an await or is running for the first time. The `Timestamp` column is used to populate the deterministic value for the `CurrentUtcDateTime` (.NET), `currentUtcDateTime` (JavaScript), and `current_utc_datetime` (Python) APIs.
161+
* **OrchestratorStarted**: The orchestrator function resumed from an await or is running for the first time. The `Timestamp` column is used to populate the deterministic value for the `CurrentUtcDateTime` (.NET), `currentUtcDateTime` (JavaScript), and `current_utc_datetime` (Python) APIs.
162162
* **ExecutionStarted**: The orchestrator function started executing for the first time. This event also contains the function input in the `Input` column.
163163
* **TaskScheduled**: An activity function was scheduled. The name of the activity function is captured in the `Name` column.
164164
* **TaskCompleted**: An activity function completed. The result of the function is in the `Result` column.

articles/azure-sql/managed-instance/scripts/restore-geo-backup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ This script uses the following commands. Each command in the table links to comm
7070
| Command | Notes |
7171
|---|---|
7272
| [New-AzResourceGroup](/powershell/module/az.resources/New-AzResourceGroup) | Creates a resource group in which all resources are stored. |
73-
| [Get-AzSqlInstanceDatabaseGeoBackup](/powershell/module/az.sql/Get-AzSqlInstanceDatabaseGeoBackup) | Creates a geo-redundant backup of a SQL Managed Instance database. |
73+
| [Get-AzSqlInstanceDatabaseGeoBackup](/powershell/module/az.sql/Get-AzSqlInstanceDatabaseGeoBackup) | Gets one or more geo-backups from a database within an Azure SQL Managed Instance. |
7474
| [Restore-AzSqlInstanceDatabase](/powershell/module/az.sql/Restore-AzSqlInstanceDatabase) | Creates a database on SQL Managed Instance from geo-backup. |
7575
| [Remove-AzResourceGroup](/powershell/module/az.resources/remove-azresourcegroup) | Deletes a resource group, including all nested resources. |
7676

articles/service-bus-messaging/service-bus-dotnet-get-started-with-queues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ In this section, you'll add code to retrieve messages from the queue.
302302
string body = args.Message.Body.ToString();
303303
Console.WriteLine($"Received: {body}");
304304
305-
// complete the message. messages is deleted from the queue.
305+
// complete the message. message is deleted from the queue.
306306
await args.CompleteMessageAsync(args.Message);
307307
}
308308

articles/storage/blobs/network-file-system-protocol-known-issues.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ This article describes limitations and known issues of Network File System (NFS)
2525

2626
- GRS, GZRS, and RA-GRS redundancy options aren't supported when you create an NFS 3.0 storage account.
2727

28+
- NFS 3.0 and SSH File Transfer Protocol (SFTP) can't be enabled on the same storage account.
29+
2830
## NFS 3.0 features
2931

3032
The following NFS 3.0 features aren't yet supported.

articles/storage/blobs/secure-file-transfer-protocol-support-how-to.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,9 @@ To learn more about the SFTP permissions model, see [SFTP Permissions model](sec
125125
If you enabled password authentication, then the Azure generated password appears in a dialog box after the local user has been added.
126126

127127
> [!IMPORTANT]
128-
> You can't retrieve this password later, so make sure to copy the password, and then store it in a place where you can find it.
128+
> You can't retrieve this password later, so make sure you copy the password, and then store it in a place where you can find it.
129+
>
130+
> If you do lose your password, you can generate a new password.
129131
130132
If you chose to generate a new key pair, then you'll be prompted to download the private key of that key pair after the local user has been added.
131133

0 commit comments

Comments
 (0)