Add Powershell commands and update API/SDK references (#19)

* Add Powershell help to FAQ
* Update API and SDK
This commit is contained in:
Dongjiang You 2017-02-07 11:53:15 -08:00 коммит произвёл GitHub
Родитель 6aba182016
Коммит 76933cc6a2
2 изменённых файлов: 26 добавлений и 5 удалений

Просмотреть файл

@ -16,7 +16,7 @@ ACR User Accounts - https://blogs.msdn.microsoft.com/stevelasker/2016/11/17/azur
Official Documentation Page - https://docs.microsoft.com/en-us/azure/container-registry/
Contribute to Documentation - https://github.com/Microsoft/azure-docs/blob/master/articles/container-registry/toc.md
Contribute to Documentation - https://github.com/Microsoft/azure-docs/blob/master/articles/container-registry/TOC.md
Azure Container Registry Home Page - https://azure.microsoft.com/en-us/services/container-registry/
@ -24,8 +24,15 @@ Azure Management Portal - https://portal.azure.com/#blade/HubsExtension/Resource
AZ CLI Reference - https://github.com/Azure/azure-cli/blob/master/src/command_modules/azure-cli-acr/README.rst
REST API Reference - https://docs.microsoft.com/en-us/rest/api/containerregistry/
Python SDK - https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-containerregistry
Log Issues - https://github.com/Azure/acr/issues
## API and SDK References
REST API Reference - https://docs.microsoft.com/en-us/rest/api/containerregistry/
> Swagger Specification - https://github.com/Azure/azure-rest-api-specs/blob/master/arm-containerregistry/2016-06-27-preview/swagger/containerregistry.json
SDK for Python - https://pypi.python.org/pypi/azure-mgmt-containerregistry/0.1.1
> Source - https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-containerregistry
SDK for .NET - https://www.nuget.org/packages/Microsoft.Azure.Management.ContainerRegistry/1.0.0-preview
> Source - https://github.com/Azure/azure-sdk-for-net/tree/AutoRest/src/ResourceManagement/ContainerRegistry

Просмотреть файл

@ -22,3 +22,17 @@ https://\<your registry login server\>/v2/
## Is Azure Premium Storage account supported?
Azure Premium Storage account is not supported.
## How to get admin login credential for a container registry?
Please make sure admin is enabled.
Using `az cli`
```
az acr credential show -n myRegistry
```
Using `Azure Powershell`
```
Invoke-AzureRmResourceAction -Action getCredentials -ResourceType Microsoft.ContainerRegistry/registries -ResourceGroupName myResourceGroup -ResourceName myRegistry
```