View source: R/runtime-caches.R
delete_runtime_cache | R Documentation |
Delete a runtime cache from a Connect server. Requires Administrator privileges.
delete_runtime_cache(
client,
language,
version,
image_name = "Local",
dry_run = FALSE
)
client |
A |
language |
The language of the cache, either "R" or "Python". |
version |
The version of the cache, e.g. "4.3.3". |
image_name |
Optional. The name of the off-host execution image for the cache, or "Local" (the default) for native execution caches. |
dry_run |
Optional, default |
A Task
object representing the deletion task. If dry_run
is
TRUE
, returns NULL
or throws an error if the deletion would fail.
get_runtime_caches()
Other server management functions:
get_runtime_caches()
## Not run:
client <- connect()
task <- delete_runtime_cache(client, "R", "4.3.3")
poll_task(task)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.