endpointHelp: Display AzureML Web Service Endpoint Help Screens.

Description Usage Arguments Value See Also Examples

View source: R/services.R

Description

Download and return help for the specified AzureML web service endpoint.

Usage

1
2
endpointHelp(ep, type = c("apidocument", "r-snippet", "score", "jobs",
  "update"))

Arguments

ep

an AzureML web service endpoint from the endpoints function.

type

the type of help to display.

Value

Returns the help text. If type = "apidocument", then returns the help as a list from a parsed JSON document describing the service.

See Also

Other discovery functions: discoverSchema, endpoints, services, workspace

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## Not run: 
ws <- workspace()

s <- services(ws)
e <- endpoints(ws, s[1,])
endpointHelp(e)

Particularly useful way to see expected service input and output:
endpointHelp(e)$definitions


## End(Not run)

AzureML documentation built on July 28, 2019, 1:02 a.m.