Skip to content

Commit f9777b9

Browse files
committed
edits
1 parent 1ef70d5 commit f9777b9

11 files changed

+22
-16
lines changed

.openpublishing.redirection.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
{
1414
"source_path": "articles/expressroute/expressroute-howto-set-global-reach-cli.md",
1515
"redirect_url": "/previous-versions/azure/expressroute/expressroute-howto-set-global-reach-cli",
16+
"redirect_document_id": false
1617
},
1718
{
1819
"source_path": "articles/digital-twins/how-to-integrate-maps.md",
@@ -4332,6 +4333,11 @@
43324333
"redirect_url": "/azure/azure-functions",
43334334
"redirect_document_id": false
43344335
},
4336+
{
4337+
"source_path_from_root": "/articles/azure-functions/durable-functions-create-first-csharp.md",
4338+
"redirect_url": "/azure/azure-functions/durable-functions-isolated-create-first-csharp.md",
4339+
"redirect_document_id": false
4340+
},
43354341
{
43364342
"source_path_from_root": "/articles/twilio-dotnet-how-to-use-for-voice-sms.md",
43374343
"redirect_url": "https://www.twilio.com/docs/usage/tutorials/serverless-webhooks-azure-functions-and-csharp",

articles/azure-functions/durable/durable-functions-configure-durable-functions-with-credentials.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ To complete this quickstart, you need:
2727

2828
If you don't have an existing durable function project deployed in Azure, we recommend that you start with one of the following quickstarts:
2929

30-
* [Create your first durable function - C#](durable-functions-create-first-csharp.md)
31-
* [Create your first durable function - JavaScript](quickstart-js-vscode.md)
32-
* [Create your first durable function - Python](quickstart-python-vscode.md)
33-
* [Create your first durable function - PowerShell](quickstart-powershell-vscode.md)
34-
* [Create your first durable function - Java](quickstart-java.md)
30+
* [Create your first Durable Functions app - C#](durable-functions-isolated-create-first-csharp.md)
31+
* [Create your first Durable Functions app - JavaScript](quickstart-js-vscode.md)
32+
* [Create your first Durable Functions app - Python](quickstart-python-vscode.md)
33+
* [Create your first Durable Functions app - PowerShell](quickstart-powershell-vscode.md)
34+
* [Create your first Durable Functions app - Java](quickstart-java.md)
3535

3636
## Configure your app to use managed identity credentials
3737

articles/azure-functions/durable/durable-functions-create-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The [Durable Functions](durable-functions-overview.md) extension for Azure Funct
1515

1616
> [!NOTE]
1717
>
18-
> * If you are developing durable functions in C#, you should instead consider [Visual Studio 2019 development](durable-functions-create-first-csharp.md).
18+
> * If you are developing durable functions in C#, you should instead consider [Visual Studio 2019 development](durable-functions-isolated-create-first-csharp.md).
1919
> * If you are developing durable functions in JavaScript, you should instead consider [Visual Studio Code development](./quickstart-js-vscode.md).
2020
2121
## Create a function app

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The monitor pattern refers to a flexible *recurring* process in a workflow - for
1616

1717
# [C#](#tab/csharp)
1818

19-
* [Complete the quickstart article](durable-functions-create-first-csharp.md)
19+
* [Complete the quickstart article](durable-functions-isolated-create-first-csharp.md)
2020
* [Clone or download the samples project from GitHub](https://github.com/Azure/azure-functions-durable-extension/tree/main/samples/precompiled)
2121

2222
# [JavaScript](#tab/javascript)

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Durable Functions is designed to work with all Azure Functions programming langu
3838
> This article uses tabs to support multiple versions of the Python programming model. The v2 model is generally available and is designed to provide a more code-centric way for authoring functions through decorators. For more details about how the v2 model works, refer to the [Azure Functions Python developer guide](../functions-reference-python.md).
3939
::: zone-end
4040

41-
Like Azure Functions, there are templates to help you develop Durable Functions using [Visual Studio](durable-functions-create-first-csharp.md), [Visual Studio Code](quickstart-js-vscode.md), and the [Azure portal](durable-functions-create-portal.md).
41+
Like Azure Functions, there are templates to help you develop Durable Functions using [Visual Studio](durable-functions-isolated-create-first-csharp.md), [Visual Studio Code](quickstart-js-vscode.md), and the [Azure portal](durable-functions-create-portal.md).
4242

4343
## Application patterns
4444

@@ -479,7 +479,7 @@ The async HTTP API pattern addresses the problem of coordinating the state of lo
479479

480480
![A diagram of the HTTP API pattern](./media/durable-functions-concepts/async-http-api.png)
481481

482-
Durable Functions provides **built-in support** for this pattern, simplifying or even removing the code you need to write to interact with long-running function executions. For example, the Durable Functions quickstart samples ([C#](durable-functions-create-first-csharp.md), [JavaScript](quickstart-js-vscode.md), [TypeScript](quickstart-ts-vscode.md), [Python](quickstart-python-vscode.md), [PowerShell](quickstart-powershell-vscode.md), and [Java](quickstart-java.md)) show a simple REST command that you can use to start new orchestrator function instances. After an instance starts, the extension exposes webhook HTTP APIs that query the orchestrator function status.
482+
Durable Functions provides **built-in support** for this pattern, simplifying or even removing the code you need to write to interact with long-running function executions. For example, the Durable Functions quickstart samples ([C#](durable-functions-isolated-create-first-csharp.md), [JavaScript](quickstart-js-vscode.md), [TypeScript](quickstart-ts-vscode.md), [Python](quickstart-python-vscode.md), [PowerShell](quickstart-powershell-vscode.md), and [Java](quickstart-java.md)) show a simple REST command that you can use to start new orchestrator function instances. After an instance starts, the extension exposes webhook HTTP APIs that query the orchestrator function status.
483483

484484
The following example shows REST commands that start an orchestrator and query its status. For clarity, some protocol details are omitted from the example.
485485

@@ -1501,7 +1501,7 @@ Durable Functions are billed the same as Azure Functions. For more information,
15011501

15021502
You can get started with Durable Functions in under 10 minutes by completing one of these language-specific quickstart tutorials:
15031503

1504-
* [C# using Visual Studio 2019](durable-functions-create-first-csharp.md)
1504+
* [C# using Visual Studio 2019](durable-functions-isolated-create-first-csharp.md)
15051505
* [JavaScript using Visual Studio Code](quickstart-js-vscode.md)
15061506
* [TypeScript using Visual Studio Code](quickstart-ts-vscode.md)
15071507
* [Python using Visual Studio Code](quickstart-python-vscode.md)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: devx-track-js
1212

1313
# Function chaining in Durable Functions - Hello sequence sample
1414

15-
Function chaining refers to the pattern of executing a sequence of functions in a particular order. Often the output of one function needs to be applied to the input of another function. This article describes the chaining sequence that you create when you complete the Durable Functions quickstart ([C#](durable-functions-create-first-csharp.md), [JavaScript](quickstart-js-vscode.md), [TypeScript](quickstart-ts-vscode.md), [Python](quickstart-python-vscode.md), [PowerShell](quickstart-powershell-vscode.md), or [Java](quickstart-java.md)). For more information about Durable Functions, see [Durable Functions overview](durable-functions-overview.md).
15+
Function chaining refers to the pattern of executing a sequence of functions in a particular order. Often the output of one function needs to be applied to the input of another function. This article describes the chaining sequence that you create when you complete the Durable Functions quickstart ([C#](durable-functions-isolated-create-first-csharp.md), [JavaScript](quickstart-js-vscode.md), [TypeScript](quickstart-ts-vscode.md), [Python](quickstart-python-vscode.md), [PowerShell](quickstart-powershell-vscode.md), or [Java](quickstart-java.md)). For more information about Durable Functions, see [Durable Functions overview](durable-functions-overview.md).
1616

1717
[!INCLUDE [durable-functions-prerequisites](../../../includes/durable-functions-prerequisites.md)]
1818

articles/azure-functions/durable/durable-functions-types-features-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ In addition to triggering orchestrator or entity functions, the *durable client*
5757

5858
## Next steps
5959

60-
To get started, create your first durable function in [C#](durable-functions-create-first-csharp.md), [JavaScript](quickstart-js-vscode.md), [Python](quickstart-python-vscode.md), [PowerShell](quickstart-powershell-vscode.md), or [Java](quickstart-java.md).
60+
To get started, create your first durable function in [C#](durable-functions-isolated-create-first-csharp.md), [JavaScript](quickstart-js-vscode.md), [Python](quickstart-python-vscode.md), [PowerShell](quickstart-powershell-vscode.md), or [Java](quickstart-java.md).
6161

6262
> [!div class="nextstepaction"]
6363
> [Read more about Durable Functions orchestrations](durable-functions-orchestrations.md)

articles/azure-functions/durable/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ landingContent:
8383
- text: Function chaining
8484
url: durable-functions-sequence.md
8585
- text: Async HTTP APIs
86-
url: durable-functions-create-first-csharp.md
86+
url: durable-functions-isolated-create-first-csharp.md
8787
- text: Fan-out/fan-in
8888
url: durable-functions-cloud-backup.md
8989
- text: Monitors

articles/azure-functions/durable/quickstart-mssql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Specifically, this quickstart assumes that you have already:
3030

3131
If you don't meet these prerequisites, we recommend that you begin with one of the following quickstarts:
3232

33-
- [Create your first Durable Functions app - C#](durable-functions-create-first-csharp.md)
33+
- [Create your first Durable Functions app - C#](durable-functions-isolated-create-first-csharp.md)
3434
- [Create your first Durable Functions app - JavaScript](quickstart-js-vscode.md)
3535
- [Create your first Durable Functions app - Python](quickstart-python-vscode.md)
3636
- [Create your first Durable Functions app - PowerShell](quickstart-powershell-vscode.md)

articles/azure-functions/durable/quickstart-netherite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Specifically, this quickstart assumes that you have already:
3131

3232
If you don't meet these prerequisites, we recommend that you start with one of the following quickstarts:
3333

34-
- [Create your first Durable Functions app - C#](durable-functions-create-first-csharp.md)
34+
- [Create your first Durable Functions app - C#](durable-functions-isolated-create-first-csharp.md)
3535
- [Create your first Durable Functions app - JavaScript](quickstart-js-vscode.md)
3636
- [Create your first Durable Functions app - Python](quickstart-python-vscode.md)
3737
- [Create your first Durable Functions app - PowerShell](quickstart-powershell-vscode.md)

0 commit comments

Comments
 (0)