
Return a list of web services endpoints for the specified web service id.
endpoints(ws, service_id, endpoint_id, host = ws$.management_endpoint)getEndpoints(ws, service_id, endpoint_id, host = ws$.management_endpoint)
An AzureML workspace reference returned by workspace
.
A web service Id, for example returned by services
; alternatively a row from the services data frame identifying the service.
An optional endpoint id. If supplied, return the endpoint information for just that id. Leave undefined to return a data.frame of all end points associated with the service.
The AzureML web services URI
Returns a data.frame with variables:
Name
Description
CreationTime
WorkspaceId
WebServiceId
HelpLocation
PrimaryKey
SecondaryKey
ApiLocation
Version
MaxConcurrentCalls
DiagnosticsTraceLevel
ThrottleLevel
Each row of the data.frame corresponds to an end point.
Other discovery functions: discoverSchema
,
endpointHelp
, services
,
workspace
# NOT RUN {
workspace_id <- "" # Your AzureML workspace id
authorization_token <- "" # Your AsureML authorization token
ws <- workspace(
id = workspace_id,
auth = authorization_token
)
s <- services(ws)
endpoints(ws, s$Id[1])
# Note that you can alternatively just use the entire row that
# describes the service.
endpoints(ws, s[1,])
# Equivalent:
getEndpoints(ws, s$Id[1])
# }
Run the code above in your browser using DataLab