diff --git a/ChangeLog.md b/ChangeLog.md
index 64c48979ad09..e1a1c33d774f 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,4 +1,8 @@
-## 2015.10.09 version 1.0 preview
+* Azure Redis Cache
+ * Set-AzureRedisCache - Premium and vNet support for redis cache
+ * New-AzureRedisCache - Premium and vNet support for redis cache
+
+## 2015.10.09 version 1.0 preview
* Azure Resource Manager Management Cmdlets
* New-AzureRmResourceGroup - Removed the template deployment parameters from this cmdlet. Template deployment will now be
handled only through the New-AzureRmResourceGroupDeployment
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj
index 6ca8bd50079c..ddfb258a57db 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj
@@ -56,9 +56,9 @@
..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll
-
- False
- ..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.1-preview\lib\net40\Microsoft.Azure.Management.Redis.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Redis.1.1.0-preview\lib\net40\Microsoft.Azure.Management.Redis.dll
+ True
False
@@ -171,9 +171,18 @@
PreserveNewest
+
+ PreserveNewest
+
PreserveNewest
+
+ PreserveNewest
+
+
+ PreserveNewest
+
PreserveNewest
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.cs b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.cs
index a9e7402532d9..6c24b4f92efd 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.cs
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.cs
@@ -54,5 +54,12 @@ public void TestMaxMemoryPolicyErrorCheck()
{
RunPowerShellTest("Test-MaxMemoryPolicyErrorCheck");
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestRedisCacheClustering()
+ {
+ RunPowerShellTest("Test-RedisCacheClustering");
+ }
}
}
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1
index 7ee5023a6878..7b60bf96138e 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1
@@ -11,7 +11,7 @@ function Test-RedisCache
$location = "North Central US"
# Creating Cache
- $cacheCreated = New-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 250MB -Sku Basic
+ $cacheCreated = New-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 1GB -Sku Standard
Assert-AreEqual $cacheName $cacheCreated.Name
Assert-AreEqual $location $cacheCreated.Location
@@ -22,8 +22,8 @@ function Test-RedisCache
Assert-AreEqual 6380 $cacheCreated.SslPort
Assert-AreEqual "creating" $cacheCreated.ProvisioningState
Assert-AreEqual "3.0" $cacheCreated.RedisVersion
- Assert-AreEqual "250MB" $cacheCreated.Size
- Assert-AreEqual "Basic" $cacheCreated.Sku
+ Assert-AreEqual "1GB" $cacheCreated.Size
+ Assert-AreEqual "Standard" $cacheCreated.Sku
Assert-NotNull $cacheCreated.PrimaryKey "PrimaryKey do not exists"
Assert-NotNull $cacheCreated.SecondaryKey "SecondaryKey do not exists"
@@ -44,8 +44,8 @@ function Test-RedisCache
Assert-AreEqual 6380 $cacheGet[0].SslPort
Assert-AreEqual "succeeded" $cacheGet[0].ProvisioningState
Assert-AreEqual "3.0" $cacheGet[0].RedisVersion
- Assert-AreEqual "250MB" $cacheGet[0].Size
- Assert-AreEqual "Basic" $cacheGet[0].Sku
+ Assert-AreEqual "1GB" $cacheGet[0].Size
+ Assert-AreEqual "Standard" $cacheGet[0].Sku
break
}
Assert-False {$i -eq 60} "Cache is not in succeeded state even after 30 min."
@@ -63,8 +63,8 @@ function Test-RedisCache
Assert-AreEqual 6380 $cacheUpdated.SslPort
Assert-AreEqual "succeeded" $cacheUpdated.ProvisioningState
Assert-AreEqual "3.0" $cacheUpdated.RedisVersion
- Assert-AreEqual "250MB" $cacheUpdated.Size
- Assert-AreEqual "Basic" $cacheUpdated.Sku
+ Assert-AreEqual "1GB" $cacheUpdated.Size
+ Assert-AreEqual "Standard" $cacheUpdated.Sku
Assert-AreEqual "allkeys-lru" $cacheUpdated.RedisConfiguration.Item("maxmemory-policy")
Assert-True { $cacheUpdated.EnableNonSslPort }
@@ -89,8 +89,8 @@ function Test-RedisCache
Assert-AreEqual 6380 $cachesInResourceGroup[$i].SslPort
Assert-AreEqual "succeeded" $cachesInResourceGroup[$i].ProvisioningState
Assert-AreEqual "3.0" $cachesInResourceGroup[$i].RedisVersion
- Assert-AreEqual "250MB" $cachesInResourceGroup[$i].Size
- Assert-AreEqual "Basic" $cachesInResourceGroup[$i].Sku
+ Assert-AreEqual "1GB" $cachesInResourceGroup[$i].Size
+ Assert-AreEqual "Standard" $cachesInResourceGroup[$i].Sku
break
}
}
@@ -115,8 +115,8 @@ function Test-RedisCache
Assert-AreEqual 6380 $cachesInSubscription[$i].SslPort
Assert-AreEqual "succeeded" $cachesInSubscription[$i].ProvisioningState
Assert-AreEqual "3.0" $cachesInSubscription[$i].RedisVersion
- Assert-AreEqual "250MB" $cachesInSubscription[$i].Size
- Assert-AreEqual "Basic" $cachesInSubscription[$i].Sku
+ Assert-AreEqual "1GB" $cachesInSubscription[$i].Size
+ Assert-AreEqual "Standard" $cachesInSubscription[$i].Sku
break
}
}
@@ -166,7 +166,7 @@ function Test-RedisCachePipeline
$location = "North Central US"
# Creating Cache
- $cacheCreated = New-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 250MB -Sku Basic -EnableNonSslPort $true
+ $cacheCreated = New-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 1GB -Sku Basic -EnableNonSslPort $true
Assert-AreEqual $cacheName $cacheCreated.Name
Assert-AreEqual $location $cacheCreated.Location
@@ -177,7 +177,7 @@ function Test-RedisCachePipeline
Assert-AreEqual 6380 $cacheCreated.SslPort
Assert-AreEqual "creating" $cacheCreated.ProvisioningState
Assert-AreEqual "3.0" $cacheCreated.RedisVersion
- Assert-AreEqual "250MB" $cacheCreated.Size
+ Assert-AreEqual "1GB" $cacheCreated.Size
Assert-AreEqual "Basic" $cacheCreated.Sku
Assert-True { $cacheCreated.EnableNonSslPort }
@@ -200,7 +200,7 @@ function Test-RedisCachePipeline
Assert-AreEqual 6380 $cacheGet[0].SslPort
Assert-AreEqual "succeeded" $cacheGet[0].ProvisioningState
Assert-AreEqual "3.0" $cacheGet[0].RedisVersion
- Assert-AreEqual "250MB" $cacheGet[0].Size
+ Assert-AreEqual "1GB" $cacheGet[0].Size
Assert-AreEqual "Basic" $cacheGet[0].Sku
break
}
@@ -220,7 +220,7 @@ function Test-RedisCachePipeline
Assert-AreEqual 6380 $cacheUpdatedPiped.SslPort
Assert-AreEqual "succeeded" $cacheUpdatedPiped.ProvisioningState
Assert-AreEqual "3.0" $cacheUpdatedPiped.RedisVersion
- Assert-AreEqual "250MB" $cacheUpdatedPiped.Size
+ Assert-AreEqual "1GB" $cacheUpdatedPiped.Size
Assert-AreEqual "Basic" $cacheUpdatedPiped.Sku
Assert-AreEqual "allkeys-random" $cacheUpdatedPiped.RedisConfiguration.Item("maxmemory-policy")
Assert-False { $cacheUpdatedPiped.EnableNonSslPort }
@@ -247,7 +247,7 @@ function Test-SetRedisCacheBugFixTest
{
# Setup
# resource group should exists
- $resourceGroupName = "Siddharth"
+ $resourceGroupName = "siddharth"
$cacheName = "siddharthchatrola"
$location = "North Central US"
@@ -273,5 +273,124 @@ function Test-MaxMemoryPolicyErrorCheck
$location = "North Central US"
# Updating Cache
- Assert-ThrowsContains {New-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -MaxMemoryPolicy AllKeysRandom} "The 'MaxMemoryPolicy' setting has been deprecated"
+ Assert-ThrowsContains {New-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -MaxMemoryPolicy AllKeysRandom} "The 'MaxMemoryPolicy' setting has been deprecated"
+}
+
+<#
+.SYNOPSIS
+Tests redis cache clustering.
+#>
+function Test-RedisCacheClustering
+{
+ # Setup
+ # resource group should exists
+ $resourceGroupName = "MyResourceGroup"
+ $cacheName = "powershellcluster"
+ $location = "East US"
+
+ # Creating Cache
+ $cacheCreated = New-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 6GB -Sku Premium -ShardCount 3
+ Assert-AreEqual "Microsoft.Cache/Redis" $cacheCreated.Type
+ Assert-AreEqual $resourceGroupName $cacheCreated.ResourceGroupName
+
+ Assert-AreEqual 6379 $cacheCreated.Port
+ Assert-AreEqual 6380 $cacheCreated.SslPort
+ Assert-AreEqual "creating" $cacheCreated.ProvisioningState
+ Assert-AreEqual "6GB" $cacheCreated.Size
+ Assert-AreEqual "Premium" $cacheCreated.Sku
+ Assert-AreEqual 3 $cacheCreated.ShardCount
+
+ Assert-NotNull $cacheCreated.PrimaryKey "PrimaryKey do not exists"
+ Assert-NotNull $cacheCreated.SecondaryKey "SecondaryKey do not exists"
+
+ # In loop to check if cache exists
+ for ($i = 0; $i -le 60; $i++)
+ {
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
+ $cacheGet = Get-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName
+ if ([string]::Compare("succeeded", $cacheGet[0].ProvisioningState, $True) -eq 0)
+ {
+ Assert-AreEqual $cacheName $cacheGet[0].Name
+ break
+ }
+ Assert-False {$i -eq 60} "Cache is not in succeeded state even after 30 min."
+ }
+
+ # Updating Cache
+ $cacheUpdated = Set-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -RedisConfiguration @{"maxmemory-policy" = "allkeys-lru"} -TenantSettings @{"some-key" = "some-value"}
+
+ Assert-AreEqual $cacheName $cacheUpdated.Name
+ Assert-AreEqual "succeeded" $cacheUpdated.ProvisioningState
+ Assert-AreEqual "6GB" $cacheCreated.Size
+ Assert-AreEqual "Premium" $cacheCreated.Sku
+ Assert-AreEqual 3 $cacheCreated.ShardCount
+ Assert-AreEqual "allkeys-lru" $cacheUpdated.RedisConfiguration.Item("maxmemory-policy")
+ Assert-AreEqual "some-value" $cacheUpdated.TenantSettings.Item("some-key")
+
+ Assert-NotNull $cacheUpdated.PrimaryKey "PrimaryKey do not exists"
+ Assert-NotNull $cacheUpdated.SecondaryKey "SecondaryKey do not exists"
+
+ # List all cache in resource group
+ $cachesInResourceGroup = Get-AzureRmRedisCache -ResourceGroupName $resourceGroupName
+ Assert-True {$cachesInResourceGroup.Count -ge 1}
+
+ $found = 0
+ for ($i = 0; $i -lt $cachesInResourceGroup.Count; $i++)
+ {
+ if ($cachesInResourceGroup[$i].Name -eq $cacheName)
+ {
+ $found = 1
+ Assert-AreEqual $location $cachesInResourceGroup[$i].Location
+ Assert-AreEqual "Microsoft.Cache/Redis" $cachesInResourceGroup[$i].Type
+ Assert-AreEqual $resourceGroupName $cachesInResourceGroup[$i].ResourceGroupName
+
+ Assert-AreEqual 6379 $cachesInResourceGroup[$i].Port
+ Assert-AreEqual 6380 $cachesInResourceGroup[$i].SslPort
+ Assert-AreEqual "succeeded" $cachesInResourceGroup[$i].ProvisioningState
+ Assert-AreEqual "6GB" $cacheCreated.Size
+ Assert-AreEqual "Premium" $cacheCreated.Sku
+ Assert-AreEqual 3 $cacheCreated.ShardCount
+ break
+ }
+ }
+ Assert-True {$found -eq 1} "Cache created earlier is not found."
+
+ # List all cache in subscription
+ $cachesInSubscription = Get-AzureRmRedisCache
+ Assert-True {$cachesInSubscription.Count -ge 1}
+ Assert-True {$cachesInSubscription.Count -ge $cachesInResourceGroup.Count}
+
+ $found = 0
+ for ($i = 0; $i -lt $cachesInSubscription.Count; $i++)
+ {
+ if ($cachesInSubscription[$i].Name -eq $cacheName)
+ {
+ $found = 1
+ Assert-AreEqual $location $cachesInSubscription[$i].Location
+ Assert-AreEqual "Microsoft.Cache/Redis" $cachesInSubscription[$i].Type
+ Assert-AreEqual $resourceGroupName $cachesInSubscription[$i].ResourceGroupName
+
+ Assert-AreEqual 6379 $cachesInSubscription[$i].Port
+ Assert-AreEqual 6380 $cachesInSubscription[$i].SslPort
+ Assert-AreEqual "succeeded" $cachesInSubscription[$i].ProvisioningState
+ Assert-AreEqual "6GB" $cacheCreated.Size
+ Assert-AreEqual "Premium" $cacheCreated.Sku
+ Assert-AreEqual 3 $cacheCreated.ShardCount
+ break
+ }
+ }
+ Assert-True {$found -eq 1} "Cache created earlier is not found."
+
+ # Get cache keys
+ $cacheKeysBeforeUpdate = Get-AzureRmRedisCacheKey -ResourceGroupName $resourceGroupName -Name $cacheName
+ Assert-NotNull $cacheKeysBeforeUpdate.PrimaryKey "PrimaryKey do not exists"
+ Assert-NotNull $cacheKeysBeforeUpdate.SecondaryKey "SecondaryKey do not exists"
+
+ # Regenerate primary key
+ $cacheKeysAfterUpdate = New-AzureRmRedisCacheKey -ResourceGroupName $resourceGroupName -Name $cacheName -KeyType Primary -Force
+ Assert-AreEqual $cacheKeysBeforeUpdate.SecondaryKey $cacheKeysAfterUpdate.SecondaryKey
+ Assert-AreNotEqual $cacheKeysBeforeUpdate.PrimaryKey $cacheKeysAfterUpdate.PrimaryKey
+
+ # Delete cache
+ Assert-True {Remove-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Force -PassThru} "Remove cache failed."
}
\ 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 0ea8b37b425b..8c55a277ab44 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/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -28,13 +28,13 @@
"gateway"
],
"x-ms-request-id": [
- "a528d84d-0a14-4df7-bef2-15543e4a9944"
+ "26d341ae-4998-41d7-a169-983df660d320"
],
"x-ms-correlation-request-id": [
- "a528d84d-0a14-4df7-bef2-15543e4a9944"
+ "26d341ae-4998-41d7-a169-983df660d320"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T194729Z:a528d84d-0a14-4df7-bef2-15543e4a9944"
+ "CENTRALUS:20151016T004042Z:26d341ae-4998-41d7-a169-983df660d320"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:47:28 GMT"
+ "Fri, 16 Oct 2015 00:40:42 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,10 +58,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,28 +73,28 @@
"no-cache"
],
"x-ms-request-id": [
- "331025cf-644c-459f-8c1f-e265f1b76370"
+ "7f82dcc4-2f6d-42d5-a6d0-d401f3f3c9e5"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14810"
+ "14897"
],
"x-ms-correlation-request-id": [
- "5bdd5edc-e250-44ef-8dc4-2241ca44ddd8"
+ "ab1ba39e-753b-4adc-919c-64be70a63480"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T194803Z:5bdd5edc-e250-44ef-8dc4-2241ca44ddd8"
+ "CENTRALUS:20151016T004114Z:ab1ba39e-753b-4adc-919c-64be70a63480"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:48:03 GMT"
+ "Fri, 16 Oct 2015 00:41:13 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -103,8 +103,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -112,10 +112,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -127,28 +127,28 @@
"no-cache"
],
"x-ms-request-id": [
- "af0aafc4-5bef-479a-9488-252833210f82"
+ "10baea49-305a-422c-b2dc-be7fab3d5aa2"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14809"
+ "14896"
],
"x-ms-correlation-request-id": [
- "6bc33a8d-0d1f-4c56-a084-ff02ce5ce8cd"
+ "99adc15a-697d-488c-9b26-39cd37ae9f43"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T194834Z:6bc33a8d-0d1f-4c56-a084-ff02ce5ce8cd"
+ "CENTRALUS:20151016T004144Z:99adc15a-697d-488c-9b26-39cd37ae9f43"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:48:34 GMT"
+ "Fri, 16 Oct 2015 00:41:43 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -157,8 +157,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -166,10 +166,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -181,28 +181,28 @@
"no-cache"
],
"x-ms-request-id": [
- "e3cb1023-f24f-4845-a8eb-abcb1a1fb137"
+ "b5c76357-dbdc-4afc-bf58-630517c119ac"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14808"
+ "14895"
],
"x-ms-correlation-request-id": [
- "384c4a62-2d14-45c6-abb0-e4b5f365a6f8"
+ "cd9313a2-2715-4e12-b911-6948016b0173"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T194904Z:384c4a62-2d14-45c6-abb0-e4b5f365a6f8"
+ "CENTRALUS:20151016T004214Z:cd9313a2-2715-4e12-b911-6948016b0173"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:49:03 GMT"
+ "Fri, 16 Oct 2015 00:42:13 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -211,8 +211,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -220,10 +220,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -235,28 +235,28 @@
"no-cache"
],
"x-ms-request-id": [
- "37d1fc2e-4bbe-4794-80d1-3027ada70062"
+ "829f60fd-8106-45b1-94c7-1703a1ebafc6"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14807"
+ "14894"
],
"x-ms-correlation-request-id": [
- "8d3897f0-edb4-430f-a30f-1cfdf13fcc50"
+ "41f0d7a4-2a51-44ea-abfc-66ee659b7b5b"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T194934Z:8d3897f0-edb4-430f-a30f-1cfdf13fcc50"
+ "CENTRALUS:20151016T004244Z:41f0d7a4-2a51-44ea-abfc-66ee659b7b5b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:49:33 GMT"
+ "Fri, 16 Oct 2015 00:42:44 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -265,8 +265,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -274,10 +274,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -289,28 +289,28 @@
"no-cache"
],
"x-ms-request-id": [
- "64244458-f898-4412-8974-c91d40a8563c"
+ "2439b7cd-69b7-43f8-b213-581f027f77e5"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14839"
+ "14893"
],
"x-ms-correlation-request-id": [
- "df8515c1-4590-459c-90d0-2215f6b836cf"
+ "4a74dd6b-28e0-41da-8738-c512c0996ae2"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195004Z:df8515c1-4590-459c-90d0-2215f6b836cf"
+ "CENTRALUS:20151016T004314Z:4a74dd6b-28e0-41da-8738-c512c0996ae2"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:50:04 GMT"
+ "Fri, 16 Oct 2015 00:43:14 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -319,8 +319,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -328,10 +328,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -343,28 +343,28 @@
"no-cache"
],
"x-ms-request-id": [
- "62ef6866-0984-472f-90ba-d05388061395"
+ "778c8d0c-230d-48b9-8106-3e29f7ed8d82"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14838"
+ "14892"
],
"x-ms-correlation-request-id": [
- "66e05dbd-4980-4803-b6f3-6db7769dd677"
+ "f9409a8b-5b9a-408f-8069-fbd34631d6df"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195034Z:66e05dbd-4980-4803-b6f3-6db7769dd677"
+ "CENTRALUS:20151016T004344Z:f9409a8b-5b9a-408f-8069-fbd34631d6df"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:50:34 GMT"
+ "Fri, 16 Oct 2015 00:43:44 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -373,8 +373,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -382,10 +382,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -397,28 +397,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2401b5e2-26b2-496a-babb-f36a5d410f4f"
+ "a0974c30-4a26-49c3-9de7-da5a1726702d"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14835"
+ "14890"
],
"x-ms-correlation-request-id": [
- "ac3464ba-2452-44a6-861b-6803dff30866"
+ "a02f9c87-10a0-4b10-a19b-392b4375a42f"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195104Z:ac3464ba-2452-44a6-861b-6803dff30866"
+ "CENTRALUS:20151016T004415Z:a02f9c87-10a0-4b10-a19b-392b4375a42f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:51:03 GMT"
+ "Fri, 16 Oct 2015 00:44:14 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -427,8 +427,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -436,10 +436,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -451,28 +451,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f19d9eed-0000-4c4a-b323-b206f6a1bb97"
+ "da53110b-da50-432e-9946-1b2af6fd7bb7"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14834"
+ "14889"
],
"x-ms-correlation-request-id": [
- "c9620049-3f68-4d83-b1c8-c8bf08cdea2a"
+ "3f11a72e-32cf-4100-9571-22aeaa872661"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195134Z:c9620049-3f68-4d83-b1c8-c8bf08cdea2a"
+ "CENTRALUS:20151016T004445Z:3f11a72e-32cf-4100-9571-22aeaa872661"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:51:34 GMT"
+ "Fri, 16 Oct 2015 00:44:44 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -481,8 +481,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -490,10 +490,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -505,28 +505,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7bb5028d-a20b-4cb4-8ed3-47bd12d7a770"
+ "8dd5d3d5-5619-42ec-98b6-1588600f240e"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14832"
+ "14896"
],
"x-ms-correlation-request-id": [
- "6f3eadb5-0ab3-44df-8fa6-ce88577cb01e"
+ "2b1839fa-8a0d-486c-9b92-8e4d8458ad5a"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195204Z:6f3eadb5-0ab3-44df-8fa6-ce88577cb01e"
+ "CENTRALUS:20151016T004515Z:2b1839fa-8a0d-486c-9b92-8e4d8458ad5a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:52:04 GMT"
+ "Fri, 16 Oct 2015 00:45:15 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -535,8 +535,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -544,10 +544,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -559,28 +559,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8a3b9142-09ca-401a-988c-6456dd404c80"
+ "e459d498-0330-4600-bc27-0a29457edd91"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14830"
+ "14895"
],
"x-ms-correlation-request-id": [
- "ae562988-cc53-4a09-addb-2b9fe753458d"
+ "50fa760d-e428-48cb-b272-7f332b78e735"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195235Z:ae562988-cc53-4a09-addb-2b9fe753458d"
+ "CENTRALUS:20151016T004545Z:50fa760d-e428-48cb-b272-7f332b78e735"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:52:34 GMT"
+ "Fri, 16 Oct 2015 00:45:45 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -589,8 +589,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -598,10 +598,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -613,28 +613,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4c38b7cf-50c0-4f01-ba5c-f2a163e0e671"
+ "39a166ca-acce-4dde-bbf4-e2d1404e4cd2"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14829"
+ "14894"
],
"x-ms-correlation-request-id": [
- "5f2b83ef-b84c-459f-9f38-2ebca8f56009"
+ "bb2e15e8-fc2b-47de-a99d-7fbb8c7df341"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195305Z:5f2b83ef-b84c-459f-9f38-2ebca8f56009"
+ "CENTRALUS:20151016T004615Z:bb2e15e8-fc2b-47de-a99d-7fbb8c7df341"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:53:04 GMT"
+ "Fri, 16 Oct 2015 00:46:14 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -643,8 +643,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -652,10 +652,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -667,28 +667,28 @@
"no-cache"
],
"x-ms-request-id": [
- "5a186fbf-b175-43f5-ae71-4fcf3c6e1640"
+ "e4aa3be0-96f9-4c98-804c-57e134a9514c"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14828"
+ "14893"
],
"x-ms-correlation-request-id": [
- "bea345a3-44f5-418d-908b-4509aa4d5b17"
+ "e6a2621d-3faa-4355-8b5c-e9eb405c8280"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195335Z:bea345a3-44f5-418d-908b-4509aa4d5b17"
+ "CENTRALUS:20151016T004645Z:e6a2621d-3faa-4355-8b5c-e9eb405c8280"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:53:35 GMT"
+ "Fri, 16 Oct 2015 00:46:45 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -697,8 +697,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -706,10 +706,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -721,28 +721,28 @@
"no-cache"
],
"x-ms-request-id": [
- "770786d5-aa46-4a7e-9edb-351e2839ceeb"
+ "cfec5563-fbe7-4cb2-9c9c-f88fef01cf1f"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14826"
+ "14892"
],
"x-ms-correlation-request-id": [
- "3612384b-61e8-4cc8-ab08-b9167ad754d9"
+ "e63fba2c-a104-4fcb-aeaf-4af5c5344d59"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195405Z:3612384b-61e8-4cc8-ab08-b9167ad754d9"
+ "CENTRALUS:20151016T004715Z:e63fba2c-a104-4fcb-aeaf-4af5c5344d59"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:54:04 GMT"
+ "Fri, 16 Oct 2015 00:47:14 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -751,8 +751,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -760,10 +760,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -775,28 +775,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7d70b9ed-d476-4e53-bf30-f02698defed5"
+ "84b99304-af65-412f-993a-0b366b562d3a"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14823"
+ "14891"
],
"x-ms-correlation-request-id": [
- "4612fbc8-7458-4457-a254-a5d101ef5e33"
+ "0f1f4227-6a7c-4a97-a8a7-84efc01b2986"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195435Z:4612fbc8-7458-4457-a254-a5d101ef5e33"
+ "CENTRALUS:20151016T004745Z:0f1f4227-6a7c-4a97-a8a7-84efc01b2986"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:54:35 GMT"
+ "Fri, 16 Oct 2015 00:47:44 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -805,8 +805,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -814,10 +814,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -829,28 +829,28 @@
"no-cache"
],
"x-ms-request-id": [
- "12b07990-36d9-49fb-9d56-da2975f06290"
+ "d75f46d3-f299-4650-b54b-415e62e4664f"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14839"
+ "14890"
],
"x-ms-correlation-request-id": [
- "69105d8d-570b-443d-92c6-193fc3fa5600"
+ "5de67c01-5868-4801-bb55-4235b9ef0099"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195505Z:69105d8d-570b-443d-92c6-193fc3fa5600"
+ "CENTRALUS:20151016T004815Z:5de67c01-5868-4801-bb55-4235b9ef0099"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:55:05 GMT"
+ "Fri, 16 Oct 2015 00:48:15 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -859,8 +859,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -868,10 +868,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -883,28 +883,28 @@
"no-cache"
],
"x-ms-request-id": [
- "cd98a61b-682c-4246-8433-496be628fd96"
+ "cf870906-ad08-4dea-bfcf-39696393a418"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14838"
+ "14889"
],
"x-ms-correlation-request-id": [
- "539125ef-55c4-489d-9758-fe30d4610291"
+ "c3a2d19b-1eea-4406-867e-f0ae78bb5841"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195535Z:539125ef-55c4-489d-9758-fe30d4610291"
+ "CENTRALUS:20151016T004845Z:c3a2d19b-1eea-4406-867e-f0ae78bb5841"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:55:35 GMT"
+ "Fri, 16 Oct 2015 00:48:45 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -913,8 +913,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -922,10 +922,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -937,28 +937,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f76144b1-bd7e-4bb9-a672-ccb525e581c5"
+ "e47ae9e9-9894-455e-973b-c56ab9021978"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14836"
+ "14888"
],
"x-ms-correlation-request-id": [
- "8b0337c3-32d0-41ab-a662-c8127b3eb666"
+ "fc4394c4-af8b-40da-9f38-b3f3f555632e"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195606Z:8b0337c3-32d0-41ab-a662-c8127b3eb666"
+ "CENTRALUS:20151016T004915Z:fc4394c4-af8b-40da-9f38-b3f3f555632e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:56:05 GMT"
+ "Fri, 16 Oct 2015 00:49:15 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -967,8 +967,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -976,10 +976,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -991,28 +991,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c60c69ca-4fbf-45ef-a1e1-cce5d49b5680"
+ "c01d8fa9-bdf9-4375-a932-f957b35abef8"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14835"
+ "14887"
],
"x-ms-correlation-request-id": [
- "a9e9ea15-7660-4c14-b81e-cdfedf08b50d"
+ "b57c726c-9251-4c72-914b-f4c69c1017ed"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195636Z:a9e9ea15-7660-4c14-b81e-cdfedf08b50d"
+ "CENTRALUS:20151016T004946Z:b57c726c-9251-4c72-914b-f4c69c1017ed"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:56:35 GMT"
+ "Fri, 16 Oct 2015 00:49:45 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1021,8 +1021,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1030,10 +1030,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1045,28 +1045,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d2d6b87d-7494-4fbd-a8bd-780df1de108e"
+ "9061bafb-3191-4138-9d26-75e69bfc739a"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14834"
+ "14885"
],
"x-ms-correlation-request-id": [
- "b54c17f6-9e1f-4fa7-8c1a-3c1adde48442"
+ "b341f43d-ec11-4ad5-a962-d3956282fbaf"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195706Z:b54c17f6-9e1f-4fa7-8c1a-3c1adde48442"
+ "CENTRALUS:20151016T005016Z:b341f43d-ec11-4ad5-a962-d3956282fbaf"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:57:06 GMT"
+ "Fri, 16 Oct 2015 00:50:16 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1075,8 +1075,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1084,10 +1084,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1099,28 +1099,28 @@
"no-cache"
],
"x-ms-request-id": [
- "5ffa91dd-c494-4765-8607-5ae5d84ba5dd"
+ "8be5327e-d3dc-4963-abc2-318a58d23a2c"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14833"
+ "14884"
],
"x-ms-correlation-request-id": [
- "2b062a3b-4e70-47e1-bfa9-c774a647a3fb"
+ "b0526ae2-b79b-418f-b01b-e1e3a064fea9"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195736Z:2b062a3b-4e70-47e1-bfa9-c774a647a3fb"
+ "CENTRALUS:20151016T005046Z:b0526ae2-b79b-418f-b01b-e1e3a064fea9"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:57:35 GMT"
+ "Fri, 16 Oct 2015 00:50:46 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1129,8 +1129,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1138,10 +1138,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "571"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1153,28 +1153,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0aa32669-246d-428b-8699-67078479213a"
+ "f01d3bff-6f2a-44f4-8c5b-64d623b5e3db"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14832"
+ "14883"
],
"x-ms-correlation-request-id": [
- "efd2bb05-7fba-40fc-8608-dfd83148ed3f"
+ "95a3cdad-6550-40ec-864b-a424ea59f512"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195806Z:efd2bb05-7fba-40fc-8608-dfd83148ed3f"
+ "CENTRALUS:20151016T005116Z:95a3cdad-6550-40ec-864b-a424ea59f512"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:58:06 GMT"
+ "Fri, 16 Oct 2015 00:51:16 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1183,8 +1183,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1192,10 +1192,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "572"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1207,28 +1207,28 @@
"no-cache"
],
"x-ms-request-id": [
- "71333de1-59e2-45cc-92a3-4acf66ffb206"
+ "02c0b215-f8e1-46cf-bc79-199d4443f03f"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14831"
+ "14882"
],
"x-ms-correlation-request-id": [
- "db4c2a05-5e30-4367-bbd2-616dbd9b020b"
+ "d9876bdb-fbb7-461b-a8da-fe5b3bb7bfef"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195836Z:db4c2a05-5e30-4367-bbd2-616dbd9b020b"
+ "CENTRALUS:20151016T005146Z:d9876bdb-fbb7-461b-a8da-fe5b3bb7bfef"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:58:35 GMT"
+ "Fri, 16 Oct 2015 00:51:45 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1237,8 +1237,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1246,10 +1246,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "572"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1261,28 +1261,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8f546e5b-4489-440a-818e-f220d39f3cbd"
+ "5ad89155-f6b2-453e-bb95-030053cb0c32"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14830"
+ "14881"
],
"x-ms-correlation-request-id": [
- "0ffa583c-d2a7-4ffa-8d00-8f58fe9121ce"
+ "59e27e35-8f0f-4e0d-b6ec-0b5923c8e4e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T195906Z:0ffa583c-d2a7-4ffa-8d00-8f58fe9121ce"
+ "CENTRALUS:20151016T005146Z:59e27e35-8f0f-4e0d-b6ec-0b5923c8e4e1"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:59:06 GMT"
+ "Fri, 16 Oct 2015 00:51:46 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1291,187 +1291,25 @@
"StatusCode": 200
},
{
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "560"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "f383d42a-49e1-41ac-9866-ec68cbacf00d"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14829"
- ],
- "x-ms-correlation-request-id": [
- "7bbf369e-393f-4def-8c26-5d7200a9459a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T195937Z:7bbf369e-393f-4def-8c26-5d7200a9459a"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 19:59:36 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "561"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "0368ccec-db5e-4a45-9aa8-6ceb901f0b31"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14840"
- ],
- "x-ms-correlation-request-id": [
- "ba1112d4-433d-461f-808a-a301199b9c46"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T200007Z:ba1112d4-433d-461f-808a-a301199b9c46"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:00:07 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "561"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "2930e9ab-3f94-459b-bed9-14871d7a8717"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14839"
- ],
- "x-ms-correlation-request-id": [
- "d78f54e6-f0a9-413f-a254-06e48668e81e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T200007Z:d78f54e6-f0a9-413f-a254-06e48668e81e"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:00:07 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "PUT",
- "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}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
],
"Content-Length": [
- "194"
+ "169"
],
"User-Agent": [
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"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\": {\r\n \"primaryKey\": \"S8SSBuALdwqDXEi1rIdyKw/opSa5OJAwgrMd1sxZSYg=\",\r\n \"secondaryKey\": \"g/+vL1Qoig+yfuYeAjQUxcxyG/qzfIzORiiIJviOuss=\"\r\n },\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "679"
+ "690"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1483,31 +1321,31 @@
"no-cache"
],
"x-ms-request-id": [
- "be941d85-69e4-4d59-90fb-0cbac319c604"
+ "9641388d-bc2f-4df1-be26-fcd61fdcf535"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1195"
],
"x-ms-correlation-request-id": [
- "dbd87cc6-448f-44eb-b4d1-57775eb1b9db"
+ "2494cc75-1ebc-48eb-b323-57bd5e1a12ee"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T194733Z:dbd87cc6-448f-44eb-b4d1-57775eb1b9db"
+ "CENTRALUS:20151016T004044Z:2494cc75-1ebc-48eb-b323-57bd5e1a12ee"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:47:33 GMT"
+ "Fri, 16 Oct 2015 00:40:43 GMT"
],
"Location": [
- "https://prod-rp-ncus.cacheinfra.windows.net:10225/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest"
+ "https://df-rp-ncus.cacheinfra.icbbvt.windows-int.net:10225/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1516,25 +1354,25 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "PUT",
- "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}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\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"
],
"Content-Length": [
- "303"
+ "278"
],
"User-Agent": [
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"S8SSBuALdwqDXEi1rIdyKw/opSa5OJAwgrMd1sxZSYg=\",\r\n \"secondaryKey\": \"g/+vL1Qoig+yfuYeAjQUxcxyG/qzfIzORiiIJviOuss=\"\r\n },\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "712"
+ "723"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1546,28 +1384,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ea67415d-2327-4e77-b32c-c080bf36c1e5"
+ "ed9b4a63-9509-4b87-bedb-5dcc91190b99"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1194"
],
"x-ms-correlation-request-id": [
- "0620eb62-3ecb-4a28-8c3a-22d3586f7419"
+ "fe85a1e1-8295-4ad7-9d4f-7df88f1b792d"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200009Z:0620eb62-3ecb-4a28-8c3a-22d3586f7419"
+ "CENTRALUS:20151016T005147Z:fe85a1e1-8295-4ad7-9d4f-7df88f1b792d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:00:09 GMT"
+ "Fri, 16 Oct 2015 00:51:46 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1576,8 +1414,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzLz9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzLz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1585,10 +1423,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"50\"\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}",
"ResponseHeaders": {
"Content-Length": [
- "605"
+ "1197"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1600,28 +1438,28 @@
"no-cache"
],
"x-ms-request-id": [
- "97562e48-efac-444b-a1a0-99f0cf3f61d7"
+ "0f9d67e8-538a-4814-b3ce-7613ea40ce3c"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14838"
+ "14880"
],
"x-ms-correlation-request-id": [
- "1340a192-087b-4633-a25f-18d6fa5a2794"
+ "574f9f9f-afbe-4eff-b874-df96471c2028"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200009Z:1340a192-087b-4633-a25f-18d6fa5a2794"
+ "CENTRALUS:20151016T005147Z:574f9f9f-afbe-4eff-b874-df96471c2028"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:00:09 GMT"
+ "Fri, 16 Oct 2015 00:51:46 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1630,8 +1468,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/providers/Microsoft.Cache/Redis/?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/providers/Microsoft.Cache/Redis/?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1639,10 +1477,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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 \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"50\"\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}",
"ResponseHeaders": {
"Content-Length": [
- "58236"
+ "1805"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1653,52 +1491,39 @@
"Pragma": [
"no-cache"
],
- "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-request-id": [
+ "1b2bef01-c91a-468f-a5b4-bf1e5aaf6534"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14837"
+ "x-rp-server-mvid": [
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
- "x-ms-request-id": [
- "967b231f-9490-43f9-b8c1-7ff2b0bfbe7c"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14879"
],
"x-ms-correlation-request-id": [
- "967b231f-9490-43f9-b8c1-7ff2b0bfbe7c"
+ "aa880de6-7eef-49a6-9a4d-c4508ee193be"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200011Z:967b231f-9490-43f9-b8c1-7ff2b0bfbe7c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUS:20151016T005147Z:aa880de6-7eef-49a6-9a4d-c4508ee193be"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:00:11 GMT"
+ "Fri, 16 Oct 2015 00:51:47 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/listKeys?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/listKeys?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -1706,7 +1531,7 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"gz+UP8N2i0KYtJfYBgAs0xGtTKpbFFD9Vx0OMEG2ij0=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"S8SSBuALdwqDXEi1rIdyKw/opSa5OJAwgrMd1sxZSYg=\",\r\n \"secondaryKey\": \"g/+vL1Qoig+yfuYeAjQUxcxyG/qzfIzORiiIJviOuss=\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"123"
@@ -1721,28 +1546,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ccc3b4d5-940c-4f5b-ab0f-f00e22e957a9"
+ "f1c24078-e225-460f-b016-99322e85f5c9"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1193"
],
"x-ms-correlation-request-id": [
- "8ce9298d-03cb-45ff-ab93-4ce7895a5d2b"
+ "327601c9-ee78-4063-b55a-56cd14eb2ad6"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200011Z:8ce9298d-03cb-45ff-ab93-4ce7895a5d2b"
+ "CENTRALUS:20151016T005147Z:327601c9-ee78-4063-b55a-56cd14eb2ad6"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:00:11 GMT"
+ "Fri, 16 Oct 2015 00:51:47 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1751,8 +1576,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/listKeys?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/listKeys?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -1760,7 +1585,7 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"LzH0IO4zPLjnwrVLDRnXwdE+dliuQWpqEsWbjIEEOfw=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"oNSQie9NaKfKMfkvBVrMYD+Q5B8u4NEzFa9RPJIiQ18=\",\r\n \"secondaryKey\": \"g/+vL1Qoig+yfuYeAjQUxcxyG/qzfIzORiiIJviOuss=\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"123"
@@ -1775,28 +1600,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1e5f3fe2-bb24-4e16-bb18-32cde563b785"
+ "1be99799-fcbf-41e8-a6c3-34aa3a6f24ba"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1191"
],
"x-ms-correlation-request-id": [
- "7ea5d329-d3a7-4cca-9b50-e420b527768d"
+ "6b1d403d-36c2-40ce-81ff-73e1088e6fd6"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200013Z:7ea5d329-d3a7-4cca-9b50-e420b527768d"
+ "CENTRALUS:20151016T005148Z:6b1d403d-36c2-40ce-81ff-73e1088e6fd6"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:00:13 GMT"
+ "Fri, 16 Oct 2015 00:51:48 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1805,8 +1630,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/regenerateKey?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxNS0wMy0wMQ==",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/regenerateKey?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}",
"RequestHeaders": {
@@ -1820,7 +1645,7 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"LzH0IO4zPLjnwrVLDRnXwdE+dliuQWpqEsWbjIEEOfw=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"oNSQie9NaKfKMfkvBVrMYD+Q5B8u4NEzFa9RPJIiQ18=\",\r\n \"secondaryKey\": \"g/+vL1Qoig+yfuYeAjQUxcxyG/qzfIzORiiIJviOuss=\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"123"
@@ -1835,28 +1660,28 @@
"no-cache"
],
"x-ms-request-id": [
- "820d899c-0afa-4c93-a498-70d9e81d0b03"
+ "bd270bfb-907b-400d-bbce-4cc7a062bda8"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1192"
],
"x-ms-correlation-request-id": [
- "b8153574-6b71-49cc-97ad-62608203a29b"
+ "201d29ef-655b-4157-8c65-cccd166d37dd"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200013Z:b8153574-6b71-49cc-97ad-62608203a29b"
+ "CENTRALUS:20151016T005148Z:201d29ef-655b-4157-8c65-cccd166d37dd"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:00:13 GMT"
+ "Fri, 16 Oct 2015 00:51:48 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1865,8 +1690,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -1886,28 +1711,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8d12623c-1a31-4613-8616-e9435a67ac85"
+ "7b923bae-e988-4364-8857-881cede8a1f1"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1190"
],
"x-ms-correlation-request-id": [
- "0aeffdc3-1cf7-4616-ae2c-3cbca96bf2aa"
+ "23158eaf-5443-4119-8a8a-cdf8ebceb749"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200015Z:0aeffdc3-1cf7-4616-ae2c-3cbca96bf2aa"
+ "CENTRALUS:20151016T005149Z:23158eaf-5443-4119-8a8a-cdf8ebceb749"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:00:14 GMT"
+ "Fri, 16 Oct 2015 00:51:48 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1918,6 +1743,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b"
+ "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheClustering.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheClustering.json
new file mode 100644
index 000000000000..d64ec20aa2ff
--- /dev/null
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheClustering.json
@@ -0,0 +1,1690 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/powershellcluster' under resource group 'MyResourceGroup' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "158"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "4f0b54fb-f121-4cf7-a717-7130d8589d1f"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f0b54fb-f121-4cf7-a717-7130d8589d1f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003000Z:4f0b54fb-f121-4cf7-a717-7130d8589d1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:30:00 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e0671efd-f006-4227-b8c6-4248d4bbfbc1"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14916"
+ ],
+ "x-ms-correlation-request-id": [
+ "756b467a-f1c9-4f19-b920-3c626ebeec8e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003032Z:756b467a-f1c9-4f19-b920-3c626ebeec8e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:30:32 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8b872c24-167c-434d-b6b6-6f5b04a2f5ec"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14915"
+ ],
+ "x-ms-correlation-request-id": [
+ "250a8882-c2ef-4e54-82c6-36bc47a9375c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003102Z:250a8882-c2ef-4e54-82c6-36bc47a9375c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:31:01 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "bfd6727f-0565-4be2-835a-e5834647951b"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14913"
+ ],
+ "x-ms-correlation-request-id": [
+ "a73f6291-6cb7-498a-aeda-f362f90e8095"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003132Z:a73f6291-6cb7-498a-aeda-f362f90e8095"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:31:32 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1dfc0966-68a1-4293-8808-fcdcd10d1906"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14912"
+ ],
+ "x-ms-correlation-request-id": [
+ "03782f40-67e5-4325-bd16-59dd88d58713"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003202Z:03782f40-67e5-4325-bd16-59dd88d58713"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:32:02 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "01914b1b-c7ee-4643-bd78-fde22b9f2045"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14910"
+ ],
+ "x-ms-correlation-request-id": [
+ "18751668-53a4-40a6-8372-0eb9c2deace8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003233Z:18751668-53a4-40a6-8372-0eb9c2deace8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:32:32 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0aca1624-67be-4463-9bd9-7b6d7d0a61ea"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14909"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0fd31f6-0ad8-495e-b617-c49ef62f130d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003303Z:f0fd31f6-0ad8-495e-b617-c49ef62f130d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:33:02 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "76f4bed2-514d-405f-98ba-e4a44aa69a1c"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14907"
+ ],
+ "x-ms-correlation-request-id": [
+ "82c46258-8d61-478c-8a1b-20b7a88877c9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003333Z:82c46258-8d61-478c-8a1b-20b7a88877c9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:33:33 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "203d091b-edc6-4c14-82ae-40935f72079f"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14906"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef41bca1-1180-4815-b35f-71781b2ba243"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003403Z:ef41bca1-1180-4815-b35f-71781b2ba243"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:34:02 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1fe42efa-af4a-42f3-86a6-83fe2e8151e1"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14904"
+ ],
+ "x-ms-correlation-request-id": [
+ "554b8580-d246-46a4-ac18-0ca14fbd963b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003433Z:554b8580-d246-46a4-ac18-0ca14fbd963b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:34:33 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "60da9ebb-1655-4bcc-a184-a5835d2e7f25"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14903"
+ ],
+ "x-ms-correlation-request-id": [
+ "9823aaa7-b784-4b10-bcf4-5da055038874"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003503Z:9823aaa7-b784-4b10-bcf4-5da055038874"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:35:02 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "82643daf-beb1-42ca-9fa3-3a241c4273b8"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14901"
+ ],
+ "x-ms-correlation-request-id": [
+ "6331c50c-4e6e-4f09-a209-93ac997eb8e8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003533Z:6331c50c-4e6e-4f09-a209-93ac997eb8e8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:35:33 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "45d7c51b-c21e-4f46-96d5-446a0d3102d1"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14900"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a05d4f3-48fc-46f8-ad7f-64d2949bd948"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003603Z:4a05d4f3-48fc-46f8-ad7f-64d2949bd948"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:36:03 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8a6b135d-914f-4a86-a153-56b64eb00559"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14898"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d02b6d3-4fe7-486d-ae5e-e40af71ed993"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003634Z:2d02b6d3-4fe7-486d-ae5e-e40af71ed993"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:36:34 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b149f6f1-a029-4116-84e3-61f10aad9461"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14897"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d5bce19-e64a-47c9-b2f2-b12c8e21083d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003704Z:4d5bce19-e64a-47c9-b2f2-b12c8e21083d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:37:03 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7bf8bec3-2e86-45fa-b715-dbb9df04f148"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14896"
+ ],
+ "x-ms-correlation-request-id": [
+ "5299de70-b6ac-4082-97e0-c05d7ff8e391"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003734Z:5299de70-b6ac-4082-97e0-c05d7ff8e391"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:37:34 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "739a938d-2e27-42e2-9b86-63ceae033462"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14895"
+ ],
+ "x-ms-correlation-request-id": [
+ "07d3ec48-49a0-4c18-8733-277bebb0bc3e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003804Z:07d3ec48-49a0-4c18-8733-277bebb0bc3e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:38:04 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a0ddbd45-1b09-488c-9bc6-64f0f3183021"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14894"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7959502-efd0-4c72-9a89-c3dcb5ea5ad1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003834Z:c7959502-efd0-4c72-9a89-c3dcb5ea5ad1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:38:33 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "cc0131ad-a91b-4ad7-b29e-853711a2c3b8"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14893"
+ ],
+ "x-ms-correlation-request-id": [
+ "69c4ac6a-30e8-4ebb-8be3-a8261bb53220"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003904Z:69c4ac6a-30e8-4ebb-8be3-a8261bb53220"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:39:04 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b15f9dbf-4950-4e45-9c1a-078a43605364"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14892"
+ ],
+ "x-ms-correlation-request-id": [
+ "b06acfaf-ddf1-4850-8625-a8df3812a226"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003934Z:b06acfaf-ddf1-4850-8625-a8df3812a226"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:39:34 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "589"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b850dd0f-506a-49c3-8501-a1a978e03a22"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14892"
+ ],
+ "x-ms-correlation-request-id": [
+ "e57efbee-77e8-4cfb-ae26-25864d59ec8e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T004005Z:e57efbee-77e8-4cfb-ae26-25864d59ec8e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:40:04 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "590"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "cdb594aa-d1ac-4fd0-a351-9c69d2bd4683"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14891"
+ ],
+ "x-ms-correlation-request-id": [
+ "8abce0eb-d894-42a2-9105-4a65c09a5ea1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T004035Z:8abce0eb-d894-42a2-9105-4a65c09a5ea1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:40:35 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "590"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a61d988e-77be-4d6b-bc13-27f8f1007df6"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14890"
+ ],
+ "x-ms-correlation-request-id": [
+ "b8432340-14e8-426e-9dd1-4a6b3869d774"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T004035Z:b8432340-14e8-426e-9dd1-4a6b3869d774"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:40:35 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"shardCount\": 3\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "181"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"yvEh5g3wMTYn/+0uNg3JhUzWRtvMQ3+CZRQ7FphnQzc=\",\r\n \"secondaryKey\": \"Ugq0p70YD/8bY3HSOFqlq+QZ7S6jO2mYxJoyH2MS2DI=\"\r\n },\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "708"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "cc7850fd-e366-4d05-a35b-6651fd51056a"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "afdbff3c-2070-4cf6-a70c-4ca556b9a694"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T003002Z:afdbff3c-2070-4cf6-a70c-4ca556b9a694"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:30:02 GMT"
+ ],
+ "Location": [
+ "https://df-rp-eus.cacheinfra.icbbvt.windows-int.net:10225/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"tenantSettings\": {\r\n \"some-key\": \"some-value\"\r\n }\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "302"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": false,\r\n \"tenantSettings\": {\r\n \"some-key\": \"some-value\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"yvEh5g3wMTYn/+0uNg3JhUzWRtvMQ3+CZRQ7FphnQzc=\",\r\n \"secondaryKey\": \"Ugq0p70YD/8bY3HSOFqlq+QZ7S6jO2mYxJoyH2MS2DI=\"\r\n },\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "785"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3d20d827-3b3a-421d-9342-8c50c7955f29"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce86128e-315e-482a-b844-d26a45048c04"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T004037Z:ce86128e-315e-482a-b844-d26a45048c04"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:40:36 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzLz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": false,\r\n \"tenantSettings\": {\r\n \"some-key\": \"some-value\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1259"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-original-request-ids": [
+ "ea36f748-b030-4c70-88d5-8e112d82f7e4",
+ "c638efca-db72-4ef4-8562-e484f1886b13"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14889"
+ ],
+ "x-ms-request-id": [
+ "2587d8c2-c344-4ea8-abae-136524ae74b6"
+ ],
+ "x-ms-correlation-request-id": [
+ "2587d8c2-c344-4ea8-abae-136524ae74b6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T004037Z:2587d8c2-c344-4ea8-abae-136524ae74b6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:40:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/providers/Microsoft.Cache/Redis/?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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 \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\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\": false,\r\n \"tenantSettings\": {\r\n \"some-key\": \"some-value\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1867"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-original-request-ids": [
+ "13ca913b-1081-47dc-9ef3-61766c1a9423",
+ "7bc26007-db7d-4bd4-91a5-939a25ea306e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14888"
+ ],
+ "x-ms-request-id": [
+ "be5f8453-4df9-467c-9d9e-24ba3c19ab9f"
+ ],
+ "x-ms-correlation-request-id": [
+ "be5f8453-4df9-467c-9d9e-24ba3c19ab9f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T004037Z:be5f8453-4df9-467c-9d9e-24ba3c19ab9f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:40:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster/listKeys?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primaryKey\": \"yvEh5g3wMTYn/+0uNg3JhUzWRtvMQ3+CZRQ7FphnQzc=\",\r\n \"secondaryKey\": \"Ugq0p70YD/8bY3HSOFqlq+QZ7S6jO2mYxJoyH2MS2DI=\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "123"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d26b15bd-895a-4843-a746-e90c465043c9"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "d09ebca8-a4bb-42d5-a9c8-0715305547a0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T004037Z:d09ebca8-a4bb-42d5-a9c8-0715305547a0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:40:37 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster/listKeys?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primaryKey\": \"XZiwLDNRWnF5x1jvbq5q7trOaV9vbbL9BeQndKiKW3Q=\",\r\n \"secondaryKey\": \"Ugq0p70YD/8bY3HSOFqlq+QZ7S6jO2mYxJoyH2MS2DI=\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "123"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "115f652c-3f1e-4bb4-b905-c89b6629c1df"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "x-ms-correlation-request-id": [
+ "34bdb557-42bf-4dab-9706-19a95e74e489"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T004038Z:34bdb557-42bf-4dab-9706-19a95e74e489"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:40:37 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster/regenerateKey?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "28"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primaryKey\": \"XZiwLDNRWnF5x1jvbq5q7trOaV9vbbL9BeQndKiKW3Q=\",\r\n \"secondaryKey\": \"Ugq0p70YD/8bY3HSOFqlq+QZ7S6jO2mYxJoyH2MS2DI=\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "123"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "66d79df9-4291-4b39-9d6d-467e32b2bf42"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c9ab3b7-123d-4da8-b313-055a224ffd00"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T004038Z:3c9ab3b7-123d-4da8-b313-055a224ffd00"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:40:37 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c553d01e-8f81-4971-bf13-65a083346c0b"
+ ],
+ "x-rp-server-mvid": [
+ "e47bca3d-28dc-49ec-b74b-75ac9c7e975e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ec4cc07-95d1-4470-bcd8-1d6812e3f366"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20151016T004039Z:1ec4cc07-95d1-4470-bcd8-1d6812e3f366"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2015 00:40:39 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheParameterDeprecated.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheParameterDeprecated.json
new file mode 100644
index 000000000000..91c50acfcac3
--- /dev/null
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheParameterDeprecated.json
@@ -0,0 +1,119 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/warningTest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3dhcm5pbmdUZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/warningTest' under resource group 'MyResourceGroup' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "152"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "459de001-90cb-4cf5-9346-85c4224a5dcf"
+ ],
+ "x-ms-correlation-request-id": [
+ "459de001-90cb-4cf5-9346-85c4224a5dcf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150916T215814Z:459de001-90cb-4cf5-9346-85c4224a5dcf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 16 Sep 2015 21:58:13 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/warningTest?api-version=2015-03-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3dhcm5pbmdUZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestMethod": "PUT",
+ "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": [
+ "194"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/warningTest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"warningTest\",\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 \"\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\",\r\n \"maxclients\": \"256\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"fowLCNgyH8j6nQ96X2Rfu74/QDbMu31na6no+FwSszs=\",\r\n \"secondaryKey\": \"Z0P1mH9vfJ+RxBXTbSdlVBCkWZ+zwCr5i7myrfkQNqY=\"\r\n },\r\n \"hostName\": \"warningTest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "684"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b72d4d34-016a-44c6-ba83-efc44b9e9bca"
+ ],
+ "x-rp-server-mvid": [
+ "473aeb2b-6469-45d4-8133-a34c04b1eaca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9a8e7c0-e709-416e-9573-2475b0ed4f32"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150916T215815Z:f9a8e7c0-e709-416e-9573-2475b0ed4f32"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 16 Sep 2015 21:58:14 GMT"
+ ],
+ "Location": [
+ "https://df-rp-ncus.cacheinfra.icbbvt.windows-int.net:10225/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/warningTest"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38"
+ }
+}
\ 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 fa6dfa1b5cd4..d5611efbc4ea 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/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -28,13 +28,13 @@
"gateway"
],
"x-ms-request-id": [
- "a4259352-f23c-4d21-aabe-de827aa95a4c"
+ "0126aca4-21f7-42e5-b1f2-627f79eea859"
],
"x-ms-correlation-request-id": [
- "a4259352-f23c-4d21-aabe-de827aa95a4c"
+ "0126aca4-21f7-42e5-b1f2-627f79eea859"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200027Z:a4259352-f23c-4d21-aabe-de827aa95a4c"
+ "CENTRALUS:20151016T190832Z:0126aca4-21f7-42e5-b1f2-627f79eea859"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:00:27 GMT"
+ "Fri, 16 Oct 2015 19:08:32 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,10 +58,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,28 +73,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c2a3a3b5-10dd-4002-9168-9ad39a464740"
+ "1b6127bb-8cd7-4f13-a7cf-640e4f0d49c0"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14767"
+ "14981"
],
"x-ms-correlation-request-id": [
- "4bc62df6-d343-4a33-82b9-dda8a79c5e3f"
+ "9f91518e-8f6e-4c67-8121-cfcbb77e4f4e"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200100Z:4bc62df6-d343-4a33-82b9-dda8a79c5e3f"
+ "CENTRALUS:20151016T190904Z:9f91518e-8f6e-4c67-8121-cfcbb77e4f4e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:00:59 GMT"
+ "Fri, 16 Oct 2015 19:09:03 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -103,8 +103,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -112,10 +112,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -127,28 +127,28 @@
"no-cache"
],
"x-ms-request-id": [
- "80235f23-ecd4-4a18-91a0-2ebab6aa2eb0"
+ "8bd86213-3eb8-4d40-8451-5901c47fd468"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14766"
+ "14980"
],
"x-ms-correlation-request-id": [
- "986e0db8-92ad-421a-9975-71c29652e608"
+ "7b01a68c-946f-4ed8-a502-a58ab85fcca3"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200130Z:986e0db8-92ad-421a-9975-71c29652e608"
+ "CENTRALUS:20151016T190934Z:7b01a68c-946f-4ed8-a502-a58ab85fcca3"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:01:30 GMT"
+ "Fri, 16 Oct 2015 19:09:33 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -157,8 +157,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -166,10 +166,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -181,28 +181,28 @@
"no-cache"
],
"x-ms-request-id": [
- "70945f02-fb66-4a9d-aa65-67ffe3cb5b5b"
+ "48d4d1a7-80c3-494d-94e5-20869a419896"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14763"
+ "14980"
],
"x-ms-correlation-request-id": [
- "c3bfbd8f-6746-426a-a2fe-6431cc0a6c18"
+ "86e9b66d-297f-436e-ab45-f8ce2304f7da"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200200Z:c3bfbd8f-6746-426a-a2fe-6431cc0a6c18"
+ "CENTRALUS:20151016T191004Z:86e9b66d-297f-436e-ab45-f8ce2304f7da"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:01:59 GMT"
+ "Fri, 16 Oct 2015 19:10:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -211,8 +211,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -220,10 +220,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -235,28 +235,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c630733b-854d-4419-8674-0caeda06789f"
+ "521b6cdb-08c6-4bfc-bad7-ca9f12c5b672"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14761"
+ "14979"
],
"x-ms-correlation-request-id": [
- "5a16bebe-ff21-4341-be79-583462ded50d"
+ "f1cad570-37d4-49de-b15c-c460cd7b66fb"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200230Z:5a16bebe-ff21-4341-be79-583462ded50d"
+ "CENTRALUS:20151016T191034Z:f1cad570-37d4-49de-b15c-c460cd7b66fb"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:02:30 GMT"
+ "Fri, 16 Oct 2015 19:10:34 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -265,8 +265,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -274,10 +274,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -289,28 +289,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2e420855-5561-4853-b9ec-7b1df6dcc671"
+ "2bf2c309-9ae5-4088-839a-22b0bd00b79c"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14758"
+ "14978"
],
"x-ms-correlation-request-id": [
- "a1d3ca13-30f9-420b-a098-2468616f59e5"
+ "fed71b17-cebb-4ca4-8e69-7249e7dcc262"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200300Z:a1d3ca13-30f9-420b-a098-2468616f59e5"
+ "CENTRALUS:20151016T191104Z:fed71b17-cebb-4ca4-8e69-7249e7dcc262"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:03:00 GMT"
+ "Fri, 16 Oct 2015 19:11:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -319,8 +319,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -328,10 +328,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -343,28 +343,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7811afce-973c-4b68-b9bc-04db25873c8f"
+ "962c9756-19ef-40cd-b737-88ab7acc8303"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14755"
+ "14977"
],
"x-ms-correlation-request-id": [
- "3d439d49-1f6e-4219-a79d-e4f41f829250"
+ "af07b784-f8c8-450b-9b71-ffd9fd32fb24"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200331Z:3d439d49-1f6e-4219-a79d-e4f41f829250"
+ "CENTRALUS:20151016T191134Z:af07b784-f8c8-450b-9b71-ffd9fd32fb24"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:03:30 GMT"
+ "Fri, 16 Oct 2015 19:11:33 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -373,8 +373,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -382,10 +382,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -397,28 +397,28 @@
"no-cache"
],
"x-ms-request-id": [
- "368822fc-81b0-4d20-9b3b-99e30c4254cf"
+ "490fca5f-ef53-4365-8671-08d1c3f6858d"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14749"
+ "14976"
],
"x-ms-correlation-request-id": [
- "0c00ddd9-0dbb-4cfa-8ce0-5ce3931e1765"
+ "1f351d92-bf79-4455-924a-985ca9fa2b80"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200401Z:0c00ddd9-0dbb-4cfa-8ce0-5ce3931e1765"
+ "CENTRALUS:20151016T191204Z:1f351d92-bf79-4455-924a-985ca9fa2b80"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:04:00 GMT"
+ "Fri, 16 Oct 2015 19:12:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -427,8 +427,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -436,10 +436,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -451,28 +451,28 @@
"no-cache"
],
"x-ms-request-id": [
- "96d44e2d-05c8-46e0-9475-1465b7338778"
+ "d748b193-fd12-433e-a9d3-a278fe19dcb5"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14746"
+ "14975"
],
"x-ms-correlation-request-id": [
- "9b21c38f-92c5-4166-95d1-34bbf96e2c04"
+ "ecd955a9-0bde-47d4-86f3-48990424560a"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200431Z:9b21c38f-92c5-4166-95d1-34bbf96e2c04"
+ "CENTRALUS:20151016T191235Z:ecd955a9-0bde-47d4-86f3-48990424560a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:04:31 GMT"
+ "Fri, 16 Oct 2015 19:12:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -481,8 +481,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -490,10 +490,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -505,28 +505,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d0fbe7ed-9375-44cd-8d8c-ab71df6dc889"
+ "8c673e65-6969-4142-8168-bbaa5c8ae196"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14761"
+ "14974"
],
"x-ms-correlation-request-id": [
- "90b90f43-d816-4dc9-ac65-95f8b7261981"
+ "4ed8cec5-ab94-42f9-80ad-f950902c3f9c"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200501Z:90b90f43-d816-4dc9-ac65-95f8b7261981"
+ "CENTRALUS:20151016T191305Z:4ed8cec5-ab94-42f9-80ad-f950902c3f9c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:05:00 GMT"
+ "Fri, 16 Oct 2015 19:13:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -535,8 +535,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -544,10 +544,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -559,28 +559,28 @@
"no-cache"
],
"x-ms-request-id": [
- "05786cc1-922c-4230-81c4-0b307cd01483"
+ "0ebca380-ea5b-4053-bb87-6b41ef0d7bd4"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14758"
+ "14973"
],
"x-ms-correlation-request-id": [
- "def2a16f-d01e-464f-a3ba-45db1e258b40"
+ "4b8f194f-646d-4260-8146-3cad969efd32"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200531Z:def2a16f-d01e-464f-a3ba-45db1e258b40"
+ "CENTRALUS:20151016T191335Z:4b8f194f-646d-4260-8146-3cad969efd32"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:05:31 GMT"
+ "Fri, 16 Oct 2015 19:13:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -589,8 +589,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -598,10 +598,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -613,28 +613,28 @@
"no-cache"
],
"x-ms-request-id": [
- "67ba99aa-e133-48ee-8477-ab339cce6a5c"
+ "5820781b-3981-465d-afda-9add1e7d7bb7"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14755"
+ "14972"
],
"x-ms-correlation-request-id": [
- "a030e068-88af-4fe4-b0c2-faa8e20178ee"
+ "07a39fba-2500-4d6a-8f09-5a58fc754d29"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200601Z:a030e068-88af-4fe4-b0c2-faa8e20178ee"
+ "CENTRALUS:20151016T191405Z:07a39fba-2500-4d6a-8f09-5a58fc754d29"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:06:00 GMT"
+ "Fri, 16 Oct 2015 19:14:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -643,8 +643,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -652,10 +652,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -667,28 +667,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2e1cfefb-2d4b-41a9-958e-604574450f6e"
+ "791fb01e-4317-42c0-8d68-c313c9a2be99"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14753"
+ "14971"
],
"x-ms-correlation-request-id": [
- "aec1de4a-cf41-45c7-ad6d-d2d611245354"
+ "3abe7f31-1d63-4bf0-b78f-1431411ea877"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200631Z:aec1de4a-cf41-45c7-ad6d-d2d611245354"
+ "CENTRALUS:20151016T191435Z:3abe7f31-1d63-4bf0-b78f-1431411ea877"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:06:31 GMT"
+ "Fri, 16 Oct 2015 19:14:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -697,8 +697,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -706,10 +706,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -721,28 +721,28 @@
"no-cache"
],
"x-ms-request-id": [
- "45151949-519d-45a3-b43d-6c5e8709d071"
+ "c8714f02-538c-4277-816b-8132a9e80085"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14751"
+ "14971"
],
"x-ms-correlation-request-id": [
- "4db69181-7ca0-42d0-8127-58cf84ed7634"
+ "b924b15a-3295-4a11-a494-69abc063c676"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200701Z:4db69181-7ca0-42d0-8127-58cf84ed7634"
+ "CENTRALUS:20151016T191505Z:b924b15a-3295-4a11-a494-69abc063c676"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:07:01 GMT"
+ "Fri, 16 Oct 2015 19:15:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -751,8 +751,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -760,10 +760,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -775,28 +775,28 @@
"no-cache"
],
"x-ms-request-id": [
- "eecf4daf-f7a0-4376-b1c2-0e3bf390a9f4"
+ "e780dfd3-9260-409c-a278-92eeaed67dd4"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14748"
+ "14970"
],
"x-ms-correlation-request-id": [
- "e6838334-cad9-4e0c-80f2-b463e66b2297"
+ "9fbf1163-d8cf-4e53-8012-45f07a820767"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200732Z:e6838334-cad9-4e0c-80f2-b463e66b2297"
+ "CENTRALUS:20151016T191535Z:9fbf1163-d8cf-4e53-8012-45f07a820767"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:07:31 GMT"
+ "Fri, 16 Oct 2015 19:15:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -805,8 +805,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -814,10 +814,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -829,28 +829,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6ff90003-08b4-4058-826c-e085a02b9807"
+ "c628db8c-c75f-47ec-b8b6-65d064143f6d"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14745"
+ "14969"
],
"x-ms-correlation-request-id": [
- "203549f2-e896-4112-8886-027010439802"
+ "dcb80c41-14f4-4353-b3e2-82f3977084cc"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200802Z:203549f2-e896-4112-8886-027010439802"
+ "CENTRALUS:20151016T191605Z:dcb80c41-14f4-4353-b3e2-82f3977084cc"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:08:01 GMT"
+ "Fri, 16 Oct 2015 19:16:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -859,8 +859,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -868,10 +868,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -883,28 +883,28 @@
"no-cache"
],
"x-ms-request-id": [
- "eb58d06e-b82c-4a37-88e1-eec96dc027d0"
+ "7ee601b5-9052-4217-871c-ab84a74f9173"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14744"
+ "14968"
],
"x-ms-correlation-request-id": [
- "91711632-4415-42e0-b4f7-2666e085f27e"
+ "4d878d96-0537-4c90-8d96-9e8cb70fc67d"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200832Z:91711632-4415-42e0-b4f7-2666e085f27e"
+ "CENTRALUS:20151016T191635Z:4d878d96-0537-4c90-8d96-9e8cb70fc67d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:08:31 GMT"
+ "Fri, 16 Oct 2015 19:16:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -913,8 +913,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -922,10 +922,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -937,28 +937,28 @@
"no-cache"
],
"x-ms-request-id": [
- "fec35444-a070-4fa5-93c7-67c13c3d890e"
+ "248d5e3d-e54f-4fa1-800a-2267cfb37dcb"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14742"
+ "14967"
],
"x-ms-correlation-request-id": [
- "5b3bd483-1bd4-4bf4-8d56-903d666f186f"
+ "4308520e-da4c-48cc-a4a7-36ff0403ce78"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200902Z:5b3bd483-1bd4-4bf4-8d56-903d666f186f"
+ "CENTRALUS:20151016T191705Z:4308520e-da4c-48cc-a4a7-36ff0403ce78"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:09:02 GMT"
+ "Fri, 16 Oct 2015 19:17:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -967,8 +967,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -976,10 +976,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -991,28 +991,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2620e4e8-cdf3-4f53-875c-59f75ea43da0"
+ "7abcb4df-6a3c-4bfa-932d-216c79ffbe75"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14741"
+ "14966"
],
"x-ms-correlation-request-id": [
- "3a409d7a-ae7f-4223-ad12-893e07d95767"
+ "419cda78-7921-4122-bccb-8e898e77cc63"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200932Z:3a409d7a-ae7f-4223-ad12-893e07d95767"
+ "CENTRALUS:20151016T191736Z:419cda78-7921-4122-bccb-8e898e77cc63"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:09:31 GMT"
+ "Fri, 16 Oct 2015 19:17:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1021,8 +1021,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1030,10 +1030,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "579"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1045,28 +1045,28 @@
"no-cache"
],
"x-ms-request-id": [
- "45b7a93a-2c87-4fbf-8b2d-9dbce2af0811"
+ "ca0ee632-0d93-4e20-ae34-365881a27252"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14753"
+ "14965"
],
"x-ms-correlation-request-id": [
- "b8230270-88c3-44c8-bcc2-b3bfb66cc0d1"
+ "909c8e41-0611-489e-8739-c49a2a197edc"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201002Z:b8230270-88c3-44c8-bcc2-b3bfb66cc0d1"
+ "CENTRALUS:20151016T191806Z:909c8e41-0611-489e-8739-c49a2a197edc"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:10:02 GMT"
+ "Fri, 16 Oct 2015 19:18:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1075,8 +1075,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1084,10 +1084,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "580"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1099,28 +1099,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6ae1fc4f-79f0-4a0d-9f8d-8e86c4848024"
+ "0d1a676a-93a2-4f40-85f1-9fbe27b0ab3d"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14750"
+ "14964"
],
"x-ms-correlation-request-id": [
- "59d39c3a-f659-4e0f-88e5-024b15bfe04e"
+ "e7609054-20a3-42f3-8ad1-f7b03b6b8ded"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201032Z:59d39c3a-f659-4e0f-88e5-024b15bfe04e"
+ "CENTRALUS:20151016T191836Z:e7609054-20a3-42f3-8ad1-f7b03b6b8ded"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:10:32 GMT"
+ "Fri, 16 Oct 2015 19:18:36 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1129,8 +1129,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1138,10 +1138,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "580"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1153,28 +1153,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6dd8e189-c0bf-4b86-876a-af9b3403167e"
+ "b283c69a-e620-4469-9f10-5ae4e6542d86"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14744"
+ "14963"
],
"x-ms-correlation-request-id": [
- "c16b788a-a4ac-4764-9619-d75b90304f2a"
+ "950aacb2-0b15-4785-9ea5-00a8a148523e"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201102Z:c16b788a-a4ac-4764-9619-d75b90304f2a"
+ "CENTRALUS:20151016T191836Z:950aacb2-0b15-4785-9ea5-00a8a148523e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:11:02 GMT"
+ "Fri, 16 Oct 2015 19:18:36 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1183,8 +1183,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1192,10 +1192,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\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\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "580"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1207,28 +1207,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b42d8123-cd11-4fc3-8828-0945bd71326b"
+ "fc366ed3-1cbf-4813-bcff-2da42e2fc208"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14743"
+ "14962"
],
"x-ms-correlation-request-id": [
- "264f25c8-eecb-4263-aec6-8fe8e3301b43"
+ "e8ce664d-00ec-4f86-a6f0-538a56df3b2a"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201132Z:264f25c8-eecb-4263-aec6-8fe8e3301b43"
+ "CENTRALUS:20151016T191836Z:e8ce664d-00ec-4f86-a6f0-538a56df3b2a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:11:32 GMT"
+ "Fri, 16 Oct 2015 19:18:36 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1237,8 +1237,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1246,10 +1246,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\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": [
- "571"
+ "617"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1261,28 +1261,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b50b60cc-178b-419a-9aad-f2fe9d3d591b"
+ "d39e235d-b5f8-4739-93c0-e7067dbe67dd"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14741"
+ "14961"
],
"x-ms-correlation-request-id": [
- "8d0e49b9-5b1a-4d4d-8231-fdb74a38d7da"
+ "ac391724-59ae-42d1-aea7-e90636045962"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201203Z:8d0e49b9-5b1a-4d4d-8231-fdb74a38d7da"
+ "CENTRALUS:20151016T191837Z:ac391724-59ae-42d1-aea7-e90636045962"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:12:02 GMT"
+ "Fri, 16 Oct 2015 19:18:37 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1291,8 +1291,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1300,10 +1300,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\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": [
- "571"
+ "617"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1315,28 +1315,28 @@
"no-cache"
],
"x-ms-request-id": [
- "89bedb7d-bea9-4950-852b-c6866288e7b3"
+ "12ec4dc9-8ca8-4226-b338-2121d521310f"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14740"
+ "14960"
],
"x-ms-correlation-request-id": [
- "62af6546-48d9-4833-8f0e-c928cea0cd89"
+ "393d79c8-71bb-4dbe-be01-a97dd3faa977"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201233Z:62af6546-48d9-4833-8f0e-c928cea0cd89"
+ "CENTRALUS:20151016T191837Z:393d79c8-71bb-4dbe-be01-a97dd3faa977"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:12:32 GMT"
+ "Fri, 16 Oct 2015 19:18:37 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1345,8 +1345,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1354,10 +1354,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\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": [
- "571"
+ "617"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1369,28 +1369,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ab8ee9e7-2c02-4e09-b187-7ed239511982"
+ "7ea3ba44-f2e0-4179-9a68-0ee28932943e"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14735"
+ "14959"
],
"x-ms-correlation-request-id": [
- "1052bcdb-8e7a-4167-a87f-f4afa40285a9"
+ "5895519d-f6b6-4a12-bafa-355b1c8e2920"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201303Z:1052bcdb-8e7a-4167-a87f-f4afa40285a9"
+ "CENTRALUS:20151016T191838Z:5895519d-f6b6-4a12-bafa-355b1c8e2920"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:13:02 GMT"
+ "Fri, 16 Oct 2015 19:18:37 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1399,8 +1399,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1408,10 +1408,10 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\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": [
- "571"
+ "617"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1423,28 +1423,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4e08b6d0-f723-46a5-934a-fb298ed1d061"
+ "e72c3a35-4da8-4b12-976e-119c4a6fb36f"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14734"
+ "14958"
],
"x-ms-correlation-request-id": [
- "a7e1e200-8d70-4ab3-afe1-1d65b2b17a60"
+ "c73839db-b719-4652-92fa-a72634c330a7"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201333Z:a7e1e200-8d70-4ab3-afe1-1d65b2b17a60"
+ "CENTRALUS:20151016T191838Z:c73839db-b719-4652-92fa-a72634c330a7"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:13:33 GMT"
+ "Fri, 16 Oct 2015 19:18:38 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1453,727 +1453,25 @@
"StatusCode": 200
},
{
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "571"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "8e624f73-b93a-40eb-b60e-e490246f7402"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14729"
- ],
- "x-ms-correlation-request-id": [
- "ea0b7b56-880b-4012-8443-374332fd00e1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201403Z:ea0b7b56-880b-4012-8443-374332fd00e1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:14:02 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "571"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "c1ecdc55-c94d-4c69-b45d-443e02637365"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14727"
- ],
- "x-ms-correlation-request-id": [
- "71a5d168-ee86-4942-865b-feb5a9792a7e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201433Z:71a5d168-ee86-4942-865b-feb5a9792a7e"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:14:33 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "571"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "5992d75b-df67-4b38-9093-211e819fe58d"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14741"
- ],
- "x-ms-correlation-request-id": [
- "0861efd5-586a-4719-a5d8-b657eb4c026d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201503Z:0861efd5-586a-4719-a5d8-b657eb4c026d"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:15:03 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "571"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "7207b843-15e1-46ba-8a5c-2a521c4b218c"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14739"
- ],
- "x-ms-correlation-request-id": [
- "47aa9e86-f583-43e5-a675-91f039b67bab"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201533Z:47aa9e86-f583-43e5-a675-91f039b67bab"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:15:33 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "571"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "c0b5ae0d-248a-409b-a282-d27e8ebb57bd"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14736"
- ],
- "x-ms-correlation-request-id": [
- "831763f8-0610-48eb-b6d7-9b5d438ac4c8"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201604Z:831763f8-0610-48eb-b6d7-9b5d438ac4c8"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:16:03 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "571"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "78fda8c5-c68c-413c-8982-66bd9764cf6f"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14734"
- ],
- "x-ms-correlation-request-id": [
- "6120b0e5-01ec-42f6-b776-e96dec0d9dfe"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201634Z:6120b0e5-01ec-42f6-b776-e96dec0d9dfe"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:16:33 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "572"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "a5029de7-05fc-4bd5-b286-04bb2f9b9e6f"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14732"
- ],
- "x-ms-correlation-request-id": [
- "fd5c5d91-f65b-41e6-b88a-6bb1c1efefba"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201704Z:fd5c5d91-f65b-41e6-b88a-6bb1c1efefba"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:17:04 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "572"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "61bdfe6f-348e-4a8f-8847-e6ae5fc86da9"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14731"
- ],
- "x-ms-correlation-request-id": [
- "af30b7dc-f135-439d-b554-c3c078a21cdf"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201704Z:af30b7dc-f135-439d-b554-c3c078a21cdf"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:17:04 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "572"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "c98d56dd-fd03-4866-aa5d-c677b3f822aa"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14730"
- ],
- "x-ms-correlation-request-id": [
- "4e9bc533-1b51-4ce3-9090-6ed6c8f8dbe1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201704Z:4e9bc533-1b51-4ce3-9090-6ed6c8f8dbe1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:17:04 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "609"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "586dbbf6-d454-4874-abab-7a40652f1fc8"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14729"
- ],
- "x-ms-correlation-request-id": [
- "1f801fd7-a8ae-467b-a87a-e8c89904be97"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201705Z:1f801fd7-a8ae-467b-a87a-e8c89904be97"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:17:05 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "609"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "7e6e2751-5999-4ef6-8308-02ab7d728479"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14728"
- ],
- "x-ms-correlation-request-id": [
- "459316e7-7fa9-4c44-b65c-f06c1d1cd427"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201705Z:459316e7-7fa9-4c44-b65c-f06c1d1cd427"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:17:05 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "609"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "c17fcb41-fc92-43c3-b72d-535fc494f20e"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14727"
- ],
- "x-ms-correlation-request-id": [
- "920d4c2d-9d84-4a76-9ce0-251188d930b9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201705Z:920d4c2d-9d84-4a76-9ce0-251188d930b9"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:17:05 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "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": {
- "User-Agent": [
- "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
- ]
- },
- "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": [
- "609"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "309953d5-f2a2-4c48-9ae2-b39fdaa712a2"
- ],
- "x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14726"
- ],
- "x-ms-correlation-request-id": [
- "2bf1f7f9-d856-44bb-b208-52e3cb97505e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150914T201707Z:2bf1f7f9-d856-44bb-b208-52e3cb97505e"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 14 Sep 2015 20:17:07 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "PUT",
- "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}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
],
"Content-Length": [
- "225"
+ "197"
],
"User-Agent": [
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"31+LJ4kD2NkW4m71N5fqLPeMc9p/oMxXYF8eDO6ifoA=\",\r\n \"secondaryKey\": \"BNmj8QRamyb78ToIca4U6clrdbQVPtSWgm30hC6qslA=\"\r\n },\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "690"
+ "698"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2185,10 +1483,10 @@
"no-cache"
],
"x-ms-request-id": [
- "2ed75c04-e4a7-4efc-9158-c25087a978f8"
+ "e2850a74-7340-4909-9127-31029a8b505d"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2197,19 +1495,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "39d4eb47-7b49-4fbe-967b-8f997529655b"
+ "f8c62172-133e-476e-bd62-1453d3b5638e"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T200030Z:39d4eb47-7b49-4fbe-967b-8f997529655b"
+ "CENTRALUS:20151016T190834Z:f8c62172-133e-476e-bd62-1453d3b5638e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:00:29 GMT"
+ "Fri, 16 Oct 2015 19:08:34 GMT"
],
"Location": [
- "https://prod-rp-ncus.cacheinfra.windows.net:10225/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe"
+ "https://df-rp-ncus.cacheinfra.icbbvt.windows-int.net:10225/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2218,25 +1516,25 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "PUT",
- "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}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\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"
],
"Content-Length": [
- "307"
+ "279"
],
"User-Agent": [
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"31+LJ4kD2NkW4m71N5fqLPeMc9p/oMxXYF8eDO6ifoA=\",\r\n \"secondaryKey\": \"BNmj8QRamyb78ToIca4U6clrdbQVPtSWgm30hC6qslA=\"\r\n },\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "728"
+ "736"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2248,10 +1546,10 @@
"no-cache"
],
"x-ms-request-id": [
- "1dd08661-cdc3-4c66-9e0c-7c7c4e148f02"
+ "a3bd6669-3785-4533-b364-8411a33d9e92"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2260,16 +1558,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "3f3e9e1f-7bb0-4497-b2bf-97da1f27a405"
+ "246b4915-6ebf-4d4d-b641-d3269f7a98da"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201705Z:3f3e9e1f-7bb0-4497-b2bf-97da1f27a405"
+ "CENTRALUS:20151016T191837Z:246b4915-6ebf-4d4d-b641-d3269f7a98da"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:17:05 GMT"
+ "Fri, 16 Oct 2015 19:18:37 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2278,8 +1576,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/listKeys?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/listKeys?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -2287,7 +1585,7 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"opQ8053oaI7qrkIT+kXwwI+tPO8NM0iQOHm4nDhNb3w=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"31+LJ4kD2NkW4m71N5fqLPeMc9p/oMxXYF8eDO6ifoA=\",\r\n \"secondaryKey\": \"BNmj8QRamyb78ToIca4U6clrdbQVPtSWgm30hC6qslA=\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"123"
@@ -2302,10 +1600,10 @@
"no-cache"
],
"x-ms-request-id": [
- "97ed8dc5-26d5-41bd-8a4c-261696c80db7"
+ "3541359b-48f2-4223-8ab7-d5dbb425557d"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2314,16 +1612,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "0bee9697-6844-4475-9207-77f92836821f"
+ "9fa2c7b8-31ce-4c25-9aa7-376b7b77389a"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201705Z:0bee9697-6844-4475-9207-77f92836821f"
+ "CENTRALUS:20151016T191837Z:9fa2c7b8-31ce-4c25-9aa7-376b7b77389a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:17:05 GMT"
+ "Fri, 16 Oct 2015 19:18:37 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2332,8 +1630,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/listKeys?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/listKeys?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -2341,7 +1639,7 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"RWt+FD9XndKt6DFS0KhH/ZbsUUczkCowVDotdkgMzGU=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"jfBCDa4WdDz3gLSg0iLQtxaii4pakgkBvaofWNMrWfE=\",\r\n \"secondaryKey\": \"BNmj8QRamyb78ToIca4U6clrdbQVPtSWgm30hC6qslA=\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"123"
@@ -2356,10 +1654,10 @@
"no-cache"
],
"x-ms-request-id": [
- "0ecace38-c28f-469a-8d5e-1cb67e2bf2ac"
+ "61f70e8f-24be-45f0-a2a1-3d522fcdee29"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2368,16 +1666,16 @@
"1195"
],
"x-ms-correlation-request-id": [
- "b982fd8c-3fcb-4ceb-97f2-abf2e2c33156"
+ "0a56b58c-b27f-4255-be7e-307012d4a13c"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201707Z:b982fd8c-3fcb-4ceb-97f2-abf2e2c33156"
+ "CENTRALUS:20151016T191838Z:0a56b58c-b27f-4255-be7e-307012d4a13c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:17:07 GMT"
+ "Fri, 16 Oct 2015 19:18:38 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2386,8 +1684,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/regenerateKey?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/regenerateKey?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}",
"RequestHeaders": {
@@ -2401,7 +1699,7 @@
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"RWt+FD9XndKt6DFS0KhH/ZbsUUczkCowVDotdkgMzGU=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"jfBCDa4WdDz3gLSg0iLQtxaii4pakgkBvaofWNMrWfE=\",\r\n \"secondaryKey\": \"BNmj8QRamyb78ToIca4U6clrdbQVPtSWgm30hC6qslA=\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"123"
@@ -2416,10 +1714,10 @@
"no-cache"
],
"x-ms-request-id": [
- "5012d810-8f94-4f21-8989-b8f0c3caaa1f"
+ "7a996562-d4f5-42bb-84aa-9c84e0ba03ee"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2428,16 +1726,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "9c134c04-3441-4070-8409-539f997d6d97"
+ "addf9f60-f28d-44c2-b218-4360b7426a7d"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201707Z:9c134c04-3441-4070-8409-539f997d6d97"
+ "CENTRALUS:20151016T191838Z:addf9f60-f28d-44c2-b218-4360b7426a7d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:17:06 GMT"
+ "Fri, 16 Oct 2015 19:18:38 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2446,8 +1744,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -2467,10 +1765,10 @@
"no-cache"
],
"x-ms-request-id": [
- "f13cec0a-932d-4495-bdbe-c82fb2a31531"
+ "eb566e5b-4f49-48e1-b07d-0c37b2be2633"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2479,16 +1777,16 @@
"1194"
],
"x-ms-correlation-request-id": [
- "55eef1a7-406a-441c-a4b2-d27c3afed48f"
+ "7e8893dd-37b2-4cf4-a2d3-286c83d96871"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T201708Z:55eef1a7-406a-441c-a4b2-d27c3afed48f"
+ "CENTRALUS:20151016T191839Z:7e8893dd-37b2-4cf4-a2d3-286c83d96871"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 20:17:08 GMT"
+ "Fri, 16 Oct 2015 19:18:39 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2499,6 +1797,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b"
+ "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38"
}
}
\ 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 81fd29ea7bd5..9e361d178640 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,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/NonExistingRedisCache?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL05vbkV4aXN0aW5nUmVkaXNDYWNoZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/NonExistingRedisCache?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL05vbkV4aXN0aW5nUmVkaXNDYWNoZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -28,13 +28,13 @@
"gateway"
],
"x-ms-request-id": [
- "61987ae9-1861-4584-a927-9cc2ffc8c14f"
+ "f00029de-2908-4df8-b43b-c6abdeb83e2d"
],
"x-ms-correlation-request-id": [
- "61987ae9-1861-4584-a927-9cc2ffc8c14f"
+ "f00029de-2908-4df8-b43b-c6abdeb83e2d"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T194717Z:61987ae9-1861-4584-a927-9cc2ffc8c14f"
+ "CENTRALUS:20151016T002954Z:f00029de-2908-4df8-b43b-c6abdeb83e2d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,7 +43,7 @@
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:47:16 GMT"
+ "Fri, 16 Oct 2015 00:29:54 GMT"
]
},
"StatusCode": 404
@@ -51,6 +51,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b"
+ "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38"
}
}
\ 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 c40d57e5270d..fa4056e565bb 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
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -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\": 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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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 \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "533"
+ "575"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,28 +25,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ab2a5e17-0e31-4e12-a567-fa78be5e542c"
+ "0108a901-4b0d-4271-80da-02d7d979d14a"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14922"
],
"x-ms-correlation-request-id": [
- "76fd5216-1006-4bbb-8c22-578fe0a51a39"
+ "b3163933-4f0b-47ff-93dd-700c1cc28a9c"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T194703Z:76fd5216-1006-4bbb-8c22-578fe0a51a39"
+ "CENTRALUS:20151016T002041Z:b3163933-4f0b-47ff-93dd-700c1cc28a9c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:47:02 GMT"
+ "Fri, 16 Oct 2015 00:20:41 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -55,8 +55,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -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 \"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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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 \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "533"
+ "574"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -79,28 +79,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a670cd33-7d1c-448a-8c55-0ea72dfccf4d"
+ "ee6bd437-8c97-424d-9ae2-9daded58a469"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14921"
],
"x-ms-correlation-request-id": [
- "4b18eae4-e533-4690-b820-b2c525711675"
+ "b4b38a34-31aa-4aa0-b4d1-7f3961510956"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T194704Z:4b18eae4-e533-4690-b820-b2c525711675"
+ "CENTRALUS:20151016T002042Z:b4b38a34-31aa-4aa0-b4d1-7f3961510956"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:47:03 GMT"
+ "Fri, 16 Oct 2015 00:20:42 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -109,25 +109,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\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 },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
],
"Content-Length": [
- "228"
+ "200"
],
"User-Agent": [
"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 \"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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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 \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"8yLKDB9auMZbwxUPDAVUGNHPx6x9n/Z7DeIWoyrgGKo=\",\r\n \"secondaryKey\": \"0Rx59FYvgMXyAXZzt0MllOB086tebL0dJJazPkJ0BWA=\"\r\n },\r\n \"hostName\": \"siddharthchatrola.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "652"
+ "693"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -139,10 +139,10 @@
"no-cache"
],
"x-ms-request-id": [
- "262308b6-7645-449c-803e-93807686cd1a"
+ "2c68a889-2080-4f10-8e9b-3e14dc88a30e"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -151,16 +151,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "75c43b21-7f1f-4c92-8bd1-fa7960a2ea21"
+ "44a51ff0-6ba9-4366-b1bd-4d6eea81c98b"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T194704Z:75c43b21-7f1f-4c92-8bd1-fa7960a2ea21"
+ "CENTRALUS:20151016T002042Z:44a51ff0-6ba9-4366-b1bd-4d6eea81c98b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:47:03 GMT"
+ "Fri, 16 Oct 2015 00:20:42 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -169,25 +169,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
+ "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n }\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n }\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
],
"Content-Length": [
- "275"
+ "247"
],
"User-Agent": [
"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 \"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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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 \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"8yLKDB9auMZbwxUPDAVUGNHPx6x9n/Z7DeIWoyrgGKo=\",\r\n \"secondaryKey\": \"0Rx59FYvgMXyAXZzt0MllOB086tebL0dJJazPkJ0BWA=\"\r\n },\r\n \"hostName\": \"siddharthchatrola.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "652"
+ "726"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -199,10 +199,10 @@
"no-cache"
],
"x-ms-request-id": [
- "a3526f7c-2bf1-411e-8bb9-39bfd5ac8a0f"
+ "30b64efe-14ab-448a-bac1-139ee9c12792"
],
"x-rp-server-mvid": [
- "1a08a7d6-521a-4639-acb2-ff4f19bc48dd"
+ "98aa4a63-c2e4-4364-a354-558878bbf50f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -211,16 +211,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "08246fc9-111d-478d-8bbe-27dea95a92c1"
+ "f6c8d4da-b194-4015-9efa-52b4f01952e2"
],
"x-ms-routing-request-id": [
- "WESTUS:20150914T194704Z:08246fc9-111d-478d-8bbe-27dea95a92c1"
+ "CENTRALUS:20151016T002043Z:f6c8d4da-b194-4015-9efa-52b4f01952e2"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 14 Sep 2015 19:47:04 GMT"
+ "Fri, 16 Oct 2015 00:20:43 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -231,6 +231,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b"
+ "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config
index d1c2da3e300b..256df0fe4d9c 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config
@@ -4,7 +4,7 @@
-
+
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj
index 233fd2278da5..c6b72f58689a 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj
@@ -59,9 +59,9 @@
..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll
-
- False
- ..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.1-preview\lib\net40\Microsoft.Azure.Management.Redis.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Redis.1.1.0-preview\lib\net40\Microsoft.Azure.Management.Redis.dll
+ True
False
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/NewAzureRedisCache.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/NewAzureRedisCache.cs
index c852ea18269b..c811abaed4a1 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/NewAzureRedisCache.cs
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/NewAzureRedisCache.cs
@@ -42,13 +42,14 @@ public class NewAzureRedisCache : RedisCacheCmdletBase
[Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Redis version.")]
public string RedisVersion { get; set; }
- [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Size of redis cache. Valid values: C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB")]
- [ValidateSet(SizeConverter.C0String, SizeConverter.C1String, SizeConverter.C2String, SizeConverter.C3String, SizeConverter.C4String, SizeConverter.C5String,
- SizeConverter.C6String, SizeConverter.C0, SizeConverter.C1, SizeConverter.C2, SizeConverter.C3, SizeConverter.C4, SizeConverter.C5, SizeConverter.C6, IgnoreCase = false)]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Size of redis cache. Valid values: P1,P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB")]
+ [ValidateSet(SizeConverter.P1String, SizeConverter.P2String, SizeConverter.P3String, SizeConverter.P4String,
+ SizeConverter.C0String, SizeConverter.C1String, SizeConverter.C2String, SizeConverter.C3String, SizeConverter.C4String, SizeConverter.C5String, SizeConverter.C6String,
+ SizeConverter.MB250, SizeConverter.GB1, SizeConverter.GB2_5, SizeConverter.GB6, SizeConverter.GB13, SizeConverter.GB26, SizeConverter.GB53, IgnoreCase = false)]
public string Size { get; set; }
- [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Wheather want to create Basic (1 Node) or Standard (2 Node) cache.")]
- [ValidateSet(SkuStrings.Basic, SkuStrings.Standard, IgnoreCase = false)]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Choose to create a Basic, Standard, or Premium cache.")]
+ [ValidateSet(SkuStrings.Basic, SkuStrings.Standard, SkuStrings.Premium, IgnoreCase = false)]
public string Sku { get; set; }
[Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "MaxMemoryPolicy is deprecated. Please use RedisConfiguration instead.")]
@@ -60,7 +61,20 @@ public class NewAzureRedisCache : RedisCacheCmdletBase
[Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "EnableNonSslPort property of redis cache.")]
public bool? EnableNonSslPort { get; set; }
- private const string redisDefaultVersion = "3.0";
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "A hash table which represents tenant settings.")]
+ public Hashtable TenantSettings { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "The number of shards to create on a Premium Cluster Cache.")]
+ public int? ShardCount { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "The exact ARM resource ID of the virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.ClassicNetwork/VirtualNetworks/vnet1")]
+ public string VirtualNetwork { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Required when deploying a redis cache inside an existing Azure Virtual Network.")]
+ public string Subnet { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Required when deploying a redis cache inside an existing Azure Virtual Network.")]
+ public string StaticIP { get; set; }
protected override void ProcessRecord()
{
@@ -74,27 +88,26 @@ protected override void ProcessRecord()
throw new ArgumentException(Resources.MaxMemoryPolicyException);
}
- string skuFamily;
-
- int skuCapacity = 1;
+ if (string.IsNullOrEmpty(Sku))
+ {
+ Sku = SkuStrings.Standard;
+ }
+
if (string.IsNullOrEmpty(Size))
{
Size = SizeConverter.C1String;
}
else
{
- Size = SizeConverter.GetSizeInRedisSpecificFormat(Size);
+ Size = SizeConverter.GetSizeInRedisSpecificFormat(Size, SkuStrings.Premium.Equals(Sku));
}
+ int skuCapacity = 1;
// Size to SkuFamily and SkuCapacity conversion
- skuFamily = Size.Substring(0, 1);
+ string skuFamily = Size.Substring(0, 1);
int.TryParse(Size.Substring(1), out skuCapacity);
- if (string.IsNullOrEmpty(Sku))
- {
- Sku = SkuStrings.Standard;
- }
// If Force flag is not avaliable than check if cache is already available or not
try
@@ -121,7 +134,13 @@ protected override void ProcessRecord()
throw;
}
}
- WriteObject(new RedisCacheAttributesWithAccessKeys(CacheClient.CreateOrUpdateCache(ResourceGroupName, Name, Location, redisDefaultVersion, skuFamily, skuCapacity, Sku, RedisConfiguration, EnableNonSslPort), ResourceGroupName));
+
+ WriteObject(
+ new RedisCacheAttributesWithAccessKeys(
+ CacheClient.CreateOrUpdateCache(ResourceGroupName, Name, Location, skuFamily, skuCapacity, Sku, RedisConfiguration, EnableNonSslPort, TenantSettings, ShardCount, VirtualNetwork, Subnet, StaticIP),
+ ResourceGroupName
+ )
+ );
}
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/SetAzureRedisCache.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/SetAzureRedisCache.cs
index a73e8f0d58e7..e4f1a87761eb 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/SetAzureRedisCache.cs
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/SetAzureRedisCache.cs
@@ -36,13 +36,14 @@ public class SetAzureRedisCache : RedisCacheCmdletBase
[ValidateNotNullOrEmpty]
public string Name { get; set; }
- [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Size of redis cache. Valid values: C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB")]
- [ValidateSet(SizeConverter.C0String, SizeConverter.C1String, SizeConverter.C2String, SizeConverter.C3String, SizeConverter.C4String, SizeConverter.C5String,
- SizeConverter.C6String, SizeConverter.C0, SizeConverter.C1, SizeConverter.C2, SizeConverter.C3, SizeConverter.C4, SizeConverter.C5, SizeConverter.C6, IgnoreCase = false)]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Size of redis cache. Valid values: P1,P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB")]
+ [ValidateSet(SizeConverter.P1String, SizeConverter.P2String, SizeConverter.P3String, SizeConverter.P4String,
+ SizeConverter.C0String, SizeConverter.C1String, SizeConverter.C2String, SizeConverter.C3String, SizeConverter.C4String, SizeConverter.C5String, SizeConverter.C6String,
+ SizeConverter.MB250, SizeConverter.GB1, SizeConverter.GB2_5, SizeConverter.GB6, SizeConverter.GB13, SizeConverter.GB26, SizeConverter.GB53, IgnoreCase = false)]
public string Size { get; set; }
- [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Wheather want to create Basic (1 Node) or Standard (2 Node) cache.")]
- [ValidateSet(SkuStrings.Basic, SkuStrings.Standard, IgnoreCase = false)]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Choose to create a Basic, Standard, or Premium cache.")]
+ [ValidateSet(SkuStrings.Basic, SkuStrings.Standard, SkuStrings.Premium, IgnoreCase = false)]
public string Sku { get; set; }
[Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "MaxMemoryPolicy is deprecated. Please use RedisConfiguration instead.")]
@@ -54,6 +55,12 @@ public class SetAzureRedisCache : RedisCacheCmdletBase
[Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "EnableNonSslPort property of redis cache.")]
public bool? EnableNonSslPort { get; set; }
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "A hash table which represents tenant settings.")]
+ public Hashtable TenantSettings { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "The number of shards to create on a Premium Cluster Cache.")]
+ public int? ShardCount { get; set; }
+
protected override void ProcessRecord()
{
if (!string.IsNullOrEmpty(MaxMemoryPolicy))
@@ -83,15 +90,15 @@ protected override void ProcessRecord()
}
else
{
- Size = SizeConverter.GetSizeInRedisSpecificFormat(Size);
+ Size = SizeConverter.GetSizeInRedisSpecificFormat(Size, SkuStrings.Premium.Equals(Sku));
skuFamily = Size.Substring(0, 1);
int.TryParse(Size.Substring(1), out skuCapacity);
}
WriteObject(new RedisCacheAttributesWithAccessKeys(
- CacheClient.CreateOrUpdateCache(ResourceGroupName, Name, response.Resource.Location, response.Resource.Properties.RedisVersion,
- skuFamily, skuCapacity, skuName, RedisConfiguration, EnableNonSslPort),
+ CacheClient.CreateOrUpdateCache(ResourceGroupName, Name, response.Resource.Location, skuFamily, skuCapacity, skuName, RedisConfiguration, EnableNonSslPort,
+ TenantSettings, ShardCount, response.Resource.Properties.VirtualNetwork, response.Resource.Properties.Subnet, response.Resource.Properties.StaticIP),
ResourceGroupName));
}
}
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 29ffdbb96969..850c0dee24c7 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
@@ -308,14 +308,14 @@
Size
- Size of the redis cache. The default value is 1GB or C1. Possible values are C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB.
+ Size of the redis cache. The default value is 1GB or C1. Possible values are P1, P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB.
String
Sku
- Sku of redis cache. The default value is Standard. Possible values are Basic and Standard.
+ Sku of redis cache. The default value is Standard. Possible values are Basic, Standard and Premium.
String
@@ -329,7 +329,7 @@
RedisConfiguration
- All Redis Configuration Settings. Few possible keys: maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc.
+ All Redis Configuration Settings. Few possible keys: rdb-backup-enabled, rdb-storage-connection-string, rdb-backup-frequency, maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc.
Hashtable
@@ -340,6 +340,34 @@
Boolean
+
+ ShardCount
+
+ The number of shards to create on a Premium Cluster Cache.
+
+ Integer
+
+
+ VirtualNetwork
+
+ The exact ARM resource ID of the virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.ClassicNetwork/VirtualNetworks/vnet1
+
+ String
+
+
+ Subnet
+
+ Required when deploying a redis cache inside an existing Azure Virtual Network.
+
+ String
+
+
+ StaticIP
+
+ Required when deploying a redis cache inside an existing Azure Virtual Network.
+
+ String
+
@@ -397,7 +425,7 @@
Size
- Size of the redis cache. The default value is 1GB or C1. Possible values are C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB.
+ Size of the redis cache. The default value is 1GB or C1. Possible values are P1, P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB.
String
@@ -409,7 +437,7 @@
Sku
- Sku of the redis cache. The default value is Standard. Possible values are Basic and Standard.
+ Sku of redis cache. The default value is Standard. Possible values are Basic, Standard and Premium.
String
@@ -434,7 +462,7 @@
RedisConfiguration
- All Redis Configuration Settings. Few possible keys: maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc.
+ All Redis Configuration Settings. Few possible keys: rdb-backup-enabled, rdb-storage-connection-string, rdb-backup-frequency, maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc.
Hashtable
@@ -457,6 +485,54 @@
+
+ ShardCount
+
+ The number of shards to create on a Premium Cluster Cache.
+
+ Integer
+
+ Integer
+
+
+
+
+
+ VirtualNetwork
+
+ The exact ARM resource ID of the virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.ClassicNetwork/VirtualNetworks/vnet1
+
+ String
+
+ String
+
+
+
+
+
+ Subnet
+
+ Required when deploying a redis cache inside an existing Azure Virtual Network.
+
+ String
+
+ String
+
+
+
+
+
+ StaticIP
+
+ Required when deploying a redis cache inside an existing Azure Virtual Network.
+
+ String
+
+ String
+
+
+
+
@@ -1117,14 +1193,14 @@
Size
- Size of the redis cache. Possible values are C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB.
+ Size of the redis cache. The default value is 1GB or C1. Possible values are P1, P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB.
String
Sku
- Sku of redis cache. Possible values are Basic and Standard.
+ Sku of redis cache. The default value is Standard. Possible values are Basic, Standard and Premium.
String
@@ -1138,7 +1214,7 @@
RedisConfiguration
- All Redis Configuration Settings. Few possible keys: maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc.
+ All Redis Configuration Settings. Few possible keys: rdb-backup-enabled, rdb-storage-connection-string, rdb-backup-frequency, maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc.
Hashtable
@@ -1149,6 +1225,13 @@
Boolean
+
+ ShardCount
+
+ The number of shards to create on a Premium Cluster Cache.
+
+ Integer
+
@@ -1181,7 +1264,7 @@
Size
- Size of the redis cache. Possible values are C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB.
+ Size of the redis cache. The default value is 1GB or C1. Possible values are P1,P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB.
String
@@ -1194,7 +1277,7 @@
Sku
- Sku of the redis cache. Possible values are Basic and Standard.
+ Sku of redis cache. The default value is Standard. Possible values are Basic, Standard and Premium.
String
@@ -1220,7 +1303,7 @@
RedisConfiguration
- All Redis Configuration Settings. Few possible keys: maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc.
+ All Redis Configuration Settings. Few possible keys: rdb-backup-enabled, rdb-storage-connection-string, rdb-backup-frequency, maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc.
Hashtable
@@ -1243,6 +1326,18 @@
+
+ ShardCount
+
+ The number of shards to create on a Premium Cluster Cache.
+
+ Integer
+
+ Integer
+
+
+
+
@@ -1326,4 +1421,4 @@
-
\ No newline at end of file
+
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.format.ps1xml b/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.format.ps1xml
index cfd6d094026d..d9941c5d004a 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.format.ps1xml
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.format.ps1xml
@@ -66,6 +66,26 @@
ResourceGroupName
+
+
+ VirtualNetwork
+
+
+
+ Subnet
+
+
+
+ StaticIP
+
+
+
+ TenantSettings
+
+
+
+ ShardCount
+
@@ -144,6 +164,26 @@
SecondaryKey
+
+
+ VirtualNetwork
+
+
+
+ Subnet
+
+
+
+ StaticIP
+
+
+
+ TenantSettings
+
+
+
+ ShardCount
+
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs
index 3bff9915d4c4..20989f3cad25 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs
@@ -35,26 +35,17 @@ public RedisCacheAttributes(RedisResource cache, string resourceGroupName)
RedisVersion = cache.Properties.RedisVersion;
Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Properties.Sku.Family, cache.Properties.Sku.Capacity);
Sku = cache.Properties.Sku.Name;
- ResourceGroupName = resourceGroupName;
+ ResourceGroupName = resourceGroupName;
+ VirtualNetwork = cache.Properties.VirtualNetwork;
+ Subnet = cache.Properties.Subnet;
+ StaticIP = cache.Properties.StaticIP;
+ TenantSettings = cache.Properties.TenantSettings;
+ ShardCount = cache.Properties.ShardCount;
}
public RedisCacheAttributes(RedisGetResponse cache, string resourceGroupName)
- {
- Id = cache.Resource.Id;
- Location = cache.Resource.Location;
- Name = cache.Resource.Name;
- Type = cache.Resource.Type;
- HostName = cache.Resource.Properties.HostName;
- Port = cache.Resource.Properties.Port;
- ProvisioningState = cache.Resource.Properties.ProvisioningState;
- SslPort = cache.Resource.Properties.SslPort;
- RedisConfiguration = cache.Resource.Properties.RedisConfiguration;
- EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort.Value;
- RedisVersion = cache.Resource.Properties.RedisVersion;
- Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Resource.Properties.Sku.Family, cache.Resource.Properties.Sku.Capacity);
- Sku = cache.Resource.Properties.Sku.Name;
- ResourceGroupName = resourceGroupName;
- }
+ : this(cache.Resource, resourceGroupName)
+ {}
public RedisCacheAttributes() { }
@@ -105,5 +96,15 @@ protected set
public string Size { get; protected set; }
public string Sku { get; protected set; }
+
+ public IDictionary TenantSettings { get; protected set; }
+
+ public int? ShardCount { get; protected set; }
+
+ public string VirtualNetwork { get; protected set; }
+
+ public string Subnet { get; protected set; }
+
+ public string StaticIP { get; protected set; }
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs
index ab28ef1c9e00..49911369d37f 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs
@@ -37,6 +37,12 @@ public RedisCacheAttributesWithAccessKeys(RedisCreateOrUpdateResponse cache, str
PrimaryKey = cache.Resource.Properties.AccessKeys.PrimaryKey;
SecondaryKey = cache.Resource.Properties.AccessKeys.SecondaryKey;
ResourceGroupName = resourceGroupName;
+
+ VirtualNetwork = cache.Resource.Properties.VirtualNetwork;
+ Subnet = cache.Resource.Properties.Subnet;
+ StaticIP = cache.Resource.Properties.StaticIP;
+ TenantSettings = cache.Resource.Properties.TenantSettings;
+ ShardCount = cache.Resource.Properties.ShardCount;
}
public string PrimaryKey { get; private set; }
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheClient.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheClient.cs
index 8b070ba513de..2335af98a83f 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheClient.cs
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheClient.cs
@@ -32,14 +32,14 @@ public RedisCacheClient(AzureContext context)
}
public RedisCacheClient() { }
- public RedisCreateOrUpdateResponse CreateOrUpdateCache(string resourceGroupName, string cacheName, string location, string redisVersion, string skuFamily, int skuCapacity, string skuName, Hashtable redisConfiguration, bool? enableNonSslPort)
+ public RedisCreateOrUpdateResponse CreateOrUpdateCache(string resourceGroupName, string cacheName, string location, string skuFamily, int skuCapacity, string skuName,
+ Hashtable redisConfiguration, bool? enableNonSslPort, Hashtable tenantSettings, int? shardCount, string virtualNetwork, string subnet, string staticIP)
{
RedisCreateOrUpdateParameters parameters = new RedisCreateOrUpdateParameters
{
Location = location,
Properties = new RedisProperties
{
- RedisVersion = redisVersion,
Sku = new Sku() {
Name = skuName,
Family = skuFamily,
@@ -61,6 +61,33 @@ public RedisCreateOrUpdateResponse CreateOrUpdateCache(string resourceGroupName,
{
parameters.Properties.EnableNonSslPort = enableNonSslPort.Value;
}
+
+ if (tenantSettings != null)
+ {
+ parameters.Properties.TenantSettings = new Dictionary();
+ foreach (object key in tenantSettings.Keys)
+ {
+ parameters.Properties.TenantSettings.Add(key.ToString(), tenantSettings[key].ToString());
+ }
+ }
+
+ parameters.Properties.ShardCount = shardCount;
+
+ if (!string.IsNullOrWhiteSpace(virtualNetwork))
+ {
+ parameters.Properties.VirtualNetwork = virtualNetwork;
+ }
+
+ if (!string.IsNullOrWhiteSpace(subnet))
+ {
+ parameters.Properties.Subnet = subnet;
+ }
+
+ if (!string.IsNullOrWhiteSpace(staticIP))
+ {
+ parameters.Properties.StaticIP = staticIP;
+ }
+
RedisCreateOrUpdateResponse response = _client.Redis.CreateOrUpdate(resourceGroupName: resourceGroupName, name: cacheName, parameters: parameters);
return response;
}
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/SizeConverter.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/SizeConverter.cs
index 033fc115d567..f4c27351d0d5 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/SizeConverter.cs
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/SizeConverter.cs
@@ -14,15 +14,17 @@
namespace Microsoft.Azure.Commands.RedisCache.Models
{
- public static class SizeConverter
+ using System.Collections.Generic;
+
+ internal static class SizeConverter
{
- public const string C0 = "250MB";
- public const string C1 = "1GB";
- public const string C2 = "2.5GB";
- public const string C3 = "6GB";
- public const string C4 = "13GB";
- public const string C5 = "26GB";
- public const string C6 = "53GB";
+ public const string MB250 = "250MB";
+ public const string GB1 = "1GB";
+ public const string GB2_5 = "2.5GB";
+ public const string GB6 = "6GB";
+ public const string GB13 = "13GB";
+ public const string GB26 = "26GB";
+ public const string GB53 = "53GB";
public const string C0String = "C0";
public const string C1String = "C1";
@@ -32,68 +34,86 @@ public static class SizeConverter
public const string C5String = "C5";
public const string C6String = "C6";
- public static string GetSizeInRedisSpecificFormat(string actualSizeFromUser)
+ public const string P1String = "P1";
+ public const string P2String = "P2";
+ public const string P3String = "P3";
+ public const string P4String = "P4";
+
+ private static Dictionary skuStringToActualSize = new Dictionary{
+ { C0String, MB250 },
+ { C1String, GB1 },
+ { C2String, GB2_5 },
+ { C3String, GB6 },
+ { C4String, GB13 },
+ { C5String, GB26 },
+ { C6String, GB53 },
+ { P1String, GB6 },
+ { P2String, GB13 },
+ { P3String, GB26 },
+ { P4String, GB53 }
+ };
+
+ public static string GetSizeInRedisSpecificFormat(string actualSizeFromUser, bool isPremiumCache)
{
switch(actualSizeFromUser)
{
// accepting actual sizes
- case C0:
+ case MB250:
return C0String;
- case C1:
+ case GB1:
return C1String;
- case C2:
+ case GB2_5:
return C2String;
- case C3:
- return C3String;
- case C4:
- return C4String;
- case C5:
- return C5String;
- case C6:
- return C6String;
+ case GB6:
+ if(isPremiumCache)
+ {
+ return P1String;
+ }
+ else
+ {
+ return C3String;
+ }
+ case GB13:
+ if(isPremiumCache)
+ {
+ return P2String;
+ }
+ else
+ {
+ return C4String;
+ }
+ case GB26:
+ if (isPremiumCache)
+ {
+ return P3String;
+ }
+ else
+ {
+ return C5String;
+ }
+ case GB53:
+ if (isPremiumCache)
+ {
+ return P4String;
+ }
+ else
+ {
+ return C6String;
+ }
// accepting C0, C1 etc.
- case C0String:
- return C0String;
- case C1String:
- return C1String;
- case C2String:
- return C2String;
- case C3String:
- return C3String;
- case C4String:
- return C4String;
- case C5String:
- return C5String;
- case C6String:
- return C6String;
default:
- return C1String;
+ return actualSizeFromUser;
}
}
public static string GetSizeInUserSpecificFormat(string skuFamily, int skuCapacity)
{
string sizeConstant = skuFamily + skuCapacity.ToString();
- switch (sizeConstant)
- {
- // accepting C0, C1 etc.
- case C0String:
- return C0;
- case C1String:
- return C1;
- case C2String:
- return C2;
- case C3String:
- return C3;
- case C4String:
- return C4;
- case C5String:
- return C5;
- case C6String:
- return C6;
- default:
- return C1;
+ if (skuStringToActualSize.ContainsKey(sizeConstant))
+ {
+ return skuStringToActualSize[sizeConstant];
}
+ return null;
}
}
}
diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config b/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config
index 187306319db5..4267212c992b 100644
--- a/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config
+++ b/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config
@@ -4,7 +4,7 @@
-
+