AI-102 Implement natural language processing solutions • Set 5
AI-102 Implement natural language processing solutions Practice Test 5 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. You deploy this ARM template to create an Azure AI Language Service resource. After deployment, you try to call the Language Service API from your application but receive a 403 Forbidden error. What is the most likely cause?
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "Microsoft.CognitiveServices/accounts",
"apiVersion": "2022-12-01",
"name": "myLanguageService",
"location": "[resourceGroup().location]",
"sku": {
"name": "S0"
},
"kind": "TextAnalytics",
"properties": {
"customSubDomainName": "mylanguageservice",
"networkAcls": {
"defaultAction": "Deny",
"virtualNetworkRules": [],
"ipRules": []
}
}
}
]
}