|
26 | 26 | #' - `cores`: The number of CPU cores for the instance. |
27 | 27 | #' - `memory`: The memory size in GB for the instance. |
28 | 28 | #' - `os`: The operating system to run in the instance. |
29 | | -#' - `command`: A list of commands to run in the instance. This is similar to the `--entrypoint` commandline argument to `docker run`; see [here](https://docs.microsoft.com/en-us/azure/container-instances/container-instances-start-command) for some examples. |
| 29 | +#' - `command`: A list of commands to run in the instance. This is similar to the `--entrypoint` commandline argument to `docker run`; see [here](https://learn.microsoft.com/en-us/azure/container-instances/container-instances-start-command) for some examples. |
30 | 30 | #' - `env_vars`: A list of name-value pairs to set as environment variables in the instance. |
31 | 31 | #' - `secure_env_vars`: A list of name-value pairs to set as _secure_ environment variables in the instance. The values of these variables are not visible in the container's properties, eg when viewed in the Azure portal or via the CLI. |
32 | 32 | #' - `ports`: The network ports to open. By default, opens ports 80 and 443. See 'Details'. |
33 | 33 | #' - `dns_name`: The domain name prefix for the instance. Only takes effect if `public_ip=TRUE`. |
34 | 34 | #' - `public_ip`: Whether the instance should be publicly accessible. |
35 | 35 | #' - `restart`: Whether to restart the instance should an event occur. |
36 | 36 | #' - `managed_identity`: Whether to assign the container instance a managed identity. |
37 | | -#' - `...`: Other named arguments to pass to the [az_resource] initialization function. |
| 37 | +#' - `...`: Other named arguments to pass to the [AzureRMR::az_resource] initialization function. |
38 | 38 | #' |
39 | 39 | #' @section Details: |
40 | | -#' An ACI resource is a running container hosted in Azure. See the [documentation for the resource](https://docs.microsoft.com/en-us/azure/container-instances/) for more information. Currently ACI only supports a single image in an instance. |
| 40 | +#' An ACI resource is a running container hosted in Azure. See the [documentation for the resource](https://learn.microsoft.com/en-us/azure/container-instances/) for more information. Currently ACI only supports a single image in an instance. |
41 | 41 | #' |
42 | 42 | #' To supply the registry authentication credentials, the `registry_creds` argument should contain either an [ACR][acr] object, a [docker_registry] object, or the result of a call to the [aci_creds] function. |
43 | 43 | #' |
|
51 | 51 | #' |
52 | 52 | #' [az_container_instance] |
53 | 53 | #' |
54 | | -#' [ACI documentation](https://docs.microsoft.com/en-us/azure/container-instances/) and |
55 | | -#' [API reference](https://docs.microsoft.com/en-us/rest/api/container-instances/) |
| 54 | +#' [ACI documentation](https://learn.microsoft.com/en-us/azure/container-instances/) and |
| 55 | +#' [API reference](https://learn.microsoft.com/en-us/rest/api/container-instances/) |
56 | 56 | #' |
57 | 57 | #' [Docker commandline reference](https://docs.docker.com/engine/reference/commandline/cli/) |
58 | 58 | #' |
|
103 | 103 | #' |
104 | 104 | #' [az_container_instance] |
105 | 105 | #' |
106 | | -#' [ACI documentation](https://docs.microsoft.com/en-us/azure/container-instances/) and |
107 | | -#' [API reference](https://docs.microsoft.com/en-us/rest/api/container-instances/) |
| 106 | +#' [ACI documentation](https://learn.microsoft.com/en-us/azure/container-instances/) and |
| 107 | +#' [API reference](https://learn.microsoft.com/en-us/rest/api/container-instances/) |
108 | 108 | #' |
109 | 109 | #' [Docker commandline reference](https://docs.docker.com/engine/reference/commandline/cli/) |
110 | 110 | #' |
|
146 | 146 | #' |
147 | 147 | #' [az_container_instance] |
148 | 148 | #' |
149 | | -#' [ACI documentation](https://docs.microsoft.com/en-us/azure/container-instances/) and |
150 | | -#' [API reference](https://docs.microsoft.com/en-us/rest/api/container-instances/) |
| 149 | +#' [ACI documentation](https://learn.microsoft.com/en-us/azure/container-instances/) and |
| 150 | +#' [API reference](https://learn.microsoft.com/en-us/rest/api/container-instances/) |
151 | 151 | #' |
152 | 152 | #' [Docker commandline reference](https://docs.docker.com/engine/reference/commandline/cli/) |
153 | 153 | #' |
|
0 commit comments