Skip to content

Commit cf78197

Browse files
authored
Merge pull request #286504 from MicrosoftDocs/main
9/10/2024 PM Publish
2 parents f48b23b + fac9e1b commit cf78197

File tree

42 files changed

+621
-530
lines changed

Some content is hidden

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

42 files changed

+621
-530
lines changed
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
22
"redirections": [
3+
{
4+
"source_path_from_root": "/articles/azure-functions/functions-bindings-return-value.md",
5+
"redirect_url": "/azure/azure-functions/functions-triggers-bindings",
6+
"redirect_document_id": false
7+
},
38
{
49
"source_path_from_root": "/articles/azure-functions/durable/durable-functions-configure-durable-functions-with-credentials.md",
510
"redirect_url": "/azure/azure-functions/durable/durable-functions-configure-managed-identity",
611
"redirect_document_id": false
7-
}
12+
}
813
]
914
}

articles/azure-arc/kubernetes/extensions-release.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,15 @@ For more information, see [Try Azure AI Video Indexer enabled by Arc](/azure/azu
213213

214214
For more information, see [What is Edge Storage Accelerator?](../edge-storage-accelerator/overview.md).
215215

216+
## Connected registry on Arc-enabled Kubernetes
217+
218+
- **Supported distributions**: Connected registry for Arc-enabled Kubernetes clusters.
219+
- **Supported Azure regions**: All regions where Azure Arc-enabled Kubernetes is available.
220+
221+
The connected registry extension for Azure Arc enables you to sync container images between your Azure Container Registry (ACR) and your local on-prem Azure Arc-enabled Kubernetes cluster. The extension is deployed to the local or remote cluster and uses a synchronization schedule and window to sync images between the on-prem connected registry and the cloud ACR registry.
222+
223+
For more information, see [Connected Registry for Arc-enabled Kubernetes clusters](../../container-registry/quickstart-connected-registry-arc-cli.md).
224+
216225
## Next steps
217226

218227
- Read more about [cluster extensions for Azure Arc-enabled Kubernetes](conceptual-extensions.md).

articles/azure-boost/includes/azure-boost-series.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom:
1313

1414
| Size Series | Series Type | Deployment Status |
1515
|:-:|:-:|:-:|
16-
|[Msv3/Mdsv3](/azure/virtual-machines/msv3-mdsv3-medium-series)| Medium Memory | GA|
16+
|[Msv3/Mdsv3](/azure/virtual-machines/msv3-mdsv3-medium-series)| Medium Memory | Production |
1717
|[Mbsv3/Mbdsv3](/azure/virtual-machines/sizes/memory-optimized/mbsv3-mbdsv3-series)| Medium Memory| Preview|
1818
|Msv3/Mdsv3| High Memory | Preview|
1919
|Msv3/Mdsv3| Very High Memory | Preview|

articles/azure-functions/TOC.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -383,12 +383,8 @@
383383
displayName: bundles, extension bundles
384384
- name: Binding expression patterns
385385
href: functions-bindings-expressions-patterns.md
386-
- name: Use binding return values
387-
href: functions-bindings-return-value.md
388386
- name: Handle binding errors
389387
href: functions-bindings-errors.md
390-
- name: Binding definitions for Python v2
391-
href: functions-bindings-triggers-python.md
392388
- name: Frameworks
393389
items:
394390
- name: Express.js
@@ -451,6 +447,8 @@
451447
- name: Programming models
452448
displayName: python
453449
href: functions-reference-python.md#programming-model
450+
- name: Binding definitions for Python v2
451+
href: functions-bindings-triggers-python.md
454452
- name: Python worker extensions
455453
href: develop-python-worker-extensions.md
456454
- name: Scale and performance recommendations

articles/azure-functions/functions-bindings-event-grid-trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ For explanations of the common and event-specific properties, see [Event propert
489489

490490
## Next steps
491491

492-
* If you have questions, submit an issue to the team [here](https://github.com/Azure/azure-functions-eventgrid-extension/issues)
492+
* If you have questions, submit an issue to the team [here](https://github.com/Azure/azure-sdk-for-net/issues)
493493
* [Dispatch an Event Grid event](./functions-bindings-event-grid-output.md)
494494

495495
[EventGridEvent]: /dotnet/api/microsoft.azure.eventgrid.models.eventgridevent

articles/azure-functions/functions-bindings-expressions-patterns.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,6 @@ The binding expression `DateTime` resolves to `DateTime.UtcNow`. The following b
317317

318318
In C# and other .NET languages, you can use an imperative binding pattern, as opposed to the declarative bindings in *function.json* and attributes. Imperative binding is useful when binding parameters need to be computed at runtime rather than design time. To learn more, see the [C# developer reference](functions-dotnet-class-library.md#binding-at-runtime) or the [C# script developer reference](functions-reference-csharp.md#binding-at-runtime).
319319

320-
## Next steps
321-
> [!div class="nextstepaction"]
322-
> [Using the Azure Function return value](./functions-bindings-return-value.md)
320+
## Related content
321+
322+
+ [Azure Functions triggers and bindings concepts](functions-triggers-bindings.md)

articles/azure-functions/functions-bindings-return-value.md

Lines changed: 0 additions & 167 deletions
This file was deleted.

articles/azure-functions/functions-dotnet-class-library.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,13 +283,13 @@ You can also build your app with ReadyToRun from the command line. For more info
283283

284284
## Supported types for bindings
285285

286-
Each binding has its own supported types; for instance, a blob trigger attribute can be applied to a string parameter, a POCO parameter, a `CloudBlockBlob` parameter, or any of several other supported types. The [binding reference article for blob bindings](functions-bindings-storage-blob-trigger.md#usage) lists all supported parameter types. For more information, see [Triggers and bindings](functions-triggers-bindings.md) and the [binding reference docs for each binding type](functions-triggers-bindings.md#next-steps).
286+
Each binding has its own supported types; for instance, a blob trigger attribute can be applied to a string parameter, a POCO parameter, a `CloudBlockBlob` parameter, or any of several other supported types. The [binding reference article for blob bindings](functions-bindings-storage-blob-trigger.md#usage) lists all supported parameter types. For more information, see [Triggers and bindings](functions-triggers-bindings.md) and the [binding reference docs for each binding type](functions-triggers-bindings.md#related-content).
287287

288288
[!INCLUDE [HTTP client best practices](../../includes/functions-http-client-best-practices.md)]
289289

290290
## Binding to method return value
291291

292-
You can use a method return value for an output binding, by applying the attribute to the method return value. For examples, see [Triggers and bindings](./functions-bindings-return-value.md).
292+
You can use a method return value for an output binding, by applying the attribute to the method return value. For examples, see [Triggers and bindings](./functions-triggers-bindings.md).
293293

294294
Use the return value only if a successful function execution always results in a return value to pass to the output binding. Otherwise, use `ICollector` or `IAsyncCollector`, as shown in the following section.
295295

articles/azure-functions/functions-reference-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ The `#r` statement is explained [later in this article](#referencing-external-as
8989

9090
## Supported types for bindings
9191

92-
Each binding has its own supported types; for instance, a blob trigger can be used with a string parameter, a POCO parameter, a `CloudBlockBlob` parameter, or any of several other supported types. The [binding reference article for blob bindings](functions-bindings-storage-blob-trigger.md#usage) lists all supported parameter types for blob triggers. For more information, see [Triggers and bindings](functions-triggers-bindings.md) and the [binding reference docs for each binding type](functions-triggers-bindings.md#next-steps).
92+
Each binding has its own supported types; for instance, a blob trigger can be used with a string parameter, a POCO parameter, a `CloudBlockBlob` parameter, or any of several other supported types. The [binding reference article for blob bindings](functions-bindings-storage-blob-trigger.md#usage) lists all supported parameter types for blob triggers. For more information, see [Triggers and bindings](functions-triggers-bindings.md) and the [binding reference docs for each binding type](functions-triggers-bindings.md#related-content).
9393

9494
[!INCLUDE [HTTP client best practices](../../includes/functions-http-client-best-practices.md)]
9595

0 commit comments

Comments
 (0)