Using MachineLearningNotebooks with azure.com

Jupyter Notebook integration

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