get_acr {AzureContainers} | R Documentation |
Method for the AzureRMR::az_resource_group class.
get_acr(name) list_acrs()
name
: For get_acr()
, the name of the container registry resource.
The AzureRMR::az_resource_group
class has both get_acr()
and list_acrs()
methods, while the AzureRMR::az_subscription
class only has the latter.
For get_acr()
, an object of class az_container_registry
representing the registry resource.
For list_acrs()
, a list of such objects.
docker_registry for the registry endpoint
ACR documentation and API reference
## Not run:
rg <- AzureRMR::get_azure_login()$
get_subscription("subscription_id")$
get_resource_group("rgname")
rg$get_acr("myregistry")
## End(Not run)