I am creating a custom activity pipeline in Azure Data Factory and as a part of that I need to create an AzureBatchLinkedService using the JSON below:
{
"name": "AzureBatchLinkedService",
"properties": {
"hubName": "name_hub",
"type": "AzureBatch",
"typeProperties": {
"accountName": "accountname",
"accessKey": "**********",
"poolName": "?????????",
"batchUri": "https://northeurope.batch.azure.com",
"linkedServiceName": "AzureStorageLinkedService"
}
}
}
When I created this the first time, I didn't have to create a batch pool. It was created for me automatically
My question is how do I get Azure to create this "pool" for me? If I go into the batch account and click "Add+" to add a pool manually, it has all these config options and I don't know what to put for any of those fields.