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/machine-learning/how-to-use-event-grid-batch.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -192,15 +192,15 @@ This logic app workflow uses parameters to store specific pieces of information
192
192
|`tenant_id`| The tenant ID where the endpoint is deployed. |`00000000-0000-0000-00000000`|
193
193
|`client_id`| The client ID for the service principal used to invoke the endpoint. |`00000000-0000-0000-00000000`|
194
194
|`client_secret`| The client secret of the service principal used to invoke the endpoint. |`ABCDEFGhijkLMNOPQRstUVwz`|
195
-
|`endpoint_uri`| The endpoint scoring URI. **Important**: This URI is for the endpoint you are trying to execute. The endpoint must have a default deployment configured. |`https://<endpoint_name>.<region>.inference.ml.azure.com/jobs`|
195
+
|`endpoint_uri`| The endpoint scoring URI. <br><br>**Important**: This URI is for the endpoint that you want to execute. The endpoint must have a default deployment configured. |`https://<endpoint_name>.<region>.inference.ml.azure.com/jobs`|
196
196
197
197
The following example shows a sample parameter:
198
198
199
-
:::image type="content" source="./media/how-to-use-event-grid-batch/parameter.png" alt-text="Screenshot showing how to add one parameter in designer.":::
199
+
:::image type="content" source="./media/how-to-use-event-grid-batch/parameter.png" alt-text="Screenshot shows how to add one parameter in designer.":::
200
200
201
201
## Add the trigger
202
202
203
-
We want to trigger the logic app workflow each time a new file is created in a given folder (data asset) of a Storage Account. The logic app uses the information of the event to invoke the batch endpoint and pass the specific file to be processed.
203
+
We want to trigger the logic app workflow each time a new file is created in a specific folder (data asset) of a storage account. The logic app uses the information from the event to invoke the batch endpoint and pass the specific file to process.
204
204
205
205
1. On the workflow designer, [follow these general steps to add an **Event Grid** trigger named **When a resource event occurs**](../logic-apps/create-workflow-with-trigger-or-action.md?tabs=consumption#add-trigger).
206
206
@@ -211,8 +211,8 @@ We want to trigger the logic app workflow each time a new file is created in a g
211
211
| Property | Value | Description |
212
212
|----------|-------|-------------|
213
213
|**Resource Type**|`Microsoft.Storage.StorageAccounts`| The resource type emitting the events. |
214
-
|**Subscription**| Your subscription name | The subscription where the Azure Storage Account is placed. |
215
-
|**Resource Name**| Your storage account name | The name of the Storage Account where the files will be generated. |
214
+
|**Subscription**| Your subscription name | The subscription for the storage account. |
215
+
|**Resource Name**| Your storage account name | The name of the storage account where the files are generated. |
216
216
|**Event Type Item**|`Microsoft.Storage.BlobCreated`| The event type. |
217
217
218
218
1. From the **Advanced parameters** list, select **Prefix Filter**, and provide the following value:
@@ -272,7 +272,7 @@ We want to trigger the logic app workflow each time a new file is created in a g
272
272
273
273
> [!TIP]
274
274
>
275
-
> The previous payload corresponds to a **Model deployment**. If you are working with a **Pipeline component deployment**, adapt the format according to the expectations of the pipeline's inputs. For more information about how to structure the input in REST calls, see [Create jobs and input data for batch endpoints (REST)](how-to-access-data-batch-endpoints-jobs.md?tabs=rest).
275
+
> The previous payload corresponds to a **Model deployment**. If you're working with a **Pipeline component deployment**, adapt the format according to the expectations of the pipeline's inputs. For more information about how to structure the input in REST calls, see [Create jobs and input data for batch endpoints (REST)](how-to-access-data-batch-endpoints-jobs.md?tabs=rest).
276
276
277
277
The following example shows a sample **Invoke** action:
0 commit comments