
Last chance! 50% off unlimited learning
Sale ends in
Return a list of web services available to the specified Microsoft Azure Machine Learning workspace. The result is cached in the workspace environment similarly to datasets and experiments.
services(ws, service_id, name, host = ws$.management_endpoint)getWebServices(ws, service_id, name, host = ws$.management_endpoint)
An AzureML workspace reference returned by workspace
.
optional web service id. If supplied, return the web service information for just the specified service id. Leave undefined to return a data.frame of all services.
optional web service name. If supplied, return the web service information for services with matching names. Leave undefined to return all services.
the AzureML web services URI
Returns a data.frame with variables:
Id
Name
Description
CreationTime
WorkspaceId
DefaultEndpointName
Each row of the returned data.frame corresponds to a service.
Other discovery functions: discoverSchema
,
endpointHelp
, endpoints
,
workspace
# NOT RUN {
workspace_id <- "" # Your AzureML workspace id
authorization_token <- "" # Your AzureML authorization token
ws <- workspace(
id = workspace_id,
auth = authorization_token
)
# Equivalent:
services(ws)
getWebServices(ws)
# }
Run the code above in your browser using DataLab