Complete the code to create a basic Azure Service Bus namespace.
az servicebus namespace create --resource-group myResourceGroup --name [1] --location eastusThe --name parameter specifies the name of the Service Bus namespace to create.
Complete the code to create a queue inside the Service Bus namespace.
az servicebus queue create --resource-group myResourceGroup --namespace-name myServiceBusNamespace --name [1]The --name parameter here specifies the queue name inside the namespace.
Fix the error in the code to send a message to the queue using Azure CLI.
az servicebus queue send --resource-group myResourceGroup --namespace-name myServiceBusNamespace --queue-name myQueue --message-body [1]The message body must be passed as a string enclosed in quotes to be valid.
Fill both blanks to configure a topic and subscription in Azure Service Bus.
az servicebus topic create --resource-group myResourceGroup --namespace-name myServiceBusNamespace --name [1] az servicebus subscription create --resource-group myResourceGroup --namespace-name myServiceBusNamespace --topic-name [2] --name mySubscription
The topic name must be the same when creating the subscription to link them correctly.
Fill all three blanks to create a Service Bus namespace, a queue, and send a message.
az servicebus namespace create --resource-group myResourceGroup --name [1] --location eastus az servicebus queue create --resource-group myResourceGroup --namespace-name [2] --name myQueue az servicebus queue send --resource-group myResourceGroup --namespace-name [3] --queue-name myQueue --message-body 'Test Message'
All commands must use the same namespace name to work together properly.