Skip to content

Commit f54be71

Browse files
Merge pull request #303019 from MicrosoftDocs/main
Auto Publish – main to live - 2025-07-19 05:00 UTC
2 parents f0a35d7 + 09b45cd commit f54be71

File tree

70 files changed

+303
-256
lines changed

Some content is hidden

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

70 files changed

+303
-256
lines changed

articles/app-service/configure-authentication-provider-aad.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ Requests that fail these built-in checks get an HTTP `403 Forbidden` response.
301301

302302
[fic-config]: #use-a-managed-identity-instead-of-a-secret-preview
303303

304-
Instead of configuring a client secret for your app registration, you can [configure an application to trust a managed identity (preview)][entra-fic]. Using an identity instead of a secret means you don't have to manage a secret. You don't have secret expiration events to handle, and you don't have the same level of risk associated with possibly disclosing or leaking that secret.
304+
Instead of configuring a client secret for your app registration, you can [configure an application to trust a managed identity][entra-fic]. Using an identity instead of a secret means you don't have to manage a secret. You don't have secret expiration events to handle, and you don't have the same level of risk associated with possibly disclosing or leaking that secret.
305305

306306
The identity allows you to create a *federated identity credential*, which can be used instead of a client secret as a *client assertion*. This approach is available only for workforce configurations. The built-in authentication feature currently supports federated identity credentials as a preview.
307307

@@ -313,6 +313,7 @@ You can use the steps in this section to configure your App Service or Azure Fun
313313

314314
> [!IMPORTANT]
315315
> The user-assigned managed identity that you create should only be assigned to the App Service or Azure Functions application through this registration. If you assign the identity to another resource, you're giving that resource unnecessary access to your app registration.
316+
316317
1. Note down the **Object ID** and **Client ID** values of the managed identity. You'll need the object ID to create a federated identity credential in the next step. You'll use the managed identity's client ID in a later step.
317318

318319
1. Follow the Microsoft Entra ID [instructions to configure a federated identity credential on an existing application](/entra/workload-id/workload-identity-federation-config-app-trust-managed-identity#configure-a-federated-identity-credential-on-an-existing-application). Those instructions also include sections for updating application code, which you can skip.

articles/azure-functions/durable/durable-task-scheduler/durable-task-scheduler-versioning.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: azfuncdf
88
zone_pivot_groups: df-languages
99
---
1010

11-
# Orchestration Versioning
11+
# Orchestration Versioning (preview)
1212

1313
A key area to consider when using a durable orchestration system is how to handle the upgrading/downgrading of orchestrations. When an orchestration is interrupted and later resumed (for instance, during a host update), Durable Task Scheduler will replay the events of the orchestration. This is done to ensure reliability - the system replays to ensure all previous steps were executed successfully before the next step is taken - which is a core promise of the durable execution paradigm. So, if an orchestration changes between deployments, the steps it takes may no longer be the same. If this does happen, the system will throw a `NonDeterministicError` instead of allowing the orchestration to continue.
1414

@@ -44,7 +44,7 @@ In order for an orchestration to have a version, it must first be set in the cli
4444
::: zone pivot="csharp"
4545

4646
> [!NOTE]
47-
> Available in the .NET SDK since v1.9.0.
47+
> Available in the .NET SDK (Microsoft.DurableTask.Client.AzureManaged) since v1.9.0.
4848
4949
```csharp
5050
builder.Services.AddDurableTaskClient(builder =>
@@ -59,7 +59,7 @@ builder.Services.AddDurableTaskClient(builder =>
5959
::: zone pivot="java"
6060

6161
> [!NOTE]
62-
> Available in the Java SDK since v1.6.0.
62+
> Available in the Java SDK (com.microsoft:durabletask-client) since v1.6.0.
6363
6464
```java
6565
public DurableTaskClient durableTaskClient(DurableTaskProperties properties) {
@@ -166,6 +166,9 @@ Similar to the client versioning, these are all set via the standard host builde
166166

167167
::: zone pivot="csharp"
168168

169+
> [!NOTE]
170+
> Available in the .NET SDK (Microsoft.DurableTask.Worker.AzureManaged) since v1.9.0.
171+
169172
```csharp
170173
builder.Services.AddDurableTaskWorker(builder =>
171174
{
@@ -185,6 +188,9 @@ builder.Services.AddDurableTaskWorker(builder =>
185188

186189
::: zone pivot="java"
187190

191+
> [!NOTE]
192+
> Available in the Java SDK (com.microsoft:durabletask-client) since v1.6.0.
193+
188194
```java
189195
private static DurableTaskGrpcWorker createTaskHubServer() {
190196
DurableTaskGrpcWorkerBuilder builder = new DurableTaskGrpcWorkerBuilder();

articles/communication-services/quickstarts/email/includes/add-multiple-senders-net.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,11 @@ dotnet add package Azure.ResourceManager.Communication
2929
Set the environment variable `AZURE_SUBSCRIPTION_ID` with the subscription ID of the subscription your Domain and Email resources are in. Run the code sample to initialize the management client.
3030

3131
```csharp
32-
using System;
33-
using System.Threading.Tasks;
3432
using Azure.Core;
3533
using Azure.Identity;
3634
using Azure.ResourceManager;
37-
using Azure.ResourceManager.Compute;
38-
using Azure.ResourceManager.Resources;
35+
using Azure.ResourceManager.Communication;
36+
using Azure;
3937

4038
ArmClient client = new ArmClient(new DefaultAzureCredential());
4139
```

articles/communication-services/quickstarts/email/includes/connect-domain-net.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ using Azure.Identity;
3737
using Azure.ResourceManager;
3838
using Azure.ResourceManager.Compute;
3939
using Azure.ResourceManager.Resources;
40+
using Azure.ResourceManager.Communication;
41+
using Azure.ResourceManager.Communication.Models;
4042

4143
ArmClient client = new ArmClient(new DefaultAzureCredential());
4244
```

articles/connectors/built-in.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Learn about connectors that run natively with the runtime in Azure
44
services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
7-
ms.topic: conceptual
7+
ms.topic: concept-article
88
ms.custom: engagement-fy23
9-
ms.date: 12/18/2024
9+
ms.date: 03/18/2025
1010
---
1111

1212
# Built-in connectors in Azure Logic Apps
@@ -29,7 +29,7 @@ The following table lists the current and expanding galleries of built-in operat
2929

3030
| Consumption | Standard |
3131
|-------------|----------|
32-
| Azure API Management <br>Azure App Service <br>Azure Functions <br>Azure Logic Apps <br>Batch Operations <br>Control <br>Data Operations <br>Date Time <br>Flat File <br>HTTP <br>Inline Code <br>Integration Account <br>Liquid Operations <br>Request <br>Schedule <br>Variables <br>XML Operations | AS2 (v2) <br>Azure AI Search* <br>Azure API Management <br>Azure Automation* <br>Azure Blob Storage* <br>Azure Cosmos DB* <br>Azure Event Grid Publisher* <br>Azure Event Hubs* <br>Azure File Storage* <br>Azure Functions <br>Azure Key Vault* <br>Azure OpenAI* <br>Azure Queue Storage* <br>Azure Service Bus* <br>Azure Table Storage* <br>Batch Operations <br>Control <br>Data Mapper Operations <br>Data Operations <br>Date Time <br>EDIFACT <br>File System* <br>Flat File <br>FTP* <br>HTTP <br>IBM 3270* <br>IBM CICS* <br>IBM DB2* <br>IBM Host File* <br>IBM IMS* <br>IBM MQ* <br>Inline Code <br>Integration Account <br>JDBC* <br>Liquid Operations <br>Request <br>RosettaNet <br>SAP* <br>Schedule <br>SFTP* <br>SMTP* <br>SQL Server* <br>SWIFT <br>Variables <br>Workflow Operations <br>X12 <br>XML Operations |
32+
| Azure API Management <br>Azure App Service <br>Azure Functions <br>Azure Logic Apps <br>Batch Operations <br>Control <br>Data Operations <br>Date Time <br>Flat File <br>HTTP <br>Inline Code <br>Integration Account <br>Liquid Operations <br>Request <br>Schedule <br>Variables <br>XML Operations | AI Operations <br>AS2 (v2) <br>Azure AI Document Intelligence* <br>Azure AI Search* <br>Azure API Management <br>Azure Automation* <br>Azure Blob Storage* <br>Azure Container App (ACA) session* <br>Azure Cosmos DB* <br>Azure Event Grid Publisher* <br>Azure Event Hubs* <br>Azure File Storage* <br>Azure Functions <br>Azure Key Vault* <br>Azure OpenAI* <br>Azure Queue Storage* <br>Azure Service Bus* <br>Azure Table Storage* <br>Batch Operations <br>Confluent* <br>Control <br>Data Mapper Operations <br>Data Operations <br>Date Time <br>EDIFACT <br>File System* <br>Flat File <br>FTP* <br>HTTP <br>IBM 3270* <br>IBM CICS* <br>IBM DB2* <br>IBM Host File* <br>IBM IMS* <br>IBM MQ* <br>Inline Code <br>Integration Account <br>JDBC* <br>Liquid Operations <br>RabbitMQ <br>Request <br>RosettaNet <br>SAP* <br>Schedule <br>SFTP* <br>SMTP* <br>SQL Server* <br>SWIFT <br>Variables <br>Workflow Operations <br>X12 <br>XML Operations |
3333

3434
<a name="service-provider-interface-implementation"></a>
3535

articles/connectors/compare-built-in-azure-connectors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn the differences between built-in operations and shared connec
44
services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
7-
ms.topic: conceptual
7+
ms.topic: concept-article
88
ms.date: 06/09/2025
99
# Customer intent: As a developer, I want to understand the differences between built-in and Azure connectors in Azure Logic Apps (Standard).
1010
---

articles/connectors/connectors-create-api-informix.md

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

articles/connectors/connectors-google-data-security-privacy-policy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ description: Learn about the impact that Google security and privacy policies ha
44
services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
7-
ms.topic: conceptual
8-
ms.date: 01/04/2024
7+
ms.topic: concept-article
8+
ms.date: 05/04/2025
99
---
1010

1111
# Data security and privacy policies for Google connectors in Azure Logic Apps

articles/connectors/connectors-native-sliding-window.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ description: Create and run recurring tasks that handle contiguous data by using
44
services: logic-apps
55
ms.suite: integration
66
ms.reviewer: deli, azla
7-
ms.topic: conceptual
8-
ms.date: 01/04/2024
7+
ms.topic: how-to
8+
ms.date: 06/04/2025
99
---
1010

1111
# Schedule and run tasks for contiguous data by using the Sliding Window trigger in Azure Logic Apps

articles/connectors/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how connectors in Azure Logic Apps help you access data, even
44
services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
7-
ms.topic: conceptual
7+
ms.topic: concept-article
88
ms.date: 03/27/2025
99
# Customer intent: As a developer, I want to learn how connectors help me access data, events, and resources in other apps, services, systems, and platforms from my workflow in Azure Logic Apps.
1010
---

0 commit comments

Comments
 (0)