Learn R Programming

SAR (version 1.0.3)

get_rec_service: Get existing Azure recommender service

Description

Method for the AzureRMR::az_resource_group and AzureRMR::az_subscription classes.

Value

An object of class az_rec_service representing the deployed recommender service.

Usage

get_rec_service(name, data_container = "inputdata")

Arguments

  • name: The name of the recommender service.

  • data_container: The name of the blob container within the storage account to use for storing datasets.

See Also

create_rec_service, delete_rec_service

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")

# get a recommender service
rg$get_rec_service("myrec")

# }

Run the code above in your browser using DataLab