get_rec_service {SAR} | R Documentation |
Get existing Azure recommender service
Description
Method for the AzureRMR::az_resource_group and AzureRMR::az_subscription classes.
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.
Value
An object of class az_rec_service
representing the deployed recommender service.
See Also
create_rec_service, delete_rec_service
Examples
## 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")
## End(Not run)
[Package SAR version 1.0.3 Index]