Learn R Programming

AzureML (version 0.1.1)

getEndpoints: Get Web Service Endpoints.

Description

Get the API endpoints that belong to a Microsoft Azure Machine Learning web service.

Usage

getEndpoints(wkID, authToken, wsID, url = prodURL)

Arguments

wkID
workspace ID
authToken
primary authorization token
wsID
the web service ID
url
the API url to make the call to, by default hits the Azure management API

Value

  • Returns a list of lists, where each endpoint is represented as a nested named list with the following fields:
    • Name
    • Description
    • CreationTime
    • WorkspaceId
    • WebServiceId
    • HelpLocation
    • PrimaryKey
    • SecondaryKey
    • ApiLocation
    • Version
    • MaxConcurrentCalls
    • DiagnosticsTraceLevel
    • ThrottleLevel

See Also

publishWebService consumeLists Other discovery functions: discoverSchema; getEPDetails; getFramework; getWSDetails; getWebServices

Examples

Run this code
endpoints <- getEndpoints("wkId", "authToken", "wsID")
helpURL <- endpoints[[1]]$HelpLocation
pKey <- endpoints[[1]]$PrimaryKey
apiURL <- endpoints[[1]]$ApiLocation

Run the code above in your browser using DataLab