diff --git a/ChangeLog.md b/ChangeLog.md
index d574b4d8ff7a..b58764902dc7 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,4 +1,6 @@
## 2015.09.03 version 0.9.8
+* Azure Redis Cache cmdlets
+ * New-AzureRMRedisCache - 'RedisVersion' parameter is deprecated.
* Azure Compute (ARM) Cmdlets
* Added -Launch parameter for Get-AzureRemoteDesktopFile cmdlet
* Added Id parameter for VM cmdlets to support piping scenario without ResourceGroupName parameter
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1
index ff0235216c7c..962cf2debae9 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1
@@ -9,7 +9,7 @@ function Test-RedisCache
$resourceGroupName = "MyResourceGroup"
$cacheName = "powershelltest"
$location = "North Central US"
-
+
# Creating Cache
$cacheCreated = New-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 250MB -Sku Basic
@@ -21,7 +21,7 @@ function Test-RedisCache
Assert-AreEqual 6379 $cacheCreated.Port
Assert-AreEqual 6380 $cacheCreated.SslPort
Assert-AreEqual "creating" $cacheCreated.ProvisioningState
- Assert-AreEqual "2.8" $cacheCreated.RedisVersion
+ Assert-AreEqual "3.0" $cacheCreated.RedisVersion
Assert-AreEqual "250MB" $cacheCreated.Size
Assert-AreEqual "Basic" $cacheCreated.Sku
@@ -32,7 +32,7 @@ function Test-RedisCache
for ($i = 0; $i -le 60; $i++)
{
[Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
- $cacheGet = Get-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName
+ $cacheGet = Get-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName
if ([string]::Compare("succeeded", $cacheGet[0].ProvisioningState, $True) -eq 0)
{
Assert-AreEqual $cacheName $cacheGet[0].Name
@@ -43,7 +43,7 @@ function Test-RedisCache
Assert-AreEqual 6379 $cacheGet[0].Port
Assert-AreEqual 6380 $cacheGet[0].SslPort
Assert-AreEqual "succeeded" $cacheGet[0].ProvisioningState
- Assert-AreEqual "2.8" $cacheGet[0].RedisVersion
+ Assert-AreEqual "3.0" $cacheGet[0].RedisVersion
Assert-AreEqual "250MB" $cacheGet[0].Size
Assert-AreEqual "Basic" $cacheGet[0].Sku
break
@@ -62,12 +62,12 @@ function Test-RedisCache
Assert-AreEqual 6379 $cacheUpdated.Port
Assert-AreEqual 6380 $cacheUpdated.SslPort
Assert-AreEqual "succeeded" $cacheUpdated.ProvisioningState
- Assert-AreEqual "2.8" $cacheUpdated.RedisVersion
+ Assert-AreEqual "3.0" $cacheUpdated.RedisVersion
Assert-AreEqual "250MB" $cacheUpdated.Size
Assert-AreEqual "Basic" $cacheUpdated.Sku
Assert-AreEqual "allkeys-lru" $cacheUpdated.RedisConfiguration.Item("maxmemory-policy")
Assert-True { $cacheUpdated.EnableNonSslPort }
-
+
Assert-NotNull $cacheUpdated.PrimaryKey "PrimaryKey do not exists"
Assert-NotNull $cacheUpdated.SecondaryKey "SecondaryKey do not exists"
@@ -88,7 +88,7 @@ function Test-RedisCache
Assert-AreEqual 6379 $cachesInResourceGroup[$i].Port
Assert-AreEqual 6380 $cachesInResourceGroup[$i].SslPort
Assert-AreEqual "succeeded" $cachesInResourceGroup[$i].ProvisioningState
- Assert-AreEqual "2.8" $cachesInResourceGroup[$i].RedisVersion
+ Assert-AreEqual "3.0" $cachesInResourceGroup[$i].RedisVersion
Assert-AreEqual "250MB" $cachesInResourceGroup[$i].Size
Assert-AreEqual "Basic" $cachesInResourceGroup[$i].Sku
break
@@ -114,7 +114,7 @@ function Test-RedisCache
Assert-AreEqual 6379 $cachesInSubscription[$i].Port
Assert-AreEqual 6380 $cachesInSubscription[$i].SslPort
Assert-AreEqual "succeeded" $cachesInSubscription[$i].ProvisioningState
- Assert-AreEqual "2.8" $cachesInSubscription[$i].RedisVersion
+ Assert-AreEqual "3.0" $cachesInSubscription[$i].RedisVersion
Assert-AreEqual "250MB" $cachesInSubscription[$i].Size
Assert-AreEqual "Basic" $cachesInSubscription[$i].Sku
break
@@ -148,7 +148,7 @@ function Test-SetNonExistingRedisCacheTest
$resourceGroupName = "MyResourceGroup"
$cacheName = "NonExistingRedisCache"
$location = "North Central US"
-
+
# Creating Cache
Assert-Throws {Set-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -RedisConfiguration @{"maxmemory-policy" = "allkeys-random"} }
}
@@ -164,7 +164,7 @@ function Test-RedisCachePipeline
$resourceGroupName = "MyResourceGroup"
$cacheName = "powershelltestpipe"
$location = "North Central US"
-
+
# Creating Cache
$cacheCreated = New-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 250MB -Sku Basic -EnableNonSslPort $true
@@ -176,7 +176,7 @@ function Test-RedisCachePipeline
Assert-AreEqual 6379 $cacheCreated.Port
Assert-AreEqual 6380 $cacheCreated.SslPort
Assert-AreEqual "creating" $cacheCreated.ProvisioningState
- Assert-AreEqual "2.8" $cacheCreated.RedisVersion
+ Assert-AreEqual "3.0" $cacheCreated.RedisVersion
Assert-AreEqual "250MB" $cacheCreated.Size
Assert-AreEqual "Basic" $cacheCreated.Sku
Assert-True { $cacheCreated.EnableNonSslPort }
@@ -188,7 +188,7 @@ function Test-RedisCachePipeline
for ($i = 0; $i -le 60; $i++)
{
[Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
- $cacheGet = Get-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName
+ $cacheGet = Get-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName
if ([string]::Compare("succeeded", $cacheGet[0].ProvisioningState, $True) -eq 0)
{
Assert-AreEqual $cacheName $cacheGet[0].Name
@@ -199,14 +199,14 @@ function Test-RedisCachePipeline
Assert-AreEqual 6379 $cacheGet[0].Port
Assert-AreEqual 6380 $cacheGet[0].SslPort
Assert-AreEqual "succeeded" $cacheGet[0].ProvisioningState
- Assert-AreEqual "2.8" $cacheGet[0].RedisVersion
+ Assert-AreEqual "3.0" $cacheGet[0].RedisVersion
Assert-AreEqual "250MB" $cacheGet[0].Size
Assert-AreEqual "Basic" $cacheGet[0].Sku
break
}
Assert-False {$i -eq 60} "Cache is not in succeeded state even after 30 min."
}
-
+
# Updating Cache using pipeline
Get-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName | Set-AzureRMRedisCache -RedisConfiguration @{"maxmemory-policy" = "allkeys-random"} -EnableNonSslPort $false
$cacheUpdatedPiped = Get-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName
@@ -219,7 +219,7 @@ function Test-RedisCachePipeline
Assert-AreEqual 6379 $cacheUpdatedPiped.Port
Assert-AreEqual 6380 $cacheUpdatedPiped.SslPort
Assert-AreEqual "succeeded" $cacheUpdatedPiped.ProvisioningState
- Assert-AreEqual "2.8" $cacheUpdatedPiped.RedisVersion
+ Assert-AreEqual "3.0" $cacheUpdatedPiped.RedisVersion
Assert-AreEqual "250MB" $cacheUpdatedPiped.Size
Assert-AreEqual "Basic" $cacheUpdatedPiped.Sku
Assert-AreEqual "allkeys-random" $cacheUpdatedPiped.RedisConfiguration.Item("maxmemory-policy")
@@ -250,12 +250,12 @@ function Test-SetRedisCacheBugFixTest
$resourceGroupName = "Siddharth"
$cacheName = "siddharthchatrola"
$location = "North Central US"
-
- # Updating Cache
+
+ # Updating Cache
$cacheUpdated = Set-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -EnableNonSslPort $true
Assert-True { $cacheUpdated.EnableNonSslPort }
-
+
$cacheUpdated2 = Set-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -RedisConfiguration @{"maxmemory-policy" = "allkeys-lru"}
- Assert-AreEqual "allkeys-lru" $cacheUpdated2.RedisConfiguration.Item("maxmemory-policy")
- Assert-True { $cacheUpdated2.EnableNonSslPort }
+ Assert-AreEqual "allkeys-lru" $cacheUpdated2.RedisConfiguration.Item("maxmemory-policy")
+ Assert-True { $cacheUpdated2.EnableNonSslPort }
}
\ No newline at end of file
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json
index 9a691ac6efd2..0ea8b37b425b 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/powershelltest' under resource group 'MyResourceGroup' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "69"
+ "155"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28,13 +28,13 @@
"gateway"
],
"x-ms-request-id": [
- "8380448e-97fb-4560-b8ae-c1aaec80cfa8"
+ "a528d84d-0a14-4df7-bef2-15543e4a9944"
],
"x-ms-correlation-request-id": [
- "8380448e-97fb-4560-b8ae-c1aaec80cfa8"
+ "a528d84d-0a14-4df7-bef2-15543e4a9944"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193735Z:8380448e-97fb-4560-b8ae-c1aaec80cfa8"
+ "WESTUS:20150914T194729Z:a528d84d-0a14-4df7-bef2-15543e4a9944"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:37:35 GMT"
+ "Mon, 14 Sep 2015 19:47:28 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,10 +58,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,28 +73,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2a44e379-68fe-4553-8020-9b06528dabd7"
+ "331025cf-644c-459f-8c1f-e265f1b76370"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31559"
+ "14810"
],
"x-ms-correlation-request-id": [
- "1812fc81-66c5-4fc2-ad87-0505c6582a84"
+ "5bdd5edc-e250-44ef-8dc4-2241ca44ddd8"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193812Z:1812fc81-66c5-4fc2-ad87-0505c6582a84"
+ "WESTUS:20150914T194803Z:5bdd5edc-e250-44ef-8dc4-2241ca44ddd8"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:38:12 GMT"
+ "Mon, 14 Sep 2015 19:48:03 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -103,8 +103,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -112,10 +112,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -127,28 +127,28 @@
"no-cache"
],
"x-ms-request-id": [
- "12913570-cd8a-48fb-8f99-cdb72b8eed57"
+ "af0aafc4-5bef-479a-9488-252833210f82"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31554"
+ "14809"
],
"x-ms-correlation-request-id": [
- "81bec777-c010-4258-a5b5-5a5945888ea0"
+ "6bc33a8d-0d1f-4c56-a084-ff02ce5ce8cd"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193842Z:81bec777-c010-4258-a5b5-5a5945888ea0"
+ "WESTUS:20150914T194834Z:6bc33a8d-0d1f-4c56-a084-ff02ce5ce8cd"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:38:42 GMT"
+ "Mon, 14 Sep 2015 19:48:34 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -157,8 +157,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -166,10 +166,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -181,28 +181,28 @@
"no-cache"
],
"x-ms-request-id": [
- "055ab4a9-e96d-40bf-84e1-c99891741fea"
+ "e3cb1023-f24f-4845-a8eb-abcb1a1fb137"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31545"
+ "14808"
],
"x-ms-correlation-request-id": [
- "b19fdb1f-d87a-47e1-b0c6-9fe2bf3b3816"
+ "384c4a62-2d14-45c6-abb0-e4b5f365a6f8"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193913Z:b19fdb1f-d87a-47e1-b0c6-9fe2bf3b3816"
+ "WESTUS:20150914T194904Z:384c4a62-2d14-45c6-abb0-e4b5f365a6f8"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:39:13 GMT"
+ "Mon, 14 Sep 2015 19:49:03 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -211,8 +211,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -220,10 +220,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -235,28 +235,28 @@
"no-cache"
],
"x-ms-request-id": [
- "77663575-b907-4a26-89b6-b11da6dcbe05"
+ "37d1fc2e-4bbe-4794-80d1-3027ada70062"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31540"
+ "14807"
],
"x-ms-correlation-request-id": [
- "79f393f1-d3e5-4e05-b9e5-69e88485f67b"
+ "8d3897f0-edb4-430f-a30f-1cfdf13fcc50"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193943Z:79f393f1-d3e5-4e05-b9e5-69e88485f67b"
+ "WESTUS:20150914T194934Z:8d3897f0-edb4-430f-a30f-1cfdf13fcc50"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:39:43 GMT"
+ "Mon, 14 Sep 2015 19:49:33 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -265,8 +265,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -274,10 +274,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -289,28 +289,28 @@
"no-cache"
],
"x-ms-request-id": [
- "417200cb-54b4-424d-b846-913860fe3aec"
+ "64244458-f898-4412-8974-c91d40a8563c"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31564"
+ "14839"
],
"x-ms-correlation-request-id": [
- "b9c54b70-5379-476a-bb1c-4a9b9c2b09b8"
+ "df8515c1-4590-459c-90d0-2215f6b836cf"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194014Z:b9c54b70-5379-476a-bb1c-4a9b9c2b09b8"
+ "WESTUS:20150914T195004Z:df8515c1-4590-459c-90d0-2215f6b836cf"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:40:14 GMT"
+ "Mon, 14 Sep 2015 19:50:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -319,8 +319,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -328,10 +328,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -343,28 +343,28 @@
"no-cache"
],
"x-ms-request-id": [
- "eda75745-72be-48cb-9485-409b1e1dd90d"
+ "62ef6866-0984-472f-90ba-d05388061395"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31562"
+ "14838"
],
"x-ms-correlation-request-id": [
- "882a3dcb-bec0-47cd-b8bf-2e927e092998"
+ "66e05dbd-4980-4803-b6f3-6db7769dd677"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194045Z:882a3dcb-bec0-47cd-b8bf-2e927e092998"
+ "WESTUS:20150914T195034Z:66e05dbd-4980-4803-b6f3-6db7769dd677"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:40:44 GMT"
+ "Mon, 14 Sep 2015 19:50:34 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -373,8 +373,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -382,10 +382,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -397,28 +397,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d32e9654-49ca-4d08-810f-e03f3c865787"
+ "2401b5e2-26b2-496a-babb-f36a5d410f4f"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31559"
+ "14835"
],
"x-ms-correlation-request-id": [
- "e2b69ad5-347f-4071-8f88-f74c792aa1cf"
+ "ac3464ba-2452-44a6-861b-6803dff30866"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194115Z:e2b69ad5-347f-4071-8f88-f74c792aa1cf"
+ "WESTUS:20150914T195104Z:ac3464ba-2452-44a6-861b-6803dff30866"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:41:15 GMT"
+ "Mon, 14 Sep 2015 19:51:03 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -427,8 +427,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -436,10 +436,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -451,28 +451,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8d13f1e3-2afb-42b4-a54a-e6e82dfa357b"
+ "f19d9eed-0000-4c4a-b323-b206f6a1bb97"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31555"
+ "14834"
],
"x-ms-correlation-request-id": [
- "15aca407-28c9-4a0b-8e2a-32dfc1c06758"
+ "c9620049-3f68-4d83-b1c8-c8bf08cdea2a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194146Z:15aca407-28c9-4a0b-8e2a-32dfc1c06758"
+ "WESTUS:20150914T195134Z:c9620049-3f68-4d83-b1c8-c8bf08cdea2a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:41:45 GMT"
+ "Mon, 14 Sep 2015 19:51:34 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -481,8 +481,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -490,10 +490,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -505,28 +505,28 @@
"no-cache"
],
"x-ms-request-id": [
- "5a87cae1-e81e-4842-8385-4e37447730c2"
+ "7bb5028d-a20b-4cb4-8ed3-47bd12d7a770"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31552"
+ "14832"
],
"x-ms-correlation-request-id": [
- "8928814f-7929-4771-bd73-b9890b33437d"
+ "6f3eadb5-0ab3-44df-8fa6-ce88577cb01e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194216Z:8928814f-7929-4771-bd73-b9890b33437d"
+ "WESTUS:20150914T195204Z:6f3eadb5-0ab3-44df-8fa6-ce88577cb01e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:42:16 GMT"
+ "Mon, 14 Sep 2015 19:52:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -535,8 +535,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -544,10 +544,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -559,28 +559,28 @@
"no-cache"
],
"x-ms-request-id": [
- "e2c5c10e-79fe-436e-8fcc-b634560dc60d"
+ "8a3b9142-09ca-401a-988c-6456dd404c80"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31551"
+ "14830"
],
"x-ms-correlation-request-id": [
- "1bf0b382-aeef-41f7-9018-50ef300c2358"
+ "ae562988-cc53-4a09-addb-2b9fe753458d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194246Z:1bf0b382-aeef-41f7-9018-50ef300c2358"
+ "WESTUS:20150914T195235Z:ae562988-cc53-4a09-addb-2b9fe753458d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:42:45 GMT"
+ "Mon, 14 Sep 2015 19:52:34 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -589,8 +589,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -598,10 +598,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -613,28 +613,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d334d26c-8c6a-455d-85b0-092a6526ab36"
+ "4c38b7cf-50c0-4f01-ba5c-f2a163e0e671"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31547"
+ "14829"
],
"x-ms-correlation-request-id": [
- "6aab8181-3e34-4011-aadb-d26ec2bcadca"
+ "5f2b83ef-b84c-459f-9f38-2ebca8f56009"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194316Z:6aab8181-3e34-4011-aadb-d26ec2bcadca"
+ "WESTUS:20150914T195305Z:5f2b83ef-b84c-459f-9f38-2ebca8f56009"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:43:15 GMT"
+ "Mon, 14 Sep 2015 19:53:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -643,8 +643,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -652,10 +652,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -667,28 +667,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8e5e43aa-f6cb-4356-8014-24aa33a10c7e"
+ "5a186fbf-b175-43f5-ae71-4fcf3c6e1640"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31545"
+ "14828"
],
"x-ms-correlation-request-id": [
- "dd0c48ac-b376-4842-8ec2-350f028c2876"
+ "bea345a3-44f5-418d-908b-4509aa4d5b17"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194348Z:dd0c48ac-b376-4842-8ec2-350f028c2876"
+ "WESTUS:20150914T195335Z:bea345a3-44f5-418d-908b-4509aa4d5b17"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:43:47 GMT"
+ "Mon, 14 Sep 2015 19:53:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -697,8 +697,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -706,10 +706,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -721,28 +721,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b10c2ef4-3d90-4568-8d7b-e22e79298f96"
+ "770786d5-aa46-4a7e-9edb-351e2839ceeb"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31539"
+ "14826"
],
"x-ms-correlation-request-id": [
- "3099c2c3-f7d9-42d2-b849-47ef265bac77"
+ "3612384b-61e8-4cc8-ab08-b9167ad754d9"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194418Z:3099c2c3-f7d9-42d2-b849-47ef265bac77"
+ "WESTUS:20150914T195405Z:3612384b-61e8-4cc8-ab08-b9167ad754d9"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:44:17 GMT"
+ "Mon, 14 Sep 2015 19:54:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -751,8 +751,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -760,10 +760,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -775,28 +775,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c75bf595-e1bb-4597-b919-2c195f8bb9d0"
+ "7d70b9ed-d476-4e53-bf30-f02698defed5"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31537"
+ "14823"
],
"x-ms-correlation-request-id": [
- "71508292-4aa0-48c9-82a9-7c72e8dff583"
+ "4612fbc8-7458-4457-a254-a5d101ef5e33"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194448Z:71508292-4aa0-48c9-82a9-7c72e8dff583"
+ "WESTUS:20150914T195435Z:4612fbc8-7458-4457-a254-a5d101ef5e33"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:44:47 GMT"
+ "Mon, 14 Sep 2015 19:54:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -805,8 +805,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -814,10 +814,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -829,28 +829,28 @@
"no-cache"
],
"x-ms-request-id": [
- "566e93bc-4c15-4516-8c2f-745c7c2f1235"
+ "12b07990-36d9-49fb-9d56-da2975f06290"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31566"
+ "14839"
],
"x-ms-correlation-request-id": [
- "43d892e1-bd2c-470a-8d86-0b1787b52300"
+ "69105d8d-570b-443d-92c6-193fc3fa5600"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194518Z:43d892e1-bd2c-470a-8d86-0b1787b52300"
+ "WESTUS:20150914T195505Z:69105d8d-570b-443d-92c6-193fc3fa5600"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:45:17 GMT"
+ "Mon, 14 Sep 2015 19:55:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -859,8 +859,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -868,10 +868,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -883,28 +883,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4e35095e-68e9-4d5a-bcf8-363d05b9a934"
+ "cd98a61b-682c-4246-8433-496be628fd96"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31564"
+ "14838"
],
"x-ms-correlation-request-id": [
- "34b100ec-dfea-4c90-ab6a-0a66db34a8e2"
+ "539125ef-55c4-489d-9758-fe30d4610291"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194548Z:34b100ec-dfea-4c90-ab6a-0a66db34a8e2"
+ "WESTUS:20150914T195535Z:539125ef-55c4-489d-9758-fe30d4610291"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:45:48 GMT"
+ "Mon, 14 Sep 2015 19:55:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -913,8 +913,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -922,10 +922,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -937,28 +937,28 @@
"no-cache"
],
"x-ms-request-id": [
- "66536752-ad7c-4ba8-918b-85c830dc42c2"
+ "f76144b1-bd7e-4bb9-a672-ccb525e581c5"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31560"
+ "14836"
],
"x-ms-correlation-request-id": [
- "cb74176e-a183-4a10-a1a8-239fe08fb847"
+ "8b0337c3-32d0-41ab-a662-c8127b3eb666"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194618Z:cb74176e-a183-4a10-a1a8-239fe08fb847"
+ "WESTUS:20150914T195606Z:8b0337c3-32d0-41ab-a662-c8127b3eb666"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:46:18 GMT"
+ "Mon, 14 Sep 2015 19:56:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -967,8 +967,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -976,10 +976,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -991,28 +991,28 @@
"no-cache"
],
"x-ms-request-id": [
- "541afeb0-ff8e-4acb-8143-0339da4c3aad"
+ "c60c69ca-4fbf-45ef-a1e1-cce5d49b5680"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31559"
+ "14835"
],
"x-ms-correlation-request-id": [
- "ed586eb3-ac0c-4371-851d-3db887791492"
+ "a9e9ea15-7660-4c14-b81e-cdfedf08b50d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194648Z:ed586eb3-ac0c-4371-851d-3db887791492"
+ "WESTUS:20150914T195636Z:a9e9ea15-7660-4c14-b81e-cdfedf08b50d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:46:48 GMT"
+ "Mon, 14 Sep 2015 19:56:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1021,8 +1021,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1030,10 +1030,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1045,28 +1045,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4d464e91-d2f3-441d-b1cb-945fed75fd7f"
+ "d2d6b87d-7494-4fbd-a8bd-780df1de108e"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31556"
+ "14834"
],
"x-ms-correlation-request-id": [
- "c84d48d3-f18a-46df-91ac-938c9e573386"
+ "b54c17f6-9e1f-4fa7-8c1a-3c1adde48442"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194719Z:c84d48d3-f18a-46df-91ac-938c9e573386"
+ "WESTUS:20150914T195706Z:b54c17f6-9e1f-4fa7-8c1a-3c1adde48442"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:47:18 GMT"
+ "Mon, 14 Sep 2015 19:57:06 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1075,8 +1075,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1084,10 +1084,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1099,28 +1099,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4cfc2155-e90e-4d81-a024-cca8b5f54708"
+ "5ffa91dd-c494-4765-8607-5ae5d84ba5dd"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31554"
+ "14833"
],
"x-ms-correlation-request-id": [
- "68da7ba9-f7f9-4fe9-8c42-04b62b1200b1"
+ "2b062a3b-4e70-47e1-bfa9-c774a647a3fb"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194749Z:68da7ba9-f7f9-4fe9-8c42-04b62b1200b1"
+ "WESTUS:20150914T195736Z:2b062a3b-4e70-47e1-bfa9-c774a647a3fb"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:47:49 GMT"
+ "Mon, 14 Sep 2015 19:57:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1129,8 +1129,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1138,10 +1138,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1153,28 +1153,28 @@
"no-cache"
],
"x-ms-request-id": [
- "33f38a44-97f4-4c0a-9e64-7ed88a0c9211"
+ "0aa32669-246d-428b-8699-67078479213a"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31551"
+ "14832"
],
"x-ms-correlation-request-id": [
- "d0507c64-97bf-4f76-b523-4fd7c147e5a7"
+ "efd2bb05-7fba-40fc-8608-dfd83148ed3f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194819Z:d0507c64-97bf-4f76-b523-4fd7c147e5a7"
+ "WESTUS:20150914T195806Z:efd2bb05-7fba-40fc-8608-dfd83148ed3f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:48:19 GMT"
+ "Mon, 14 Sep 2015 19:58:06 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1183,8 +1183,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1192,10 +1192,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1207,28 +1207,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d7ae1e89-3706-47c7-9c74-e92e606c5a48"
+ "71333de1-59e2-45cc-92a3-4acf66ffb206"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31549"
+ "14831"
],
"x-ms-correlation-request-id": [
- "c7cb6898-b8db-4674-b861-48cd750694f4"
+ "db4c2a05-5e30-4367-bbd2-616dbd9b020b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194849Z:c7cb6898-b8db-4674-b861-48cd750694f4"
+ "WESTUS:20150914T195836Z:db4c2a05-5e30-4367-bbd2-616dbd9b020b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:48:49 GMT"
+ "Mon, 14 Sep 2015 19:58:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1237,8 +1237,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1246,10 +1246,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1261,28 +1261,28 @@
"no-cache"
],
"x-ms-request-id": [
- "688fc79d-052a-4150-b7ac-48cf15475ff6"
+ "8f546e5b-4489-440a-818e-f220d39f3cbd"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31544"
+ "14830"
],
"x-ms-correlation-request-id": [
- "dd165790-5188-408e-85de-198cdd95eef7"
+ "0ffa583c-d2a7-4ffa-8d00-8f58fe9121ce"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194919Z:dd165790-5188-408e-85de-198cdd95eef7"
+ "WESTUS:20150914T195906Z:0ffa583c-d2a7-4ffa-8d00-8f58fe9121ce"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:49:18 GMT"
+ "Mon, 14 Sep 2015 19:59:06 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1291,8 +1291,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1300,10 +1300,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "560"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1315,28 +1315,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8939a387-3dd5-482a-8050-737321dadf21"
+ "f383d42a-49e1-41ac-9866-ec68cbacf00d"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31542"
+ "14829"
],
"x-ms-correlation-request-id": [
- "a0684c4f-b338-4fa7-8563-40487dbf6f0c"
+ "7bbf369e-393f-4def-8c26-5d7200a9459a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T194950Z:a0684c4f-b338-4fa7-8563-40487dbf6f0c"
+ "WESTUS:20150914T195937Z:7bbf369e-393f-4def-8c26-5d7200a9459a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:49:49 GMT"
+ "Mon, 14 Sep 2015 19:59:36 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1345,8 +1345,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1354,10 +1354,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "561"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1369,28 +1369,28 @@
"no-cache"
],
"x-ms-request-id": [
- "17e76877-ba64-4779-bc58-4f8138a3fe97"
+ "0368ccec-db5e-4a45-9aa8-6ceb901f0b31"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31593"
+ "14840"
],
"x-ms-correlation-request-id": [
- "e49ba833-9d57-48ac-8fce-c5291e87286f"
+ "ba1112d4-433d-461f-808a-a301199b9c46"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T195020Z:e49ba833-9d57-48ac-8fce-c5291e87286f"
+ "WESTUS:20150914T200007Z:ba1112d4-433d-461f-808a-a301199b9c46"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:50:19 GMT"
+ "Mon, 14 Sep 2015 20:00:07 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1399,8 +1399,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1408,10 +1408,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "500"
+ "561"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1423,28 +1423,28 @@
"no-cache"
],
"x-ms-request-id": [
- "cf793558-bd41-46d1-8e6a-980a827da2f8"
+ "2930e9ab-3f94-459b-bed9-14871d7a8717"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31591"
+ "14839"
],
"x-ms-correlation-request-id": [
- "8d1e4ebd-0792-486c-a8d3-fb0348faa77f"
+ "d78f54e6-f0a9-413f-a254-06e48668e81e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T195050Z:8d1e4ebd-0792-486c-a8d3-fb0348faa77f"
+ "WESTUS:20150914T200007Z:d78f54e6-f0a9-413f-a254-06e48668e81e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:50:50 GMT"
+ "Mon, 14 Sep 2015 20:00:07 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1453,295 +1453,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "500"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "51d44d57-1b1a-439a-b03b-3721aa302397"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31586"
- ],
- "x-ms-correlation-request-id": [
- "c8a198b0-4459-4737-b257-c939d340a524"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150504T195120Z:c8a198b0-4459-4737-b257-c939d340a524"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 May 2015 19:51:20 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "500"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "f65ffcae-a03a-4b38-a7b8-5d6eb59dfad1"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31585"
- ],
- "x-ms-correlation-request-id": [
- "a15d6bba-354d-4eda-8672-13f71380aef7"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150504T195150Z:a15d6bba-354d-4eda-8672-13f71380aef7"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 May 2015 19:51:50 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "500"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "1318ba44-72d7-4f01-b890-d297b8fd8773"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31581"
- ],
- "x-ms-correlation-request-id": [
- "4a111747-ac27-4608-8378-35bb3543e101"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150504T195220Z:4a111747-ac27-4608-8378-35bb3543e101"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 May 2015 19:52:20 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "501"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "bfbce02f-02fb-40fd-8b9c-37acfd199ab5"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31574"
- ],
- "x-ms-correlation-request-id": [
- "59771d99-ec9e-46c1-a26b-ec9e8501d7b8"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150504T195250Z:59771d99-ec9e-46c1-a26b-ec9e8501d7b8"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 May 2015 19:52:49 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "501"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "a39865b4-63b6-4388-b13f-315661cdc034"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31573"
- ],
- "x-ms-correlation-request-id": [
- "dfb75f5b-b4bc-4c29-a4fd-c0b31e97c093"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150504T195250Z:dfb75f5b-b4bc-4c29-a4fd-c0b31e97c093"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 May 2015 19:52:50 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
],
"Content-Length": [
- "226"
+ "194"
],
"User-Agent": [
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": {\r\n \"primaryKey\": \"li+R06mpU7JLQMrPXGrFWjFPUXFPwexsoq/3YrHUV88=\",\r\n \"secondaryKey\": \"KX3+X6+pOKb4Dt9MzHvpaoGnqeyGoh8oh9Ar0mdaxiA=\"\r\n },\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"gz+UP8N2i0KYtJfYBgAs0xGtTKpbFFD9Vx0OMEG2ij0=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n },\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "619"
+ "679"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1753,31 +1483,31 @@
"no-cache"
],
"x-ms-request-id": [
- "88572074-7c12-40cb-905c-6946e5d1a372"
+ "be941d85-69e4-4d59-90fb-0cbac319c604"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "e539fbf6-cd96-4b56-9c98-656d9d065256"
+ "dbd87cc6-448f-44eb-b4d1-57775eb1b9db"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193741Z:e539fbf6-cd96-4b56-9c98-656d9d065256"
+ "WESTUS:20150914T194733Z:dbd87cc6-448f-44eb-b4d1-57775eb1b9db"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:37:41 GMT"
+ "Mon, 14 Sep 2015 19:47:33 GMT"
],
"Location": [
- "https://cur-rp-ncus.cacheinfra.icbbvt.windows-int.net:10225/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest"
+ "https://prod-rp-ncus.cacheinfra.windows.net:10225/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1786,10 +1516,10 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
@@ -1801,10 +1531,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"li+R06mpU7JLQMrPXGrFWjFPUXFPwexsoq/3YrHUV88=\",\r\n \"secondaryKey\": \"KX3+X6+pOKb4Dt9MzHvpaoGnqeyGoh8oh9Ar0mdaxiA=\"\r\n },\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"gz+UP8N2i0KYtJfYBgAs0xGtTKpbFFD9Vx0OMEG2ij0=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n },\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "651"
+ "712"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1816,28 +1546,28 @@
"no-cache"
],
"x-ms-request-id": [
- "fd990e41-db87-4e4e-859b-d8cedbf3deca"
+ "ea67415d-2327-4e77-b32c-c080bf36c1e5"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "61a639d0-7590-404d-8824-7ac1682911e6"
+ "0620eb62-3ecb-4a28-8c3a-22d3586f7419"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T195252Z:61a639d0-7590-404d-8824-7ac1682911e6"
+ "WESTUS:20150914T200009Z:0620eb62-3ecb-4a28-8c3a-22d3586f7419"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:52:52 GMT"
+ "Mon, 14 Sep 2015 20:00:09 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1846,8 +1576,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzLz9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzLz9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1855,10 +1585,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "558"
+ "605"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1870,28 +1600,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ce08f90c-e792-45dc-802c-a7934c57bf62"
+ "97562e48-efac-444b-a1a0-99f0cf3f61d7"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31572"
+ "14838"
],
"x-ms-correlation-request-id": [
- "991b65b0-c626-4938-83a2-719fc2776549"
+ "1340a192-087b-4633-a25f-18d6fa5a2794"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T195252Z:991b65b0-c626-4938-83a2-719fc2776549"
+ "WESTUS:20150914T200009Z:1340a192-087b-4633-a25f-18d6fa5a2794"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:52:52 GMT"
+ "Mon, 14 Sep 2015 20:00:09 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1900,8 +1630,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/providers/Microsoft.Cache/Redis/?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/providers/Microsoft.Cache/Redis/?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1909,10 +1639,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/redisperfnortheurop\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"redisperfnortheurop\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxMemoryPolicy\": \"volatile-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisperfnortheurop.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/mgmredislog\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"mgmredislog\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 4\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"mgmredislog.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/stresstesting/providers/Microsoft.Cache/Redis/rstressc0bncus\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"rstressc0bncus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc0bncus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/redisperfprod/providers/Microsoft.Cache/Redis/redisperf2a5\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"redisperf2a5\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisperf2a5.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/devconcache\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"devconcache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"devconcache.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/demiscache\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"demiscache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"demiscache.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/norepropls\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"norepropls\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"norepropls.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/connetiontest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"connetiontest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"connetiontest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/japetest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"japetest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"japetest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/timsanitych129\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"timsanitych129\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"timsanitych129.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/pfstress01\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"pfstress01\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"pfstress01.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/fixedit\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"fixedit\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-delta\": \"100\",\r\n \"maxmemory-reserved\": \"100\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"fixedit.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/throughgallery\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"throughgallery\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"throughgallery.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/stillworkinga\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"stillworkinga\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"stillworkinga.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepak1gbtest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"deepak1gbtest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepak1gbtest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepak2-5gbbsctest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"deepak2-5gbbsctest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepak2-5gbbsctest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepak2-5stdtest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"deepak2-5stdtest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepak2-5stdtest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepakv53gbstd\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"deepakv53gbstd\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 6\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepakv53gbstd.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/pallavrestest2\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"pallavrestest2\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-delta\": \"150\",\r\n \"maxmemory-reserved\": \"150\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"pallavrestest2.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/testdv5\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"testdv5\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"testdv5.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/namespacecheck81\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"namespacecheck81\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"namespacecheck81.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/btostestprod\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"btostestprod\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"btostestprod.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/productquerycache\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"productquerycache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"volatile-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"productquerycache.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/customerquerycache\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"customerquerycache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"volatile-ttl\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"customerquerycache.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/cacheinactive1\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"cacheinactive1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"cacheinactive1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc1bscus\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"rstressc1bscus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc1bscus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/prodscusafteroll\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"prodscusafteroll\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"prodscusafteroll.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepakv53gbsouthus\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"deepakv53gbsouthus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 6\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepakv53gbsouthus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/redcentralus\",\r\n \"location\": \"Central US\",\r\n \"name\": \"redcentralus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redcentralus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc6bwe\",\r\n \"location\": \"West Europe\",\r\n \"name\": \"rstressc6bwe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 6\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc6bwe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc5swe\",\r\n \"location\": \"West Europe\",\r\n \"name\": \"rstressc5swe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 5\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc5swe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc6swe\",\r\n \"location\": \"West Europe\",\r\n \"name\": \"rstressc6swe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 6\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc6swe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/re2ec1swe\",\r\n \"location\": \"West Europe\",\r\n \"name\": \"re2ec1swe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"re2ec1swe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/monitoringtestprod/providers/Microsoft.Cache/Redis/monitoringtestprod\",\r\n \"location\": \"North Europe\",\r\n \"name\": \"monitoringtestprod\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"monitoringtestprod.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/deepakv1gbstd\",\r\n \"location\": \"North Europe\",\r\n \"name\": \"deepakv1gbstd\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"noeviction\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepakv1gbstd.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/redisperfne\",\r\n \"location\": \"North Europe\",\r\n \"name\": \"redisperfne\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisperfne.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/depakv250mbbasic\",\r\n \"location\": \"North Europe\",\r\n \"name\": \"depakv250mbbasic\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"depakv250mbbasic.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc5bne\",\r\n \"location\": \"North Europe\",\r\n \"name\": \"rstressc5bne\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 5\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc5bne.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/azurefriday\",\r\n \"location\": \"West US\",\r\n \"name\": \"azurefriday\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"azurefriday.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/azurefriday2\",\r\n \"location\": \"West US\",\r\n \"name\": \"azurefriday2\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"azurefriday2.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc4bwus\",\r\n \"location\": \"West US\",\r\n \"name\": \"rstressc4bwus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 4\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc4bwus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/insightstest\",\r\n \"location\": \"West US\",\r\n \"name\": \"insightstest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"insightstest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/alfancli0805Try5\",\r\n \"location\": \"West US\",\r\n \"name\": \"alfancli0805Try5\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"alfancli0805Try5.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG4843/providers/Microsoft.Cache/Redis/xplatTestCache6151\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache6151\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache6151.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG4843/providers/Microsoft.Cache/Redis/xplatTestCache4763\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache4763\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache4763.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG2075/providers/Microsoft.Cache/Redis/xplatTestCache4107\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache4107\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache4107.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG2075/providers/Microsoft.Cache/Redis/xplatTestCache9959\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache9959\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache9959.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG8656/providers/Microsoft.Cache/Redis/xplatTestCache5332\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache5332\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache5332.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG8656/providers/Microsoft.Cache/Redis/xplatTestCache7409\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache7409\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache7409.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG1729/providers/Microsoft.Cache/Redis/xplatTestCache2835\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache2835\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache2835.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG1729/providers/Microsoft.Cache/Redis/xplatTestCache1530\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache1530\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache1530.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG1868/providers/Microsoft.Cache/Redis/xplatTestCache8279\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache8279\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache8279.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG1868/providers/Microsoft.Cache/Redis/xplatTestCache3131\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache3131\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache3131.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG7781/providers/Microsoft.Cache/Redis/xplatTestCache1687\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache1687\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache1687.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG7781/providers/Microsoft.Cache/Redis/xplatTestCache2876\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache2876\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache2876.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG3269/providers/Microsoft.Cache/Redis/xplatTestCache9660\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache9660\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache9660.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG3269/providers/Microsoft.Cache/Redis/xplatTestCache1504\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache1504\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache1504.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG5807/providers/Microsoft.Cache/Redis/xplatTestCache3016\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache3016\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache3016.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG5807/providers/Microsoft.Cache/Redis/xplatTestCache6730\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache6730\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache6730.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG9698/providers/Microsoft.Cache/Redis/xplatTestCache4344\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache4344\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache4344.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG9698/providers/Microsoft.Cache/Redis/xplatTestCache3854\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache3854\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache3854.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/alfanssltry4\",\r\n \"location\": \"West US\",\r\n \"name\": \"alfanssltry4\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"alfanssltry4.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepakvC6\",\r\n \"location\": \"West US\",\r\n \"name\": \"deepakvC6\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 6\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepakvC6.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/btos\",\r\n \"location\": \"West US\",\r\n \"name\": \"btos\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"btos.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/btos1\",\r\n \"location\": \"West US\",\r\n \"name\": \"btos1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"btos1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/myretwis\",\r\n \"location\": \"East US\",\r\n \"name\": \"myretwis\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"myretwis.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc2beus\",\r\n \"location\": \"East US\",\r\n \"name\": \"rstressc2beus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc2beus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Default-Web-EastUS/providers/Microsoft.Cache/Redis/redeastus\",\r\n \"location\": \"East US\",\r\n \"name\": \"redeastus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redeastus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepakveus\",\r\n \"location\": \"East US\",\r\n \"name\": \"deepakveus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepakveus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/timbasiceusjul22\",\r\n \"location\": \"East US\",\r\n \"name\": \"timbasiceusjul22\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"timbasiceusjul22.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/timstdeusjul22\",\r\n \"location\": \"East US\",\r\n \"name\": \"timstdeusjul22\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"timstdeusjul22.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/eusduringroll\",\r\n \"location\": \"East US\",\r\n \"name\": \"eusduringroll\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"eusduringroll.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/eusafterroll\",\r\n \"location\": \"East US\",\r\n \"name\": \"eusafterroll\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"eusafterroll.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/eusbeforeall\",\r\n \"location\": \"East US\",\r\n \"name\": \"eusbeforeall\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"eusbeforeall.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc3beus2\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"rstressc3beus2\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 3\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc3beus2.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/redeastus2\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redeastus2\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redeastus2.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/eus2afteroll\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"eus2afteroll\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"eus2afteroll.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/rpcheck94pp\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"rpcheck94pp\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rpcheck94pp.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/pallavpjape1\",\r\n \"location\": \"Japan East\",\r\n \"name\": \"pallavpjape1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"pallavpjape1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Default-Storage-JapanEast/providers/Microsoft.Cache/Redis/pallavpjape3\",\r\n \"location\": \"Japan East\",\r\n \"name\": \"pallavpjape3\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"pallavpjape3.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/rstressc0sje\",\r\n \"location\": \"Japan East\",\r\n \"name\": \"rstressc0sje\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"volatile-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc0sje.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/pallavpjapefinal\",\r\n \"location\": \"Japan East\",\r\n \"name\": \"pallavpjapefinal\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"pallavpjapefinal.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/hpcluster0p1\",\r\n \"location\": \"Japan East\",\r\n \"name\": \"hpcluster0p1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"hpcluster0p1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/redisperfjpnwest\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"redisperfjpnwest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisperfjpnwest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/rstressc1sjw\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"rstressc1sjw\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc1sjw.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepakvc1\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"deepakvc1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepakvc1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/redisperfbrazilsouth\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"redisperfbrazilsouth\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisperfbrazilsouth.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc6smisc\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"rstressc6smisc\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 6\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc6smisc.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/redbras\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"redbras\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redbras.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/csmmanifest\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"csmmanifest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"csmmanifest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/pallavrestest\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"pallavrestest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-delta\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"pallavrestest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/pallavbrazilnew\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"pallavbrazilnew\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-delta\": \"300\",\r\n \"maxmemory-reserved\": \"300\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"pallavbrazilnew.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/brasafteroll\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"brasafteroll\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"brasafteroll.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc4sbs\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"rstressc4sbs\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 4\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc4sbs.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/redisperfseasia\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"redisperfseasia\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisperfseasia.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/rstressc3ssea\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"rstressc3ssea\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 3\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc3ssea.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/rstressc2sea\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"rstressc2sea\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc2sea.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/redeasia\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"redeasia\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redeasia.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/easiafteroll\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"easiafteroll\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"easiafteroll.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/easiadrcache\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"easiadrcache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"easiadrcache.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/newcacheafterreboot\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"newcacheafterreboot\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"newcacheafterreboot.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/alfancacheafterreboot\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"alfancacheafterreboot\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"alfancacheafterreboot.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/sqlfailure1\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"sqlfailure1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"sqlfailure1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/sqlfailure2\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"sqlfailure2\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"sqlfailure2.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/alfanafteridentinc\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"alfanafteridentinc\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"alfanafteridentinc.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/timsanity3ase\",\r\n \"location\": \"Australia Southeast\",\r\n \"name\": \"timsanity3ase\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"timsanity3ase.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/redausse\",\r\n \"location\": \"Australia Southeast\",\r\n \"name\": \"redausse\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"volatile-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redausse.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/insightaussecheck\",\r\n \"location\": \"Australia Southeast\",\r\n \"name\": \"insightaussecheck\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"insightaussecheck.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/ausseaftecert\",\r\n \"location\": \"Australia Southeast\",\r\n \"name\": \"ausseaftecert\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"ausseaftecert.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/centralindiatest\",\r\n \"location\": \"Central India\",\r\n \"name\": \"centralindiatest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"centralindiatest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/westindiatest\",\r\n \"location\": \"West India\",\r\n \"name\": \"westindiatest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"westindiatest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/afterdr\",\r\n \"location\": \"South India\",\r\n \"name\": \"afterdr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"afterdr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/afterbcdr\",\r\n \"location\": \"South India\",\r\n \"name\": \"afterbcdr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"afterbcdr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/southindiatest\",\r\n \"location\": \"South India\",\r\n \"name\": \"southindiatest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"southindiatest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/indiatest2\",\r\n \"location\": \"South India\",\r\n \"name\": \"indiatest2\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"indiatest2.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "558"
+ "58236"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1923,39 +1653,52 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "c528db19-6639-420e-ba8c-23bf499d65f8"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-original-request-ids": [
+ "fd1394e2-d666-4eda-b1cb-8f6062bca510",
+ "55569236-efd5-436d-8fd2-c63260f1b020",
+ "4b435941-d902-4d4f-b8e7-1a71df5d46ae",
+ "788ebb11-b51c-41df-9034-2e364db14740",
+ "8fb74979-7657-4a43-8009-8ac765dac681",
+ "418d817a-ddbd-4942-b2e7-89b5ad711bb4",
+ "6a29fe79-6dc7-47b8-a49d-0b4bc0fe0c21",
+ "a5f625ff-5146-444b-bee1-8012a6fff83e",
+ "aeba2743-1d7b-4254-8920-f0bfe54c0c48",
+ "f542fb9b-8184-4d53-8d30-64a338607296",
+ "fd6a6984-f0d2-475b-b839-70816ab725b1",
+ "a10236a5-255b-43f9-8d17-3dbed47e5f08",
+ "aa2de619-ec31-414b-807d-ceddc17e8330",
+ "c690f8f1-1dc5-439f-bff2-3a85d9c89e45",
+ "352b8b29-500e-4b06-948b-c659f28ae800",
+ "bee6b75b-5d2f-4ebf-967b-9dbdfb2e377b",
+ "a2ac240c-cd98-4786-8c1d-4a044533b30a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31571"
+ "14837"
+ ],
+ "x-ms-request-id": [
+ "967b231f-9490-43f9-b8c1-7ff2b0bfbe7c"
],
"x-ms-correlation-request-id": [
- "cca301e5-861f-41b9-be9a-3bf5ff24112f"
+ "967b231f-9490-43f9-b8c1-7ff2b0bfbe7c"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T195252Z:cca301e5-861f-41b9-be9a-3bf5ff24112f"
+ "WESTUS:20150914T200011Z:967b231f-9490-43f9-b8c1-7ff2b0bfbe7c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:52:52 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "Mon, 14 Sep 2015 20:00:11 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/listKeys?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/listKeys?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -1963,7 +1706,7 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"li+R06mpU7JLQMrPXGrFWjFPUXFPwexsoq/3YrHUV88=\",\r\n \"secondaryKey\": \"KX3+X6+pOKb4Dt9MzHvpaoGnqeyGoh8oh9Ar0mdaxiA=\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"gz+UP8N2i0KYtJfYBgAs0xGtTKpbFFD9Vx0OMEG2ij0=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"123"
@@ -1978,28 +1721,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ec407baf-0ef6-4da4-8c9f-ca971ab2981c"
+ "ccc3b4d5-940c-4f5b-ab0f-f00e22e957a9"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "c283d662-3c5d-4004-a512-3fdc8a9b10e8"
+ "8ce9298d-03cb-45ff-ab93-4ce7895a5d2b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T195252Z:c283d662-3c5d-4004-a512-3fdc8a9b10e8"
+ "WESTUS:20150914T200011Z:8ce9298d-03cb-45ff-ab93-4ce7895a5d2b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:52:52 GMT"
+ "Mon, 14 Sep 2015 20:00:11 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2008,8 +1751,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/listKeys?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/listKeys?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -2017,7 +1760,7 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"nPho2l04tvJNdBEp7nRrQ0J/gIGOQv7X59vs/s6twJQ=\",\r\n \"secondaryKey\": \"KX3+X6+pOKb4Dt9MzHvpaoGnqeyGoh8oh9Ar0mdaxiA=\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"LzH0IO4zPLjnwrVLDRnXwdE+dliuQWpqEsWbjIEEOfw=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"123"
@@ -2032,28 +1775,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c3348c79-4d35-47dd-895c-1ad1d28f331c"
+ "1e5f3fe2-bb24-4e16-bb18-32cde563b785"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1195"
],
"x-ms-correlation-request-id": [
- "19ec602b-d9c8-45bf-aac7-167cb3c6e273"
+ "7ea5d329-d3a7-4cca-9b50-e420b527768d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T195253Z:19ec602b-d9c8-45bf-aac7-167cb3c6e273"
+ "WESTUS:20150914T200013Z:7ea5d329-d3a7-4cca-9b50-e420b527768d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:52:53 GMT"
+ "Mon, 14 Sep 2015 20:00:13 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2062,8 +1805,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/regenerateKey?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxNS0wMy0wMQ==",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/regenerateKey?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxNS0wMy0wMQ==",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}",
"RequestHeaders": {
@@ -2077,7 +1820,7 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"nPho2l04tvJNdBEp7nRrQ0J/gIGOQv7X59vs/s6twJQ=\",\r\n \"secondaryKey\": \"KX3+X6+pOKb4Dt9MzHvpaoGnqeyGoh8oh9Ar0mdaxiA=\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"LzH0IO4zPLjnwrVLDRnXwdE+dliuQWpqEsWbjIEEOfw=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"123"
@@ -2092,28 +1835,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b6157ed3-fd26-448a-805f-3dbadfbc1d7e"
+ "820d899c-0afa-4c93-a498-70d9e81d0b03"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1196"
],
"x-ms-correlation-request-id": [
- "56809d44-ffd5-46b2-9b5d-5f39068340fc"
+ "b8153574-6b71-49cc-97ad-62608203a29b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T195253Z:56809d44-ffd5-46b2-9b5d-5f39068340fc"
+ "WESTUS:20150914T200013Z:b8153574-6b71-49cc-97ad-62608203a29b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:52:53 GMT"
+ "Mon, 14 Sep 2015 20:00:13 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2122,8 +1865,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -2143,28 +1886,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2d53befe-f6f5-4b91-a2c0-0d4157175045"
+ "8d12623c-1a31-4613-8616-e9435a67ac85"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1194"
],
"x-ms-correlation-request-id": [
- "eaea217c-dd11-46e0-91ca-8298a685c480"
+ "0aeffdc3-1cf7-4616-ae2c-3cbca96bf2aa"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T195254Z:eaea217c-dd11-46e0-91ca-8298a685c480"
+ "WESTUS:20150914T200015Z:0aeffdc3-1cf7-4616-ae2c-3cbca96bf2aa"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:52:53 GMT"
+ "Mon, 14 Sep 2015 20:00:14 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2175,6 +1918,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "11b3fbdd-bd86-456a-9037-9fd0d77d505d"
+ "SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json
index e188eb82e96a..fa6dfa1b5cd4 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/powershelltestpipe' under resource group 'MyResourceGroup' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "69"
+ "159"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28,13 +28,13 @@
"gateway"
],
"x-ms-request-id": [
- "d6672f94-62b8-45df-a258-8284a5be86fa"
+ "a4259352-f23c-4d21-aabe-de827aa95a4c"
],
"x-ms-correlation-request-id": [
- "d6672f94-62b8-45df-a258-8284a5be86fa"
+ "a4259352-f23c-4d21-aabe-de827aa95a4c"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T191559Z:d6672f94-62b8-45df-a258-8284a5be86fa"
+ "WESTUS:20150914T200027Z:a4259352-f23c-4d21-aabe-de827aa95a4c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:15:59 GMT"
+ "Mon, 14 Sep 2015 20:00:27 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,10 +58,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,28 +73,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2f857805-f5ef-4072-8c02-5bcd1a7707d9"
+ "c2a3a3b5-10dd-4002-9168-9ad39a464740"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31744"
+ "14767"
],
"x-ms-correlation-request-id": [
- "abeff5af-57c4-48ed-a205-2c53229d9cf4"
+ "4bc62df6-d343-4a33-82b9-dda8a79c5e3f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T191638Z:abeff5af-57c4-48ed-a205-2c53229d9cf4"
+ "WESTUS:20150914T200100Z:4bc62df6-d343-4a33-82b9-dda8a79c5e3f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:16:38 GMT"
+ "Mon, 14 Sep 2015 20:00:59 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -103,8 +103,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -112,10 +112,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -127,28 +127,28 @@
"no-cache"
],
"x-ms-request-id": [
- "64391484-b3e1-4e0c-b22b-7a19a04d9dd2"
+ "80235f23-ecd4-4a18-91a0-2ebab6aa2eb0"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31742"
+ "14766"
],
"x-ms-correlation-request-id": [
- "942cfac3-e522-4584-8191-8740c32140e5"
+ "986e0db8-92ad-421a-9975-71c29652e608"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T191709Z:942cfac3-e522-4584-8191-8740c32140e5"
+ "WESTUS:20150914T200130Z:986e0db8-92ad-421a-9975-71c29652e608"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:17:09 GMT"
+ "Mon, 14 Sep 2015 20:01:30 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -157,8 +157,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -166,10 +166,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -181,28 +181,28 @@
"no-cache"
],
"x-ms-request-id": [
- "36247c2e-3c7a-4d63-ae71-d749cf0da1fc"
+ "70945f02-fb66-4a9d-aa65-67ffe3cb5b5b"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31740"
+ "14763"
],
"x-ms-correlation-request-id": [
- "e3343579-57c3-4504-a984-c655c42db3a0"
+ "c3bfbd8f-6746-426a-a2fe-6431cc0a6c18"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T191740Z:e3343579-57c3-4504-a984-c655c42db3a0"
+ "WESTUS:20150914T200200Z:c3bfbd8f-6746-426a-a2fe-6431cc0a6c18"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:17:40 GMT"
+ "Mon, 14 Sep 2015 20:01:59 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -211,8 +211,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -220,10 +220,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -235,28 +235,28 @@
"no-cache"
],
"x-ms-request-id": [
- "cc9d92f1-407a-4cfb-ac6a-b03220074e0e"
+ "c630733b-854d-4419-8674-0caeda06789f"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31739"
+ "14761"
],
"x-ms-correlation-request-id": [
- "02932bbd-234e-43f1-8818-d9ab159628bd"
+ "5a16bebe-ff21-4341-be79-583462ded50d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T191811Z:02932bbd-234e-43f1-8818-d9ab159628bd"
+ "WESTUS:20150914T200230Z:5a16bebe-ff21-4341-be79-583462ded50d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:18:10 GMT"
+ "Mon, 14 Sep 2015 20:02:30 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -265,8 +265,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -274,10 +274,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -289,28 +289,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c509c483-3ca0-428b-85f1-ef87bc50a31e"
+ "2e420855-5561-4853-b9ec-7b1df6dcc671"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31737"
+ "14758"
],
"x-ms-correlation-request-id": [
- "7140a0dc-5545-43c8-956a-8620972a7d4f"
+ "a1d3ca13-30f9-420b-a098-2468616f59e5"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T191841Z:7140a0dc-5545-43c8-956a-8620972a7d4f"
+ "WESTUS:20150914T200300Z:a1d3ca13-30f9-420b-a098-2468616f59e5"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:18:41 GMT"
+ "Mon, 14 Sep 2015 20:03:00 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -319,8 +319,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -328,10 +328,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -343,28 +343,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c3988c6b-e883-47d2-a058-d4ddfd944279"
+ "7811afce-973c-4b68-b9bc-04db25873c8f"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31735"
+ "14755"
],
"x-ms-correlation-request-id": [
- "694a75df-3411-46e2-8bd4-5c054a8058a1"
+ "3d439d49-1f6e-4219-a79d-e4f41f829250"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T191912Z:694a75df-3411-46e2-8bd4-5c054a8058a1"
+ "WESTUS:20150914T200331Z:3d439d49-1f6e-4219-a79d-e4f41f829250"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:19:12 GMT"
+ "Mon, 14 Sep 2015 20:03:30 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -373,8 +373,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -382,10 +382,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -397,28 +397,28 @@
"no-cache"
],
"x-ms-request-id": [
- "757a1b85-220e-47e8-b6b4-968c8c13d377"
+ "368822fc-81b0-4d20-9b3b-99e30c4254cf"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31732"
+ "14749"
],
"x-ms-correlation-request-id": [
- "c3338107-3f94-4ae8-b888-7110d081cb64"
+ "0c00ddd9-0dbb-4cfa-8ce0-5ce3931e1765"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T191944Z:c3338107-3f94-4ae8-b888-7110d081cb64"
+ "WESTUS:20150914T200401Z:0c00ddd9-0dbb-4cfa-8ce0-5ce3931e1765"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:19:43 GMT"
+ "Mon, 14 Sep 2015 20:04:00 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -427,8 +427,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -436,10 +436,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -451,28 +451,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4f2af599-8c73-449d-9126-75230d555b81"
+ "96d44e2d-05c8-46e0-9475-1465b7338778"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31736"
+ "14746"
],
"x-ms-correlation-request-id": [
- "ecca03bc-ce2b-4228-8b8f-a84ce18dca62"
+ "9b21c38f-92c5-4166-95d1-34bbf96e2c04"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192014Z:ecca03bc-ce2b-4228-8b8f-a84ce18dca62"
+ "WESTUS:20150914T200431Z:9b21c38f-92c5-4166-95d1-34bbf96e2c04"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:20:14 GMT"
+ "Mon, 14 Sep 2015 20:04:31 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -481,8 +481,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -490,10 +490,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -505,28 +505,28 @@
"no-cache"
],
"x-ms-request-id": [
- "5cedf407-dccd-491f-97f4-707621812fc7"
+ "d0fbe7ed-9375-44cd-8d8c-ab71df6dc889"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31734"
+ "14761"
],
"x-ms-correlation-request-id": [
- "de7fc74c-efbe-4fbc-9af6-00dbc33fc541"
+ "90b90f43-d816-4dc9-ac65-95f8b7261981"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192045Z:de7fc74c-efbe-4fbc-9af6-00dbc33fc541"
+ "WESTUS:20150914T200501Z:90b90f43-d816-4dc9-ac65-95f8b7261981"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:20:45 GMT"
+ "Mon, 14 Sep 2015 20:05:00 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -535,8 +535,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -544,10 +544,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -559,28 +559,28 @@
"no-cache"
],
"x-ms-request-id": [
- "61a7a6e7-3ca8-45f7-b7cc-a6213fc4a0c8"
+ "05786cc1-922c-4230-81c4-0b307cd01483"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31733"
+ "14758"
],
"x-ms-correlation-request-id": [
- "13bc9ec1-5b6e-436d-ad44-3f466e2d43ea"
+ "def2a16f-d01e-464f-a3ba-45db1e258b40"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192116Z:13bc9ec1-5b6e-436d-ad44-3f466e2d43ea"
+ "WESTUS:20150914T200531Z:def2a16f-d01e-464f-a3ba-45db1e258b40"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:21:15 GMT"
+ "Mon, 14 Sep 2015 20:05:31 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -589,8 +589,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -598,10 +598,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -613,28 +613,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1d521fa7-1db1-4e83-81f6-df81fcf01527"
+ "67ba99aa-e133-48ee-8477-ab339cce6a5c"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31731"
+ "14755"
],
"x-ms-correlation-request-id": [
- "624e19f7-ad12-4d63-a165-680ca459be05"
+ "a030e068-88af-4fe4-b0c2-faa8e20178ee"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192147Z:624e19f7-ad12-4d63-a165-680ca459be05"
+ "WESTUS:20150914T200601Z:a030e068-88af-4fe4-b0c2-faa8e20178ee"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:21:47 GMT"
+ "Mon, 14 Sep 2015 20:06:00 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -643,8 +643,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -652,10 +652,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -667,28 +667,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1ce3b7a8-e40a-4a74-89d2-d60a3c735c92"
+ "2e1cfefb-2d4b-41a9-958e-604574450f6e"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31730"
+ "14753"
],
"x-ms-correlation-request-id": [
- "723f0d9a-9711-46a2-912b-ce56c32b7e4e"
+ "aec1de4a-cf41-45c7-ad6d-d2d611245354"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192217Z:723f0d9a-9711-46a2-912b-ce56c32b7e4e"
+ "WESTUS:20150914T200631Z:aec1de4a-cf41-45c7-ad6d-d2d611245354"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:22:17 GMT"
+ "Mon, 14 Sep 2015 20:06:31 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -697,8 +697,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -706,10 +706,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -721,28 +721,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c805ae1e-d025-461d-86ae-f5de4a65de84"
+ "45151949-519d-45a3-b43d-6c5e8709d071"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31729"
+ "14751"
],
"x-ms-correlation-request-id": [
- "990baa9c-5604-4e0d-9817-689d12352828"
+ "4db69181-7ca0-42d0-8127-58cf84ed7634"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192249Z:990baa9c-5604-4e0d-9817-689d12352828"
+ "WESTUS:20150914T200701Z:4db69181-7ca0-42d0-8127-58cf84ed7634"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:22:49 GMT"
+ "Mon, 14 Sep 2015 20:07:01 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -751,8 +751,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -760,10 +760,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -775,28 +775,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6ebbc923-f1f2-4ae9-b9d2-8ca26958a03e"
+ "eecf4daf-f7a0-4376-b1c2-0e3bf390a9f4"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31721"
+ "14748"
],
"x-ms-correlation-request-id": [
- "1b7e7df0-5903-44e7-885c-ab961a31f13e"
+ "e6838334-cad9-4e0c-80f2-b463e66b2297"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192320Z:1b7e7df0-5903-44e7-885c-ab961a31f13e"
+ "WESTUS:20150914T200732Z:e6838334-cad9-4e0c-80f2-b463e66b2297"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:23:20 GMT"
+ "Mon, 14 Sep 2015 20:07:31 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -805,8 +805,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -814,10 +814,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -829,28 +829,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1ec2efb2-1d9c-4f85-93fb-b687db1a31f8"
+ "6ff90003-08b4-4058-826c-e085a02b9807"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31718"
+ "14745"
],
"x-ms-correlation-request-id": [
- "95ebde56-16e7-4f16-a606-da418012e6a6"
+ "203549f2-e896-4112-8886-027010439802"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192352Z:95ebde56-16e7-4f16-a606-da418012e6a6"
+ "WESTUS:20150914T200802Z:203549f2-e896-4112-8886-027010439802"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:23:51 GMT"
+ "Mon, 14 Sep 2015 20:08:01 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -859,8 +859,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -868,10 +868,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -883,28 +883,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b8f0e1f9-8ea9-4e49-9bb5-dca827f215aa"
+ "eb58d06e-b82c-4a37-88e1-eec96dc027d0"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31711"
+ "14744"
],
"x-ms-correlation-request-id": [
- "a13e77dd-0f9f-43fd-90af-dea710030561"
+ "91711632-4415-42e0-b4f7-2666e085f27e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192422Z:a13e77dd-0f9f-43fd-90af-dea710030561"
+ "WESTUS:20150914T200832Z:91711632-4415-42e0-b4f7-2666e085f27e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:24:22 GMT"
+ "Mon, 14 Sep 2015 20:08:31 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -913,8 +913,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -922,10 +922,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -937,28 +937,28 @@
"no-cache"
],
"x-ms-request-id": [
- "cf7d55dc-0bea-4bab-8279-0c3137f63bb7"
+ "fec35444-a070-4fa5-93c7-67c13c3d890e"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31709"
+ "14742"
],
"x-ms-correlation-request-id": [
- "e6f3b92d-5811-4827-a48b-5be12ff546e8"
+ "5b3bd483-1bd4-4bf4-8d56-903d666f186f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192454Z:e6f3b92d-5811-4827-a48b-5be12ff546e8"
+ "WESTUS:20150914T200902Z:5b3bd483-1bd4-4bf4-8d56-903d666f186f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:24:54 GMT"
+ "Mon, 14 Sep 2015 20:09:02 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -967,8 +967,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -976,10 +976,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -991,28 +991,28 @@
"no-cache"
],
"x-ms-request-id": [
- "5e338168-6db9-4fe2-813a-bb59baf23f5e"
+ "2620e4e8-cdf3-4f53-875c-59f75ea43da0"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31707"
+ "14741"
],
"x-ms-correlation-request-id": [
- "57030ac7-7610-437d-854c-5902f2282fac"
+ "3a409d7a-ae7f-4223-ad12-893e07d95767"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192525Z:57030ac7-7610-437d-854c-5902f2282fac"
+ "WESTUS:20150914T200932Z:3a409d7a-ae7f-4223-ad12-893e07d95767"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:25:25 GMT"
+ "Mon, 14 Sep 2015 20:09:31 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1021,8 +1021,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1030,10 +1030,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1045,28 +1045,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0d255f80-8e90-4263-8cec-957db44ed888"
+ "45b7a93a-2c87-4fbf-8b2d-9dbce2af0811"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31704"
+ "14753"
],
"x-ms-correlation-request-id": [
- "c781c4e0-f0db-49fb-a944-6a9826bb0da2"
+ "b8230270-88c3-44c8-bcc2-b3bfb66cc0d1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192556Z:c781c4e0-f0db-49fb-a944-6a9826bb0da2"
+ "WESTUS:20150914T201002Z:b8230270-88c3-44c8-bcc2-b3bfb66cc0d1"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:25:56 GMT"
+ "Mon, 14 Sep 2015 20:10:02 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1075,8 +1075,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1084,10 +1084,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1099,28 +1099,28 @@
"no-cache"
],
"x-ms-request-id": [
- "bc80a302-b24d-4b9a-9f3f-5649f0a6099d"
+ "6ae1fc4f-79f0-4a0d-9f8d-8e86c4848024"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31697"
+ "14750"
],
"x-ms-correlation-request-id": [
- "c24f30ed-148b-4746-a35e-f76a36ee8c9c"
+ "59d39c3a-f659-4e0f-88e5-024b15bfe04e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192627Z:c24f30ed-148b-4746-a35e-f76a36ee8c9c"
+ "WESTUS:20150914T201032Z:59d39c3a-f659-4e0f-88e5-024b15bfe04e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:26:26 GMT"
+ "Mon, 14 Sep 2015 20:10:32 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1129,8 +1129,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1138,10 +1138,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1153,28 +1153,28 @@
"no-cache"
],
"x-ms-request-id": [
- "9d28b446-b2e1-472a-bc10-b75a0a56b9e0"
+ "6dd8e189-c0bf-4b86-876a-af9b3403167e"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31694"
+ "14744"
],
"x-ms-correlation-request-id": [
- "e4786259-955e-448f-877d-395bc6e8c064"
+ "c16b788a-a4ac-4764-9619-d75b90304f2a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192657Z:e4786259-955e-448f-877d-395bc6e8c064"
+ "WESTUS:20150914T201102Z:c16b788a-a4ac-4764-9619-d75b90304f2a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:26:57 GMT"
+ "Mon, 14 Sep 2015 20:11:02 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1183,8 +1183,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1192,10 +1192,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1207,28 +1207,28 @@
"no-cache"
],
"x-ms-request-id": [
- "31bfd6cb-4819-4fd4-a059-6df72b182180"
+ "b42d8123-cd11-4fc3-8828-0945bd71326b"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31686"
+ "14743"
],
"x-ms-correlation-request-id": [
- "676e5a5b-f18f-4fcb-a7e7-75bb2404586d"
+ "264f25c8-eecb-4263-aec6-8fe8e3301b43"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192728Z:676e5a5b-f18f-4fcb-a7e7-75bb2404586d"
+ "WESTUS:20150914T201132Z:264f25c8-eecb-4263-aec6-8fe8e3301b43"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:27:28 GMT"
+ "Mon, 14 Sep 2015 20:11:32 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1237,8 +1237,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1246,10 +1246,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1261,28 +1261,28 @@
"no-cache"
],
"x-ms-request-id": [
- "97fcf911-23cf-41de-85dc-8362d270695d"
+ "b50b60cc-178b-419a-9aad-f2fe9d3d591b"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31683"
+ "14741"
],
"x-ms-correlation-request-id": [
- "44878a49-28dd-4b81-b1e5-ab9f2d02bfcb"
+ "8d0e49b9-5b1a-4d4d-8231-fdb74a38d7da"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192759Z:44878a49-28dd-4b81-b1e5-ab9f2d02bfcb"
+ "WESTUS:20150914T201203Z:8d0e49b9-5b1a-4d4d-8231-fdb74a38d7da"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:27:58 GMT"
+ "Mon, 14 Sep 2015 20:12:02 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1291,8 +1291,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1300,10 +1300,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1315,28 +1315,28 @@
"no-cache"
],
"x-ms-request-id": [
- "fd89a9a3-3c3b-4e8c-a743-9448f794ce8a"
+ "89bedb7d-bea9-4950-852b-c6866288e7b3"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31674"
+ "14740"
],
"x-ms-correlation-request-id": [
- "7fc7b336-d43e-48f4-96ad-420a1d0ba654"
+ "62af6546-48d9-4833-8f0e-c928cea0cd89"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192830Z:7fc7b336-d43e-48f4-96ad-420a1d0ba654"
+ "WESTUS:20150914T201233Z:62af6546-48d9-4833-8f0e-c928cea0cd89"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:28:29 GMT"
+ "Mon, 14 Sep 2015 20:12:32 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1345,8 +1345,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1354,10 +1354,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1369,28 +1369,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b4c6750e-c380-4189-acaa-c340ec5958de"
+ "ab8ee9e7-2c02-4e09-b187-7ed239511982"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31669"
+ "14735"
],
"x-ms-correlation-request-id": [
- "4437931a-db55-4117-a668-4240e62bc48d"
+ "1052bcdb-8e7a-4167-a87f-f4afa40285a9"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192900Z:4437931a-db55-4117-a668-4240e62bc48d"
+ "WESTUS:20150914T201303Z:1052bcdb-8e7a-4167-a87f-f4afa40285a9"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:29:00 GMT"
+ "Mon, 14 Sep 2015 20:13:02 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1399,8 +1399,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1408,10 +1408,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1423,28 +1423,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a796d5b1-210c-491c-8356-2b2005ec0a0e"
+ "4e08b6d0-f723-46a5-934a-fb298ed1d061"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31662"
+ "14734"
],
"x-ms-correlation-request-id": [
- "29a51385-7b25-455c-813a-b45c4acb90ee"
+ "a7e1e200-8d70-4ab3-afe1-1d65b2b17a60"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T192934Z:29a51385-7b25-455c-813a-b45c4acb90ee"
+ "WESTUS:20150914T201333Z:a7e1e200-8d70-4ab3-afe1-1d65b2b17a60"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:29:33 GMT"
+ "Mon, 14 Sep 2015 20:13:33 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1453,8 +1453,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1462,10 +1462,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1477,28 +1477,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1ef8d541-d662-4400-b22d-2f9e4a370fd6"
+ "8e624f73-b93a-40eb-b60e-e490246f7402"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31685"
+ "14729"
],
"x-ms-correlation-request-id": [
- "ad22edc7-52d1-46b1-b40a-d933f53eedd4"
+ "ea0b7b56-880b-4012-8443-374332fd00e1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193005Z:ad22edc7-52d1-46b1-b40a-d933f53eedd4"
+ "WESTUS:20150914T201403Z:ea0b7b56-880b-4012-8443-374332fd00e1"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:30:05 GMT"
+ "Mon, 14 Sep 2015 20:14:02 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1507,8 +1507,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1516,10 +1516,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1531,28 +1531,28 @@
"no-cache"
],
"x-ms-request-id": [
- "28cccacf-d403-4577-a841-3060055244b2"
+ "c1ecdc55-c94d-4c69-b45d-443e02637365"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31678"
+ "14727"
],
"x-ms-correlation-request-id": [
- "b214d48b-4e20-445a-8ec1-05a2ca5a8d9b"
+ "71a5d168-ee86-4942-865b-feb5a9792a7e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193036Z:b214d48b-4e20-445a-8ec1-05a2ca5a8d9b"
+ "WESTUS:20150914T201433Z:71a5d168-ee86-4942-865b-feb5a9792a7e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:30:36 GMT"
+ "Mon, 14 Sep 2015 20:14:33 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1561,8 +1561,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1570,10 +1570,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1585,28 +1585,28 @@
"no-cache"
],
"x-ms-request-id": [
- "41d4dbe1-b9a5-40e8-b62a-61e90d7f50e7"
+ "5992d75b-df67-4b38-9093-211e819fe58d"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31677"
+ "14741"
],
"x-ms-correlation-request-id": [
- "5bd61039-105c-43dc-9b2d-34290f4317a4"
+ "0861efd5-586a-4719-a5d8-b657eb4c026d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193107Z:5bd61039-105c-43dc-9b2d-34290f4317a4"
+ "WESTUS:20150914T201503Z:0861efd5-586a-4719-a5d8-b657eb4c026d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:31:07 GMT"
+ "Mon, 14 Sep 2015 20:15:03 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1615,8 +1615,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1624,10 +1624,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1639,28 +1639,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2ff108da-a145-4fbf-b245-ef7dbc09092c"
+ "7207b843-15e1-46ba-8a5c-2a521c4b218c"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31671"
+ "14739"
],
"x-ms-correlation-request-id": [
- "7fb602d8-67be-4851-b4e5-3aa48d1fbe83"
+ "47aa9e86-f583-43e5-a675-91f039b67bab"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193138Z:7fb602d8-67be-4851-b4e5-3aa48d1fbe83"
+ "WESTUS:20150914T201533Z:47aa9e86-f583-43e5-a675-91f039b67bab"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:31:37 GMT"
+ "Mon, 14 Sep 2015 20:15:33 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1669,8 +1669,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1678,10 +1678,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1693,28 +1693,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d8fb2449-426b-4c72-aeb0-d078e261a101"
+ "c0b5ae0d-248a-409b-a282-d27e8ebb57bd"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31667"
+ "14736"
],
"x-ms-correlation-request-id": [
- "deb26d19-1999-4f34-b0af-9fd4f190d165"
+ "831763f8-0610-48eb-b6d7-9b5d438ac4c8"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193209Z:deb26d19-1999-4f34-b0af-9fd4f190d165"
+ "WESTUS:20150914T201604Z:831763f8-0610-48eb-b6d7-9b5d438ac4c8"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:32:09 GMT"
+ "Mon, 14 Sep 2015 20:16:03 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1723,8 +1723,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1732,10 +1732,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1747,28 +1747,28 @@
"no-cache"
],
"x-ms-request-id": [
- "07aa78e3-77c8-49d8-8b63-31399b1f24e0"
+ "78fda8c5-c68c-413c-8982-66bd9764cf6f"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31662"
+ "14734"
],
"x-ms-correlation-request-id": [
- "42d65e5d-1bf2-4460-b998-28658fb925ca"
+ "6120b0e5-01ec-42f6-b776-e96dec0d9dfe"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193240Z:42d65e5d-1bf2-4460-b998-28658fb925ca"
+ "WESTUS:20150914T201634Z:6120b0e5-01ec-42f6-b776-e96dec0d9dfe"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:32:40 GMT"
+ "Mon, 14 Sep 2015 20:16:33 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1777,8 +1777,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1786,10 +1786,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "572"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1801,28 +1801,28 @@
"no-cache"
],
"x-ms-request-id": [
- "379cd0db-8552-4f2c-9a66-9aefec0c726c"
+ "a5029de7-05fc-4bd5-b286-04bb2f9b9e6f"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31659"
+ "14732"
],
"x-ms-correlation-request-id": [
- "2831b293-3789-4c31-a1c2-3bfad3fb0bf5"
+ "fd5c5d91-f65b-41e6-b88a-6bb1c1efefba"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193311Z:2831b293-3789-4c31-a1c2-3bfad3fb0bf5"
+ "WESTUS:20150914T201704Z:fd5c5d91-f65b-41e6-b88a-6bb1c1efefba"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:33:11 GMT"
+ "Mon, 14 Sep 2015 20:17:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1831,8 +1831,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1840,10 +1840,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "572"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1855,28 +1855,28 @@
"no-cache"
],
"x-ms-request-id": [
- "5f12e7b6-069c-42bc-9c15-e3ee447ac148"
+ "61bdfe6f-348e-4a8f-8847-e6ae5fc86da9"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31650"
+ "14731"
],
"x-ms-correlation-request-id": [
- "cba23768-ea44-43e8-b057-3a5dbdc4bc20"
+ "af30b7dc-f135-439d-b554-c3c078a21cdf"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193342Z:cba23768-ea44-43e8-b057-3a5dbdc4bc20"
+ "WESTUS:20150914T201704Z:af30b7dc-f135-439d-b554-c3c078a21cdf"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:33:42 GMT"
+ "Mon, 14 Sep 2015 20:17:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1885,8 +1885,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1894,10 +1894,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "572"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1909,28 +1909,28 @@
"no-cache"
],
"x-ms-request-id": [
- "360492e8-95d7-4318-b8a0-7432965ce4fd"
+ "c98d56dd-fd03-4866-aa5d-c677b3f822aa"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31645"
+ "14730"
],
"x-ms-correlation-request-id": [
- "55d62695-9af9-48ee-b3cd-c2d9ba61979d"
+ "4e9bc533-1b51-4ce3-9090-6ed6c8f8dbe1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193413Z:55d62695-9af9-48ee-b3cd-c2d9ba61979d"
+ "WESTUS:20150914T201704Z:4e9bc533-1b51-4ce3-9090-6ed6c8f8dbe1"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:34:13 GMT"
+ "Mon, 14 Sep 2015 20:17:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1939,8 +1939,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1948,10 +1948,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "609"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1963,28 +1963,28 @@
"no-cache"
],
"x-ms-request-id": [
- "547a88d1-2990-4cb9-a894-24f40f7a8364"
+ "586dbbf6-d454-4874-abab-7a40652f1fc8"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31639"
+ "14729"
],
"x-ms-correlation-request-id": [
- "a1718a1a-8512-452f-ae45-336ef3dc5342"
+ "1f801fd7-a8ae-467b-a87a-e8c89904be97"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193445Z:a1718a1a-8512-452f-ae45-336ef3dc5342"
+ "WESTUS:20150914T201705Z:1f801fd7-a8ae-467b-a87a-e8c89904be97"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:34:45 GMT"
+ "Mon, 14 Sep 2015 20:17:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1993,8 +1993,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2002,10 +2002,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "609"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2017,28 +2017,28 @@
"no-cache"
],
"x-ms-request-id": [
- "405cfa7f-a040-40fc-b52f-c81a7ace11bf"
+ "7e6e2751-5999-4ef6-8308-02ab7d728479"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31663"
+ "14728"
],
"x-ms-correlation-request-id": [
- "ebd227f8-4616-4b24-a700-c46f61bbce9e"
+ "459316e7-7fa9-4c44-b65c-f06c1d1cd427"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193516Z:ebd227f8-4616-4b24-a700-c46f61bbce9e"
+ "WESTUS:20150914T201705Z:459316e7-7fa9-4c44-b65c-f06c1d1cd427"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:35:15 GMT"
+ "Mon, 14 Sep 2015 20:17:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2047,8 +2047,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2056,10 +2056,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "609"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2071,28 +2071,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a7c2d77b-b77d-4659-8b97-4067098304e4"
+ "c17fcb41-fc92-43c3-b72d-535fc494f20e"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31655"
+ "14727"
],
"x-ms-correlation-request-id": [
- "28be08d7-5c73-47e3-95a0-b2745c7a6f1a"
+ "920d4c2d-9d84-4a76-9ce0-251188d930b9"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193547Z:28be08d7-5c73-47e3-95a0-b2745c7a6f1a"
+ "WESTUS:20150914T201705Z:920d4c2d-9d84-4a76-9ce0-251188d930b9"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:35:47 GMT"
+ "Mon, 14 Sep 2015 20:17:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2101,8 +2101,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2110,10 +2110,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "511"
+ "609"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2125,28 +2125,28 @@
"no-cache"
],
"x-ms-request-id": [
- "abdf7517-9a89-4037-aa06-f590ac790e73"
+ "309953d5-f2a2-4c48-9ae2-b39fdaa712a2"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31651"
+ "14726"
],
"x-ms-correlation-request-id": [
- "ef7ce01a-8390-49b6-bcf5-b4746f875bfc"
+ "2bf1f7f9-d856-44bb-b208-52e3cb97505e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193618Z:ef7ce01a-8390-49b6-bcf5-b4746f875bfc"
+ "WESTUS:20150914T201707Z:2bf1f7f9-d856-44bb-b208-52e3cb97505e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:36:17 GMT"
+ "Mon, 14 Sep 2015 20:17:07 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2155,388 +2155,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "512"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "b543958d-0b55-4232-91cc-433783b5e5a6"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31642"
- ],
- "x-ms-correlation-request-id": [
- "6541c022-382b-442e-bc15-bb63492442f1"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150504T193649Z:6541c022-382b-442e-bc15-bb63492442f1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 May 2015 19:36:48 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "512"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "a74c45c1-0ced-49a5-8883-29702085f6bf"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31641"
- ],
- "x-ms-correlation-request-id": [
- "8091217a-dbf4-4682-b5fd-b063be36fb1e"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150504T193650Z:8091217a-dbf4-4682-b5fd-b063be36fb1e"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 May 2015 19:36:49 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "512"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "a72874c7-0419-4fdf-a56e-664930c4deb1"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31640"
- ],
- "x-ms-correlation-request-id": [
- "63e0ba0c-577e-4628-9109-0438e9804a52"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150504T193650Z:63e0ba0c-577e-4628-9109-0438e9804a52"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 May 2015 19:36:50 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "548"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "63028b0f-9b4a-4482-a1c9-e924780ec8b3"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31639"
- ],
- "x-ms-correlation-request-id": [
- "087f743a-7f94-4e55-b9b1-b41e20c283b1"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150504T193655Z:087f743a-7f94-4e55-b9b1-b41e20c283b1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 May 2015 19:36:55 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "548"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "08f6e169-5325-4025-83e7-b5659dfe2523"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31638"
- ],
- "x-ms-correlation-request-id": [
- "da4d7db7-20a3-41d8-822d-52bba6d85943"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150504T193656Z:da4d7db7-20a3-41d8-822d-52bba6d85943"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 May 2015 19:36:56 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "548"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "5deccf21-5a39-4f6a-b33a-0ad6350b99b0"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31637"
- ],
- "x-ms-correlation-request-id": [
- "5d6a17ab-f24c-4e9a-9728-0cde384bb2f7"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150504T193657Z:5d6a17ab-f24c-4e9a-9728-0cde384bb2f7"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 May 2015 19:36:57 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "548"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "6ee3805e-f0c7-4c39-8d1e-c38a1bc1d482"
- ],
- "x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31636"
- ],
- "x-ms-correlation-request-id": [
- "f7cad02e-3180-4ccd-8c23-8cb663960f74"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150504T193702Z:f7cad02e-3180-4ccd-8c23-8cb663960f74"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 04 May 2015 19:37:02 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
@@ -2548,10 +2170,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": {\r\n \"primaryKey\": \"vsVrwlBn6nD4eB6nFaHSSm2/iA6JP0NEMEKs1Jw8XLE=\",\r\n \"secondaryKey\": \"gsGF/UGF0Wd/+moesiJe2TwyzUhE9fBpGVKcZ+4DnnE=\"\r\n },\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"opQ8053oaI7qrkIT+kXwwI+tPO8NM0iQOHm4nDhNb3w=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n },\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "630"
+ "690"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2563,31 +2185,31 @@
"no-cache"
],
"x-ms-request-id": [
- "427f2a7f-c524-4dbe-acfe-87f758b29c38"
+ "2ed75c04-e4a7-4efc-9158-c25087a978f8"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "5b0b73c9-d17e-4ad5-8bfc-3f5a723c2bc2"
+ "39d4eb47-7b49-4fbe-967b-8f997529655b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T191606Z:5b0b73c9-d17e-4ad5-8bfc-3f5a723c2bc2"
+ "WESTUS:20150914T200030Z:39d4eb47-7b49-4fbe-967b-8f997529655b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:16:06 GMT"
+ "Mon, 14 Sep 2015 20:00:29 GMT"
],
"Location": [
- "https://cur-rp-ncus.cacheinfra.icbbvt.windows-int.net:10225/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe"
+ "https://prod-rp-ncus.cacheinfra.windows.net:10225/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2596,10 +2218,10 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"enableNonSslPort\": false\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"enableNonSslPort\": false\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
@@ -2611,10 +2233,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"vsVrwlBn6nD4eB6nFaHSSm2/iA6JP0NEMEKs1Jw8XLE=\",\r\n \"secondaryKey\": \"gsGF/UGF0Wd/+moesiJe2TwyzUhE9fBpGVKcZ+4DnnE=\"\r\n },\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"opQ8053oaI7qrkIT+kXwwI+tPO8NM0iQOHm4nDhNb3w=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n },\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "667"
+ "728"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2626,10 +2248,10 @@
"no-cache"
],
"x-ms-request-id": [
- "9b41ba21-8694-4318-8346-d0da02d4e0f8"
+ "1dd08661-cdc3-4c66-9e0c-7c7c4e148f02"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2638,16 +2260,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "52470f6d-139f-438d-8f72-db30d25adfdd"
+ "3f3e9e1f-7bb0-4497-b2bf-97da1f27a405"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193655Z:52470f6d-139f-438d-8f72-db30d25adfdd"
+ "WESTUS:20150914T201705Z:3f3e9e1f-7bb0-4497-b2bf-97da1f27a405"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:36:55 GMT"
+ "Mon, 14 Sep 2015 20:17:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2656,8 +2278,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/listKeys?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/listKeys?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -2665,7 +2287,7 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"vsVrwlBn6nD4eB6nFaHSSm2/iA6JP0NEMEKs1Jw8XLE=\",\r\n \"secondaryKey\": \"gsGF/UGF0Wd/+moesiJe2TwyzUhE9fBpGVKcZ+4DnnE=\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"opQ8053oaI7qrkIT+kXwwI+tPO8NM0iQOHm4nDhNb3w=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"123"
@@ -2680,10 +2302,10 @@
"no-cache"
],
"x-ms-request-id": [
- "3c8dfda0-45c8-4b27-af5e-c4f97cf3413d"
+ "97ed8dc5-26d5-41bd-8a4c-261696c80db7"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2692,16 +2314,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "227ca63d-cc5d-4c0e-abea-7fdad6a222b4"
+ "0bee9697-6844-4475-9207-77f92836821f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193657Z:227ca63d-cc5d-4c0e-abea-7fdad6a222b4"
+ "WESTUS:20150914T201705Z:0bee9697-6844-4475-9207-77f92836821f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:36:56 GMT"
+ "Mon, 14 Sep 2015 20:17:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2710,8 +2332,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/listKeys?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/listKeys?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -2719,7 +2341,7 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"3c1c2uxDkik44lPiULBOrBA65pUnvF0I90Czm/2vjaM=\",\r\n \"secondaryKey\": \"gsGF/UGF0Wd/+moesiJe2TwyzUhE9fBpGVKcZ+4DnnE=\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"RWt+FD9XndKt6DFS0KhH/ZbsUUczkCowVDotdkgMzGU=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"123"
@@ -2734,10 +2356,10 @@
"no-cache"
],
"x-ms-request-id": [
- "def20728-9119-42ba-a866-258fdb4f7711"
+ "0ecace38-c28f-469a-8d5e-1cb67e2bf2ac"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2746,16 +2368,16 @@
"1195"
],
"x-ms-correlation-request-id": [
- "629a76c7-c2f4-4175-8650-5078b7c3c81d"
+ "b982fd8c-3fcb-4ceb-97f2-abf2e2c33156"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193702Z:629a76c7-c2f4-4175-8650-5078b7c3c81d"
+ "WESTUS:20150914T201707Z:b982fd8c-3fcb-4ceb-97f2-abf2e2c33156"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:37:01 GMT"
+ "Mon, 14 Sep 2015 20:17:07 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2764,8 +2386,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/regenerateKey?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/regenerateKey?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}",
"RequestHeaders": {
@@ -2779,7 +2401,7 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"3c1c2uxDkik44lPiULBOrBA65pUnvF0I90Czm/2vjaM=\",\r\n \"secondaryKey\": \"gsGF/UGF0Wd/+moesiJe2TwyzUhE9fBpGVKcZ+4DnnE=\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"RWt+FD9XndKt6DFS0KhH/ZbsUUczkCowVDotdkgMzGU=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"123"
@@ -2794,10 +2416,10 @@
"no-cache"
],
"x-ms-request-id": [
- "210390e1-8691-496e-b4d1-9e57854bae19"
+ "5012d810-8f94-4f21-8989-b8f0c3caaa1f"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2806,16 +2428,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "55b675c2-3f8c-4d8a-b273-351394cfda80"
+ "9c134c04-3441-4070-8409-539f997d6d97"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193701Z:55b675c2-3f8c-4d8a-b273-351394cfda80"
+ "WESTUS:20150914T201707Z:9c134c04-3441-4070-8409-539f997d6d97"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:37:00 GMT"
+ "Mon, 14 Sep 2015 20:17:06 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2824,8 +2446,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11b3fbdd-bd86-456a-9037-9fd0d77d505d/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFiM2ZiZGQtYmQ4Ni00NTZhLTkwMzctOWZkMGQ3N2Q1MDVkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -2845,10 +2467,10 @@
"no-cache"
],
"x-ms-request-id": [
- "9a38ec90-85dc-47e0-8c46-dba06757c323"
+ "f13cec0a-932d-4495-bdbe-c82fb2a31531"
],
"x-rp-server-mvid": [
- "abcfd837-facc-44a4-a7a5-ce6da16587c5"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2857,16 +2479,16 @@
"1194"
],
"x-ms-correlation-request-id": [
- "604ce137-c7c2-4527-bc65-7e597f059d0e"
+ "55eef1a7-406a-441c-a4b2-d27c3afed48f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150504T193707Z:604ce137-c7c2-4527-bc65-7e597f059d0e"
+ "WESTUS:20150914T201708Z:55eef1a7-406a-441c-a4b2-d27c3afed48f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 04 May 2015 19:37:07 GMT"
+ "Mon, 14 Sep 2015 20:17:08 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2877,6 +2499,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "11b3fbdd-bd86-456a-9037-9fd0d77d505d"
+ "SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json
index cb2b1ece2242..81fd29ea7bd5 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json
@@ -1,19 +1,19 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/e638312d-094f-40fd-a2cc-579fe8490bbd/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/NonExistingRedisCache?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTYzODMxMmQtMDk0Zi00MGZkLWEyY2MtNTc5ZmU4NDkwYmJkL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL05vbkV4aXN0aW5nUmVkaXNDYWNoZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/NonExistingRedisCache?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL05vbkV4aXN0aW5nUmVkaXNDYWNoZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/NonExistingRedisCache' under resource group 'MyResourceGroup' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "69"
+ "162"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24,14 +24,17 @@
"Pragma": [
"no-cache"
],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
"x-ms-request-id": [
- "f75f354f-eeaf-416d-83de-0f7bc6d1554e"
+ "61987ae9-1861-4584-a927-9cc2ffc8c14f"
],
"x-ms-correlation-request-id": [
- "f75f354f-eeaf-416d-83de-0f7bc6d1554e"
+ "61987ae9-1861-4584-a927-9cc2ffc8c14f"
],
"x-ms-routing-request-id": [
- "WESTUS:20141112T220409Z:f75f354f-eeaf-416d-83de-0f7bc6d1554e"
+ "WESTUS:20150914T194717Z:61987ae9-1861-4584-a927-9cc2ffc8c14f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -40,7 +43,7 @@
"no-cache"
],
"Date": [
- "Wed, 12 Nov 2014 22:04:09 GMT"
+ "Mon, 14 Sep 2015 19:47:16 GMT"
]
},
"StatusCode": 404
@@ -48,6 +51,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "e638312d-094f-40fd-a2cc-579fe8490bbd"
+ "SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetRedisCacheBugFixTest.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetRedisCacheBugFixTest.json
index a5338808dcfc..c40d57e5270d 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetRedisCacheBugFixTest.json
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetRedisCacheBugFixTest.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"volatile-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "535"
+ "533"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,28 +25,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d34afb29-3727-40f2-bd5e-1a93e08c60ea"
+ "ab2a5e17-0e31-4e12-a567-fa78be5e542c"
],
"x-rp-server-mvid": [
- "ab3b6d8f-58d8-4b26-88cf-56dfac613ddb"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14902"
+ "14988"
],
"x-ms-correlation-request-id": [
- "dc991535-debb-470c-8fe6-4ec8e38ecefa"
+ "76fd5216-1006-4bbb-8c22-578fe0a51a39"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20150713T215524Z:dc991535-debb-470c-8fe6-4ec8e38ecefa"
+ "WESTUS:20150914T194703Z:76fd5216-1006-4bbb-8c22-578fe0a51a39"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 13 Jul 2015 21:55:23 GMT"
+ "Mon, 14 Sep 2015 19:47:02 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -64,10 +64,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "501"
+ "533"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -79,28 +79,28 @@
"no-cache"
],
"x-ms-request-id": [
- "11090a79-684b-4dac-8dad-d686e7645e0b"
+ "a670cd33-7d1c-448a-8c55-0ea72dfccf4d"
],
"x-rp-server-mvid": [
- "ab3b6d8f-58d8-4b26-88cf-56dfac613ddb"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14901"
+ "14987"
],
"x-ms-correlation-request-id": [
- "3612d84f-91dd-4a30-a0c2-e7cd9fdf5211"
+ "4b18eae4-e533-4690-b820-b2c525711675"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20150713T215525Z:3612d84f-91dd-4a30-a0c2-e7cd9fdf5211"
+ "WESTUS:20150914T194704Z:4b18eae4-e533-4690-b820-b2c525711675"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 13 Jul 2015 21:55:25 GMT"
+ "Mon, 14 Sep 2015 19:47:03 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -124,10 +124,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": {\r\n \"primaryKey\": \"82xerhg0P27QVoRKKEWb2XdLsemKyJ+Fe4BmlHhItS8=\",\r\n \"secondaryKey\": \"W9q9jLz3ICEys0a7ao7T673xQ+gxIhLZl0eBDO4YgG4=\"\r\n },\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"82xerhg0P27QVoRKKEWb2XdLsemKyJ+Fe4BmlHhItS8=\",\r\n \"secondaryKey\": \"W9q9jLz3ICEys0a7ao7T673xQ+gxIhLZl0eBDO4YgG4=\"\r\n },\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "620"
+ "652"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -139,10 +139,10 @@
"no-cache"
],
"x-ms-request-id": [
- "85dde2a3-eabd-4f95-ac46-f9fd973764e0"
+ "262308b6-7645-449c-803e-93807686cd1a"
],
"x-rp-server-mvid": [
- "ab3b6d8f-58d8-4b26-88cf-56dfac613ddb"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -151,16 +151,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "981c04ef-e83d-436a-bb27-d825eaa25bee"
+ "75c43b21-7f1f-4c92-8bd1-fa7960a2ea21"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20150713T215525Z:981c04ef-e83d-436a-bb27-d825eaa25bee"
+ "WESTUS:20150914T194704Z:75c43b21-7f1f-4c92-8bd1-fa7960a2ea21"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 13 Jul 2015 21:55:24 GMT"
+ "Mon, 14 Sep 2015 19:47:03 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -199,10 +199,10 @@
"no-cache"
],
"x-ms-request-id": [
- "eaeff665-e073-44b2-b9cc-bc49a209369c"
+ "a3526f7c-2bf1-411e-8bb9-39bfd5ac8a0f"
],
"x-rp-server-mvid": [
- "ab3b6d8f-58d8-4b26-88cf-56dfac613ddb"
+ "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -211,16 +211,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "cbc65150-86a3-4b48-9577-fa6f89bcf69d"
+ "08246fc9-111d-478d-8bbe-27dea95a92c1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20150713T215526Z:cbc65150-86a3-4b48-9577-fa6f89bcf69d"
+ "WESTUS:20150914T194704Z:08246fc9-111d-478d-8bbe-27dea95a92c1"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 13 Jul 2015 21:55:25 GMT"
+ "Mon, 14 Sep 2015 19:47:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/NewAzureRedisCache.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/NewAzureRedisCache.cs
index 675c903a8922..12dcacfa96de 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/NewAzureRedisCache.cs
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/NewAzureRedisCache.cs
@@ -56,19 +56,19 @@ public class NewAzureRedisCache : RedisCacheCmdletBase
[Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "EnableNonSslPort property of redis cache.")]
public bool? EnableNonSslPort { get; set; }
- private const string redisDefaultVersion = "2.8";
+ private const string redisDefaultVersion = "3.0";
protected override void ProcessRecord()
{
+ if (!string.IsNullOrEmpty(RedisVersion))
+ {
+ WriteWarning("The RedisVersion parameter has been deprecated. As such, it is no longer necessary to provide this parameter and any value specified is ignored.");
+ }
+
string skuFamily;
int skuCapacity = 1;
- if (string.IsNullOrEmpty(RedisVersion))
- {
- RedisVersion = redisDefaultVersion;
- }
-
if (string.IsNullOrEmpty(Size))
{
Size = SizeConverter.C1String;
@@ -112,7 +112,7 @@ protected override void ProcessRecord()
throw;
}
}
- WriteObject(new RedisCacheAttributesWithAccessKeys(CacheClient.CreateOrUpdateCache(ResourceGroupName, Name, Location, RedisVersion, skuFamily, skuCapacity, Sku, RedisConfiguration, EnableNonSslPort), ResourceGroupName));
+ WriteObject(new RedisCacheAttributesWithAccessKeys(CacheClient.CreateOrUpdateCache(ResourceGroupName, Name, Location, redisDefaultVersion, skuFamily, skuCapacity, Sku, RedisConfiguration, EnableNonSslPort), ResourceGroupName));
}
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.dll-Help.xml b/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.dll-Help.xml
index 7eb0b873e647..bf2f0f023260 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.dll-Help.xml
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.dll-Help.xml
@@ -298,7 +298,7 @@
RedisVersion
- RedisVersion of the redis cache. If not provided, the default value is 2.8.
+ RedisVersion is deprecated and will be removed in future release.
String
@@ -375,7 +375,7 @@
RedisVersion
- RedisVersion of the redis cache. The default value is 2.8.
+ RedisVersion is deprecated and will be removed in future release.
String
@@ -511,7 +511,7 @@
- PS C:\>New-AzureRMRedisCache -ResourceGroupName mygroup -Name mycache -Location "North Central US" -RedisVersion "2.8" -Size 250MB -Sku Standard -RedisConfiguration @{"maxmemory-policy" = "allkeys-random"} -Force
+ PS C:\>New-AzureRMRedisCache -ResourceGroupName mygroup -Name mycache -Location "North Central US" -Size 250MB -Sku Standard -RedisConfiguration @{"maxmemory-policy" = "allkeys-random"} -Force
PrimaryKey : pJ+jruGKPHDKsEC8kmoybobH3TZx2njBR3ipEsquZFo=
SecondaryKey : sJ+jruGKPHDKsEC8kmoybobH3TZx2njBR3ipEsquZFo=