Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Redis Cache] New API Version 2022-06-01 with some extra linked server properties added for server role update/failover support #20869

Merged
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"linkedRedisCacheId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/Redis/cache2",
"linkedRedisCacheLocation": "West US",
"geoReplicatedPrimaryHostName": "cache2.geo.redis.cache.windows.net",
"geoReplicatedPrimaryHostNameDnsCName": "cache1.redis.cache.windows.net",
"primaryHostName": "cache1.redis.cache.windows.net",
"provisioningState": "Creating",
"serverRole": "Secondary"
}
Expand All @@ -38,7 +38,7 @@
"linkedRedisCacheId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/Redis/cache2",
"linkedRedisCacheLocation": "West US",
"geoReplicatedPrimaryHostName": "cache2.geo.redis.cache.windows.net",
"geoReplicatedPrimaryHostNameDnsCName": "cache1.redis.cache.windows.net",
"primaryHostName": "cache1.redis.cache.windows.net",
"provisioningState": "Creating",
"serverRole": "Secondary"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"linkedRedisCacheId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/Redis/cache2",
"linkedRedisCacheLocation": "West US",
"geoReplicatedPrimaryHostName": "cache2.geo.redis.cache.windows.net",
"geoReplicatedPrimaryHostNameDnsCName": "cache1.redis.cache.windows.net",
"primaryHostName": "cache1.redis.cache.windows.net",
"provisioningState": "Succeeded",
"serverRole": "Secondary"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"linkedRedisCacheId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/Redis/cache2",
"linkedRedisCacheLocation": "West US",
"geoReplicatedPrimaryHostName": "cache2.geo.redis.cache.windows.net",
"geoReplicatedPrimaryHostNameDnsCName": "cache1.redis.cache.windows.net",
"primaryHostName": "cache1.redis.cache.windows.net",
"provisioningState": "Succeeded",
"serverRole": "Secondary"
}
Expand All @@ -30,7 +30,7 @@
"linkedRedisCacheId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/Redis/cache3",
"linkedRedisCacheLocation": "West US",
"geoReplicatedPrimaryHostName": "cache3.geo.redis.cache.windows.net",
"geoReplicatedPrimaryHostNameDnsCName": "cache1.redis.cache.windows.net",
"primaryHostName": "cache1.redis.cache.windows.net",
"provisioningState": "Succeeded",
"serverRole": "Secondary"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2670,12 +2670,12 @@
"geoReplicatedPrimaryHostName": {
"type": "string",
"readOnly": true,
"description": "Fully qualified geo subdomain URL which points to geo-primary cache among the linked redis caches."
"description": "Fully qualified geo hostname which points to geo-primary cache among the linked redis caches."
rohanand-MS marked this conversation as resolved.
Show resolved Hide resolved
},
"geoReplicatedPrimaryHostNameDnsCName": {
"primaryHostName": {
"type": "string",
"readOnly": true,
"description": "DNS CName corresponding to geo subdomain URL which points to geo-primary cache among the linked redis caches. This value will be the actual DNS hostname for the Geo Primary cache."
"description": "DNS corresponding to geo-primary cache among the linked redis caches."
rohanand-MS marked this conversation as resolved.
Show resolved Hide resolved
}
},
"required": [
Expand Down