Using MachineLearningNotebooks with azure.com

Jupyter Notebook integration

✓ Official SDK
Install
# See https://github.com/Azure/MachineLearningNotebooks
Gets all the network profiles in a subscription.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/providers/Microsoft.Network/networkProfiles
Gets all network profiles in a resource group.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles
Gets the specified network profile in a specified resource group.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}
SDK on GitHub 📄 API Docs
SDK
MachineLearningNotebooks
Jupyter Notebook
API
azure.com
azure.com:network-networkProfile
At a glance
Language Jupyter Notebook
Endpoints6
✓ Official