delete_aci {AzureContainers} | R Documentation |
Method for the AzureRMR::az_resource_group class.
delete_aci(name, confirm=TRUE, wait=FALSE)
name
: The name of the container instance.
confirm
: Whether to ask for confirmation before deleting.
wait
: Whether to wait until the deletion is complete.
NULL on successful deletion.
ACI documentation and API reference
## Not run:
rg <- AzureRMR::get_azure_login()$
get_subscription("subscription_id")$
get_resource_group("rgname")
rg$delete_aci("mycontainer")
## End(Not run)