This is the extension for redisenterprise
Install this extension using the below CLI command
az extension add --name redisenterprise
az redisenterprise operation-status show --operation-id "testoperationid" --location "West US"
az redisenterprise create --cluster-name "cache1" --location "West US" --minimum-tls-version "1.2" \
--sku "EnterpriseFlash_F300" --capacity 3 --tags tag1="value1" --zones "1" "2" "3" --resource-group "rg1"
az redisenterprise show --cluster-name "cache1" --resource-group "rg1"
az redisenterprise list --resource-group "rg1"
az redisenterprise update --cluster-name "cache1" --minimum-tls-version "1.2" --sku "EnterpriseFlash_F300" \
--capacity 9 --tags tag1="value1" --resource-group "rg1"
az redisenterprise delete --cluster-name "cache1" --resource-group "rg1"
az redisenterprise database create --cluster-name "cache1" --client-protocol "Encrypted" \
--clustering-policy "EnterpriseCluster" --eviction-policy "AllKeysLRU" \
--modules name="RedisBloom" args="ERROR_RATE 0.00 INITIAL_SIZE 400" \
--modules name="RedisTimeSeries" args="RETENTION_POLICY 20" --modules name="RediSearch" \
--persistence aof-enabled=true aof-frequency="1s" --port 10000 --resource-group "rg1"
az redisenterprise database show --cluster-name "cache1" --resource-group "rg1"
az redisenterprise database list --cluster-name "cache1" --resource-group "rg1"
az redisenterprise database update --cluster-name "cache1" --client-protocol "Encrypted" \
--eviction-policy "AllKeysLRU" --persistence rdb-enabled=true rdb-frequency="12h" --resource-group "rg1"
az redisenterprise database export --cluster-name "cache1" \
--sas-uri "https://contosostorage.blob.core.window.net/urlToBlobContainer?sasKeyParameters" --resource-group "rg1"
az redisenterprise database import --cluster-name "cache1" \
--sas-uri "https://contosostorage.blob.core.window.net/urltoBlobFile?sasKeyParameters" --resource-group "rg1"
az redisenterprise database list-keys --cluster-name "cache1" --resource-group "rg1"
az redisenterprise database regenerate-key --cluster-name "cache1" --key-type "Primary" --resource-group "rg1"
az redisenterprise database delete --cluster-name "cache1" --resource-group "rg1"