-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdelete_aci.Rd
48 lines (37 loc) · 1.13 KB
/
delete_aci.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/add_aci_methods.R
\name{delete_aci}
\alias{delete_aci}
\title{Delete an Azure Container Instance (ACI)}
\description{
Method for the \link[AzureRMR:az_resource_group]{AzureRMR::az_resource_group} class.
}
\section{Usage}{
\preformatted{delete_aci(name, confirm=TRUE, wait=FALSE)
}
}
\section{Arguments}{
\itemize{
\item \code{name}: The name of the container instance.
\item \code{confirm}: Whether to ask for confirmation before deleting.
\item \code{wait}: Whether to wait until the deletion is complete.
}
}
\section{Value}{
NULL on successful deletion.
}
\examples{
\dontrun{
rg <- AzureRMR::get_azure_login()$
get_subscription("subscription_id")$
get_resource_group("rgname")
rg$delete_aci("mycontainer")
}
}
\seealso{
\link{create_aci}, \link{get_aci}
\link{az_container_instance}
\href{https://docs.microsoft.com/en-us/azure/container-instances/}{ACI documentation} and
\href{https://docs.microsoft.com/en-us/rest/api/container-instances/}{API reference}
\href{https://docs.docker.com/engine/reference/commandline/cli/}{Docker commandline reference}
}