Description Usage Arguments Value Note See Also Examples
Return a list of web services endpoints for the specified web service id.
1 2 3 | endpoints(ws, service_id, endpoint_id, host = ws$.management_endpoint)
getEndpoints(ws, service_id, endpoint_id, host = ws$.management_endpoint)
|
ws |
An AzureML workspace reference returned by |
service_id |
A web service Id, for example returned by |
endpoint_id |
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. |
host |
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.
getEndPoints
is an alias for endpoints
.
Other discovery functions: discoverSchema
,
endpointHelp
, services
,
workspace
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ## 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])
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.