AI-102 Implement natural language processing solutions • Set 7
AI-102 Implement natural language processing solutions Practice Test 7 — 15 questions with explanations. Free, no signup.
You deploy the ARM template shown in the exhibit. After deployment, you need to allow access to the Language service from your on-premises application. What should you do?
Refer to the exhibit.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "Microsoft.CognitiveServices/accounts",
"apiVersion": "2023-05-01",
"name": "myLanguageService",
"location": "[resourceGroup().location]",
"sku": {
"name": "S"
},
"kind": "TextAnalytics",
"properties": {
"customSubDomainName": "mylanguageservice",
"networkAcls": {
"defaultAction": "Deny"
}
}
}
]
}