Using MachineLearningNotebooks with azure.com

Jupyter Notebook integration

✓ Official SDK
Install
# See https://github.com/Azure/MachineLearningNotebooks
Gets all network interfaces in a subscription.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/providers/Microsoft.Network/networkInterfaces
Gets all network interfaces in a resource group.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces
Gets information about the specified network interface.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}
SDK on GitHub 📄 API Docs
SDK
MachineLearningNotebooks
Jupyter Notebook
API
azure.com
azure.com:network-networkInterface
At a glance
Language Jupyter Notebook
Endpoints11
✓ Official