MLWorkspace
Represents Azure Machine Learning Workspaces.
Labels: :ArmResource:MLWorkspace
Properties:
id- Resource ID (primary key)allowRoleAssignmentOnRG- Allow role assignment on resource groupcreationTime- Creation timediscoveryUrl- Discovery URLfriendlyName- Friendly namenetworkAclBypass- Network ACL bypass settingnetworkAclDefaultAction- Network ACL default actionnotebookInfoFqdn- Notebook info FQDNisPrivateLinkEnabled- Whether private link is enabledpublicNetworkAccess- Public network access settingsoftDeleteEnabled- Whether soft delete is enabledtenantId- Tenant ID
Examples
// Find ML workspaces with public network access
MATCH (ml:MLWorkspace)
WHERE ml.publicNetworkAccess = 'Enabled'
RETURN ml.name, ml.friendlyName