RedisCache
Represents Azure Cache for Redis instances.
Labels: :ArmResource:RedisCache
Properties:
id- Resource ID (primary key)hostname- Host namedisableAccessKeyAuthentication- Whether access key authentication is disabledenableNonSslPort- Whether non-SSL port is enabledminimumTlsVersion- Minimum TLS versionport- Redis portsslPort- Redis SSL portredisVersion- Redis versionupdateChannel- Update channelinstancePorts- List of SSL ports for instances
Examples
// Find Redis caches with non-SSL port enabled
MATCH (r:RedisCache)
WHERE r.enableNonSslPort = true
RETURN r.name, r.hostname, r.minimumTlsVersion