delete_aks {AzureContainers} | R Documentation |
Delete an Azure Kubernetes Service (AKS)
Description
Method for the AzureRMR::az_resource_group class.
Usage
delete_aks(name, confirm=TRUE, wait=FALSE)
Arguments
-
name
: The name of the Kubernetes service. -
confirm
: Whether to ask for confirmation before deleting. -
wait
: Whether to wait until the deletion is complete.
Value
NULL on successful deletion.
See Also
kubernetes_cluster for the cluster endpoint
AKS documentation and API reference
Examples
## Not run:
rg <- AzureRMR::get_azure_login()$
get_subscription("subscription_id")$
get_resource_group("rgname")
rg$delete_aks("mycluster")
## End(Not run)
[Package AzureContainers version 1.3.2 Index]