ApimService
Represents Azure API Management Service instances.
Labels: :ArmResource:ApimService
Properties:
id- Resource ID (primary key)createdAt- Creation timestampdeveloperPortalStatus- Developer portal statusdeveloperPortalUrl- Developer portal URLgatewayRegionalUrl- Gateway regional URLgatewayUrl- Gateway URLlegacyPortalStatus- Legacy portal statusmanagementApiUrl- Management API URLoutboundPublicIpAddresses- Outbound public IP addressesportalUrl- Portal URLpublicIpAddresses- Public IP addressespublicNetworkAccess- Public network access settingpublisherEmail- Publisher emailpublisherName- Publisher namepublisherChannel- Publisher channelscmUrl- SCM URL
Relationships
Outgoing
- Tenant →
MANAGES→ Tenant - Managed by tenant relationship (from managed tenants)
Examples
// Find APIM services with public access
MATCH (a:ApimService)
WHERE a.publicNetworkAccess = 'Enabled'
RETURN a.name, a.gatewayUrl, a.publisherName