Skip to content

Commit 35bcda8

Browse files
author
ecfan
committed
Fix Acrolinx issues
1 parent db39ffd commit 35bcda8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/machine-learning/how-to-use-event-grid-batch.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -192,15 +192,15 @@ This logic app workflow uses parameters to store specific pieces of information
192192
| `tenant_id` | The tenant ID where the endpoint is deployed. |`00000000-0000-0000-00000000` |
193193
| `client_id` | The client ID for the service principal used to invoke the endpoint. | `00000000-0000-0000-00000000` |
194194
| `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` |
196196

197197
The following example shows a sample parameter:
198198

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.":::
200200

201201
## Add the trigger
202202

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.
204204

205205
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).
206206

@@ -211,8 +211,8 @@ We want to trigger the logic app workflow each time a new file is created in a g
211211
| Property | Value | Description |
212212
|----------|-------|-------------|
213213
| **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. |
216216
| **Event Type Item** | `Microsoft.Storage.BlobCreated` | The event type. |
217217

218218
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
272272

273273
> [!TIP]
274274
>
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).
276276
277277
The following example shows a sample **Invoke** action:
278278

0 commit comments

Comments
 (0)