• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer navigation

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • VCS
  • Interview Questions
  • Database
    • MariaDB
  • DevOps
    • Docker
    • Shell Scripting
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

“az provider” Command Examples (Manage resource providers)

by admin

The az provider command is part of the azure-cli tool, which is the official Command-Line Interface (CLI) provided by Microsoft for managing Azure resources and services.

The az provider command allows you to manage resource providers in Azure. Resource providers are responsible for delivering and managing specific types of Azure resources and services. Here’s an overview of its functionality:

  • Provider Registration: With the az provider register subcommand, you can register a resource provider in your Azure subscription. Registering a provider enables you to access and utilize the resources and services offered by that provider. This step is necessary before you can create and manage resources associated with that provider.
  • Provider Unregistration: The az provider unregister subcommand allows you to unregister a resource provider from your Azure subscription. Unregistering a provider disables the availability of the associated resources and services in your subscription.
  • Provider Show: Using the az provider show subcommand, you can retrieve detailed information about a specific resource provider. This includes details such as the provider’s namespace, registration status, resource types, and the Azure API version supported by the provider.
  • Provider List: The az provider list subcommand provides a list of all resource providers available in your Azure subscription. This gives you an overview of the registered providers and their registration status.
  • Provider Operation Show: With the az provider operation show subcommand, you can view the details of a specific operation supported by a resource provider. This includes information about the operation’s name, display name, description, and whether it is a data plane or control plane operation.

By using the az provider command, you can manage the registration status of resource providers in your Azure subscription. This enables you to control the availability and usage of specific Azure resources and services.

az provider Command Examples

1. Register a provider:

# az provider register --namespace Microsoft.PolicyInsights

2. Unregister a provider:

# az provider unregister --namespace Microsoft.Automation

3. List all providers for a subscription:

# az provider list

4. Show information about a specific provider:

# az provider show --namespace Microsoft.Storage

5. List all resource types for a specific provider:

# az provider list --query "[?namespace=='Microsoft.Network'].resourceTypes[].resourceType"

Filed Under: Azure, Cloud, Linux

Some more articles you might also be interested in …

  1. aws-google-auth: Command-line tool to acquire AWS temporary (STS) credentials using Google Apps as a federated (Single Sign-On) provider
  2. runuser Command Examples in Linux
  3. abroot Command Examples in Linux
  4. fdisk Command Examples in Linux
  5. tracepath Command Examples in Linux
  6. What causes iptables to load every time after a reboot even when it’s completely turned off
  7. How to truncate /var/log/lastlog File
  8. ccomps: Decompose graphs into their connected components
  9. partprobe: command not found
  10. ipcs Command Examples

You May Also Like

Primary Sidebar

Recent Posts

  • Vanilla OS 2 Released: A New Era for Linux Enthusiasts
  • mk Command Examples
  • mixxx Command Examples
  • mix Command Examples

© 2025 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright