Forrest logo
back to the az tool

az-provider:tldr:93f7b

az-provider: Show information about a specific provider.
$ az provider show --namespace ${Microsoft-Storage}
try on your machine

The command az provider show --namespace ${Microsoft-Storage} is used in Azure CLI to display information about a specific provider namespace.

Here's what each part of the command means:

  • az provider show: This is the Azure CLI command used to show details of a provider.
  • --namespace: This is an option that specifies the namespace of the provider to be shown.
  • ${Microsoft-Storage}: The namespace in this case is Microsoft-Storage. In Azure, a namespace is a unique identifier for a resource provider or service. In this command, it refers to the Microsoft.Storage resource provider. The ${} syntax is used to reference the value of the variable within the command.

By executing this command, Azure CLI will show detailed information about the specific provider namespace Microsoft-Storage, including the resource types supported by the provider and the API versions available.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the az tool