Using MachineLearningNotebooks with azure.com

Jupyter Notebook integration

✓ Official SDK
Install
# See https://github.com/Azure/MachineLearningNotebooks
Retrieve a list of runbooks.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/runbooks
Retrieve the runbook identified by runbook name.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/runbooks/{runbookName}
Retrieve the runbook draft identified by runbook name.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/runbooks/{runbookName}/draft
SDK on GitHub 📄 API Docs
SDK
MachineLearningNotebooks
Jupyter Notebook
API
azure.com
azure.com:automation-runbook
At a glance
Language Jupyter Notebook
Endpoints18
✓ Official