AzureML (version 0.2.14)

services: List Available Web Services.

Description

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.

Usage

services(ws, service_id, name, host = ws$.management_endpoint)

getWebServices(ws, service_id, name, host = ws$.management_endpoint)

Arguments

ws

An AzureML workspace reference returned by workspace.

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

Value

Returns a data.frame with variables:

  • Id

  • Name

  • Description

  • CreationTime

  • WorkspaceId

  • DefaultEndpointName

Each row of the returned data.frame corresponds to a service.

See Also

Other discovery functions: discoverSchema, endpointHelp, endpoints, workspace

Examples

Run this code
# 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