Description Usage Arguments Value Note See Also Examples
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.
1 2 3 | services(ws, service_id, name, host = ws$.management_endpoint)
getWebServices(ws, service_id, name, host = ws$.management_endpoint)
|
ws |
An AzureML workspace reference returned by |
service_id |
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. |
name |
optional web service name. If supplied, return the web service information for services with matching names. Leave undefined to return all services. |
host |
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.
getWebServices
is an alias for services
.
Other discovery functions: discoverSchema
,
endpointHelp
, endpoints
,
workspace
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## 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)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.