Azure Resource Provider Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Internal=
=Internal=
* [[Azure_Operations#Subjects|Azure Operations]]
* [[Azure_Operations#Subjects|Azure Operations]]
* [[Azure_Concepts#Resource_Provider|Azure Concepts | Resource Providers]]
=List Resource Providers=
<syntaxhighlight lang='bash'>
az provider list
</syntaxhighlight>
=Display Information about a Specific Resource Provider=
<syntaxhighlight lang='bash'>
az provider show --namespace Microsoft.RedHatOpenShift
</syntaxhighlight>


=Register a Resource Provider=
=Register a Resource Provider=
Line 6: Line 17:
az provider register -n Microsoft.RedHatOpenShift --wait
az provider register -n Microsoft.RedHatOpenShift --wait
</syntaxhighlight>
</syntaxhighlight>
=a=
=b=

Latest revision as of 22:08, 19 November 2020

Internal

List Resource Providers

az provider list

Display Information about a Specific Resource Provider

az provider show --namespace Microsoft.RedHatOpenShift

Register a Resource Provider

az provider register -n Microsoft.RedHatOpenShift --wait