MDFT Pro, a well-known training agency, is deploying Azure Text Analytics containers on their on-premises infrastructure to analyze student feedback and course evaluations while keeping sensitive data within their private network.
Mark, the Container Operations Specialist, is setting up sentiment analysis containers to process student survey responses and needs to understand how the containerized services validate their connection to Azure for billing and authentication purposes. The deployment uses Docker containers with proper API keys and billing endpoints configured, and Mark wants to verify that the container can properly authenticate with Azure services.
Here is the Docker command being used:
docker run --rm -it -p 5000:5000 --memory 10g --cpus 2 \
mcr.microsoft.com/azure-cognitive-services/textanalytics/sentiment \
Eula=accept \
Billing={ENDPOINT_URI} \
ApiKey={API_KEY}
When accessing http://localhost:5000/status, does this endpoint query the Azure backend to verify whether the API key is valid?
Choose the correct answer from the options below.
Explanations for each answer: