You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/connectors/connectors-create-api-servicebus.md
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ services: logic-apps
5
5
ms.suite: integration
6
6
ms.reviewer: estfan, azla
7
7
ms.topic: how-to
8
-
ms.date: 04/11/2024
8
+
ms.date: 08/26/2024
9
9
ms.custom: engagement-fy23
10
10
---
11
11
@@ -32,8 +32,8 @@ The Service Bus connector has different versions, based on [logic app workflow t
32
32
33
33
| Logic app | Environment | Connector version |
34
34
|-----------|-------------|-------------------|
35
-
|**Consumption**| Multitenant Azure Logic Apps | Managed connector, which appears in the connector gallery under **Runtime** > **Shared**. For more information, review the following documentation: <br><br>- [Service Bus managed connector reference](/connectors/servicebus/) <br>- [Managed connectors in Azure Logic Apps](managed.md)|
36
-
| **Standard** | Single-tenant Azure Logic Apps and App Service Environment v3 (Windows plans only) | Managed connector (Azure-hosted), which appears in the connector gallery under **Runtime** > **Shared**, and built-in connector, which appears in the connector gallery under **Runtime** > **In App** and is [service provider based](../logic-apps/custom-connector-overview.md#service-provider-interface-implementation). The built-in version usually provides better performance, capabilities, pricing, and so on. <br><br>**Note**: Service Bus built-in connector triggers follow the [*polling trigger*](introduction.md#triggers) pattern, which means that the trigger continually checks for messages in the queue or topic subscription. <br><br>For more information, review the following documentation: <br><br>- [Service Bus managed connector reference](/connectors/servicebus/) <br>- [Service Bus built-in connector operations](/azure/logic-apps/connectors/built-in/reference/servicebus) <br>- [Built-in connectors in Azure Logic Apps](built-in.md) |
35
+
|**Consumption**| Multitenant Azure Logic Apps | Managed connector, which appears in the connector gallery under **Runtime** > **Shared**. <br><br>**Note**: Service Bus managed connector triggers follow the [*long polling trigger* pattern](#service-bus-managed-triggers), which means that the trigger periodically checks for messages in the queue or topic subscription. For more information, review the following documentation: <br><br>- [Service Bus managed connector reference](/connectors/servicebus/) <br>- [Managed connectors in Azure Logic Apps](managed.md)|
36
+
| **Standard** | Single-tenant Azure Logic Apps and App Service Environment v3 (Windows plans only) | Managed connector (Azure-hosted), which appears in the connector gallery under **Runtime** > **Shared**, and built-in connector, which appears in the connector gallery under **Runtime** > **In App** and is [service provider based](../logic-apps/custom-connector-overview.md#service-provider-interface-implementation). <br><br>The Service Bus managed connector triggers follow the [*long polling trigger* pattern](#service-bus-managed-triggers), which means that the trigger periodically checks for messages in the queue or topic subscription. <br><br>The Service Bus built-in connector triggers follow the [*push trigger* pattern](introduction.md#triggers) and usually provides better performance, capabilities, pricing, and so on. <br><br>For more information, review the following documentation: <br><br>- [Service Bus managed connector reference](/connectors/servicebus/) <br>- [Service Bus built-in connector operations](/azure/logic-apps/connectors/built-in/reference/servicebus) <br>- [Built-in connectors in Azure Logic Apps](built-in.md) |
37
37
38
38
## Prerequisites
39
39
@@ -108,6 +108,7 @@ In Standard workflows that use the Service Bus built-in operations, you can incr
108
108
109
109
To increase the timeout for sending a message, [add the **ServiceProviders.ServiceBus.MessageSenderOperationTimeout** app setting](../logic-apps/edit-app-settings-host-settings.md).
110
110
111
+
<aname="service-bus-managed-triggers"></a>
111
112
### Service Bus managed connector triggers
112
113
113
114
* For the Service Bus managed connector, all triggers are *long-polling*. This trigger type processes all the messages and then waits 30 seconds for more messages to appear in the queue or topic subscription. If no messages appear in 30 seconds, the trigger run is skipped. Otherwise, the trigger continues reading messages until the queue or topic subscription is empty. The next trigger poll is based on the recurrence interval specified in the trigger's properties.
@@ -139,7 +140,7 @@ To increase the timeout for sending a message, [add the **ServiceProviders.Servi
139
140
140
141
### Service Bus built-in connector triggers
141
142
142
-
Currently, configuration settings for the Service Bus built-in trigger are shared between the [Azure Functions host extension](../azure-functions/functions-bindings-service-bus.md#hostjson-settings), which is defined in your logic app's [**host.json** file](../logic-apps/edit-app-settings-host-settings.md), and the trigger settings defined in your logic app's workflow, which you can set up either through the designer or code view. This section covers both settings locations.
143
+
For the Service Bus built-in connector, all triggers follow the [*push trigger* pattern](introduction.md#triggers). Currently, configuration settings for the Service Bus built-in trigger are shared between the [Azure Functions host extension](../azure-functions/functions-bindings-service-bus.md#hostjson-settings), which is defined in your logic app's [**host.json** file](../logic-apps/edit-app-settings-host-settings.md), and the trigger settings defined in your logic app's workflow, which you can set up either through the designer or code view. This section covers both settings locations.
143
144
144
145
* In Standard workflows, some triggers, such as the **When messages are available in a queue** trigger, can return one or more messages. When these triggers fire, they return between one and the number of messages. For this type of trigger and where the **Maximum message count** parameter isn't supported, you can still control the number of messages received by using the **maxMessageBatchSize** property in the **host.json** file. To find this file, see [Edit host and app settings for Standard logic apps](../logic-apps/edit-app-settings-host-settings.md).
145
146
@@ -334,7 +335,7 @@ The steps to add and use a Service Bus trigger differ based on whether you want
334
335
335
336
#### Built-in connector trigger
336
337
337
-
The built-in Service Bus connector is a stateless connector, by default. To run this connector's operations in stateful mode, see [Enable stateful mode for stateless built-in connectors](enable-stateful-affinity-built-in-connectors.md).
338
+
By default, the Service Bus built-in connector is a stateless connector. To run this connector's operations in stateful mode, see [Enable stateful mode for stateless built-in connectors](enable-stateful-affinity-built-in-connectors.md). Also, Service Bus built-in triggers follow the [*push trigger* pattern](introduction.md#triggers).
338
339
339
340
1. In the [Azure portal](https://portal.azure.com), and open your Standard logic app resource with blank workflow in the designer.
340
341
@@ -363,11 +364,6 @@ The built-in Service Bus connector is a stateless connector, by default. To run
363
364
364
365

365
366
366
-
> [!NOTE]
367
-
>
368
-
> This Service Bus trigger follows the *polling trigger* pattern, which means that the trigger continually checks for messages
369
-
> in the queue or topic subscription. For more general information about polling triggers, review [Triggers](introduction.md#triggers).
370
-
371
367
1. Add any actions that your workflow needs.
372
368
373
369
For example, you can add an action that sends email when a new message arrives. When your trigger checks your queue and finds a new message, your workflow runs your selected actions for the found message.
@@ -378,6 +374,8 @@ The built-in Service Bus connector is a stateless connector, by default. To run
378
374
379
375
#### Managed connector trigger
380
376
377
+
Service Bus managed triggers follow the [*long polling trigger* pattern](#service-bus-managed-triggers).
378
+
381
379
1. In the [Azure portal](https://portal.azure.com), and open your Standard logic app resource and blank workflow in the designer.
382
380
383
381
1. In the designer, [follow these general steps to add the Azure Service Bus managed trigger that you want](../logic-apps/create-workflow-with-trigger-or-action.md?tabs=standard#add-trigger).
@@ -606,4 +604,4 @@ As long as this error happens only occasionally, the error is expected. When the
606
604
607
605
*[Managed connectors for Azure Logic Apps](/connectors/connector-reference/connector-reference-logicapps-connectors)
608
606
*[Built-in connectors for Azure Logic Apps](built-in.md)
609
-
*[What are connectors in Azure Logic Apps](introduction.md)
607
+
*[What are connectors in Azure Logic Apps](introduction.md)
Copy file name to clipboardExpand all lines: articles/cost-management-billing/manage/subscription-disabled.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,10 @@ If you're the Account Administrator or subscription Owner and you canceled a pay
50
50
51
51
For other subscription types (for example, Enterprise Subscription), [contact support](https://portal.azure.com/?#blade/Microsoft_Azure_Support/HelpAndSupportBlade) to have your subscription reactivated.
52
52
53
+
## Reactivation process time
54
+
55
+
It can take up to 24 hours for your subscription to get reactivated after you pay your balance.
56
+
53
57
## After reactivation
54
58
55
59
After your subscription is reactivated, there might be a delay in creating or managing resources. If the delay exceeds 30 minutes, contact [Azure Billing Support](https://go.microsoft.com/fwlink/?linkid=2083458) for assistance. Most Azure resources automatically resume and don't require any action. However, we recommend that you check your Azure service resources and restart them if, if necessary.
0 commit comments