ServiceBusNamespace
Represents Azure Service Bus Namespace resources.
Labels: :ArmResource:ServiceBusNamespace
Properties:
id- Resource ID (primary key)createdAt- Creation timestampdisableLocalAuth- Whether local authentication is disabledserviceBusEndpoint- Service Bus endpointpublicNetworkAccess- Public network access setting
Examples
// Find Service Bus namespaces with local auth enabled
MATCH (sb:ServiceBusNamespace)
WHERE sb.disableLocalAuth = false OR sb.disableLocalAuth IS NULL
RETURN sb.name, sb.serviceBusEndpoint