Learn R Programming

AzureContainers (version 1.0.2)

get_aci: Get Azure Container Instance (ACI)

Description

Method for the AzureRMR::az_resource_group class.

Value

For get_aci(), an object of class az_container_instance representing the instance resource.

For list_acis(), a list of such objects.

Usage

get_aci(name)
list_acis()

Arguments

  • name: For get_aci(), the name of the container instance resource.

Details

The AzureRMR::az_resource_group class has both get_aci() and list_acis() methods, while the AzureRMR::az_subscription class only has the latter.

See Also

create_aci, delete_aci

az_container_instance

ACI documentation and API reference

Docker commandline reference

Examples

Run this code
# NOT RUN {
rg <- AzureRMR::az_rm$
    new(tenant="myaadtenant.onmicrosoft.com", app="app_id", password="password")$
    get_subscription("subscription_id")$
    get_resource_group("rgname")

rg$get_aci("mycontainer")

# }

Run the code above in your browser using DataLab