get_aci {AzureContainers} | R Documentation |
Get Azure Container Instance (ACI)
Description
Method for the AzureRMR::az_resource_group class.
Usage
get_aci(name) list_acis()
Arguments
-
name
: Forget_aci()
, the name of the container instance resource.
Details
The AzureRMR::az_resource_group
class has both get_aci()
and list_acis()
methods, while the AzureRMR::az_subscription
class only has the latter.
Value
For get_aci()
, an object of class az_container_instance
representing the instance resource.
For list_acis()
, a list of such objects.
See Also
ACI documentation and API reference
Examples
## Not run:
rg <- AzureRMR::get_azure_login()$
get_subscription("subscription_id")$
get_resource_group("rgname")
rg$get_aci("mycontainer")
## End(Not run)
[Package AzureContainers version 1.3.2 Index]