Azure Service Bus Azure CLI Commands

ServiceBusNamespaceCommands:

az servicebus namespace create --location SouthIndia --name learning-service-bus-in-depth --resource-group ramadoss-rg --sku Standard

ServiceBusQueueCommands:

az servicebus queue create --name demoqueue --namespace-name learning-service-bus-in-depth --resource-group ramadoss-rg

ServiceBusTopicCommands:

az servicebus topic create --resource-group ramadoss-rg --namespace-name learning-service-bus-in-depth --name demotopic   

ServiceBusTopicSubscriptionCommands:
az servicebus topic subscription create --resource-group ramadoss-rg --namespace-name learning-service-bus-in-depth --topic-name demotopic --name first-demo-subscription


Commands History:  Get-History | Where-Object { $_.CommandLine -like "az *" }

   2        1.082 az servicebus -h
   3        0.998 az servicebus namespace -h
   4        0.974 az servicebus namespace create -h
   5        0.802 az servicebus namespace create -h
   6        0.944 az find "az servicebus namespace create"
   8        0.693 az find "az servicebus namespace create"
   9       13.135 az feedback
  11        0.680 az find "az servicebus namespace create"
  12       56.652 az servicebus namespace create --location SouthIndia --name learning-service-bus-in-depth --resource-group ramadoss-rg --sku Standard
  14        3.182 az servicebus queue - h
  15        0.749 az servicebus -h
  16        0.962 az servicebus queue -h
  17        0.971 az servicebus queue create -h
  18        0.948 az find "az servicebus queue create"
  19        2.458 az servicebus queue create --name demoqueue --namespace-name learning-service-bus-in-depth --resource-group ramadoss-rg
  21        0.991 az servicebus topic create -h
  22        0.841 az find "az servicebus topic create"
  23        2.964 az servicebus topic create --resource-group ramadoss-rg --namespace-name learning-service-bus-in-depth --name demotopic
  25        0.787 az servicebus -h
  26        1.155 az servicebus topic -h
  27        0.964 az servicebus topic subscription -h
  28        0.929 az servicebus topic subscription create -h
  29        0.791 az find "az servicebus topic subscription create"
  30        1.905 az servicebus topic subscription create --resource-group ramadoss-rg --namespace-name learning-service-bus-in-depth --topic-name demotopic --name first-demo-subscription
  32       56.139 az feedback



Comments

Popular posts from this blog

Securing a Web API using Azure AD and Consuming it with Swagger - Step by Step Guide

Service Bus Queues and Topics