AI-102 • Practice Test 45
Free AI-102 practice test — 15 questions with explanations. Set 45. No signup required.
You have the above data source definition for Azure AI Search. You want to index only PDF files from the 'documents' container. How should you modify the data source?
Refer to the exhibit.
```json
{
"dataSource": {
"name": "my-blob-datasource",
"type": "azureblob",
"credentials": {
"connectionString": "DefaultEndpointsProtocol=https;AccountName=mystorage;AccountKey=...;EndpointSuffix=core.windows.net"
},
"container": {
"name": "documents",
"query": ""
}
}
}
```