1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/az-apim.md
Sebastiaan Speck 3e53d171bd
az-*: update links and page description (#10963)
* az-*: update links and page description

* az-aks: update link and page description

* az-*: fix typos in Spanish translation

* az-*: update links and description in Spanish translation
2023-10-15 13:12:29 +05:30

786 B

az apim

Manage Azure API Management services. Part of azure-cli (also known as az). More information: https://learn.microsoft.com/cli/azure/apim.

  • List API Management services within a resource group:

az apim list --resource-group {{resource_group}}

  • Create an API Management service instance:

az apim create --name {{name}} --resource-group {{resource_group}} --publisher-email {{email}} --publisher-name {{name}}

  • Delete an API Management service:

az apim delete --name {{name}} --resource-group {{resource_group}}

  • Show details of an API Management service instance:

az apim show --name {{name}} --resource-group {{resource_group}}

  • Update an API Management service instance:

az apim update --name {{name}} --resource-group {{resource_group}}