diff --git a/src/RedisCache/RedisCache.Test/RedisCache.Test.csproj b/src/RedisCache/RedisCache.Test/RedisCache.Test.csproj index 950a7637547e..fd971b2905e7 100644 --- a/src/RedisCache/RedisCache.Test/RedisCache.Test.csproj +++ b/src/RedisCache/RedisCache.Test/RedisCache.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/RedisCache/RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 b/src/RedisCache/RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 index ee2042ad43a5..d10bf46c232e 100644 --- a/src/RedisCache/RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 +++ b/src/RedisCache/RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 @@ -7,7 +7,7 @@ function Test-RedisCache # Setup $resourceGroupName = "PowerShellTest-1" $cacheName = "redisteam001" - $location = "West US" + $location = Get-Location -providerNamespace "Microsoft.Cache" -resourceType "redis" -preferredLocation "West US" # Create resource group New-AzResourceGroup -Name $resourceGroupName -Location $location @@ -44,7 +44,7 @@ function Test-RedisCache } # Updating Cache - $cacheUpdated = Set-AzRedisCache -Name $cacheName -RedisConfiguration @{"maxmemory-policy" = "allkeys-lru"} -EnableNonSslPort $true + $cacheUpdated = Set-AzRedisCache -Name $cacheName -RedisConfiguration @{"maxmemory-policy" = "allkeys-lru"} -EnableNonSslPort $true -MinimumTlsVersion 1.2 Assert-AreEqual $cacheName $cacheUpdated.Name Assert-AreEqual 6379 $cacheUpdated.Port @@ -52,6 +52,7 @@ function Test-RedisCache Assert-AreEqual "succeeded" $cacheUpdated.ProvisioningState Assert-AreEqual "allkeys-lru" $cacheUpdated.RedisConfiguration.Item("maxmemory-policy") Assert-True { $cacheUpdated.EnableNonSslPort } + Assert-AreEqual "1.2" $cacheUpdated.MinimumTlsVersion Assert-NotNull $cacheUpdated.PrimaryKey "PrimaryKey do not exists" Assert-NotNull $cacheUpdated.SecondaryKey "SecondaryKey do not exists" @@ -117,7 +118,7 @@ function Test-SetNonExistingRedisCacheTest # Setup $resourceGroupName = "PowerShellTestNonExisting" $cacheName = "nonexistingrediscache" - $location = "West US" + $location = Get-Location -providerNamespace "Microsoft.Cache" -resourceType "redis" -preferredLocation "West US" # Creating Cache Assert-Throws {Set-AzRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -RedisConfiguration @{"maxmemory-policy" = "allkeys-random"} } @@ -132,13 +133,13 @@ function Test-RedisCachePipeline # Setup $resourceGroupName = "PowerShellTest-2" $cacheName = "redisteam002" - $location = "West US" + $location = Get-Location -providerNamespace "Microsoft.Cache" -resourceType "redis" -preferredLocation "West US" # Create resource group New-AzResourceGroup -Name $resourceGroupName -Location $location # Creating Cache - $cacheCreated = New-AzRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 1GB -Sku Standard -EnableNonSslPort $true + $cacheCreated = New-AzRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 1GB -Sku Standard -EnableNonSslPort $true -MinimumTlsVersion 1.2 Assert-AreEqual $cacheName $cacheCreated.Name Assert-AreEqual $location $cacheCreated.Location @@ -151,6 +152,7 @@ function Test-RedisCachePipeline Assert-AreEqual "1GB" $cacheCreated.Size Assert-AreEqual "Standard" $cacheCreated.Sku Assert-True { $cacheCreated.EnableNonSslPort } + Assert-AreEqual "1.2" $cacheCreated.MinimumTlsVersion Assert-NotNull $cacheCreated.PrimaryKey "PrimaryKey do not exists" Assert-NotNull $cacheCreated.SecondaryKey "SecondaryKey do not exists" @@ -182,6 +184,7 @@ function Test-RedisCachePipeline Assert-AreEqual "Standard" $cacheUpdatedPiped.Sku Assert-AreEqual "allkeys-random" $cacheUpdatedPiped.RedisConfiguration.Item("maxmemory-policy") Assert-False { $cacheUpdatedPiped.EnableNonSslPort } + Assert-AreEqual "1.2" $cacheUpdatedPiped.MinimumTlsVersion # Get cache keys $cacheKeysBeforeUpdate = Get-AzRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName | Get-AzRedisCacheKey @@ -209,7 +212,7 @@ function Test-RedisCacheClustering # Setup $resourceGroupName = "PowerShellTest-3" $cacheName = "redisteam003" - $location = "West US" + $location = Get-Location -providerNamespace "Microsoft.Cache" -resourceType "redis" -preferredLocation "West US" # Create resource group New-AzResourceGroup -Name $resourceGroupName -Location $location @@ -325,7 +328,7 @@ function Test-RedisCachePatchSchedules # Setup $resourceGroupName = "PowerShellTest-4" $cacheName = "redisteam004" - $location = "West US" + $location = Get-Location -providerNamespace "Microsoft.Cache" -resourceType "redis" -preferredLocation "West US" ############################# Initial Creation ############################# # Create resource group @@ -480,7 +483,7 @@ function Test-ImportExportReboot # Setup $resourceGroupName = "PowerShellTest-5" $cacheName = "redisteam005" - $location = "West US" + $location = Get-Location -providerNamespace "Microsoft.Cache" -resourceType "redis" -preferredLocation "West US" $storageName = "redisteam005s" $storageContainerName = "exportimport" $prefix = "sunny" @@ -546,7 +549,7 @@ function Test-DiagnosticOperations # Setup $resourceGroupName = "PowerShellTest-6" $cacheName = "redisteam006" - $location = "West US" + $location = Get-Location -providerNamespace "Microsoft.Cache" -resourceType "redis" -preferredLocation "West US" $storageName = "redisteam006s" ############################# Initial Creation ############################# @@ -601,8 +604,8 @@ function Test-GeoReplication $resourceGroupName = "PowerShellTest-7" $cacheName1 = "redisteam0071" $cacheName2 = "redisteam0072" - $location1 = "West US" - $location2 = "East US" + $location1 = Get-Location -providerNamespace "Microsoft.Cache" -resourceType "redis" -preferredLocation "West US" + $location2 = Get-Location -providerNamespace "Microsoft.Cache" -resourceType "redis" -preferredLocation "East US" ############################# Initial Creation ############################# # Create resource group @@ -707,7 +710,7 @@ function Test-FirewallRule # Setup $resourceGroupName = "PowerShellTest-8" $cacheName = "redisteam008" - $location = "West US" + $location = Get-Location -providerNamespace "Microsoft.Cache" -resourceType "redis" -preferredLocation "West US" $rule1 = "ruleone" $rule1StartIp = "10.0.0.0" $rule1EndIp = "10.0.0.32" @@ -819,7 +822,7 @@ function Test-Zones # Setup $resourceGroupName = "PowerShellTest-9" $cacheName = "redisteam009" - $location = "East US 2" + $location = Get-Location -providerNamespace "Microsoft.Cache" -resourceType "redis" -preferredLocation "East US" # Create resource group New-AzResourceGroup -Name $resourceGroupName -Location $location diff --git a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestFirewallRule.json b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestFirewallRule.json index bbd44a6170ab..c6e858a6a1c5 100644 --- a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestFirewallRule.json +++ b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestFirewallRule.json @@ -1,25 +1,51 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-8?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-client-request-id": [ + "09f654f1-a8c1-4de4-b72a-453405c59ab5" ], - "Content-Length": [ - "29" + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8\",\r\n \"name\": \"PowerShellTest-8\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "185" + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "ccd37d24-ee55-4a85-99b9-4eec37cf2bec" + ], + "x-ms-correlation-request-id": [ + "ccd37d24-ee55-4a85-99b9-4eec37cf2bec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214111Z:ccd37d24-ee55-4a85-99b9-4eec37cf2bec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:41:10 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -27,6 +53,42 @@ "Expires": [ "-1" ], + "Content-Length": [ + "3202" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-8?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bee46b3-daec-498c-9bfc-be6f98eed51b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Pragma": [ "no-cache" ], @@ -34,55 +96,58 @@ "1199" ], "x-ms-request-id": [ - "2e8e288b-88d0-4f48-bbc1-281969456599" + "e6c7a6cc-4192-4c12-86af-3053e54f19cf" ], "x-ms-correlation-request-id": [ - "2e8e288b-88d0-4f48-bbc1-281969456599" + "e6c7a6cc-4192-4c12-86af-3053e54f19cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T222415Z:2e8e288b-88d0-4f48-bbc1-281969456599" + "WESTUS:20191108T214111Z:e6c7a6cc-4192-4c12-86af-3053e54f19cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:24:14 GMT" + "Fri, 08 Nov 2019 21:41:11 GMT" + ], + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8\",\r\n \"name\": \"PowerShellTest-8\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDg/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b2588b9-4b40-406d-9745-2cb9a98855a2" + "99cd1820-235a-4e08-b5b6-01101e39a7b4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam008' under resource group 'PowerShellTest-8' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "154" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -91,55 +156,58 @@ "gateway" ], "x-ms-request-id": [ - "a1ecfc90-c625-4c6b-a022-04c7c4f8b21f" + "93722906-a818-490e-98a4-655cafe2b636" ], "x-ms-correlation-request-id": [ - "a1ecfc90-c625-4c6b-a022-04c7c4f8b21f" + "93722906-a818-490e-98a4-655cafe2b636" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T222415Z:a1ecfc90-c625-4c6b-a022-04c7c4f8b21f" + "WESTUS:20191108T214111Z:93722906-a818-490e-98a4-655cafe2b636" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:24:15 GMT" + "Fri, 08 Nov 2019 21:41:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "154" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam008' under resource group 'PowerShellTest-8' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90f7b981-0763-4d62-b282-9fecdceea6e3" + "a6bd3535-7971-44c8-b1cd-8edde6afb257" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2351" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -148,388 +216,1187 @@ "1199" ], "x-ms-request-id": [ - "bb7a5609-3dd6-478a-91ee-9229ff43b35c" + "b07a4071-057d-42f6-9b7a-bede05578640" ], "x-ms-correlation-request-id": [ - "bb7a5609-3dd6-478a-91ee-9229ff43b35c" + "b07a4071-057d-42f6-9b7a-bede05578640" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T222416Z:bb7a5609-3dd6-478a-91ee-9229ff43b35c" + "WESTUS:20191108T214113Z:b07a4071-057d-42f6-9b7a-bede05578640" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:24:15 GMT" + "Fri, 08 Nov 2019 21:41:13 GMT" + ], + "Content-Length": [ + "3202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDg/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "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 },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "144" - ], "x-ms-client-request-id": [ - "72fd23d3-68be-4ec1-a756-072f3045e784" + "600c2321-586f-4104-bc2d-6800727bb309" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"spAQMiRD0emoLPKSk7KUOnUwg4271CEa95QXBvUiaDc=\",\r\n \"secondaryKey\": \"BxdapDNIav6ySH+FEvMx2fyxpUMpGfJjEHrSf4DaQyQ=\"\r\n },\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "733" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "144" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008?api-version=2018-03-01" + ], "x-ms-request-id": [ - "47db245b-0fd9-4e47-8bc9-37f89203dd32" + "b9cea813-cd31-4b81-9baf-acff8c4c92db" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "800fe30d-864e-451a-9b1b-139923a63d09" + "3f1ff277-c809-4a9d-b4ea-68884607fd6d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T222418Z:800fe30d-864e-451a-9b1b-139923a63d09" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T214114Z:3f1ff277-c809-4a9d-b4ea-68884607fd6d" ], "Date": [ - "Wed, 21 Feb 2018 22:24:18 GMT" + "Fri, 08 Nov 2019 21:41:13 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008?api-version=2017-10-01" + "Content-Length": [ + "733" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"b6zQqvr+C0rSMhgOv6r+MPbyn7u+GBYG9R1+5ASCw18=\",\r\n \"secondaryKey\": \"+Hq3SyCE9m64W6isTSF0ORaI67u3uNXFIDLmvgqOJFk=\"\r\n },\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8b12261-f67d-4cfa-8270-5c53fea64d7e" + "f3358b16-1e24-483e-8846-ac362eaec93f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"spAQMiRD0emoLPKSk7KUOnUwg4271CEa95QXBvUiaDc=\",\r\n \"secondaryKey\": \"BxdapDNIav6ySH+FEvMx2fyxpUMpGfJjEHrSf4DaQyQ=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0c112b7f-2896-42f1-89d8-da706a42321a" + "4fdca5c4-47a1-4d48-9378-ef3ddaebf897" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "ea50dcc0-7484-4f83-99f6-0bded8a20460" + "126fc57f-26bc-404c-b343-7973faeaa9cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T222418Z:ea50dcc0-7484-4f83-99f6-0bded8a20460" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T214114Z:126fc57f-26bc-404c-b343-7973faeaa9cb" ], "Date": [ - "Wed, 21 Feb 2018 22:24:18 GMT" + "Fri, 08 Nov 2019 21:41:13 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"primaryKey\": \"b6zQqvr+C0rSMhgOv6r+MPbyn7u+GBYG9R1+5ASCw18=\",\r\n \"secondaryKey\": \"+Hq3SyCE9m64W6isTSF0ORaI67u3uNXFIDLmvgqOJFk=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2528f285-8d69-4dbb-a84e-926ec9f39d7a" + "38809dc2-de1f-4745-8cfe-abbedd701768" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "14777de3-2b69-485f-bcfe-8ea367fa8d93", + "6406c2e2-f16a-4af6-b4c1-cb15c6333103" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], "x-ms-request-id": [ - "8da89f3a-c3d9-46bc-ac2d-b92cb439420a" + "086abffb-67a1-4216-a82e-5eb86f3380bb" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "086abffb-67a1-4216-a82e-5eb86f3380bb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214144Z:086abffb-67a1-4216-a82e-5eb86f3380bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "19c1e588-a254-4069-886c-4f581d1c9823" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T222449Z:19c1e588-a254-4069-886c-4f581d1c9823" + "Date": [ + "Fri, 08 Nov 2019 21:41:44 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:24:49 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1351" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f4e8ae7-9a27-4b91-83b2-d7455e3cb2fc" + "1b448684-f26a-4aa3-bb1d-ab8b01e2bc9a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "56deba06-d961-4e3f-a6cb-a07631152952", + "66f9de52-cba4-499a-ba53-edd05c6ebe95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], "x-ms-request-id": [ - "602f1ab4-070a-40e8-a43f-ee15b41f7d23" + "79fde9b5-64e0-4e21-bb4b-8f8a2a74dcde" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "79fde9b5-64e0-4e21-bb4b-8f8a2a74dcde" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214214Z:79fde9b5-64e0-4e21-bb4b-8f8a2a74dcde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "b42aeedf-278a-45a6-8672-51c7db240544" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T222519Z:b42aeedf-278a-45a6-8672-51c7db240544" + "Date": [ + "Fri, 08 Nov 2019 21:42:14 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:25:18 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1351" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34f9b9af-0516-43fb-8017-1cf9633648be" + "41125c8a-70e0-4f30-80db-2239c2975f95" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "9f730e73-557e-44b0-b2c3-4d25ebc9cb16" + "x-ms-original-request-ids": [ + "b8b0a2f9-dd03-479a-8e35-3981eac5ddbe", + "66bc54cf-9898-4823-89fd-916d5eda2d7d" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "954ba205-5894-4a0a-a5f4-c43c32e975bc" + ], + "x-ms-correlation-request-id": [ + "954ba205-5894-4a0a-a5f4-c43c32e975bc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214245Z:954ba205-5894-4a0a-a5f4-c43c32e975bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:42:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74addf4a-ada6-474b-afc2-daf859e18de5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "a7a6921c-d597-4dc3-b637-0473cd114d65", + "a393b768-6f8a-4432-b9b6-2c0e2a6bbab0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "eddb3128-316c-464e-8731-ed40de0daffb" + ], + "x-ms-correlation-request-id": [ + "eddb3128-316c-464e-8731-ed40de0daffb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214315Z:eddb3128-316c-464e-8731-ed40de0daffb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:43:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18bb1f93-b1e0-47d0-9322-b8f01b2d033a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "8c3b9272-e4b8-41a9-8220-fd43500ebaca", + "928c0904-a374-4d19-ad16-5a3ac554c041" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "d48ed1af-6851-401b-be93-e7662e0642a3" + ], + "x-ms-correlation-request-id": [ + "d48ed1af-6851-401b-be93-e7662e0642a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214345Z:d48ed1af-6851-401b-be93-e7662e0642a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:43:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0960abdc-65fd-4fd5-886a-63d2a3b58dcf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "99065aed-73b8-4bf9-bc3c-2387de1ac087", + "5d61feb0-dd63-4147-8b11-9a0569009e03" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "a52eba1f-9707-4318-b97b-10ce6092c299" + ], + "x-ms-correlation-request-id": [ + "a52eba1f-9707-4318-b97b-10ce6092c299" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214415Z:a52eba1f-9707-4318-b97b-10ce6092c299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:44:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9ac81be-7e24-469b-b0bf-d0b4fbd66a43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "1eb1b8b5-516e-4be3-911e-9b2d2d676dd6", + "e0f0033f-2503-4af0-8dc3-aaa618a9dc46" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "f4e18794-1f7c-41f8-862b-4bef8e3b8081" + ], + "x-ms-correlation-request-id": [ + "f4e18794-1f7c-41f8-862b-4bef8e3b8081" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214445Z:f4e18794-1f7c-41f8-862b-4bef8e3b8081" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:44:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc2127a-5119-4aa7-a617-db00f273ce10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "7856d089-89c7-4210-9234-681eae3ca426", + "60e361cf-3853-4710-ad59-0ff1cdd046ca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "6199bca7-9c70-4e94-8a1b-b06259afbc7e" + ], + "x-ms-correlation-request-id": [ + "6199bca7-9c70-4e94-8a1b-b06259afbc7e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214515Z:6199bca7-9c70-4e94-8a1b-b06259afbc7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:45:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bfbb823e-485c-4b75-b257-8baa345d83ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "8f9fb4eb-6fd4-4b8a-b41e-39bda4f18c47", + "5e380b14-23f7-42bf-bcdf-59303d2112b5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "b10e303e-df05-46b9-b9f4-48f6f8463fb0" + ], + "x-ms-correlation-request-id": [ + "b10e303e-df05-46b9-b9f4-48f6f8463fb0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214546Z:b10e303e-df05-46b9-b9f4-48f6f8463fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:45:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c94d42d-665d-436b-944c-2fdc2b6c5a50" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "02d936e7-6bea-4ce7-bb35-92d6289bb654", + "d3481944-ba88-4f2d-b6ba-3ebc3dee0013" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "dd242433-ea8a-44e9-9165-fa97a675619d" + ], + "x-ms-correlation-request-id": [ + "dd242433-ea8a-44e9-9165-fa97a675619d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214616Z:dd242433-ea8a-44e9-9165-fa97a675619d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:46:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf3270f6-fbb2-4e04-bdd7-7b4c76a270a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "2d61dab6-74f4-4d31-bda2-bd9f1c99781c", + "5df7c319-d788-414a-b19a-1085711f1b47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "177cb6d9-28be-4dc9-87ab-2083fc4c835b" + ], + "x-ms-correlation-request-id": [ + "177cb6d9-28be-4dc9-87ab-2083fc4c835b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214646Z:177cb6d9-28be-4dc9-87ab-2083fc4c835b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:46:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be037b3d-5303-4b94-828a-aed9a87c1792" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "734b1c08-3978-4647-a8a2-6a47b3e71821", + "a0f160ba-f190-4bdc-8e92-7574d44bb38c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "40994f0a-433b-4ca6-ab5e-b5a0cff3c11d" + ], + "x-ms-correlation-request-id": [ + "40994f0a-433b-4ca6-ab5e-b5a0cff3c11d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214716Z:40994f0a-433b-4ca6-ab5e-b5a0cff3c11d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:47:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b4d9c83-06d6-44e3-bff4-ab1fd2815d1e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "abd5e44d-c5af-4010-9944-87e2d95e179f", + "5cb27134-2928-4d13-a3b0-45bdc8f2fe88" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "89862434-b050-495d-96ae-b8213c291e9e" + ], + "x-ms-correlation-request-id": [ + "89862434-b050-495d-96ae-b8213c291e9e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214746Z:89862434-b050-495d-96ae-b8213c291e9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:47:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd0837f9-5389-44f1-9efb-6413f30a46d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "959e34f1-ee77-4f40-9cc1-6cac63aeb5ca", + "234a67c3-d1b2-48dd-88a8-571914c80b31" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "13455498-5535-4e96-89d6-3d73a8f8c92e" + ], + "x-ms-correlation-request-id": [ + "13455498-5535-4e96-89d6-3d73a8f8c92e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214816Z:13455498-5535-4e96-89d6-3d73a8f8c92e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 08 Nov 2019 21:48:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "079a1f04-64a3-4565-bab9-bc5777086483" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "e8da21e1-2097-4f09-a7d0-3f0490d94c3c", + "5e2f4e32-4083-400b-879f-9304c4339bb8" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11984" + ], + "x-ms-request-id": [ + "c8f66610-6653-48a4-b863-ace690079948" ], "x-ms-correlation-request-id": [ - "7dd13b7e-350c-4a2e-ac56-a8941de57f28" + "c8f66610-6653-48a4-b863-ace690079948" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T222549Z:7dd13b7e-350c-4a2e-ac56-a8941de57f28" + "WESTUS:20191108T214846Z:c8f66610-6653-48a4-b863-ace690079948" ], - "Cache-Control": [ - "no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:25:48 GMT" + "Fri, 08 Nov 2019 21:48:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b9f0d4d-c478-4049-846c-bdfc800df12c" + "0c38b832-653f-4192-823a-142b647cf4dc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "943a0d86-5aef-49fd-bfd0-e76ebebb704b", + "7e5ca477-15b4-4cb4-b55c-932b085a4ac7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "bcda186d-8f62-4ee0-b4c1-ce4bba975230" + ], + "x-ms-correlation-request-id": [ + "bcda186d-8f62-4ee0-b4c1-ce4bba975230" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214917Z:bcda186d-8f62-4ee0-b4c1-ce4bba975230" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:49:16 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -537,65 +1404,191 @@ "Expires": [ "-1" ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "988bf679-babd-4054-ab4a-4bd908456278" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "845a9813-5e96-41f6-bad2-cc3b43d94970", + "7c240abd-be0f-43b3-9bd5-68a4a80b245b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], "x-ms-request-id": [ - "3096f95f-ccfe-407f-8b75-1018adf6b9e9" + "498343d6-f9c0-4723-8878-9348183d5586" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "498343d6-f9c0-4723-8878-9348183d5586" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T214947Z:498343d6-f9c0-4723-8878-9348183d5586" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 08 Nov 2019 21:49:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d5b569c-c5a1-4ad2-bbdf-ef34cabb4636" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "4c8eeb19-7a7b-4e01-83c9-ebb68ceab0fc", + "4561151d-7dc2-45f6-8915-ae7b4cad011a" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11981" + ], + "x-ms-request-id": [ + "29443658-f24e-49c8-bcc0-0150fdcf0e7f" ], "x-ms-correlation-request-id": [ - "6fda0d4c-cd3f-4811-97be-6e7cef88767e" + "29443658-f24e-49c8-bcc0-0150fdcf0e7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T222619Z:6fda0d4c-cd3f-4811-97be-6e7cef88767e" + "WESTUS:20191108T215017Z:29443658-f24e-49c8-bcc0-0150fdcf0e7f" ], - "Cache-Control": [ - "no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:26:18 GMT" + "Fri, 08 Nov 2019 21:50:17 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d9437a1-4e54-4362-ba4f-d016d1abe999" + "debc8cbd-b462-459e-aace-73fb5b01bffb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "938fc819-e9b6-436c-8d0b-c51733c6bd61", + "b67536f1-ea25-470d-a759-ac296b92828d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "4c48ae03-663d-4acd-94b5-8703b25b27c0" + ], + "x-ms-correlation-request-id": [ + "4c48ae03-663d-4acd-94b5-8703b25b27c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215047Z:4c48ae03-663d-4acd-94b5-8703b25b27c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:50:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -603,2697 +1596,2728 @@ "Expires": [ "-1" ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e46ed5e-b3a6-49e4-959b-b4d7f3b656df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "da475efc-1b8c-4581-a955-0e8656acbb6a", + "8785953a-bd49-4c9b-9145-7b0c7b5a98f6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], "x-ms-request-id": [ - "6094a6ec-b2ee-4c8f-b42f-6bef2325a303" + "1d72a646-4276-4c22-b94b-362eea3f137b" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "1d72a646-4276-4c22-b94b-362eea3f137b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215117Z:1d72a646-4276-4c22-b94b-362eea3f137b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 08 Nov 2019 21:51:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d13625ef-ff8a-4324-bd9e-66be1a8b39cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "5d0af142-6853-4f6f-bb25-66c86e0b3799", + "7cc7c8f9-fd40-4782-97fe-1b1e96f4aee3" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11978" + ], + "x-ms-request-id": [ + "6c86cf2b-50bf-454d-a9fa-eef87847248e" ], "x-ms-correlation-request-id": [ - "7eb54710-573e-43fd-976e-afd37aa49b34" + "6c86cf2b-50bf-454d-a9fa-eef87847248e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T222649Z:7eb54710-573e-43fd-976e-afd37aa49b34" + "WESTUS:20191108T215147Z:6c86cf2b-50bf-454d-a9fa-eef87847248e" ], - "Cache-Control": [ - "no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:26:48 GMT" + "Fri, 08 Nov 2019 21:51:47 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1351" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e11fa25-991c-4949-ba62-37761dcb279a" + "5097887e-9372-4919-a2de-b6238679fd2c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "6e8d3b72-4dd6-49fa-8312-8a2645a9ff5e", + "30824b36-92b5-43f7-b636-d33134c8a25f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], "x-ms-request-id": [ - "2cc9aa0b-fc80-4a88-ae86-4d623aab8bf0" + "eaf2b98c-8ca7-45aa-b99a-3cd07db1f279" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "eaf2b98c-8ca7-45aa-b99a-3cd07db1f279" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215218Z:eaf2b98c-8ca7-45aa-b99a-3cd07db1f279" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "1a7b93c1-4477-4a6a-9c5c-2033a90041b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T222719Z:1a7b93c1-4477-4a6a-9c5c-2033a90041b7" + "Date": [ + "Fri, 08 Nov 2019 21:52:17 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:27:18 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1351" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec63ec7d-86b4-4f46-948b-0359dbad388d" + "bb67cdfd-d38f-45a3-b11f-ac8ace158c57" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "dbaa6624-777d-4c1c-9c10-b5e47d22d3c8", + "dfd509bc-33ca-4947-9692-e84e035378d6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], "x-ms-request-id": [ - "7cf927f5-da57-4902-9958-c474f7d3e18a" + "ddef7134-2339-4e3c-bed8-e6f6c86abe1c" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "ddef7134-2339-4e3c-bed8-e6f6c86abe1c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215248Z:ddef7134-2339-4e3c-bed8-e6f6c86abe1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "afa28f33-4c78-4911-8572-b1997837dfa6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T222749Z:afa28f33-4c78-4911-8572-b1997837dfa6" + "Date": [ + "Fri, 08 Nov 2019 21:52:47 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:27:49 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1351" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb7eabb9-5f71-41a9-af42-36f6b3a17249" + "5c2c8955-5b63-4995-9422-b5ba988b72af" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "86f4c59f-e3ab-4bab-b8d9-9a4e3dac1282", + "654f54b4-12cd-44e7-9949-5e09837d733c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], "x-ms-request-id": [ - "434c8b10-3af7-4962-bc22-a8bc9b20adea" + "410e9a20-2779-4abe-ba29-890d4a77c19e" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "410e9a20-2779-4abe-ba29-890d4a77c19e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215318Z:410e9a20-2779-4abe-ba29-890d4a77c19e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "90e252d4-38a0-4c5c-961e-576ce1983141" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T222819Z:90e252d4-38a0-4c5c-961e-576ce1983141" + "Date": [ + "Fri, 08 Nov 2019 21:53:17 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:28:19 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1351" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c71d5ec8-d8ef-4965-9a23-fce452de4255" + "892d1030-a01c-4c8a-95c9-abedcc9271be" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "a812d395-0a24-4478-bb70-8d89e2e65584", + "19d60444-e9a6-4e0b-a25e-1d67947ba419" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], "x-ms-request-id": [ - "3231445f-b12d-492c-9247-d63c005ccd93" + "5c8b0529-ea70-4708-b6de-95eeee8e20bf" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "5c8b0529-ea70-4708-b6de-95eeee8e20bf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215348Z:5c8b0529-ea70-4708-b6de-95eeee8e20bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-correlation-request-id": [ - "f4768d0b-bab5-4452-8a2f-afa740e47621" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T222849Z:f4768d0b-bab5-4452-8a2f-afa740e47621" + "Date": [ + "Fri, 08 Nov 2019 21:53:48 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:28:48 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1351" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c408cd28-3bfb-4397-ac47-4b52b10b6c34" + "5a7e04c9-0973-481f-a2c7-5261f47901cb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "52b3f83d-cd67-4553-b2a1-b6ed0cf1d6df", + "70c660f3-be53-465d-8f3b-823241d5e1a8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], "x-ms-request-id": [ - "3228b65c-7bf7-40ac-9fd1-d45eb27476a9" + "4ac7602d-0531-4ce8-8b4e-f23fe0abd272" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "4ac7602d-0531-4ce8-8b4e-f23fe0abd272" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215418Z:4ac7602d-0531-4ce8-8b4e-f23fe0abd272" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "9e53f5d5-9e03-449f-9685-e03c7984cdf1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T222919Z:9e53f5d5-9e03-449f-9685-e03c7984cdf1" + "Date": [ + "Fri, 08 Nov 2019 21:54:18 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:29:19 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1350" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a817eb0-640a-4fbc-bcfb-7066f87d5d6d" + "cb754ca5-bdb5-4c41-8a04-2940df37a9d8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "157ec9b9-260b-4c9a-920e-b7dc9b0a789d", + "da16dfe5-c6e2-4a9b-8fcb-55b68208aaed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], "x-ms-request-id": [ - "28eee329-179e-4408-a665-4a23405263be" + "888169d9-bffe-428d-922f-e1223ecd196a" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "888169d9-bffe-428d-922f-e1223ecd196a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215448Z:888169d9-bffe-428d-922f-e1223ecd196a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "85814915-98b1-4f21-b155-1cac931c28e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T222950Z:85814915-98b1-4f21-b155-1cac931c28e9" + "Date": [ + "Fri, 08 Nov 2019 21:54:48 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:29:49 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1350" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40a2b582-15ff-4a67-b3c5-f48721532ed2" + "5243f6f8-5670-4910-9556-eba73110ef29" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "53147cc8-f1b6-4e6e-adfb-691ba605fb07", + "f8910232-7aa3-4474-83b9-4a61c68fda1f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], "x-ms-request-id": [ - "0f0d3d24-f962-4e66-a5df-188068424cde" + "8d239483-ca1c-4aa5-9004-cf20126b06d7" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "8d239483-ca1c-4aa5-9004-cf20126b06d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215519Z:8d239483-ca1c-4aa5-9004-cf20126b06d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "87071bb2-a9bb-4d80-99fb-aa4d7fb68599" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T223020Z:87071bb2-a9bb-4d80-99fb-aa4d7fb68599" + "Date": [ + "Fri, 08 Nov 2019 21:55:18 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:30:19 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1351" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71cde114-6965-4a70-a569-8ed78263e94f" + "b3b0a3cd-74a5-4a36-97b1-847d376714c6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "93ac8773-1341-422b-bc1e-5cd22cab4ce3", + "8337499a-3ba5-4c70-beed-3fea0f80336f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], "x-ms-request-id": [ - "861144d1-43b5-4052-bf24-ef1b3f6d6107" + "d96babae-0b88-4b79-9b23-82ae3da3ee9b" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "d96babae-0b88-4b79-9b23-82ae3da3ee9b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215549Z:d96babae-0b88-4b79-9b23-82ae3da3ee9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "503c3cdc-614d-4435-b025-adb7130e514e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T223050Z:503c3cdc-614d-4435-b025-adb7130e514e" + "Date": [ + "Fri, 08 Nov 2019 21:55:48 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:30:49 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1352" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdcbbf60-ab7c-4a25-872b-548e43fa87fb" + "79d1d2b3-9e17-4212-a468-f37a5f037a72" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "7afdac69-d1fd-401a-a344-3456efc34d6f", + "8305853d-9765-49c2-a479-d9626cdb69d5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], "x-ms-request-id": [ - "9afba48a-7815-46b7-ba4e-f9411db5d2f9" + "174f88d0-00bc-418f-be98-9ffe955886ba" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "174f88d0-00bc-418f-be98-9ffe955886ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215549Z:174f88d0-00bc-418f-be98-9ffe955886ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-correlation-request-id": [ - "b8d5c85f-a9a4-44a5-9de6-1fcb20795e20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T223120Z:b8d5c85f-a9a4-44a5-9de6-1fcb20795e20" + "Date": [ + "Fri, 08 Nov 2019 21:55:48 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:31:19 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1352" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54dab716-f399-4b65-8025-9815a175dad1" + "5747d7f7-d618-4470-a118-9906d67d5766" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "6dd09d59-71ef-4a4e-abb9-99a36669e846", + "58048669-8fe2-4c5d-9e50-1b5bda22dec0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], "x-ms-request-id": [ - "36ab4e71-539f-4ba0-a6c3-3decdd46fc8a" + "e408a5d6-e012-4cb6-9afd-126b29623f86" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "e408a5d6-e012-4cb6-9afd-126b29623f86" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215550Z:e408a5d6-e012-4cb6-9afd-126b29623f86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-correlation-request-id": [ - "852705bd-62f3-477a-98ad-ab86a61fe3fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T223150Z:852705bd-62f3-477a-98ad-ab86a61fe3fc" + "Date": [ + "Fri, 08 Nov 2019 21:55:49 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:31:49 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1352" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8c1a006-a11f-4c8f-86a4-f19a728fd2f1" + "3dfa4ee7-73f1-4425-9e49-27e5f4aa8867" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "7fb3db0c-93cb-4f6b-b7aa-a8ffe8429680", + "04b432d0-9a5a-4f4c-8494-a1fe195b3e04" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], "x-ms-request-id": [ - "62b25ad3-0c94-4834-9a5f-acf6b125822d" + "b21d880d-1571-4f6a-ac2b-ada1c849cb6f" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "b21d880d-1571-4f6a-ac2b-ada1c849cb6f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215551Z:b21d880d-1571-4f6a-ac2b-ada1c849cb6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "073d15be-7970-4082-90b7-7cba02d63b22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T223220Z:073d15be-7970-4082-90b7-7cba02d63b22" + "Date": [ + "Fri, 08 Nov 2019 21:55:51 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:32:19 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1352" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96a65a9c-2f1f-4dd1-abd4-dd6e072ca10f" + "84452a51-6415-4f9b-91d2-a32e435d8d80" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "bfebd29d-28ed-4775-8d8d-4bc63ae56f02", + "373deb85-d80f-41a0-99e9-06e515ad8f50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], "x-ms-request-id": [ - "bd453540-b97c-438a-ba80-ac7132ec8228" + "9b7b5897-4552-4da7-b79a-c0de278d4de5" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "9b7b5897-4552-4da7-b79a-c0de278d4de5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215551Z:9b7b5897-4552-4da7-b79a-c0de278d4de5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-correlation-request-id": [ - "628f3e51-4bb2-4f58-b15b-917dd49b1606" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T223250Z:628f3e51-4bb2-4f58-b15b-917dd49b1606" + "Date": [ + "Fri, 08 Nov 2019 21:55:51 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:32:49 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1352" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84b70fb5-2382-4cc1-8263-10bb51e945d1" + "98d07193-65e0-41b4-b3ca-0755ac68f117" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "f707abec-6276-4d23-9a26-e7e6037312dc", + "a20a7452-2c80-4203-82ea-834be1c50b3f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], "x-ms-request-id": [ - "2ee04381-9d5d-48d7-847a-01653caf6b25" + "2a1d76b5-70e8-48d2-a5c9-b27ae3056ddd" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "2a1d76b5-70e8-48d2-a5c9-b27ae3056ddd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215551Z:2a1d76b5-70e8-48d2-a5c9-b27ae3056ddd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-correlation-request-id": [ - "590b671a-35b2-4ab8-b853-3700bc2896c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T223320Z:590b671a-35b2-4ab8-b853-3700bc2896c2" + "Date": [ + "Fri, 08 Nov 2019 21:55:51 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:33:19 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1352" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d22e3e7-86cc-4755-a318-99985f69a1f3" + "f8408842-e822-41c1-b91c-d85bd821083d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "e74dee6b-77ae-42fc-90ad-20ce765070a7", + "d6270981-9c05-4941-9499-5dcfbea586e9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], "x-ms-request-id": [ - "ab741ad5-7c8e-44db-a189-fdcd4b079dbb" + "a6f8c9ec-c7de-45a9-8377-5b5ff02c7ff3" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "a6f8c9ec-c7de-45a9-8377-5b5ff02c7ff3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215552Z:a6f8c9ec-c7de-45a9-8377-5b5ff02c7ff3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-correlation-request-id": [ - "662be46f-7ff8-459a-b9ee-3e2548dd0fbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T223350Z:662be46f-7ff8-459a-b9ee-3e2548dd0fbf" + "Date": [ + "Fri, 08 Nov 2019 21:55:52 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:33:50 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1352" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8828842a-af52-46cc-bc91-7fbc20b1a819" + "a70575ff-7621-46f7-a6a0-243be6ee89bc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "626" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "337f0745-9ec2-4116-bc0b-73723b0fa94f", + "f9c1eef7-adfb-4fea-b903-2f1fd547fc49" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], "x-ms-request-id": [ - "0865eaeb-1ae1-43bf-be36-0f4ad8bac988" + "481aec03-04d6-4b47-be0f-3cdb7b662147" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "481aec03-04d6-4b47-be0f-3cdb7b662147" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215552Z:481aec03-04d6-4b47-be0f-3cdb7b662147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], - "x-ms-correlation-request-id": [ - "d54e0989-32fe-4244-a8f0-721046230011" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T223420Z:d54e0989-32fe-4244-a8f0-721046230011" + "Date": [ + "Fri, 08 Nov 2019 21:55:52 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:34:19 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1352" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6675fde1-33e9-4d88-bd2c-02415acebaf9" + "e257ef49-fe45-4823-958f-088d8cb1885d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "627" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "dde5cbaa-913d-42f7-b862-5678014cedc9", + "aaa31be8-c1c2-40fb-910c-b444c368d689" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], "x-ms-request-id": [ - "d900fc21-f631-49db-90f1-a35a61f74d12" + "093c4067-9f49-48c1-80d8-722da36f0578" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "093c4067-9f49-48c1-80d8-722da36f0578" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215554Z:093c4067-9f49-48c1-80d8-722da36f0578" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], - "x-ms-correlation-request-id": [ - "4a41ae11-7876-42ce-a769-8ad82dc6bf55" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T223450Z:4a41ae11-7876-42ce-a769-8ad82dc6bf55" + "Date": [ + "Fri, 08 Nov 2019 21:55:53 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 22:34:50 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1352" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruleone?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxlb25lP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e091d10e-8366-4676-be24-6f3735e33fa3" + "978c0fd0-30d6-4ff7-b2a9-e207cc385896" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "627" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "82" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008/firewallRules/ruleone?api-version=2018-03-01" + ], "x-ms-request-id": [ - "5d8f3575-2705-41b5-b64e-e96d6633b15a" + "5a93fb92-e996-4df9-a827-d403643a613c" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "daf2b443-26d5-4b88-90a9-49226559f328" + "d23411f0-212f-49ae-8a94-11a66d84cc88" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223450Z:daf2b443-26d5-4b88-90a9-49226559f328" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215550Z:d23411f0-212f-49ae-8a94-11a66d84cc88" ], "Date": [ - "Wed, 21 Feb 2018 22:34:50 GMT" + "Fri, 08 Nov 2019 21:55:49 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n },\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008/firewallRules/ruleone\",\r\n \"name\": \"redisteam008/ruleone\",\r\n \"type\": \"Microsoft.Cache/redis/firewallRules\"\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruletwo?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxldHdvP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c6409d71-5c52-4519-8024-96220b0eb696" + "80c2e8fd-c5f5-4194-a060-9237a256df86" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "627" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "84" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008/firewallRules/ruletwo?api-version=2018-03-01" + ], "x-ms-request-id": [ - "23cbc411-3004-460c-a37d-26cb21c2ae00" + "8b5d2279-8a26-4c85-b2ae-ee7ef781f7f1" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "3340e18b-e141-4123-9b51-4c26bcd6ce68" + "6969dbb5-b50c-4e3b-bcb5-f81151065efd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223452Z:3340e18b-e141-4123-9b51-4c26bcd6ce68" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215550Z:6969dbb5-b50c-4e3b-bcb5-f81151065efd" ], "Date": [ - "Wed, 21 Feb 2018 22:34:52 GMT" + "Fri, 08 Nov 2019 21:55:50 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "292" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n },\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008/firewallRules/ruletwo\",\r\n \"name\": \"redisteam008/ruletwo\",\r\n \"type\": \"Microsoft.Cache/redis/firewallRules\"\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/rulethree?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxldGhyZWU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.33\",\r\n \"endIP\": \"10.0.0.63\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c70d8677-c0c5-4b4f-9359-7153b3c40e10" + "cc1bccd6-6cf0-4147-b725-347deac93385" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "627" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "83" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008/firewallRules/rulethree?api-version=2018-03-01" + ], "x-ms-request-id": [ - "2fe23d4a-a907-4eed-a70b-e9639151b303" + "c97aadbc-4a16-4104-bbba-512eb350b900" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "e093735f-b33c-41f3-84c3-0ea6e39ac646" + "ad9b1dbf-e18c-44c8-9d28-15cba281fb46" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223454Z:e093735f-b33c-41f3-84c3-0ea6e39ac646" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215551Z:ad9b1dbf-e18c-44c8-9d28-15cba281fb46" ], "Date": [ - "Wed, 21 Feb 2018 22:34:54 GMT" + "Fri, 08 Nov 2019 21:55:51 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "295" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.33\",\r\n \"endIP\": \"10.0.0.63\"\r\n },\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008/firewallRules/rulethree\",\r\n \"name\": \"redisteam008/rulethree\",\r\n \"type\": \"Microsoft.Cache/redis/firewallRules\"\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruleone?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxlb25lP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5395dd12-e91a-4986-a4ec-c452eec2bb8d" + "a29b1484-15ff-480a-aaca-6c17996ceb3e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "627" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "989e23da-70be-4f47-bbe2-887b6e9d32f2" + "dccfbba1-83bc-450b-a8bd-c985481ad5da" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "11966" ], "x-ms-correlation-request-id": [ - "8085f5a0-d6fc-4ad6-8cc4-4c791beed6e2" + "e0040e45-9f90-42a8-bdd3-7747e4df5bed" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223454Z:8085f5a0-d6fc-4ad6-8cc4-4c791beed6e2" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215551Z:e0040e45-9f90-42a8-bdd3-7747e4df5bed" ], "Date": [ - "Wed, 21 Feb 2018 22:34:54 GMT" + "Fri, 08 Nov 2019 21:55:51 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruleone\",\r\n \"name\": \"redisteam008/ruleone\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2529a8d-9357-4c8a-b9bb-832a43bbbe26" + "a448b926-5e70-4358-9cf8-def062992eb7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "627" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9ce680bb-7bf4-4d67-874c-537e7b8d037a" + "edc7ec9c-a7f1-4b33-bccc-813a137aa48b" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "11964" ], "x-ms-correlation-request-id": [ - "4de16653-7b57-49b2-bcfa-095395f063f9" + "32666cc9-2d10-43d6-a0ea-b70ea9185fbc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223455Z:4de16653-7b57-49b2-bcfa-095395f063f9" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215551Z:32666cc9-2d10-43d6-a0ea-b70ea9185fbc" ], "Date": [ - "Wed, 21 Feb 2018 22:34:54 GMT" + "Fri, 08 Nov 2019 21:55:51 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "891" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruleone\",\r\n \"name\": \"redisteam008/ruleone\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruletwo\",\r\n \"name\": \"redisteam008/ruletwo\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/rulethree\",\r\n \"name\": \"redisteam008/rulethree\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.33\",\r\n \"endIP\": \"10.0.0.63\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e733ea7a-7300-4322-b542-8ba9a406bf54" + "2bbc22f7-8ea5-4251-95de-ed99c966b675" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "627" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1b10ca1f-5a3a-48bd-8377-7ed35afc936d" + "833dcca3-94e0-450a-a989-1dcda1e5926b" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "11961" ], "x-ms-correlation-request-id": [ - "fc7dc3cc-b3b6-4ce5-a9d9-6548fdaa96b3" + "3d9171ac-d130-4ea9-8c0c-15a5cb742284" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223455Z:fc7dc3cc-b3b6-4ce5-a9d9-6548fdaa96b3" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215552Z:3d9171ac-d130-4ea9-8c0c-15a5cb742284" ], "Date": [ - "Wed, 21 Feb 2018 22:34:55 GMT" + "Fri, 08 Nov 2019 21:55:52 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "600" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruletwo\",\r\n \"name\": \"redisteam008/ruletwo\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/rulethree\",\r\n \"name\": \"redisteam008/rulethree\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.33\",\r\n \"endIP\": \"10.0.0.63\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "332e8f27-d48c-4810-be5a-9ce36803f215" + "f5ec9ef7-588d-4b91-9de8-d337684e04d1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "627" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "468e82b9-5a68-4821-a548-d6608c531151" + "e3df56d1-79af-46a8-a933-3248ba7972f3" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "11959" ], "x-ms-correlation-request-id": [ - "d9b8d687-587f-4b0e-bf0d-82bdac1045a0" + "b2c06b4e-150a-434f-bb79-d3f7a6d39684" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223456Z:d9b8d687-587f-4b0e-bf0d-82bdac1045a0" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215552Z:b2c06b4e-150a-434f-bb79-d3f7a6d39684" ], "Date": [ - "Wed, 21 Feb 2018 22:34:55 GMT" + "Fri, 08 Nov 2019 21:55:52 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "600" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruletwo\",\r\n \"name\": \"redisteam008/ruletwo\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/rulethree\",\r\n \"name\": \"redisteam008/rulethree\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.33\",\r\n \"endIP\": \"10.0.0.63\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fe8d49a-4685-4b6d-b1ad-32bd785fcdda" + "ed1ce294-f836-4816-8889-b91efe5ee522" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam008\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam008.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "627" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1bbd86a6-4a82-42ad-b720-5bd5d9ca18eb" + "9e19cf60-9229-4f5c-884f-00a7788591c3" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "11957" ], "x-ms-correlation-request-id": [ - "f85f9822-e576-4121-bcaf-a8b5dfac24bd" + "49a34734-4993-49da-b807-b62d4ff6022c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223458Z:f85f9822-e576-4121-bcaf-a8b5dfac24bd" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215554Z:49a34734-4993-49da-b807-b62d4ff6022c" ], "Date": [ - "Wed, 21 Feb 2018 22:34:57 GMT" + "Fri, 08 Nov 2019 21:55:53 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruleone?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxlb25lP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "82" - ], + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruleone?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxlb25lP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { "x-ms-client-request-id": [ - "fcd804aa-d5f2-4c58-9dde-2a8ab5f9df67" + "0cdce911-f3fc-452f-babc-258fcc24754e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008/firewallRules/ruleone\",\r\n \"name\": \"redisteam008/ruleone\",\r\n \"type\": \"Microsoft.Cache/redis/firewallRules\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "290" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f1823587-7d43-4b69-8961-eac797c0245c" + "9c158c74-b0bb-4e21-8f11-8fb372fc1d79" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "cdfdd670-85b8-496f-9f55-ff9c886c3a30" + "aae9e20a-3e2c-4e0e-beae-bad4183c7e72" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223452Z:cdfdd670-85b8-496f-9f55-ff9c886c3a30" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215552Z:aae9e20a-3e2c-4e0e-beae-bad4183c7e72" ], "Date": [ - "Wed, 21 Feb 2018 22:34:52 GMT" + "Fri, 08 Nov 2019 21:55:52 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008/firewallRules/ruleone?api-version=2017-10-01" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "0" ] }, - "StatusCode": 201 + "ResponseBody": "", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruletwo?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxldHdvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruletwo?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxldHdvP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "84" - ], "x-ms-client-request-id": [ - "4e77f9ea-3d62-4774-a16d-3611a871f4b9" + "f33e180c-d0d2-4b2e-b691-8b9e5f2bf66e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008/firewallRules/ruletwo\",\r\n \"name\": \"redisteam008/ruletwo\",\r\n \"type\": \"Microsoft.Cache/redis/firewallRules\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "292" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "411aa409-30fc-4d2f-9f6c-4c41333978de" + "4e4bae62-37f7-486d-9142-32b5664662f0" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "3cca35f7-21e9-41f6-bd73-d187fdf099c6" + "c1967806-ab31-4ae0-a906-660772f051ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223453Z:3cca35f7-21e9-41f6-bd73-d187fdf099c6" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215553Z:c1967806-ab31-4ae0-a906-660772f051ba" ], "Date": [ - "Wed, 21 Feb 2018 22:34:53 GMT" + "Fri, 08 Nov 2019 21:55:52 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008/firewallRules/ruletwo?api-version=2017-10-01" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "0" ] }, - "StatusCode": 201 + "ResponseBody": "", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/rulethree?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxldGhyZWU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.33\",\r\n \"endIP\": \"10.0.0.63\"\r\n }\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/rulethree?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxldGhyZWU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "83" - ], "x-ms-client-request-id": [ - "1d8267c7-cd3f-4639-a758-e424bc15037f" + "8fd9ea89-1742-4c65-bb1a-82afdc90ab49" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.33\",\r\n \"endIP\": \"10.0.0.63\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008/firewallRules/rulethree\",\r\n \"name\": \"redisteam008/rulethree\",\r\n \"type\": \"Microsoft.Cache/redis/firewallRules\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "295" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5a9d2a5a-bdb9-4cec-bb8e-106ca22b214b" + "40e6e5bd-14d1-4982-bfb2-3b15ed31cb31" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" ], "x-ms-correlation-request-id": [ - "9f3d7e69-19de-4f3d-b65d-6473d1c54846" + "f000dae1-de0f-4e68-890c-79f2f92e40b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223454Z:9f3d7e69-19de-4f3d-b65d-6473d1c54846" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215554Z:f000dae1-de0f-4e68-890c-79f2f92e40b1" ], "Date": [ - "Wed, 21 Feb 2018 22:34:54 GMT" + "Fri, 08 Nov 2019 21:55:53 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/redis/redisteam008/firewallRules/rulethree?api-version=2017-10-01" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "0" ] }, - "StatusCode": 201 + "ResponseBody": "", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruleone?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxlb25lP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDg/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb2a94ba-a073-461f-93ce-57e9e4d7240a" + "e8a28e43-a812-4149-b50a-f11013356c92" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruleone\",\r\n \"name\": \"redisteam008/ruleone\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "290" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01" + ], "x-ms-request-id": [ - "743ae012-bcf3-47d5-b7c1-50c3c390db76" + "570a3691-d4b3-4628-94b7-fd238a6d1607" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" ], "x-ms-correlation-request-id": [ - "55603e4e-194e-4d39-8c3b-b552af5e72a3" + "4d7596d7-fb80-43cb-bd66-9fa78a8f2048" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223454Z:55603e4e-194e-4d39-8c3b-b552af5e72a3" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215554Z:4d7596d7-fb80-43cb-bd66-9fa78a8f2048" ], "Date": [ - "Wed, 21 Feb 2018 22:34:54 GMT" + "Fri, 08 Nov 2019 21:55:54 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzU3MGEzNjkxLWQ0YjMtNDYyOC05NGI3LWZkMjM4YTZkMTYwNz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "de690ad0-259a-4fd8-992a-4caedf7ccf1a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruleone\",\r\n \"name\": \"redisteam008/ruleone\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruletwo\",\r\n \"name\": \"redisteam008/ruletwo\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/rulethree\",\r\n \"name\": \"redisteam008/rulethree\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.33\",\r\n \"endIP\": \"10.0.0.63\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "891" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01" + ], "x-ms-request-id": [ - "4f75e976-19bc-47d8-b0d0-fcfc7853ba5d" + "e86e2845-f6f9-4222-bcdc-4e6dc32fa073" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "11956" ], "x-ms-correlation-request-id": [ - "8a88d54a-42d0-4a2b-9217-05cb942a4307" + "59f9e47e-59b0-4b3b-8116-7547a6a1cca3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223454Z:8a88d54a-42d0-4a2b-9217-05cb942a4307" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215625Z:59f9e47e-59b0-4b3b-8116-7547a6a1cca3" ], "Date": [ - "Wed, 21 Feb 2018 22:34:54 GMT" + "Fri, 08 Nov 2019 21:56:25 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzU3MGEzNjkxLWQ0YjMtNDYyOC05NGI3LWZkMjM4YTZkMTYwNz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "885f5907-1caa-4cf7-8b69-cc5d93fc5d2f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruletwo\",\r\n \"name\": \"redisteam008/ruletwo\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/rulethree\",\r\n \"name\": \"redisteam008/rulethree\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.33\",\r\n \"endIP\": \"10.0.0.63\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "600" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01" + ], "x-ms-request-id": [ - "5d572706-c383-4300-9205-e5e3d32bbdc5" + "2350e946-895e-4d5f-8d4f-b800daa2fa9e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "11955" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "b0eaca30-1029-4621-99c9-4f842b31e925" + "f97bdfd0-f91b-40ae-9a8c-7f6f5cd5d818" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223456Z:b0eaca30-1029-4621-99c9-4f842b31e925" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215655Z:f97bdfd0-f91b-40ae-9a8c-7f6f5cd5d818" ], "Date": [ - "Wed, 21 Feb 2018 22:34:55 GMT" + "Fri, 08 Nov 2019 21:56:54 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzU3MGEzNjkxLWQ0YjMtNDYyOC05NGI3LWZkMjM4YTZkMTYwNz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2aff910a-3d33-4c29-be53-f10eb2742ff6" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruletwo\",\r\n \"name\": \"redisteam008/ruletwo\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/rulethree\",\r\n \"name\": \"redisteam008/rulethree\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.33\",\r\n \"endIP\": \"10.0.0.63\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "600" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01" + ], "x-ms-request-id": [ - "f2e49cd7-0d99-4d46-b8ec-39b7159d1fc6" + "080cdba8-aa8a-4d07-81c0-9c4f6d745a0c" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "11954" ], "x-ms-correlation-request-id": [ - "5def7b79-9ed4-41d4-bb7d-992c1aaa21bb" + "76daa287-0dfd-4de9-8e18-e76c44a8e2fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223456Z:5def7b79-9ed4-41d4-bb7d-992c1aaa21bb" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215725Z:76daa287-0dfd-4de9-8e18-e76c44a8e2fc" ], "Date": [ - "Wed, 21 Feb 2018 22:34:55 GMT" + "Fri, 08 Nov 2019 21:57:24 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzU3MGEzNjkxLWQ0YjMtNDYyOC05NGI3LWZkMjM4YTZkMTYwNz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a36c5102-caa3-4830-9593-b856d32a1e4c" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01" + ], "x-ms-request-id": [ - "280a08c4-6174-4cab-b2c1-070eaf3f7671" + "6ab54500-5123-4da5-8b5a-a3f2b13de2f0" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "11953" ], "x-ms-correlation-request-id": [ - "4d26bdf6-5144-43d7-875e-267ade6703e6" + "0540b59d-edd7-449b-b858-9780b04d27c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223458Z:4d26bdf6-5144-43d7-875e-267ade6703e6" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215755Z:0540b59d-edd7-449b-b858-9780b04d27c3" ], "Date": [ - "Wed, 21 Feb 2018 22:34:57 GMT" + "Fri, 08 Nov 2019 21:57:55 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruleone?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxlb25lP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzU3MGEzNjkxLWQ0YjMtNDYyOC05NGI3LWZkMjM4YTZkMTYwNz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "01156152-fefc-457e-a395-202109b85f96" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01" + ], "x-ms-request-id": [ - "46ce99af-a790-4fe6-8a3f-07119a8e3d22" + "93cb38ff-a1ca-4db5-9f75-129711e48e69" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" ], "x-ms-correlation-request-id": [ - "10431034-0f14-4624-811a-a2c81020072d" + "b4fa39f6-8f0a-4afc-9b97-c6fb4b1c1f13" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223455Z:10431034-0f14-4624-811a-a2c81020072d" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215825Z:b4fa39f6-8f0a-4afc-9b97-c6fb4b1c1f13" ], "Date": [ - "Wed, 21 Feb 2018 22:34:55 GMT" + "Fri, 08 Nov 2019 21:58:24 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/ruletwo?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxldHdvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzU3MGEzNjkxLWQ0YjMtNDYyOC05NGI3LWZkMjM4YTZkMTYwNz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "027e8321-47b1-404b-96d5-4aebf3ebd206" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a01c262b-c28c-4d75-9555-c4b0b1c6459b" + "706219d0-7892-45ea-b809-10ee9895a735" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "fe52e589-7be1-45f6-9613-95c11d104897" + "1c80b0e0-fda1-4fed-8aa4-6c50b2625434" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223456Z:fe52e589-7be1-45f6-9613-95c11d104897" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215855Z:1c80b0e0-fda1-4fed-8aa4-6c50b2625434" ], "Date": [ - "Wed, 21 Feb 2018 22:34:56 GMT" + "Fri, 08 Nov 2019 21:58:55 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008/firewallRules/rulethree?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDgvZmlyZXdhbGxSdWxlcy9ydWxldGhyZWU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/570a3691-d4b3-4628-94b7-fd238a6d1607?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzU3MGEzNjkxLWQ0YjMtNDYyOC05NGI3LWZkMjM4YTZkMTYwNz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6f590c8a-435b-465d-a7bf-57220ff93c8d" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c701b60d-882c-4014-99e6-2dee53c4b30e" + "584dcfcc-1719-4c88-be8c-ced61cc58c83" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" ], "x-ms-correlation-request-id": [ - "82cc7858-90de-4d21-ba61-180fb604366e" + "aad503da-b2ce-4c53-9d74-e3baa7bc011a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223458Z:82cc7858-90de-4d21-ba61-180fb604366e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T215855Z:aad503da-b2ce-4c53-9d74-e3baa7bc011a" ], "Date": [ - "Wed, 21 Feb 2018 22:34:57 GMT" + "Fri, 08 Nov 2019 21:58:55 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-8/providers/Microsoft.Cache/Redis/redisteam008?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTgvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-8?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "138f51a6-685d-463b-a8fe-ff9a17884605" + "16bd44a7-287c-459b-bbe8-7da49bb4b504" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "b791f94c-b36d-44a4-b9c1-cf60e7555b16" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "15" ], - "x-content-type-options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-request-id": [ + "fd49dcd8-04bc-431a-94dd-bd5094f2e2d7" ], "x-ms-correlation-request-id": [ - "57462ac0-1a09-46f0-8f46-e425c4fd93b0" + "fd49dcd8-04bc-431a-94dd-bd5094f2e2d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223458Z:57462ac0-1a09-46f0-8f46-e425c4fd93b0" + "WESTUS:20191108T215856Z:fd49dcd8-04bc-431a-94dd-bd5094f2e2d7" ], - "Cache-Control": [ - "no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:34:58 GMT" + "Fri, 08 Nov 2019 21:58:55 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-8?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGd0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-request-id": [ - "874aff43-8782-4e0f-b8c5-2617af99caa5" + "e95e4622-881d-4ab2-b8e7-2d73895608a3" ], "x-ms-correlation-request-id": [ - "874aff43-8782-4e0f-b8c5-2617af99caa5" + "e95e4622-881d-4ab2-b8e7-2d73895608a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223458Z:874aff43-8782-4e0f-b8c5-2617af99caa5" + "WESTUS:20191108T215911Z:e95e4622-881d-4ab2-b8e7-2d73895608a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:34:57 GMT" + "Fri, 08 Nov 2019 21:59:10 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGd0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGd0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-request-id": [ - "9c1599e6-1638-41be-b260-d7373e9a4882" + "263514d0-ebd3-43fe-82e7-31577359eb2d" ], "x-ms-correlation-request-id": [ - "9c1599e6-1638-41be-b260-d7373e9a4882" + "263514d0-ebd3-43fe-82e7-31577359eb2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223458Z:9c1599e6-1638-41be-b260-d7373e9a4882" + "WESTUS:20191108T215926Z:263514d0-ebd3-43fe-82e7-31577359eb2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:34:57 GMT" + "Fri, 08 Nov 2019 21:59:26 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGd0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGd0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11997" ], "x-ms-request-id": [ - "689afa94-9bb8-4e04-93c6-f47490b7fee0" + "fbedc35a-d656-4311-94cd-71908d68165c" ], "x-ms-correlation-request-id": [ - "689afa94-9bb8-4e04-93c6-f47490b7fee0" + "fbedc35a-d656-4311-94cd-71908d68165c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223513Z:689afa94-9bb8-4e04-93c6-f47490b7fee0" + "WESTUS:20191108T215941Z:fbedc35a-d656-4311-94cd-71908d68165c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:35:13 GMT" + "Fri, 08 Nov 2019 21:59:40 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGd0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGd0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11996" ], "x-ms-request-id": [ - "579d6e8a-95f5-4533-a7cf-e55dcc41c764" + "82d2e1fa-0d22-4a03-a04c-a855ae6bda79" ], "x-ms-correlation-request-id": [ - "579d6e8a-95f5-4533-a7cf-e55dcc41c764" + "82d2e1fa-0d22-4a03-a04c-a855ae6bda79" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223528Z:579d6e8a-95f5-4533-a7cf-e55dcc41c764" + "WESTUS:20191108T215956Z:82d2e1fa-0d22-4a03-a04c-a855ae6bda79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:35:28 GMT" + "Fri, 08 Nov 2019 21:59:55 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 202 + "ResponseBody": "", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGd0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGd0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11995" ], "x-ms-request-id": [ - "8a606ce7-bcb1-412f-86a3-c6a8b1247d25" + "fb5ee02f-96aa-4f7a-a94f-95cd76424e60" ], "x-ms-correlation-request-id": [ - "8a606ce7-bcb1-412f-86a3-c6a8b1247d25" + "fb5ee02f-96aa-4f7a-a94f-95cd76424e60" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223544Z:8a606ce7-bcb1-412f-86a3-c6a8b1247d25" + "WESTUS:20191108T215956Z:fb5ee02f-96aa-4f7a-a94f-95cd76424e60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:35:43 GMT" + "Fri, 08 Nov 2019 21:59:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + "SubscriptionId": "bc130894-c5b3-4adc-a077-0b51f3714abe" } } \ No newline at end of file diff --git a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestGeoReplication.json b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestGeoReplication.json index 7e8476d39d7d..6e535ca1c39f 100644 --- a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestGeoReplication.json +++ b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestGeoReplication.json @@ -1,25 +1,51 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-7?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-client-request-id": [ + "3678fe83-b20b-4936-92b2-2ce258ea9bc1" ], - "Content-Length": [ - "29" + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7\",\r\n \"name\": \"PowerShellTest-7\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "185" + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e9d0d072-15c7-4988-b5f6-720bef72efad" + ], + "x-ms-correlation-request-id": [ + "e9d0d072-15c7-4988-b5f6-720bef72efad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T204936Z:e9d0d072-15c7-4988-b5f6-720bef72efad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 20:49:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -27,62 +53,161 @@ "Expires": [ "-1" ], + "Content-Length": [ + "3202" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71481b7c-4f3e-47f8-b38c-3a5f29ba3740" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-request-id": [ - "e85dc908-4525-4283-a058-62b3a1d844ae" + "b56d1d4c-89c2-4c01-99eb-dd420d40a549" ], "x-ms-correlation-request-id": [ - "e85dc908-4525-4283-a058-62b3a1d844ae" + "b56d1d4c-89c2-4c01-99eb-dd420d40a549" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230138Z:e85dc908-4525-4283-a058-62b3a1d844ae" + "WESTUS:20191108T204936Z:b56d1d4c-89c2-4c01-99eb-dd420d40a549" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:01:37 GMT" + "Fri, 08 Nov 2019 20:49:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "3202" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-7?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3797ae8e-bcc7-40a2-a493-f23762266a8d" + "dc6f97ed-5acf-4616-83ec-8b1a32351c81" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam0071' under resource group 'PowerShellTest-7' was not found.\"\r\n }\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "67efd6e1-d8c4-4499-a28a-9e9946642990" + ], + "x-ms-correlation-request-id": [ + "67efd6e1-d8c4-4499-a28a-9e9946642990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T204936Z:67efd6e1-d8c4-4499-a28a-9e9946642990" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 20:49:36 GMT" + ], "Content-Length": [ - "155" + "185" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7\",\r\n \"name\": \"PowerShellTest-7\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57ac3a8a-b4ad-46a1-b2aa-8a409b9b352d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -91,55 +216,58 @@ "gateway" ], "x-ms-request-id": [ - "f6a21e41-b5ae-4064-a618-ca6dbe259257" + "0dd583af-b74a-4a4f-b8b9-ae869cc429fc" ], "x-ms-correlation-request-id": [ - "f6a21e41-b5ae-4064-a618-ca6dbe259257" + "0dd583af-b74a-4a4f-b8b9-ae869cc429fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230138Z:f6a21e41-b5ae-4064-a618-ca6dbe259257" + "WESTUS:20191108T204936Z:0dd583af-b74a-4a4f-b8b9-ae869cc429fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:01:38 GMT" + "Fri, 08 Nov 2019 20:49:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "155" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam0071' under resource group 'PowerShellTest-7' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85d2245f-05a2-4b7d-9f0f-f2522244b2d5" + "0b127ab2-0402-45b0-8d73-bebeb9fc86e9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2351" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -148,55 +276,58 @@ "1199" ], "x-ms-request-id": [ - "c7a82ed9-c076-477c-bfc9-f6d393e9c2ab" + "b4950e07-6791-4e4e-8b98-3a32d4382545" ], "x-ms-correlation-request-id": [ - "c7a82ed9-c076-477c-bfc9-f6d393e9c2ab" + "b4950e07-6791-4e4e-8b98-3a32d4382545" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230137Z:c7a82ed9-c076-477c-bfc9-f6d393e9c2ab" + "WESTUS:20191108T204938Z:b4950e07-6791-4e4e-8b98-3a32d4382545" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:01:37 GMT" + "Fri, 08 Nov 2019 20:49:38 GMT" + ], + "Content-Length": [ + "3202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c1ae342-1281-4fc7-a991-cb9c38d9520b" + "8137723c-2c51-458d-92e6-82720d91bfb6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2351" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -205,196 +336,199 @@ "1198" ], "x-ms-request-id": [ - "31024824-a475-4318-a0ca-f9f349ff4294" + "215446ae-fefb-46e1-891e-fe889583aeab" ], "x-ms-correlation-request-id": [ - "31024824-a475-4318-a0ca-f9f349ff4294" + "215446ae-fefb-46e1-891e-fe889583aeab" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230145Z:31024824-a475-4318-a0ca-f9f349ff4294" + "WESTUS:20191108T204940Z:215446ae-fefb-46e1-891e-fe889583aeab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:01:44 GMT" + "Fri, 08 Nov 2019 20:49:40 GMT" + ], + "Content-Length": [ + "3202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", "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 },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "144" - ], "x-ms-client-request-id": [ - "61250d6b-2bb2-42af-8c49-aad75df39069" + "b253a2f4-dedc-4d55-8dc9-cfb38479cb80" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"tsuJtz4GnRPBRX1pXdpzgrHHIPigToENv5hXaZmd3mU=\",\r\n \"secondaryKey\": \"PHhb122F5ciD8XFxaaSBywFZi/c449WK1lYCFSfm8wo=\"\r\n },\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "736" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "144" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/redis/redisteam0071?api-version=2018-03-01" + ], "x-ms-request-id": [ - "74d90f0e-ce04-42a5-a1cd-604792a097aa" + "0db1f110-2e06-4e7e-b1f5-5a3e44bad35e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "bb1f1852-2e0a-4a04-b054-10cd2aed7b90" + "99ae67e8-6880-4c1f-a494-57a543f6f202" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230146Z:bb1f1852-2e0a-4a04-b054-10cd2aed7b90" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204939Z:99ae67e8-6880-4c1f-a494-57a543f6f202" ], "Date": [ - "Wed, 21 Feb 2018 23:01:45 GMT" + "Fri, 08 Nov 2019 20:49:39 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/redis/redisteam0071?api-version=2017-10-01" + "Content-Length": [ + "736" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"9TRMzfxdqExcXZ605pvRo2IZvUKdzFYyrJC+D8MN8fE=\",\r\n \"secondaryKey\": \"fynyeQ7h5WfbiaWQX1oThWE1DnlnKc0I2Bkt7O1K50U=\"\r\n },\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5e0dc57-d586-46e7-b3a7-300fc3c065d1" + "619605f1-0e77-4c7f-abfb-ad818e7f54ac" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"tsuJtz4GnRPBRX1pXdpzgrHHIPigToENv5hXaZmd3mU=\",\r\n \"secondaryKey\": \"PHhb122F5ciD8XFxaaSBywFZi/c449WK1lYCFSfm8wo=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "60f37e07-5f81-44e7-9aa8-98c7974abbf9" + "f7b4b8c2-53f3-46b8-9f77-d40ec3b6564b" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "a900a061-76b9-4fe8-887b-78e221ccb9a1" + "ba6eac69-abaa-40e2-b7b5-2ead8e72ea81" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230146Z:a900a061-76b9-4fe8-887b-78e221ccb9a1" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204939Z:ba6eac69-abaa-40e2-b7b5-2ead8e72ea81" ], "Date": [ - "Wed, 21 Feb 2018 23:01:45 GMT" + "Fri, 08 Nov 2019 20:49:39 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"primaryKey\": \"9TRMzfxdqExcXZ605pvRo2IZvUKdzFYyrJC+D8MN8fE=\",\r\n \"secondaryKey\": \"fynyeQ7h5WfbiaWQX1oThWE1DnlnKc0I2Bkt7O1K50U=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27f88046-2c60-42a1-ba27-90d64ae7f3e4" + "5037b35f-163f-4a10-b6e7-8e53bb86bac1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam0072' under resource group 'PowerShellTest-7' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "155" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -403,7288 +537,8699 @@ "gateway" ], "x-ms-request-id": [ - "7be39d9e-d765-42de-b371-e8c67a64e009" + "4e5bde1d-d3aa-4e34-92f7-5d6754e1157f" ], "x-ms-correlation-request-id": [ - "7be39d9e-d765-42de-b371-e8c67a64e009" + "4e5bde1d-d3aa-4e34-92f7-5d6754e1157f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230146Z:7be39d9e-d765-42de-b371-e8c67a64e009" + "WESTUS:20191108T204939Z:4e5bde1d-d3aa-4e34-92f7-5d6754e1157f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:01:45 GMT" - ] - }, + "Fri, 08 Nov 2019 20:49:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "155" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam0072' under resource group 'PowerShellTest-7' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", "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 },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "144" - ], "x-ms-client-request-id": [ - "a5e2b32e-f805-4863-b4fb-3390fcbe7660" + "df463fc0-24d9-477a-9a27-6ebd0ef31c6b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"2eOpTMcnaNkwF/vyLdLbKvmErimGE5HnpDznsMcbrcA=\",\r\n \"secondaryKey\": \"Rz2nEDnXuGB8bvgotNqPFAbSpwgbYirVxxUdr6dqbS8=\"\r\n },\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "736" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "144" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/redis/redisteam0072?api-version=2018-03-01" + ], "x-ms-request-id": [ - "6c0cafcd-f1fe-4020-88d8-230229b8ac35" + "49eb2126-9c17-4310-b60c-a71ab03ac092" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "4397fdb7-0a12-42e3-85ab-fe9c3675926b" + "58893f01-344b-4ad3-bfb5-cb4004016809" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230150Z:4397fdb7-0a12-42e3-85ab-fe9c3675926b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204941Z:58893f01-344b-4ad3-bfb5-cb4004016809" ], "Date": [ - "Wed, 21 Feb 2018 23:01:49 GMT" + "Fri, 08 Nov 2019 20:49:41 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/redis/redisteam0072?api-version=2017-10-01" + "Content-Length": [ + "737" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"hVuO3Xcd2pKT18uwfO3KYLD9+kbYGYm5fgiz7AiiX2Q=\",\r\n \"secondaryKey\": \"a32symLvkKjL5lJIgtseIy58db3IFOaDmXLHBfqnQ3c=\"\r\n },\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2fbe887-de33-47b4-852b-bfd79213a04e" + "17c75d73-ff60-4bb4-8920-579bec8fb6e2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"2eOpTMcnaNkwF/vyLdLbKvmErimGE5HnpDznsMcbrcA=\",\r\n \"secondaryKey\": \"Rz2nEDnXuGB8bvgotNqPFAbSpwgbYirVxxUdr6dqbS8=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ff05a354-3bb6-4ff8-a5cf-a4be9c56fb2f" + "9c574f6e-1815-4aa5-9527-366f6b0a18d5" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "5c31023c-4a67-41ac-9362-99d64841c994" + "53873518-3d11-4732-b1d0-ae88b1094d1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230150Z:5c31023c-4a67-41ac-9362-99d64841c994" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204941Z:53873518-3d11-4732-b1d0-ae88b1094d1a" ], "Date": [ - "Wed, 21 Feb 2018 23:01:50 GMT" + "Fri, 08 Nov 2019 20:49:41 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"primaryKey\": \"hVuO3Xcd2pKT18uwfO3KYLD9+kbYGYm5fgiz7AiiX2Q=\",\r\n \"secondaryKey\": \"a32symLvkKjL5lJIgtseIy58db3IFOaDmXLHBfqnQ3c=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d385222-6afa-4a13-ab18-595ac36f1c35" + "2795c09b-59d3-44fb-94f4-551f19a05e6f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "6975cd7d-d2fd-4c06-bec1-3b36735ec164", - "7747091e-59bf-4c66-a3eb-0c1685f5d12e" + "6e7cd94d-92b6-4b23-aa13-62fbd951ed23", + "c795b7e7-c363-42d8-b26d-986f70170b51" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11997" ], "x-ms-request-id": [ - "bb85cd3e-920c-49e4-b567-7e665fda31ee" + "c961de91-456a-4528-8da7-0711e134551d" ], "x-ms-correlation-request-id": [ - "bb85cd3e-920c-49e4-b567-7e665fda31ee" + "c961de91-456a-4528-8da7-0711e134551d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230220Z:bb85cd3e-920c-49e4-b567-7e665fda31ee" + "WESTUS:20191108T205011Z:c961de91-456a-4528-8da7-0711e134551d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:02:20 GMT" + "Fri, 08 Nov 2019 20:50:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "017942b2-b028-4455-8354-313209d95a70" + "9dc02e0a-b2e1-4bb5-b7f8-b2d6deeef0e9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "32f78ede-6a7e-4042-b81b-b2f341fcdeff", - "676645cb-5e91-4c64-b9c5-425963c80186" + "b415efdc-5fdf-44c8-9c72-552033f0a016", + "1187e3aa-3346-4a63-bc98-cf31421963b1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11996" ], "x-ms-request-id": [ - "f35a3f0c-1430-418f-9d08-c5861129b93f" + "a080be0a-c13b-4d4a-af3a-73dbe8b35e27" ], "x-ms-correlation-request-id": [ - "f35a3f0c-1430-418f-9d08-c5861129b93f" + "a080be0a-c13b-4d4a-af3a-73dbe8b35e27" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230251Z:f35a3f0c-1430-418f-9d08-c5861129b93f" + "WESTUS:20191108T205041Z:a080be0a-c13b-4d4a-af3a-73dbe8b35e27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:02:50 GMT" + "Fri, 08 Nov 2019 20:50:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31516d53-15dc-4fee-8de2-d96950dcb1b9" + "e6c26a78-ffa3-466e-9974-45d42fc792e0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "9f56625b-c5af-412e-b8fa-33c8f2a765e0", - "5eaf0c7b-ef51-488b-a529-8b2080132d3c" + "9f615db0-50c5-4194-8990-7436728d2c0b", + "81d392dc-24ca-42f9-87ca-fd00b490884a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11995" ], "x-ms-request-id": [ - "bb07cf68-e69a-48b9-9c90-ab163340cd46" + "bbc4fec8-3816-454d-af41-67daced12d27" ], "x-ms-correlation-request-id": [ - "bb07cf68-e69a-48b9-9c90-ab163340cd46" + "bbc4fec8-3816-454d-af41-67daced12d27" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230321Z:bb07cf68-e69a-48b9-9c90-ab163340cd46" + "WESTUS:20191108T205111Z:bbc4fec8-3816-454d-af41-67daced12d27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:03:21 GMT" + "Fri, 08 Nov 2019 20:51:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c65236d9-dc00-417c-86ab-b246c68b6c22" + "3f9c06d6-cc5a-4b8a-b89a-aaaddb320799" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "677a5530-d50d-48a4-9e41-79df81c395f5", - "caa3ad82-9eba-4a30-9b42-5e9277bd6fbc" + "2ca6bd91-6748-4ac2-9b9a-d656ba8df742", + "56dda8dc-94c5-4d5d-8db6-befdd0cab55e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11994" ], "x-ms-request-id": [ - "c617cb23-58d9-4d7c-87e0-0d47eb2952b0" + "5671d591-066f-4353-93b4-70def782b44f" ], "x-ms-correlation-request-id": [ - "c617cb23-58d9-4d7c-87e0-0d47eb2952b0" + "5671d591-066f-4353-93b4-70def782b44f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230351Z:c617cb23-58d9-4d7c-87e0-0d47eb2952b0" + "WESTUS:20191108T205142Z:5671d591-066f-4353-93b4-70def782b44f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:03:50 GMT" + "Fri, 08 Nov 2019 20:51:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "784c098b-31f8-4c08-8fcb-afb0ae358686" + "31b1ba8b-2fa8-4da4-bb8b-55e8b1edd976" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "0f699644-7721-44d3-891c-5e4747c23fb4", - "8c77f6fb-eb47-4230-8b27-b6ab3a35b7ea" + "f55f6b58-b20a-4be5-b677-8933ab062a57", + "79352bef-84e8-4eeb-8a71-1b39af6e3ee9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11993" ], "x-ms-request-id": [ - "6110bc0e-ed69-41d9-a69e-3dc00b7c0575" + "661d7a78-18eb-4605-80ad-98c4eb34bd88" ], "x-ms-correlation-request-id": [ - "6110bc0e-ed69-41d9-a69e-3dc00b7c0575" + "661d7a78-18eb-4605-80ad-98c4eb34bd88" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230421Z:6110bc0e-ed69-41d9-a69e-3dc00b7c0575" + "WESTUS:20191108T205212Z:661d7a78-18eb-4605-80ad-98c4eb34bd88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:04:20 GMT" + "Fri, 08 Nov 2019 20:52:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cbb4e89-8478-43b0-a2be-eadb063bbf95" + "fe0d8b16-b04b-4367-9377-344877477b27" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "86b3bfd0-2590-4990-ae66-ba9bf87a20b8", - "0d8bd872-5d02-47f9-87cf-4cfd8e60eff7" + "d2f753ca-65cb-4b6f-a68b-612be632f0d1", + "15774a7b-2f28-4e46-b2e9-31aa2900e35f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11992" ], "x-ms-request-id": [ - "b84374ff-e3c9-4f1a-9224-47713d1ec824" + "38e5cf4c-9870-4423-970f-aec340606c9d" ], "x-ms-correlation-request-id": [ - "b84374ff-e3c9-4f1a-9224-47713d1ec824" + "38e5cf4c-9870-4423-970f-aec340606c9d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230451Z:b84374ff-e3c9-4f1a-9224-47713d1ec824" + "WESTUS:20191108T205242Z:38e5cf4c-9870-4423-970f-aec340606c9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:04:51 GMT" + "Fri, 08 Nov 2019 20:52:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94c135dc-7879-4fc1-b966-331fc6276228" + "3a01d8e1-b93b-4a4c-9c30-7525c231d030" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "e1b09257-b473-4553-903c-e23e75caf5d7", - "0c26fa80-8055-4ebc-9be1-5eb405e0312d" + "566521e7-1356-4fb2-83e6-a3e3a5d190f3", + "41d85653-138b-485b-a17c-f7bc01324dbf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11991" ], "x-ms-request-id": [ - "a5539492-5499-4108-9498-58baa2a0b3bc" + "3e9d2e1d-5938-43ac-9fa0-55d59b8eb0bd" ], "x-ms-correlation-request-id": [ - "a5539492-5499-4108-9498-58baa2a0b3bc" + "3e9d2e1d-5938-43ac-9fa0-55d59b8eb0bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230521Z:a5539492-5499-4108-9498-58baa2a0b3bc" + "WESTUS:20191108T205312Z:3e9d2e1d-5938-43ac-9fa0-55d59b8eb0bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:05:21 GMT" + "Fri, 08 Nov 2019 20:53:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4ccddc7-7714-4546-be96-cde3c1087673" + "d9be9383-f369-441e-a056-54c9d976316f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "ba23fa1b-a076-4349-b8c4-95f4d776cc42", - "16936152-8649-4e62-81d3-3ba7a93b87a3" + "9f8fbb81-a520-4a06-8469-a613102e831d", + "46306e17-bbd1-486a-a463-6b558b420f63" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11990" ], "x-ms-request-id": [ - "41391a31-2735-4612-8b23-7795175c704c" + "df6d281f-9d9d-4893-9171-c18afbb8feea" ], "x-ms-correlation-request-id": [ - "41391a31-2735-4612-8b23-7795175c704c" + "df6d281f-9d9d-4893-9171-c18afbb8feea" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230551Z:41391a31-2735-4612-8b23-7795175c704c" + "WESTUS:20191108T205343Z:df6d281f-9d9d-4893-9171-c18afbb8feea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:05:50 GMT" + "Fri, 08 Nov 2019 20:53:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9556f043-1683-4cde-b278-5bbee5df0911" + "77b00d28-e585-46eb-b2c1-7fcf6fbabed8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "903044a5-ace0-4bcc-bff3-8f7777048657", - "7d6dd4de-0b7a-4f6c-aabf-bec78b236e56" + "85ffdfed-9bbd-46d2-bd93-1bfd98ce9b9c", + "1381264a-da9d-45a9-b99f-60ece80fd928" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11989" ], "x-ms-request-id": [ - "6c1d7c12-95e0-4faf-8c01-559440566c9d" + "1c056368-cd03-42e2-85f1-29ac7922b494" ], "x-ms-correlation-request-id": [ - "6c1d7c12-95e0-4faf-8c01-559440566c9d" + "1c056368-cd03-42e2-85f1-29ac7922b494" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230622Z:6c1d7c12-95e0-4faf-8c01-559440566c9d" + "WESTUS:20191108T205413Z:1c056368-cd03-42e2-85f1-29ac7922b494" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:06:21 GMT" + "Fri, 08 Nov 2019 20:54:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff0825f7-973d-47b7-a052-8b43c5be561e" + "5b5066b5-2c88-418d-9686-e8166f76eb1e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "9c4e16be-c703-4510-a408-8cadf33e12c9", - "50ca8391-a26e-4573-a7d4-2cdf4c267412" + "30ef33d6-ef88-4961-ac98-711af5bdcc09", + "72b31210-7d55-4cbc-8bb0-5a4afc0b8309" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "11988" ], "x-ms-request-id": [ - "f2ae7b83-3bd2-48b4-9e20-0da3f546076f" + "32ccae24-47eb-4342-9abc-69c1fe470b93" ], "x-ms-correlation-request-id": [ - "f2ae7b83-3bd2-48b4-9e20-0da3f546076f" + "32ccae24-47eb-4342-9abc-69c1fe470b93" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230652Z:f2ae7b83-3bd2-48b4-9e20-0da3f546076f" + "WESTUS:20191108T205443Z:32ccae24-47eb-4342-9abc-69c1fe470b93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:06:51 GMT" + "Fri, 08 Nov 2019 20:54:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a465319f-8d4f-4235-a9be-f8350de32f9d" + "0a44fcc3-bee9-4132-a138-15253894eac8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "2f65935c-cebd-4204-9d10-e220dd279991", - "ed1ab1f9-3688-415b-b911-5190e4d969d1" + "8b7ae5f2-e686-439d-886f-93c53c2f7660", + "edc5c628-368e-46d4-b13f-c6bd734dff03" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "11987" ], "x-ms-request-id": [ - "cce24f1f-99fb-4a16-9a78-356dba61688c" + "e3cc0acb-ff4b-4574-b81b-4020ffd2e3a8" ], "x-ms-correlation-request-id": [ - "cce24f1f-99fb-4a16-9a78-356dba61688c" + "e3cc0acb-ff4b-4574-b81b-4020ffd2e3a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230722Z:cce24f1f-99fb-4a16-9a78-356dba61688c" + "WESTUS:20191108T205513Z:e3cc0acb-ff4b-4574-b81b-4020ffd2e3a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:07:22 GMT" + "Fri, 08 Nov 2019 20:55:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9399afcf-4a3e-4a03-b122-b11527483515" + "62dbf527-4123-4dbe-9ce2-b05af17d64fe" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "76b327a4-def3-4045-b2ef-ac55b9036637", - "bea4219b-0cd4-49b8-9008-4cfd291b5040" + "7f9601f8-9cdc-4895-8245-07ee73a2aa40", + "573aa689-2a3d-4347-9967-98f60891a15d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "11986" ], "x-ms-request-id": [ - "6afee49f-50aa-42a1-a53f-9ae0ccb46cba" + "48aeb630-5cdd-4677-8b87-e32eb72573a9" ], "x-ms-correlation-request-id": [ - "6afee49f-50aa-42a1-a53f-9ae0ccb46cba" + "48aeb630-5cdd-4677-8b87-e32eb72573a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230752Z:6afee49f-50aa-42a1-a53f-9ae0ccb46cba" + "WESTUS:20191108T205543Z:48aeb630-5cdd-4677-8b87-e32eb72573a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:07:52 GMT" + "Fri, 08 Nov 2019 20:55:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a12859d-2dd1-4bc1-8892-d0ef355b0e17" + "60830ad7-7f6d-475d-bde5-dfd8f16f3219" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "b1da360b-e694-4594-bf7b-1657e4342078", - "4ce41d68-0723-4111-9dfe-589c3f5b4315" + "f0b20a4d-e4ac-41ac-949c-4e0dd8d18891", + "d2f9b80a-de7a-45ec-b3a9-cb62cc77bfbd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "11985" ], "x-ms-request-id": [ - "311f1fc6-258e-4857-a951-562d90d27fd0" + "22e49095-b872-4d99-a493-4f7bcdc14765" ], "x-ms-correlation-request-id": [ - "311f1fc6-258e-4857-a951-562d90d27fd0" + "22e49095-b872-4d99-a493-4f7bcdc14765" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230822Z:311f1fc6-258e-4857-a951-562d90d27fd0" + "WESTUS:20191108T205614Z:22e49095-b872-4d99-a493-4f7bcdc14765" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:08:21 GMT" + "Fri, 08 Nov 2019 20:56:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1ac24e3-85db-4022-8b9b-4f2e2a46d268" + "81be4cc7-c39c-4c8f-8cb1-34cd68b236df" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "bf7524e6-8241-42bd-a12d-f63d96737369", - "1434acc9-1342-467f-8d50-38841f6cbf88" + "72c90e5c-d932-481e-bda8-9c2f5f8a9fba", + "aa0cffad-2c6b-4433-bb71-eeb3f3193d40" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "11984" ], "x-ms-request-id": [ - "62de81a4-e52d-4461-a7f9-c2502c2cf7cb" + "2f886193-8816-4768-9da1-d61f7ed6eadf" ], "x-ms-correlation-request-id": [ - "62de81a4-e52d-4461-a7f9-c2502c2cf7cb" + "2f886193-8816-4768-9da1-d61f7ed6eadf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230852Z:62de81a4-e52d-4461-a7f9-c2502c2cf7cb" + "WESTUS:20191108T205644Z:2f886193-8816-4768-9da1-d61f7ed6eadf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:08:52 GMT" + "Fri, 08 Nov 2019 20:56:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2aeccfd0-521b-4059-be91-e7fba011aca5" + "55b553ae-a595-4e9a-93b9-11bde26c5481" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "3ff9951c-cc26-44fb-b697-fad525025c58", - "9223de04-f278-4e3e-a827-6d6062013387" + "fc9b75ae-04a0-4899-80c4-59b83f191d66", + "cc918b63-6604-4618-a21c-252de3408f82" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "11983" ], "x-ms-request-id": [ - "7f043978-cb58-498d-b87f-7568b5abbda3" + "89ad1164-aef8-4d51-b548-b689aab5c090" ], "x-ms-correlation-request-id": [ - "7f043978-cb58-498d-b87f-7568b5abbda3" + "89ad1164-aef8-4d51-b548-b689aab5c090" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230922Z:7f043978-cb58-498d-b87f-7568b5abbda3" + "WESTUS:20191108T205714Z:89ad1164-aef8-4d51-b548-b689aab5c090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:09:22 GMT" + "Fri, 08 Nov 2019 20:57:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd41cbd-c235-4889-b295-f328b69d52f0" + "3c659c9a-298d-4453-97f2-399a36b9b55e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "5355695c-9dbf-4d70-812f-1ee966674012", - "8ee78004-29ad-4294-ad9d-3595140db5e9" + "5605c425-13ef-40d0-85ee-b0b215044965", + "9f8b0224-27bb-4d9d-aa1d-cf518c8570a7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "11982" ], "x-ms-request-id": [ - "69f9a7fe-2191-4058-a327-57b7c54069d0" + "687a6f66-ed6a-4932-a39b-d4f8c1bcab2c" ], "x-ms-correlation-request-id": [ - "69f9a7fe-2191-4058-a327-57b7c54069d0" + "687a6f66-ed6a-4932-a39b-d4f8c1bcab2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230952Z:69f9a7fe-2191-4058-a327-57b7c54069d0" + "WESTUS:20191108T205745Z:687a6f66-ed6a-4932-a39b-d4f8c1bcab2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:09:52 GMT" + "Fri, 08 Nov 2019 20:57:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8716ee43-fd46-42de-a3e9-7670be2be6fb" + "b1d5738d-94d4-46ed-9ca1-67e876c7b60b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "c1796e38-d363-43e0-9b5a-3e8432d0a61e", - "77a30129-fdec-4ccd-ab15-1bb1ba04744c" + "45a5539d-5bb8-4fba-af13-7e606a67fb73", + "5e817902-8a51-49d5-9242-9030e753d4ad" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "11981" ], "x-ms-request-id": [ - "dd52206e-6df7-44d2-981d-6196a7bc2771" + "4dcab434-e4d2-4b4a-881d-f083c6482ba3" ], "x-ms-correlation-request-id": [ - "dd52206e-6df7-44d2-981d-6196a7bc2771" + "4dcab434-e4d2-4b4a-881d-f083c6482ba3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231023Z:dd52206e-6df7-44d2-981d-6196a7bc2771" + "WESTUS:20191108T205815Z:4dcab434-e4d2-4b4a-881d-f083c6482ba3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:10:23 GMT" + "Fri, 08 Nov 2019 20:58:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc501a52-2b6b-4ed5-9001-ffcf8fd402aa" + "18385f50-d9cc-422f-b9bb-bd3820186fed" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "8fd08705-458b-48d0-9b01-2f238067751b", - "d24198cf-7cf6-4a67-a956-b7f68efed774" + "b393db08-2c41-4435-94db-6cf8ba02a11c", + "9786c793-4b30-4a2b-b242-5b9d7c38a9f9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "11980" ], "x-ms-request-id": [ - "7ff11a2b-4f70-45cf-a9f8-04a561d410a5" + "1c6f4e5c-fa76-4fff-a3c6-ddc60734b116" ], "x-ms-correlation-request-id": [ - "7ff11a2b-4f70-45cf-a9f8-04a561d410a5" + "1c6f4e5c-fa76-4fff-a3c6-ddc60734b116" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231053Z:7ff11a2b-4f70-45cf-a9f8-04a561d410a5" + "WESTUS:20191108T205846Z:1c6f4e5c-fa76-4fff-a3c6-ddc60734b116" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:10:52 GMT" + "Fri, 08 Nov 2019 20:58:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a21e938-06c8-438a-8274-06b7b55c69a6" + "5c8fae21-9d7d-493e-8c5a-2f5ea21dcfcb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "66be80e7-93f8-4551-b2ea-da0d55824bc7", - "3a3d3772-90da-4d04-9c1d-cec338485c08" + "d5b29eb3-b41f-44ee-9405-486b58291895", + "f2f342c3-4c74-419c-bb9f-c08569602a00" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "11979" ], "x-ms-request-id": [ - "b85699c6-6e20-437a-b7a9-df3dc77e0a6f" + "8f43d39d-4d56-416b-916f-65d4f70099bc" ], "x-ms-correlation-request-id": [ - "b85699c6-6e20-437a-b7a9-df3dc77e0a6f" + "8f43d39d-4d56-416b-916f-65d4f70099bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231123Z:b85699c6-6e20-437a-b7a9-df3dc77e0a6f" + "WESTUS:20191108T205916Z:8f43d39d-4d56-416b-916f-65d4f70099bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:11:22 GMT" + "Fri, 08 Nov 2019 20:59:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5959051-2fe9-4653-9f35-07c286899a16" + "32b040bd-bbfe-4172-b6dd-474c4cec1d7a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "9bd30bf2-6d81-4f54-bce1-9d2545dbdaa3", - "77a43bec-03a8-480d-8833-402715f1d4f7" + "38edbf37-56e0-43d3-91c9-421228e20a43", + "54ccbc85-4989-453a-9143-a9a3e53cb8f0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "11978" ], "x-ms-request-id": [ - "68e05f5c-4141-4a54-9f74-dc8a8a259e19" + "20cb1798-b3c2-4eb6-b053-e37131f8fdc3" ], "x-ms-correlation-request-id": [ - "68e05f5c-4141-4a54-9f74-dc8a8a259e19" + "20cb1798-b3c2-4eb6-b053-e37131f8fdc3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231153Z:68e05f5c-4141-4a54-9f74-dc8a8a259e19" + "WESTUS:20191108T205946Z:20cb1798-b3c2-4eb6-b053-e37131f8fdc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:11:53 GMT" + "Fri, 08 Nov 2019 20:59:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "173bd275-7f50-4ba7-b6f2-6f0c4689e7f0" + "79fe51fd-fd7c-4300-81d2-37cd0db78508" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1247" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "afc69891-d1e3-4f3e-85a6-301d6f1898e3", - "e9dc9c57-eda3-4b25-b2b7-fbbf8ee71777" + "549551cc-7aa2-47b3-bbe3-ec53a8abc65d", + "6438319f-4c7a-452d-9a30-595cc496cf41" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "11977" ], "x-ms-request-id": [ - "bd2357f1-dffa-4489-b375-777d7df78916" + "f46f9960-2a84-4748-8888-8de3e69257c2" ], "x-ms-correlation-request-id": [ - "bd2357f1-dffa-4489-b375-777d7df78916" + "f46f9960-2a84-4748-8888-8de3e69257c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231223Z:bd2357f1-dffa-4489-b375-777d7df78916" + "WESTUS:20191108T210016Z:f46f9960-2a84-4748-8888-8de3e69257c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:12:23 GMT" - ] - }, + "Fri, 08 Nov 2019 21:00:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5db5222a-b50d-43dd-b30b-84a529ad368a" + "5b365f1a-2984-47c0-8471-3cdcea77ad1b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "d04ea086-5c7d-4e8e-8ae7-7efcb8e11a80", - "a5b23b9b-4062-4e5a-bb92-340e3abfc720" + "b1254414-695e-43bd-a131-b3cb33349167", + "488f007a-79bf-459e-a2e7-84722fbb3666" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "11976" ], "x-ms-request-id": [ - "53e02548-f53a-4103-8473-5c0a5effd926" + "321f8f5b-5f4e-4623-8fad-ccc79cc4e446" ], "x-ms-correlation-request-id": [ - "53e02548-f53a-4103-8473-5c0a5effd926" + "321f8f5b-5f4e-4623-8fad-ccc79cc4e446" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231253Z:53e02548-f53a-4103-8473-5c0a5effd926" + "WESTUS:20191108T210046Z:321f8f5b-5f4e-4623-8fad-ccc79cc4e446" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:12:53 GMT" + "Fri, 08 Nov 2019 21:00:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8b79b63-2e43-4699-89f2-739fa1c05ba5" + "23c0726a-eb43-42b6-938a-5fc39080fe7c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "deaeecde-a717-4c44-b3be-41ded6c873cd", - "0099041e-5177-4ae4-b0f4-25f9b66ef51f" + "50755b38-3106-4f91-800b-12221d48e6df", + "0ce33c0b-9958-403e-9d20-59d53a13d78e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "11975" ], "x-ms-request-id": [ - "37262b14-569e-42ce-b309-80e52866a28d" + "ff9129f4-1408-4f6b-9edb-2ee253428c52" ], "x-ms-correlation-request-id": [ - "37262b14-569e-42ce-b309-80e52866a28d" + "ff9129f4-1408-4f6b-9edb-2ee253428c52" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231323Z:37262b14-569e-42ce-b309-80e52866a28d" + "WESTUS:20191108T210117Z:ff9129f4-1408-4f6b-9edb-2ee253428c52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:13:23 GMT" + "Fri, 08 Nov 2019 21:01:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "219573ab-c4cc-41bd-ae29-3b5f07617140" + "794cab36-160a-4122-b998-1cd3b4e3219d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "dc25cf31-fed9-46a2-a28e-167750e780a4", - "31357a0c-ee7d-4bb3-a24b-20ab5a5afae3" + "673dec89-d4ca-4226-a3aa-ab1f02f92a1d", + "5196eb48-514f-4cae-8c92-585a17421f09" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "11974" ], "x-ms-request-id": [ - "446abc5e-e1be-4acd-acf9-3a09554b1301" + "4a1053e9-55f4-4b02-ae67-4f0b4bead9f8" ], "x-ms-correlation-request-id": [ - "446abc5e-e1be-4acd-acf9-3a09554b1301" + "4a1053e9-55f4-4b02-ae67-4f0b4bead9f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231354Z:446abc5e-e1be-4acd-acf9-3a09554b1301" + "WESTUS:20191108T210147Z:4a1053e9-55f4-4b02-ae67-4f0b4bead9f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:13:53 GMT" + "Fri, 08 Nov 2019 21:01:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0bf39aac-cfca-4c61-b361-099ff5ca18cc" + "8c9d7c8e-fa64-4186-93d1-e484b6c68589" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "2ee65993-37b8-4fec-824e-2ba827ca4144", - "b5eaf1ac-3453-4587-8ab2-c5412e8a4a21" + "d71e9436-a53d-48c8-bbfd-8c030e57d1f7", + "da766f0e-c5dd-48d6-88ac-c64f344d2639" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "11973" ], "x-ms-request-id": [ - "b49d6c01-2442-42af-821a-61ab59b36c9c" + "c607276b-cccd-4064-a302-ffe2de2e0135" ], "x-ms-correlation-request-id": [ - "b49d6c01-2442-42af-821a-61ab59b36c9c" + "c607276b-cccd-4064-a302-ffe2de2e0135" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231424Z:b49d6c01-2442-42af-821a-61ab59b36c9c" + "WESTUS:20191108T210217Z:c607276b-cccd-4064-a302-ffe2de2e0135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:14:23 GMT" + "Fri, 08 Nov 2019 21:02:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d798d339-970c-4dd6-8399-a2eabb0d7355" + "8097b3a9-d1c9-4b40-b256-057cd90de375" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "28f94200-dfbc-4e50-9f26-4cac9b456044", - "c505512a-3fab-4ff1-b5a5-bd797e4308c2" + "2e51b9af-c80c-435c-9096-6b42d82ffc6c", + "d66b358c-dde9-49dc-a925-588eeabfe7c6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "11972" ], "x-ms-request-id": [ - "cae0b9f2-7027-45b0-a367-2b67da29cb4e" + "daf1cd6d-fefc-4059-bc94-6e652fb5ee5e" ], "x-ms-correlation-request-id": [ - "cae0b9f2-7027-45b0-a367-2b67da29cb4e" + "daf1cd6d-fefc-4059-bc94-6e652fb5ee5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231454Z:cae0b9f2-7027-45b0-a367-2b67da29cb4e" + "WESTUS:20191108T210247Z:daf1cd6d-fefc-4059-bc94-6e652fb5ee5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:14:54 GMT" + "Fri, 08 Nov 2019 21:02:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1250" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa2803ff-01a6-46d6-94bb-0e889819b794" + "52b3b714-1b2c-4635-b0f6-41782f29a940" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "6d0d7e3a-0f0a-4040-a9a0-e562941bf0ef", - "d7a62d58-6fb4-49b1-899a-2085cc2d012e" + "1b3d7ab6-9143-4ea7-993f-3a34445dfb9c", + "084ba7f5-dfa4-476e-ba48-b94f8d706849", + "05c0333c-434f-4f7b-b205-e0e920cd93ed" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "11971" ], "x-ms-request-id": [ - "d8c82c69-7f12-4f1a-819a-8e583cdd3a5e" + "2edee0c3-21e5-4556-8e9f-f3ea43b2fd36" ], "x-ms-correlation-request-id": [ - "d8c82c69-7f12-4f1a-819a-8e583cdd3a5e" + "2edee0c3-21e5-4556-8e9f-f3ea43b2fd36" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231524Z:d8c82c69-7f12-4f1a-819a-8e583cdd3a5e" + "WESTUS:20191108T210247Z:2edee0c3-21e5-4556-8e9f-f3ea43b2fd36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:15:23 GMT" + "Fri, 08 Nov 2019 21:02:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1974" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe5fb0ac-9889-4c83-b53d-095a8123e23f" + "1c932ec4-fb72-4c90-8089-bab220de6a5a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "3bd7a383-c692-47f8-87db-5f67837d6964", - "a8f4aa58-b787-47b3-a228-aa6457911b76" + "c54c5fee-d040-43d5-b3f5-6ee038776df9", + "a7fe0fce-8454-4360-9364-d912be913302", + "78fe62f9-16ff-4eb5-86a8-9047e38c3074" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "11970" ], "x-ms-request-id": [ - "ccda20e2-db45-4f32-95b3-d82bff101334" + "663f8bb3-2678-4125-a4e3-6159fc2cb638" ], "x-ms-correlation-request-id": [ - "ccda20e2-db45-4f32-95b3-d82bff101334" + "663f8bb3-2678-4125-a4e3-6159fc2cb638" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231554Z:ccda20e2-db45-4f32-95b3-d82bff101334" + "WESTUS:20191108T210247Z:663f8bb3-2678-4125-a4e3-6159fc2cb638" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:15:54 GMT" + "Fri, 08 Nov 2019 21:02:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1974" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56fd4433-dbb7-42a2-8da5-bbba0220b86f" + "248c3b47-519e-40c6-948d-03032b977454" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "98f85977-3450-4b66-b276-6646a2546439", - "46847bf3-d7cf-4090-b978-f9b5e088d739" + "7e4721e2-bb21-4afb-b4b6-5114128a693a", + "92e1fec8-a9bb-49b0-9072-af0d8c05cc5a", + "92ab27af-1884-48db-9493-1925388cde90" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "11969" ], "x-ms-request-id": [ - "07986f60-33b5-41bb-ae23-41be080e81d3" + "d284370d-a932-4ae8-8fc7-d47ac6a22631" ], "x-ms-correlation-request-id": [ - "07986f60-33b5-41bb-ae23-41be080e81d3" + "d284370d-a932-4ae8-8fc7-d47ac6a22631" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231624Z:07986f60-33b5-41bb-ae23-41be080e81d3" + "WESTUS:20191108T210319Z:d284370d-a932-4ae8-8fc7-d47ac6a22631" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:16:23 GMT" + "Fri, 08 Nov 2019 21:03:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2304" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37e3f186-8ef1-437f-90dc-c5841331048e" + "a6681f53-2fea-4e2b-b64f-0d6d1c1ba125" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "321bffbc-ac29-4f5e-815a-958d70d13e09", - "711c5532-d5ac-4d54-9fcb-fcfaf18db84d" + "14a94557-310b-4a33-b326-9df2277faaea", + "5afe270a-0f73-4bf4-a1ad-1e9ce4d7f511", + "87cf254c-2da3-44a5-b958-306a6cad3e29" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "11967" ], "x-ms-request-id": [ - "ba40cbea-da89-4fc2-8536-aa7b102e2802" + "7fc9379b-cd9a-4c20-a621-d8abe5f7ddd1" ], "x-ms-correlation-request-id": [ - "ba40cbea-da89-4fc2-8536-aa7b102e2802" + "7fc9379b-cd9a-4c20-a621-d8abe5f7ddd1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231655Z:ba40cbea-da89-4fc2-8536-aa7b102e2802" + "WESTUS:20191108T210351Z:7fc9379b-cd9a-4c20-a621-d8abe5f7ddd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:16:54 GMT" + "Fri, 08 Nov 2019 21:03:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2304" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcbfcf14-1c2a-4db1-8a0e-8b6a097cc8a7" + "1f7d46d9-3687-4178-a5f6-6d2cc0d3888c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "89e3f851-f0a4-4bc3-9bbe-bbf77380981e", - "cc7b1d69-149e-41ae-93ef-efc0ee74382c" + "bc4757ea-7628-4617-9f07-c48bb9cf1f82", + "a93700d4-00fe-430c-9354-654f850f609e", + "d3b3e739-c778-4088-b639-d8fd714dd8a2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "11965" ], "x-ms-request-id": [ - "7d02a25e-e6b4-4003-93bd-071cb95e07d2" + "1843a752-6a0d-4f5b-b757-9e4a3b243f75" ], "x-ms-correlation-request-id": [ - "7d02a25e-e6b4-4003-93bd-071cb95e07d2" + "1843a752-6a0d-4f5b-b757-9e4a3b243f75" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231725Z:7d02a25e-e6b4-4003-93bd-071cb95e07d2" + "WESTUS:20191108T210421Z:1843a752-6a0d-4f5b-b757-9e4a3b243f75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:17:24 GMT" + "Fri, 08 Nov 2019 21:04:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2302" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbaf9c9c-d618-4979-8ecd-d50db109447c" + "4bafcd27-15d7-4f99-bb49-8afd0e21e4b8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "aeb13990-c362-40f0-80c3-e9773e173368", - "c8f3ad22-a8d6-4756-8c7a-4d126abe3644" + "54c4f790-1e68-444d-8757-16df06e48b5b", + "26d666b7-3dfb-478d-9dfd-307dd803dee7", + "9ca5ba71-aed5-4caa-853c-033f292d685e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "11963" ], "x-ms-request-id": [ - "bd15c034-0da1-419d-b35c-6e07103fc713" + "49c3968f-4786-4a06-a392-57832bfb620e" ], "x-ms-correlation-request-id": [ - "bd15c034-0da1-419d-b35c-6e07103fc713" + "49c3968f-4786-4a06-a392-57832bfb620e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231755Z:bd15c034-0da1-419d-b35c-6e07103fc713" + "WESTUS:20191108T210452Z:49c3968f-4786-4a06-a392-57832bfb620e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:17:55 GMT" + "Fri, 08 Nov 2019 21:04:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2302" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7328f76-e5cd-41b5-8146-4ac422a4891e" + "d0274475-1fb7-4bd4-b5e9-d195f90acd7c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "33a056d6-82b4-4025-91b1-d40c18cec2a1", - "7744e4e4-cfc8-4c1f-8f01-c8806d5aa57d" + "f8dc9310-b027-41fd-aa28-17397e979273", + "2423531f-37e0-4702-8439-86b001e3669c", + "f41cbc77-8dd5-43ed-b816-7cd8d64fce34" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "11961" ], "x-ms-request-id": [ - "4a76487c-2a3c-41e4-b3aa-72e8c15089ad" + "1b7c6f8c-9f74-4b86-9314-e9066051caec" ], "x-ms-correlation-request-id": [ - "4a76487c-2a3c-41e4-b3aa-72e8c15089ad" + "1b7c6f8c-9f74-4b86-9314-e9066051caec" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231825Z:4a76487c-2a3c-41e4-b3aa-72e8c15089ad" + "WESTUS:20191108T210522Z:1b7c6f8c-9f74-4b86-9314-e9066051caec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:18:24 GMT" + "Fri, 08 Nov 2019 21:05:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2302" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3244beb6-5456-4ca1-b65e-58c30e154a82" + "8b03eded-f7c9-47eb-965b-3561d20556b9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "7da29309-d5a8-47c0-8b82-72dc511c5786", - "c9f6f715-2592-4e42-b4f3-9de386243014" + "5951b444-54fb-4daf-b774-dd4a2df5304a", + "e44697df-bd8d-45f0-9c66-4e010374fa71", + "de4e5f39-a1d8-45c3-8ef7-bcde13c520dd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "11959" ], "x-ms-request-id": [ - "f5e035dd-e723-43cc-87ff-ae5f4ae11d76" + "37446d4b-a7c1-4c14-9259-9a7fa9380e1f" ], "x-ms-correlation-request-id": [ - "f5e035dd-e723-43cc-87ff-ae5f4ae11d76" + "37446d4b-a7c1-4c14-9259-9a7fa9380e1f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231855Z:f5e035dd-e723-43cc-87ff-ae5f4ae11d76" + "WESTUS:20191108T210553Z:37446d4b-a7c1-4c14-9259-9a7fa9380e1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:18:55 GMT" + "Fri, 08 Nov 2019 21:05:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2302" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d768ca9b-2b00-43f1-9d36-504e42467ab5" + "8d9293d1-201b-4215-b432-8925d87512e7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "3d09cbcb-8498-449e-b808-33a08d0aaace", - "2a6ad5a6-256f-4340-aef5-8d42b50f73a5" + "4164563e-f026-48a9-9d1d-0bf978cdf9f1", + "dc70a391-9b7b-4b11-9e38-560e11905a89", + "bd01a9ef-b8b3-4fde-b058-2039221065c6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "11957" ], "x-ms-request-id": [ - "7c5a1ee9-782c-46ee-9b92-3877c2997748" + "54e3f696-7b25-46d8-9b45-240ec6fa153f" ], "x-ms-correlation-request-id": [ - "7c5a1ee9-782c-46ee-9b92-3877c2997748" + "54e3f696-7b25-46d8-9b45-240ec6fa153f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231925Z:7c5a1ee9-782c-46ee-9b92-3877c2997748" + "WESTUS:20191108T210624Z:54e3f696-7b25-46d8-9b45-240ec6fa153f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:19:25 GMT" + "Fri, 08 Nov 2019 21:06:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2302" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f34d2908-ffbe-481d-b95b-257141eaa598" + "689a3a7e-936e-4d7e-b93b-172452ed5cb0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "1dca820c-8ff6-4a63-b2d4-e0c64459ccbf", - "eeb906f1-d8c3-483b-abae-a3c7c50293ce" + "79aa5823-f2f0-47f9-822c-afa8bdb24f8f", + "db77ea62-7b24-41b1-a069-0d1f0045f683", + "8c45edc1-9738-48d2-aadc-4a8452170cd3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "11955" ], "x-ms-request-id": [ - "cb195db9-ed28-486e-b908-6d88ae46e681" + "c0fa8a6b-1307-421e-8fcb-127f6f281d3a" ], "x-ms-correlation-request-id": [ - "cb195db9-ed28-486e-b908-6d88ae46e681" + "c0fa8a6b-1307-421e-8fcb-127f6f281d3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T231956Z:cb195db9-ed28-486e-b908-6d88ae46e681" + "WESTUS:20191108T210655Z:c0fa8a6b-1307-421e-8fcb-127f6f281d3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:19:55 GMT" + "Fri, 08 Nov 2019 21:06:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2302" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d8cb59f-6833-49e1-b30b-7040a4789b27" + "aa18fcea-3e49-4ec6-9898-e550b1d1ee3c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "d256f616-4f24-4bf9-a5e3-938b95cbcddb", - "6a9efc70-c2f3-4cf3-b0ef-f406bf9c2e25" + "df37e024-9538-4138-9f9f-410eddf8da38", + "caa384dd-5926-4ae3-90fd-1f0139682da7", + "109a9f53-41e3-4430-94c1-4f7da65edf2c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "11953" ], "x-ms-request-id": [ - "f06076a6-aad4-43de-b40e-6d959b09266a" + "e87649b8-fb02-4781-8fe3-1b299fb0bea6" ], "x-ms-correlation-request-id": [ - "f06076a6-aad4-43de-b40e-6d959b09266a" + "e87649b8-fb02-4781-8fe3-1b299fb0bea6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232026Z:f06076a6-aad4-43de-b40e-6d959b09266a" + "WESTUS:20191108T210725Z:e87649b8-fb02-4781-8fe3-1b299fb0bea6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:20:25 GMT" + "Fri, 08 Nov 2019 21:07:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2302" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51590982-778e-4fd6-a1d4-e5fbda1909fb" + "918d82f0-adb3-43e0-8aff-00009118c5ed" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "7624367c-ee3a-4172-abca-164fb0670b44", - "d6a9312c-39de-4238-92f8-e93c5c95b867" + "2622bcd7-9720-4eb9-9beb-b452e195d725", + "a36476f9-efb2-49a1-9806-533f82233b3d", + "88c90c31-e976-482b-a226-9e076e14cabd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "11951" ], "x-ms-request-id": [ - "f2630a07-aaca-4ea4-8981-7e7413b937d2" + "59300c97-a0ac-4b4d-a950-0a28fa03c17d" ], "x-ms-correlation-request-id": [ - "f2630a07-aaca-4ea4-8981-7e7413b937d2" + "59300c97-a0ac-4b4d-a950-0a28fa03c17d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232056Z:f2630a07-aaca-4ea4-8981-7e7413b937d2" + "WESTUS:20191108T210756Z:59300c97-a0ac-4b4d-a950-0a28fa03c17d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:20:56 GMT" + "Fri, 08 Nov 2019 21:07:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2302" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ab40cff-b1d7-44be-887b-1c8db87af568" + "94d508b8-56a7-4d3a-afb2-696e075b4af0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "35ec86a3-d5c2-400c-b43e-5a20f5fcfef4", - "6b8d3843-88a0-418b-a7b7-e03ae074af58" + "eb93e930-da37-4603-b839-7dfb7590ec13", + "c9d39c29-a824-4065-8287-94e4ee11da8d", + "7f87279f-782b-4b8e-bff2-e037f6c2d99e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "11949" ], "x-ms-request-id": [ - "f1e80314-b945-43e1-95f3-127387e4e419" + "355a3f3b-cd54-4c0e-954a-71aa13745d95" ], "x-ms-correlation-request-id": [ - "f1e80314-b945-43e1-95f3-127387e4e419" + "355a3f3b-cd54-4c0e-954a-71aa13745d95" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232126Z:f1e80314-b945-43e1-95f3-127387e4e419" + "WESTUS:20191108T210826Z:355a3f3b-cd54-4c0e-954a-71aa13745d95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:21:25 GMT" + "Fri, 08 Nov 2019 21:08:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2304" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ba49087-a052-43aa-a306-8a11c587db6b" + "e17d382a-8aff-49c6-af59-260fa9c4d12a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "4026d397-8d70-4fdc-a0b9-53c1d1b452ce", - "922e5021-74d8-40a5-b3ee-9e3d02a1e83e" + "da134a19-2177-416d-817f-7a0940947af8", + "0b5c533c-eed9-47c4-8b50-0d1a2c8ebe04", + "8a2e7e4c-22a6-4003-9fcd-fd0f13b3fe3b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "11947" ], "x-ms-request-id": [ - "7a4635ef-f6b0-4402-849b-2835996d2c42" + "c68a38d9-45a4-4ddc-8fe7-76b5595f6b7b" ], "x-ms-correlation-request-id": [ - "7a4635ef-f6b0-4402-849b-2835996d2c42" + "c68a38d9-45a4-4ddc-8fe7-76b5595f6b7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232156Z:7a4635ef-f6b0-4402-849b-2835996d2c42" + "WESTUS:20191108T210827Z:c68a38d9-45a4-4ddc-8fe7-76b5595f6b7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:21:55 GMT" + "Fri, 08 Nov 2019 21:08:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2304" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3caa117f-78f4-4764-ad58-0d7a61af7acd" + "c244a47d-be84-49f8-93a0-867f2dbddfc3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "3947bb26-acba-49c2-bbe7-56ac47796f40", - "897119d5-a432-417e-bb1a-42fa2f19167a" + "4ed461b3-6e44-4a79-a442-f3918edd1082", + "1aa5640e-ca86-4f2e-83ef-81faa04a1fdb", + "0cccad57-3ae9-4c6f-8dd6-e821d3ab2908" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "11945" ], "x-ms-request-id": [ - "083b23b9-1af6-4911-b88c-b0af508184ef" + "a5ec8b9f-f6f3-4124-ba7d-6bee472f47cb" ], "x-ms-correlation-request-id": [ - "083b23b9-1af6-4911-b88c-b0af508184ef" + "a5ec8b9f-f6f3-4124-ba7d-6bee472f47cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232226Z:083b23b9-1af6-4911-b88c-b0af508184ef" + "WESTUS:20191108T210827Z:a5ec8b9f-f6f3-4124-ba7d-6bee472f47cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:22:26 GMT" + "Fri, 08 Nov 2019 21:08:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2304" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "920f020a-0d0d-4669-a60a-6d0015a0c03a" + "7c168a27-3574-40d2-b176-9dd02c5f401c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "3b9f7345-a9a7-4685-ba84-c087ffec537e", - "882174af-2bd7-478d-906e-ab3ca4f7b722" + "202a776d-8867-4aff-af54-9ebed4ac4fee", + "4bc9ae01-5e6f-43d3-bb5c-aba3d65fcc88", + "801df824-3a76-457f-beab-6b228f9b797f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "11943" ], "x-ms-request-id": [ - "942f2ae3-05d7-44f5-b6ca-0896a71180cc" + "5d254d42-c62f-417e-9c78-71ebc845a1d1" ], "x-ms-correlation-request-id": [ - "942f2ae3-05d7-44f5-b6ca-0896a71180cc" + "5d254d42-c62f-417e-9c78-71ebc845a1d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232256Z:942f2ae3-05d7-44f5-b6ca-0896a71180cc" + "WESTUS:20191108T210827Z:5d254d42-c62f-417e-9c78-71ebc845a1d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:22:56 GMT" + "Fri, 08 Nov 2019 21:08:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2304" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6c87ef8-ca58-4307-9c13-66d8a099f520" + "7242c918-f7db-4764-9ea6-a7103863da80" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "de19cd1b-d631-4060-b4bb-236153ba9566", - "7c2aec14-bf13-4bd0-84b7-f86becf6c895" + "812dd7ec-9302-4b98-ac2b-a1c9cebdad4d", + "da47a3d2-0dc4-4279-b9a8-b0c42b623815", + "24344de5-9f7b-4959-932a-c2eb88e09c29" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "11941" ], "x-ms-request-id": [ - "8f9bca86-bf84-4c6a-83ba-2cac5944c088" + "2487f89e-1f05-416a-a4e1-d835e525cc75" ], "x-ms-correlation-request-id": [ - "8f9bca86-bf84-4c6a-83ba-2cac5944c088" + "2487f89e-1f05-416a-a4e1-d835e525cc75" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232327Z:8f9bca86-bf84-4c6a-83ba-2cac5944c088" + "WESTUS:20191108T210827Z:2487f89e-1f05-416a-a4e1-d835e525cc75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:23:26 GMT" + "Fri, 08 Nov 2019 21:08:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2304" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fd422a9-edbc-443d-807f-1fb6aeccad35" + "ecb9d33e-ed8f-4154-ac7f-9f4f62f0475e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "1fdd32ba-3182-4c74-a0b2-d6fdb3e90c67", - "b2b5e79e-0724-4ba6-8656-aa5b8247eaa2" + "5a3a168a-38a1-4a16-95b9-b11030559f49", + "d700b832-d435-4152-aead-bb6fb7d90f67", + "a5543c71-26eb-4cfc-8e70-94620d945608" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "11939" ], "x-ms-request-id": [ - "ff68058f-75b4-472d-b240-2e867c21dcae" + "88de5386-50f9-4d4e-8934-09e68d41dcff" ], "x-ms-correlation-request-id": [ - "ff68058f-75b4-472d-b240-2e867c21dcae" + "88de5386-50f9-4d4e-8934-09e68d41dcff" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232357Z:ff68058f-75b4-472d-b240-2e867c21dcae" + "WESTUS:20191108T210828Z:88de5386-50f9-4d4e-8934-09e68d41dcff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:23:56 GMT" + "Fri, 08 Nov 2019 21:08:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2304" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2dbd14ba-22cf-4876-bab7-2eff80b37d84" + "240033f5-bfab-42cc-a987-00354fd88fff" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "0b264568-ebe7-4f53-b095-1e5288d23125", - "1f944e91-4136-494a-ba3b-0c0dc104a733" + "949208d0-88a9-4e9e-b826-83dd7bbaa946", + "6bb13d8d-e156-4819-9257-d13b8784df42", + "495e9c80-4889-4b55-91b5-b0e9bfb0fde7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "11937" ], "x-ms-request-id": [ - "b61348ab-a308-4360-b665-1903ce5f04af" + "0a095d62-57af-4447-97df-9dca182ac586" ], "x-ms-correlation-request-id": [ - "b61348ab-a308-4360-b665-1903ce5f04af" + "0a095d62-57af-4447-97df-9dca182ac586" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232427Z:b61348ab-a308-4360-b665-1903ce5f04af" + "WESTUS:20191108T210828Z:0a095d62-57af-4447-97df-9dca182ac586" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:24:26 GMT" - ] + "Fri, 08 Nov 2019 21:08:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2304" + ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b653a73-9d68-4512-9458-453549ed4778" + "a154dc9b-0940-4e90-80c2-4c7bdfecbff0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "99d2c5c2-e890-444d-9d36-bc63bfe80cac", - "d6f6dcfe-a920-4f66-a259-f81bcaaec939" + "dae55dd1-2519-41ea-8dfb-150c37a346cf", + "2274b98b-806d-44f0-91c4-1dddac0453bb", + "9bb3e707-7a46-495e-b35e-253e3e569f7f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "11935" ], "x-ms-request-id": [ - "c225c19a-b86f-4d7a-b306-9be03cfe25d8" + "5af85259-6461-4a80-9e0b-dfba65364993" ], "x-ms-correlation-request-id": [ - "c225c19a-b86f-4d7a-b306-9be03cfe25d8" + "5af85259-6461-4a80-9e0b-dfba65364993" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232457Z:c225c19a-b86f-4d7a-b306-9be03cfe25d8" + "WESTUS:20191108T210828Z:5af85259-6461-4a80-9e0b-dfba65364993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:24:57 GMT" + "Fri, 08 Nov 2019 21:08:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2304" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "717ad046-8ac7-4f4b-a469-79e6ab422085" + "9eba435e-7457-4954-88bc-ef3811b0add2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "77721e9c-036f-40cb-8a79-dffea7644d1d", - "024c6423-e57b-47a4-bec0-d62ef6eb27c2" + "24901d4e-5d18-4297-a464-714dbd832221", + "1fb5ae52-25c5-4bb0-a5c5-d8e447d7fa44", + "f221bbe7-0713-4b08-ae18-7812d2717e1b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "11934" ], "x-ms-request-id": [ - "6bdc514e-b693-4a7c-b179-ffe0d79953b1" + "5335edd0-7c1a-48e9-a721-6e67162bae2c" ], "x-ms-correlation-request-id": [ - "6bdc514e-b693-4a7c-b179-ffe0d79953b1" + "5335edd0-7c1a-48e9-a721-6e67162bae2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232527Z:6bdc514e-b693-4a7c-b179-ffe0d79953b1" + "WESTUS:20191108T210859Z:5335edd0-7c1a-48e9-a721-6e67162bae2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:25:27 GMT" + "Fri, 08 Nov 2019 21:08:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2304" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29e02110-cdca-4bd8-a062-c0b46c3fd1ad" + "c33231da-286f-4143-b2f5-609ca86c4cd1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "bd25910f-7ff2-42cb-9a3f-cada11033268", - "d0fd9f80-64ef-4e47-82d9-6e13c9da0396" + "3dec5d00-444e-4b3c-8325-22875ef72fce", + "8eb8abf7-ee61-471d-8a74-e875e58e99c3", + "59a59f78-24ac-492b-8498-472f8cd316fd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "11932" ], "x-ms-request-id": [ - "fd2f0f12-1f65-48a3-8a69-b207416fa253" + "d79fb535-9439-48b9-96d6-187c4d896348" ], "x-ms-correlation-request-id": [ - "fd2f0f12-1f65-48a3-8a69-b207416fa253" + "d79fb535-9439-48b9-96d6-187c4d896348" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232558Z:fd2f0f12-1f65-48a3-8a69-b207416fa253" + "WESTUS:20191108T210859Z:d79fb535-9439-48b9-96d6-187c4d896348" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:25:57 GMT" + "Fri, 08 Nov 2019 21:08:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2304" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5f4bfad-8209-4957-b049-539d65bc3738" + "c9e3067c-0545-4272-9e23-f4d7e24ec572" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "bc13347e-8fc7-4654-b596-0f77bf1140bc", - "bbac99f3-932a-497c-ab22-d1611434471a" + "2307f0b3-5a2a-48a2-88d6-d8da5fb8a561", + "241baa8c-eae8-4138-a3cc-84c11d9fbe20", + "a4ee2218-d42c-4282-bc47-8a76012fb01d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "11930" ], "x-ms-request-id": [ - "ceae12dd-7a4c-4ec2-bed6-437d0d9aa2ed" + "1e806957-45a2-4c93-be75-0d1b067d19bd" ], "x-ms-correlation-request-id": [ - "ceae12dd-7a4c-4ec2-bed6-437d0d9aa2ed" + "1e806957-45a2-4c93-be75-0d1b067d19bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232628Z:ceae12dd-7a4c-4ec2-bed6-437d0d9aa2ed" + "WESTUS:20191108T210929Z:1e806957-45a2-4c93-be75-0d1b067d19bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:26:27 GMT" + "Fri, 08 Nov 2019 21:09:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2306" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8da7c582-b978-4031-ad8d-ce4620776709" + "bf7eb3a3-f3ca-4658-a70a-148b179078bf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "83cf361f-d7ad-476c-b7a2-ef3fe9957f06", - "47cf3bce-b316-4567-8458-71ea2eff0b44" + "d0a152a8-4bdf-4d3d-a59e-62b5718be063", + "e8f95c32-1136-4af9-9007-701fdc83b0a7", + "96d61f4e-0238-44de-a22e-62b530c0666f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "11928" ], "x-ms-request-id": [ - "17e54d07-cccb-4c32-918e-fd413d26dfaa" + "5090c0f7-69a6-486b-9660-44ad42b91029" ], "x-ms-correlation-request-id": [ - "17e54d07-cccb-4c32-918e-fd413d26dfaa" + "5090c0f7-69a6-486b-9660-44ad42b91029" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232658Z:17e54d07-cccb-4c32-918e-fd413d26dfaa" + "WESTUS:20191108T210929Z:5090c0f7-69a6-486b-9660-44ad42b91029" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:26:58 GMT" + "Fri, 08 Nov 2019 21:09:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2306" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12c63eb7-961f-4d4e-b8a6-dfef97cad609" + "2408d6b4-0a0c-4c70-8572-6aa8b03857a8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1249" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "1c0de6c7-2c94-4879-892c-12a7166152e0", - "ab0997f5-b48f-492e-8dd5-871c24912a76" + "684fee83-38b9-42c2-a7cf-83fa5248ebd5", + "fe6c20ec-236b-45bc-8953-bbffb8c78427", + "42c29af6-a6c6-457f-90ef-0cdba031e54f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "11926" ], "x-ms-request-id": [ - "fec7efe6-61f9-4191-baa7-0f14632f8fe8" + "47958bff-ce36-404d-89d8-643ab73ceeef" ], "x-ms-correlation-request-id": [ - "fec7efe6-61f9-4191-baa7-0f14632f8fe8" + "47958bff-ce36-404d-89d8-643ab73ceeef" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232728Z:fec7efe6-61f9-4191-baa7-0f14632f8fe8" + "WESTUS:20191108T211000Z:47958bff-ce36-404d-89d8-643ab73ceeef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:27:28 GMT" + "Fri, 08 Nov 2019 21:09:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2306" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80fdd876-fb55-459b-b029-eac884126e10" + "8e96b5cf-c2ec-47ec-85e5-5597d279f4cd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1249" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "2cc0651b-11c0-4e6e-88f4-26123a21acfd", - "92633715-d8c0-4410-abf5-57282c438c9d" + "d8c07de0-d812-44f4-83a1-46b3740c6682", + "146fe464-d3f2-49c0-af8b-33ce0112b4e9", + "fcd38a8f-29ae-4771-85a2-09bfb6faf6bb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "11924" ], "x-ms-request-id": [ - "4054ffb5-f6bf-459c-8ff4-8c0277807d3e" + "07529a86-8c52-4ab4-9e92-4e2dd69d4889" ], "x-ms-correlation-request-id": [ - "4054ffb5-f6bf-459c-8ff4-8c0277807d3e" + "07529a86-8c52-4ab4-9e92-4e2dd69d4889" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232728Z:4054ffb5-f6bf-459c-8ff4-8c0277807d3e" + "WESTUS:20191108T211000Z:07529a86-8c52-4ab4-9e92-4e2dd69d4889" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:27:28 GMT" + "Fri, 08 Nov 2019 21:09:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2306" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1de3578-9392-4cdd-8613-bea345da5fba" + "a2345dc8-2c58-48f4-966f-102fd8cf5b36" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1249" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "de291c19-264d-459b-983c-758a74bc79da", - "081c4a2c-9ec8-4c45-ba14-7c4a5e7da1c6" + "f501f202-ad70-4c93-9c43-6d5cd0392dd6", + "e951dbe3-2bc2-4aad-a25a-9a8679a2078c", + "06c74ae6-ff18-45cc-b3f1-8f74e5b5e708" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "11922" ], "x-ms-request-id": [ - "6d57106e-a73b-4a70-bf50-11d2e8c3ac8d" + "afa31bc5-b945-4579-af79-5fe8ada6b40a" ], "x-ms-correlation-request-id": [ - "6d57106e-a73b-4a70-bf50-11d2e8c3ac8d" + "afa31bc5-b945-4579-af79-5fe8ada6b40a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232728Z:6d57106e-a73b-4a70-bf50-11d2e8c3ac8d" + "WESTUS:20191108T211030Z:afa31bc5-b945-4579-af79-5fe8ada6b40a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:27:28 GMT" + "Fri, 08 Nov 2019 21:10:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2306" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36b96306-e4fd-40b1-b65a-fbbf6b12fd73" + "ff14db04-5b0b-40b4-a365-2feefdfe70e5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "4db4e61b-2788-4a91-a635-664000ef1db8", - "47c101bb-d5b8-43fd-b654-549adbca85f4" + "38a828bc-5b49-46fc-bbfb-6264091bf8eb", + "09a0f475-629b-4bae-a4b2-6d39694d2a90", + "8e6e4599-dfda-45e8-bae6-06a31942eac6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "11920" ], "x-ms-request-id": [ - "7bce3d86-923d-43e0-acf6-53baebb87a9f" + "392e4a11-7aaa-4976-9f29-b2128ccdf342" ], "x-ms-correlation-request-id": [ - "7bce3d86-923d-43e0-acf6-53baebb87a9f" + "392e4a11-7aaa-4976-9f29-b2128ccdf342" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232801Z:7bce3d86-923d-43e0-acf6-53baebb87a9f" + "WESTUS:20191108T211030Z:392e4a11-7aaa-4976-9f29-b2128ccdf342" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:28:01 GMT" + "Fri, 08 Nov 2019 21:10:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2306" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b57d7fac-5f35-47da-92d1-58a85decdc90" + "e36b10b1-c15a-45f8-b1a6-571ca4fc67d3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "99d3815f-7b3e-4ce6-8544-b22c7c547535", - "40396b7b-1508-423f-8585-004574cdb4ec" + "77fc635b-4b36-45d6-aa32-b0a6cf634c3d", + "1274b58c-a4c1-4a83-8d29-0f264a1e1fc2", + "5a50861e-f60e-439d-8e77-d3477da13e1d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "11918" ], "x-ms-request-id": [ - "91550f94-924d-4e2e-bba1-8239b810e88d" + "c7b3913d-1d5f-49af-9c2f-18aa1edfe412" ], "x-ms-correlation-request-id": [ - "91550f94-924d-4e2e-bba1-8239b810e88d" + "c7b3913d-1d5f-49af-9c2f-18aa1edfe412" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232832Z:91550f94-924d-4e2e-bba1-8239b810e88d" + "WESTUS:20191108T211101Z:c7b3913d-1d5f-49af-9c2f-18aa1edfe412" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:28:31 GMT" + "Fri, 08 Nov 2019 21:11:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2140" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab850da2-b8f1-4d77-a25b-f5bf17d53372" + "da2008eb-c47c-44ab-87ea-52a6dfb6654f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1577" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "6eec927c-0dbb-49df-9435-8cff29086f2c", - "7fb779a5-a213-4e23-9d72-01fb186391c7" + "e7c3a657-c9c4-48d7-b679-bca20b31bc5f", + "e3f90622-890c-4697-855c-58e5ccaecdf3", + "55189c80-3637-4d12-8605-6fe9f4c121ec" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "11916" ], "x-ms-request-id": [ - "8be262d7-f737-4528-805f-ecc012e34ab6" + "6c25dedc-e322-47d5-93f4-76c9d1cc16f2" ], "x-ms-correlation-request-id": [ - "8be262d7-f737-4528-805f-ecc012e34ab6" + "6c25dedc-e322-47d5-93f4-76c9d1cc16f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232902Z:8be262d7-f737-4528-805f-ecc012e34ab6" + "WESTUS:20191108T211101Z:6c25dedc-e322-47d5-93f4-76c9d1cc16f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:29:01 GMT" + "Fri, 08 Nov 2019 21:11:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2140" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03e4c81b-86e6-459c-ba4e-06767153b0e0" + "732701b3-d137-4d16-aeb5-22d4c38a98d7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1577" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "089fde37-4a29-4607-b4bb-7467796daa6f", - "b10826b3-4225-440e-886e-89bdc4518550" + "cc32bec3-1870-48d2-9ec7-3c235c3ba2cc", + "97bc85ef-85b5-4ffb-ab9c-660368e4b1a8", + "bfe085ec-af07-4ff3-8267-c9236626dc27" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "11914" ], "x-ms-request-id": [ - "642410e4-1cb3-475a-9d0f-3bc0c4503c32" + "279b8e1e-6458-43a0-94a5-bf7ed0164930" ], "x-ms-correlation-request-id": [ - "642410e4-1cb3-475a-9d0f-3bc0c4503c32" + "279b8e1e-6458-43a0-94a5-bf7ed0164930" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232932Z:642410e4-1cb3-475a-9d0f-3bc0c4503c32" + "WESTUS:20191108T211131Z:279b8e1e-6458-43a0-94a5-bf7ed0164930" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:29:32 GMT" + "Fri, 08 Nov 2019 21:11:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2141" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f828807d-7116-49f2-9223-a49d4d286543" + "8742c6d4-6b67-4817-a934-7485201abba1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1577" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "e81029e2-abee-42e7-84d7-5025808450a0", - "7407f0c2-50e5-4a5e-999d-93fc05d76d32" + "fd41578b-618c-4b14-a5d9-5a8c6feac765", + "68c46082-0f53-47c5-903e-9e7e25bec4a0", + "ca3eb95f-81ec-4e9c-9edb-1deeb896e36c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "11912" ], "x-ms-request-id": [ - "3adf93af-fab5-4621-bfe7-705dd3c799c5" + "261d773d-c969-4844-9dd2-8d8dadc3e57e" ], "x-ms-correlation-request-id": [ - "3adf93af-fab5-4621-bfe7-705dd3c799c5" + "261d773d-c969-4844-9dd2-8d8dadc3e57e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233003Z:3adf93af-fab5-4621-bfe7-705dd3c799c5" + "WESTUS:20191108T211132Z:261d773d-c969-4844-9dd2-8d8dadc3e57e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:30:03 GMT" + "Fri, 08 Nov 2019 21:11:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2141" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a48d00a-ac5d-4c0c-a924-ea4536031dc7" + "7e889bc1-a185-4756-af7b-27ea32dac44b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1577" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "6b782b12-40fb-4fdf-bbb3-d5bdf6800466", - "e5eecf2a-c515-40cd-b6ce-2e014567da49" + "e66d9fa4-5d65-4f24-bd36-797f23071b3a", + "7a3431a7-999c-4d7c-b399-00bc5cffe040", + "269c79c4-1247-4fb0-a8e6-af59c77b0861" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "11910" ], "x-ms-request-id": [ - "818aa14b-0fed-4983-a25f-01b75665ea59" + "c1ed9c7e-69da-4aa6-8048-9c26fcac622b" ], "x-ms-correlation-request-id": [ - "818aa14b-0fed-4983-a25f-01b75665ea59" + "c1ed9c7e-69da-4aa6-8048-9c26fcac622b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233033Z:818aa14b-0fed-4983-a25f-01b75665ea59" + "WESTUS:20191108T211202Z:c1ed9c7e-69da-4aa6-8048-9c26fcac622b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:30:33 GMT" + "Fri, 08 Nov 2019 21:12:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2141" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00ad13f1-42c5-49ad-8b11-a18618cc0421" + "259b4a94-82f5-4341-99ca-05f757236c92" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1577" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "2d1fe57b-a011-46ab-a406-b7c4832698c6", - "aaee0499-0d10-41e0-a430-eb798c11ba78" + "eba7c5fe-f73d-48d9-9a28-8412837388ff", + "cdfb6955-4517-486d-a151-22cbefcdaf07", + "5b58fc34-664f-4e50-a1da-dae9222e7e1b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "11908" ], "x-ms-request-id": [ - "60b9029f-3746-46a4-9887-e79acca8c5f3" + "c88801f2-b976-4c18-b41d-9a8a5a732085" ], "x-ms-correlation-request-id": [ - "60b9029f-3746-46a4-9887-e79acca8c5f3" + "c88801f2-b976-4c18-b41d-9a8a5a732085" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233104Z:60b9029f-3746-46a4-9887-e79acca8c5f3" + "WESTUS:20191108T211202Z:c88801f2-b976-4c18-b41d-9a8a5a732085" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:31:03 GMT" + "Fri, 08 Nov 2019 21:12:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2141" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6200431-1f0f-4c32-b10f-a9b203590e9d" + "c93a1618-ece9-4851-85c3-5e99bd164dc5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1579" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "03860d4e-d37d-4fae-8b4c-a3f32f217d37", - "568a9275-2803-4487-98e7-5f1be3499431" + "183e2319-1ea9-4c57-a132-e3179f667c3e", + "d79d57cb-ac17-4fe6-9f87-7a47292d5494", + "b7cd5b45-742e-4cc9-abaf-74c09f6b1e1d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "11906" ], "x-ms-request-id": [ - "3c1a9576-5e52-43f4-9864-2ce5b3a07cc9" + "eb4e1873-3793-4c69-80f4-c7af4f3ed3c8" ], "x-ms-correlation-request-id": [ - "3c1a9576-5e52-43f4-9864-2ce5b3a07cc9" + "eb4e1873-3793-4c69-80f4-c7af4f3ed3c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233134Z:3c1a9576-5e52-43f4-9864-2ce5b3a07cc9" + "WESTUS:20191108T211232Z:eb4e1873-3793-4c69-80f4-c7af4f3ed3c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:31:34 GMT" + "Fri, 08 Nov 2019 21:12:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2141" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e253870-94c8-4a3d-b56d-92a7c0350e33" + "03cb947c-8328-462e-a284-a1302ef7f53d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1579" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "fe881305-0603-4c2f-894b-ecea7d9e7aaf", - "dfe4eec8-8718-4987-8cac-684b89d98aa4" + "7ed72747-e6be-4910-b932-a51cc4a39c89", + "ba3b1c43-7eb9-4c0b-97ee-155f458fe3d7", + "e4ecd252-84cd-47d0-926e-0d5fae3ba32a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "11904" ], "x-ms-request-id": [ - "11ff4535-d035-4bbd-8ee5-6387af92c4d3" + "a1c0b65b-afdd-4317-aa02-8820723de616" ], "x-ms-correlation-request-id": [ - "11ff4535-d035-4bbd-8ee5-6387af92c4d3" + "a1c0b65b-afdd-4317-aa02-8820723de616" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233135Z:11ff4535-d035-4bbd-8ee5-6387af92c4d3" + "WESTUS:20191108T211233Z:a1c0b65b-afdd-4317-aa02-8820723de616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:31:35 GMT" + "Fri, 08 Nov 2019 21:12:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2141" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77441981-f869-407b-9c55-ceebac8b79ae" + "08eae117-fac1-4945-94e6-53dfe1da9718" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1579" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "fa2ee2ee-95c9-476a-9e19-0d33b593298a", - "9082c2ee-93c6-4c8b-946d-25a46f6195e1" + "7b03a57a-b5a5-4fe1-bd3e-33cf7c73033e", + "0369ee56-844c-4c0f-9c05-7ae37d34822f", + "f8044fc5-84c5-4cc4-b08f-daf49abc2064" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "11902" ], "x-ms-request-id": [ - "02b0b011-72bc-492b-b8e0-77935ecf32c9" + "385ef078-d7b5-4bda-a1c8-5ce86cbc3640" ], "x-ms-correlation-request-id": [ - "02b0b011-72bc-492b-b8e0-77935ecf32c9" + "385ef078-d7b5-4bda-a1c8-5ce86cbc3640" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233135Z:02b0b011-72bc-492b-b8e0-77935ecf32c9" + "WESTUS:20191108T211303Z:385ef078-d7b5-4bda-a1c8-5ce86cbc3640" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:31:35 GMT" + "Fri, 08 Nov 2019 21:13:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2141" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74a77ac7-4761-47d4-8473-42e53556d435" + "d1334a1e-d735-4f44-a356-ae0e60166434" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1579" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "2c9b1784-1d17-4922-bf9d-4e068c7c1e27", - "077f6744-de04-42da-935f-26e511b34fe2" + "254679fa-2e5d-4a45-ba78-5a797b5f089e", + "a375d319-59f3-4ed6-9ceb-51303eedc493", + "387afcf8-590e-4bde-939f-75d6ff60f8eb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "11900" ], "x-ms-request-id": [ - "a82984d6-2434-41cd-858e-11b557190385" + "1fa2547c-c4d8-425e-ab78-2ee6ed9b4792" ], "x-ms-correlation-request-id": [ - "a82984d6-2434-41cd-858e-11b557190385" + "1fa2547c-c4d8-425e-ab78-2ee6ed9b4792" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233135Z:a82984d6-2434-41cd-858e-11b557190385" + "WESTUS:20191108T211303Z:1fa2547c-c4d8-425e-ab78-2ee6ed9b4792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:31:35 GMT" + "Fri, 08 Nov 2019 21:13:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2141" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "572e66f1-f355-43d4-ad8e-b4d8a273e4a8" + "4edf3e74-d54f-42be-86c5-9990d20315c7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1579" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "2cd1eb7c-34d2-4f25-879f-3e45944f4a8b", - "9f847b18-76ea-4e63-9ce4-a61a2a58a8f4" + "1178193b-8cd0-408a-b23a-a81e0b4d8b62", + "2b89ec8c-3889-4fea-ae21-7bd5348baf9a", + "8a543002-735a-48b6-8d60-743cee044ac3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "11898" ], "x-ms-request-id": [ - "b93e599a-4e14-421f-ac3d-3fb857be9e5e" + "0f127b45-efde-4e5a-8897-5850622961af" ], "x-ms-correlation-request-id": [ - "b93e599a-4e14-421f-ac3d-3fb857be9e5e" + "0f127b45-efde-4e5a-8897-5850622961af" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233136Z:b93e599a-4e14-421f-ac3d-3fb857be9e5e" + "WESTUS:20191108T211333Z:0f127b45-efde-4e5a-8897-5850622961af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:31:35 GMT" + "Fri, 08 Nov 2019 21:13:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2141" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22feabec-41db-4923-b072-d803e8cc6132" + "bc3d3fb8-d2f9-4b72-86c9-3c2e60536887" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1579" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "723d78f0-67ff-4b7f-a359-5e6a0cc2bf07", - "f1452cbf-f517-406a-a644-f3f6705d57ab" + "5bb5f637-13a6-4294-be4f-4f15cf63a513", + "81ef801e-5a54-4029-ac08-4b2f4549e557", + "ddfb2a87-9eed-4de5-bb4d-4e79f16652c8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "11896" ], "x-ms-request-id": [ - "b75009b7-b2b4-405b-a3ad-83f28a424ca1" + "1d037b64-cc6e-4e1d-adb6-18628273f62f" ], "x-ms-correlation-request-id": [ - "b75009b7-b2b4-405b-a3ad-83f28a424ca1" + "1d037b64-cc6e-4e1d-adb6-18628273f62f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233136Z:b75009b7-b2b4-405b-a3ad-83f28a424ca1" + "WESTUS:20191108T211334Z:1d037b64-cc6e-4e1d-adb6-18628273f62f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:31:35 GMT" + "Fri, 08 Nov 2019 21:13:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2141" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "649cdca8-fc03-4d87-9396-deac0902ea9e" + "55ec3a0f-e8b3-4a01-8637-8abc3e6820e3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1579" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "49e64953-aa15-43f4-8503-46c4101436c1", - "e80751e7-5589-4045-acd3-8a0e3c86e334" + "a9021c34-1687-46ee-80d3-12833c2f23aa", + "b5247144-1c10-4460-9b05-435fe8f80e15", + "b189c4b3-585f-4fd0-9beb-e6afb9276a27" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "11894" ], "x-ms-request-id": [ - "5d05ea9d-3cd8-45c3-9035-3809360bdd62" + "4938ea31-695f-4f08-9253-b4ad08a015c9" ], "x-ms-correlation-request-id": [ - "5d05ea9d-3cd8-45c3-9035-3809360bdd62" + "4938ea31-695f-4f08-9253-b4ad08a015c9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233136Z:5d05ea9d-3cd8-45c3-9035-3809360bdd62" + "WESTUS:20191108T211404Z:4938ea31-695f-4f08-9253-b4ad08a015c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:31:36 GMT" + "Fri, 08 Nov 2019 21:14:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1975" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f7b3e2f-1e1a-48f6-abb1-bcbb47f22ee3" + "ae1fc761-fa9b-4c0d-ade8-ead0a617690c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1579" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "057b1577-d6ee-451d-8751-74cca54dd333", - "a8feb108-2e53-4da0-87c6-41d010ff9be3" + "662f201c-67ff-4904-b280-19562704fbdf", + "33cc7e94-159c-4d2b-b3ae-7a415d731f7c", + "dc4f0452-a624-4cce-99cf-ed660c247c4d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "11892" ], "x-ms-request-id": [ - "4e37e1ca-e86b-49a7-975d-dfc28ad93ab1" + "758780df-cb13-4c32-b7b1-d53bb32c26c0" ], "x-ms-correlation-request-id": [ - "4e37e1ca-e86b-49a7-975d-dfc28ad93ab1" + "758780df-cb13-4c32-b7b1-d53bb32c26c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233136Z:4e37e1ca-e86b-49a7-975d-dfc28ad93ab1" + "WESTUS:20191108T211404Z:758780df-cb13-4c32-b7b1-d53bb32c26c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:31:36 GMT" + "Fri, 08 Nov 2019 21:14:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1975" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5ab04c25-139b-4b88-ba9b-750151b01fc9" + "9afd79eb-71e7-430f-822a-b67303389641" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1581" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "263" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "3069e3dd-7858-42c1-ac3f-9a49dbb5b0fc", - "0295d473-c2a2-4fed-80e3-36213970f381" + "x-ms-request-id": [ + "a6cacb07-d606-4d7f-b0b6-39e55d802f6a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], - "x-ms-request-id": [ - "ba978b98-f796-44bc-8f34-bc156b82ba01" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "ba978b98-f796-44bc-8f34-bc156b82ba01" + "2dc862f0-3ab6-46b6-afb1-9aaa782895e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233207Z:ba978b98-f796-44bc-8f34-bc156b82ba01" + "WESTUS:20191108T210249Z:2dc862f0-3ab6-46b6-afb1-9aaa782895e7" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Fri, 08 Nov 2019 21:02:49 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ba390d8-3f86-49fe-b4d2-d8a9fd153969" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7bc31558-d725-4d24-a53f-6631a2d6e3ff" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "c0874226-2585-4ad1-90cf-6dfd24c57f43" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210320Z:c0874226-2585-4ad1-90cf-6dfd24c57f43" + ], + "Date": [ + "Fri, 08 Nov 2019 21:03:20 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8cd453b1-de37-4f66-8801-a5a5a1f02987" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6be963cf-30e0-4abd-a0a7-2cefcc27b222" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "966994fa-a2e8-4498-b5c0-362c61085716" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210351Z:966994fa-a2e8-4498-b5c0-362c61085716" + ], + "Date": [ + "Fri, 08 Nov 2019 21:03:50 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ecb034b2-8ad2-4377-8b04-45a02a09ac8b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "64eee728-2b8e-482f-99eb-9bce0c3020df" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "0826417f-618d-42a9-acdd-02a45b2b06d5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210421Z:0826417f-618d-42a9-acdd-02a45b2b06d5" + ], + "Date": [ + "Fri, 08 Nov 2019 21:04:21 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d127d19-adb7-4008-8c96-e0beaf5775ec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a78ae1a0-0655-4917-8a72-a07149c840ce" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "09f4e780-8bac-4024-8462-750e8695db2e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210452Z:09f4e780-8bac-4024-8462-750e8695db2e" + ], + "Date": [ + "Fri, 08 Nov 2019 21:04:52 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6269c34-b2af-44a0-b749-0e32a2ec2824" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b89f89e5-4e6d-4ced-9cb4-9e00e6ab5f6d" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "b95db445-6f96-456f-acc9-5ad8b3c22ef1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210522Z:b95db445-6f96-456f-acc9-5ad8b3c22ef1" + ], + "Date": [ + "Fri, 08 Nov 2019 21:05:22 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c21d2e69-fde0-4c3a-9267-4bc06991dba4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f067ede3-527b-4150-b9f2-44f43de0441c" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "7b5afb1e-b9cf-49d6-bcfe-330d5cd9f027" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210554Z:7b5afb1e-b9cf-49d6-bcfe-330d5cd9f027" + ], + "Date": [ + "Fri, 08 Nov 2019 21:05:54 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd94a5ab-fda5-4c42-85c6-ce632ffd2c97" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "90eebcbb-c72c-412c-889c-1582f7151662" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "0369455e-b21f-446e-a6ba-7f42647a5436" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210625Z:0369455e-b21f-446e-a6ba-7f42647a5436" + ], + "Date": [ + "Fri, 08 Nov 2019 21:06:24 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70381344-6494-4bdd-b7d4-dea8772650fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ace6ee76-43e5-4d89-b45d-1ead4967c976" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "41637d0c-d583-4f0a-8156-00f1490aa9ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210655Z:41637d0c-d583-4f0a-8156-00f1490aa9ac" + ], + "Date": [ + "Fri, 08 Nov 2019 21:06:55 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20f2b726-0dee-418d-bea1-84d506254d94" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d86592e3-68ba-48b8-8fff-3240fa112281" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "d3426784-37b1-4ab2-968c-a427b75fc8dd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210725Z:d3426784-37b1-4ab2-968c-a427b75fc8dd" + ], + "Date": [ + "Fri, 08 Nov 2019 21:07:25 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9fcb8ef-c82f-4cbe-bd35-1887d187536c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e323eb53-9417-43b6-9c88-4cd4f0e5ac8b" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "55b82e1e-71d0-4153-96fe-f294cb2fd9d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210756Z:55b82e1e-71d0-4153-96fe-f294cb2fd9d2" ], "Date": [ - "Wed, 21 Feb 2018 23:32:07 GMT" + "Fri, 08 Nov 2019 21:07:55 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21887bfc-21ca-434f-a39f-2f2263af9256" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "82864f80-19cf-46e5-bc5e-235156b285dc" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "c94c60f2-d716-43d6-8e06-a442366e4076" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210827Z:c94c60f2-d716-43d6-8e06-a442366e4076" + ], + "Date": [ + "Fri, 08 Nov 2019 21:08:27 GMT" + ], + "Content-Length": [ + "496" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d85687a-98c3-412d-8745-f121b4addaf3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "392e9592-d309-4abb-a18e-9739b338f441" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "db99d96d-a0ff-489e-9000-580d83697f86" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210827Z:db99d96d-a0ff-489e-9000-580d83697f86" + ], + "Date": [ + "Fri, 08 Nov 2019 21:08:27 GMT" + ], + "Content-Length": [ + "508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33be5b96-cff7-49fe-b9d7-51b110a74b77" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7d881e4f-dd14-4d19-9475-e66bbdba38b5" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "e4a72f66-cfc2-4b69-9928-c49c4db7d6f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210827Z:e4a72f66-cfc2-4b69-9928-c49c4db7d6f8" + ], + "Date": [ + "Fri, 08 Nov 2019 21:08:27 GMT" + ], + "Content-Length": [ + "508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ef4a4d1-0e68-4002-826e-d353492f37d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d5e3dbd7-1718-4a94-9381-1e38d406991c" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "c31d8987-c67a-4380-9bb4-863f58d4795b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210828Z:c31d8987-c67a-4380-9bb4-863f58d4795b" + ], + "Date": [ + "Fri, 08 Nov 2019 21:08:28 GMT" + ], + "Content-Length": [ + "508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2037180-cde7-4286-90ab-283ae54f09cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e9468db1-efaf-4ac4-9c91-897dbcf56238" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-correlation-request-id": [ + "86c654a7-28f4-4fc7-a620-57edee5e35ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T210859Z:86c654a7-28f4-4fc7-a620-57edee5e35ed" + ], + "Date": [ + "Fri, 08 Nov 2019 21:08:58 GMT" + ], + "Content-Length": [ + "507" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Deleting\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6c7fe8b-f0f2-4ca7-9491-ebf5c5422948" + "e5b37f4c-6762-48ef-88d4-67bdd8942a8c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1581" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "9733c770-4043-4462-85d1-578b48bf5abd", - "20f73760-ed32-4c13-a098-413c3f6f6d7a" + "x-ms-request-id": [ + "5566b8e2-dd10-495b-8240-8bfd3b217221" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], - "x-ms-request-id": [ - "e6e3bd68-bfe1-4ab7-9829-c49a963da0cd" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" ], "x-ms-correlation-request-id": [ - "e6e3bd68-bfe1-4ab7-9829-c49a963da0cd" + "5e201291-abab-44a2-8169-b378ea745307" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233207Z:e6e3bd68-bfe1-4ab7-9829-c49a963da0cd" + "WESTUS:20191108T210929Z:5e201291-abab-44a2-8169-b378ea745307" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Fri, 08 Nov 2019 21:09:28 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "508" ], - "Date": [ - "Wed, 21 Feb 2018 23:32:07 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8b75068-543f-49df-b4d4-2f8643f85d0d" + "ac3e646d-85a1-4f87-a165-3f4a85563852" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "43d42d9f-4a12-49d1-b218-88e1dc2503a5" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-correlation-request-id": [ + "5678fe0e-37e4-4e35-914e-67e00dfad391" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T211000Z:5678fe0e-37e4-4e35-914e-67e00dfad391" + ], + "Date": [ + "Fri, 08 Nov 2019 21:09:59 GMT" + ], "Content-Length": [ - "1581" + "508" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d36ae03-62da-41d0-a81f-c5b62490a8f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "3e62d64f-abff-4dca-a50e-a80a9bc01573", - "0a0ef189-5292-49c8-a084-7083f2c1e624" + "x-ms-request-id": [ + "d9a06a0a-0855-4750-ba02-0e2249976bd8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], - "x-ms-request-id": [ - "545fabd9-55f8-41bd-b268-a4b23f9069d7" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" ], "x-ms-correlation-request-id": [ - "545fabd9-55f8-41bd-b268-a4b23f9069d7" + "934f1172-4f10-4c3f-8f76-0f5162a0c2be" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233237Z:545fabd9-55f8-41bd-b268-a4b23f9069d7" + "WESTUS:20191108T211030Z:934f1172-4f10-4c3f-8f76-0f5162a0c2be" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Fri, 08 Nov 2019 21:10:30 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "508" ], - "Date": [ - "Wed, 21 Feb 2018 23:32:37 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3805e01a-2011-4288-aab9-46e43169cd78" + "a3096065-0572-4410-bde3-4ee7e83c7e27" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4cf6c465-bf7f-4e86-b889-4fbc491060fe" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-correlation-request-id": [ + "6ac198f3-b72c-4aef-8116-b6607a2041bf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T211101Z:6ac198f3-b72c-4aef-8116-b6607a2041bf" + ], + "Date": [ + "Fri, 08 Nov 2019 21:11:00 GMT" + ], "Content-Length": [ - "1581" + "12" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed9bf5f3-b487-4056-a34f-c141566bf2ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "b752d635-9499-4c36-8769-b5c5989827e4", - "eb47f894-33b5-4b7e-a87e-7d9ff1d003eb" + "x-ms-request-id": [ + "ce41c748-fd33-4bc3-9cd7-bba7fe41773d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], - "x-ms-request-id": [ - "3d6393d7-4979-4e42-9718-944dd6e42264" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" ], "x-ms-correlation-request-id": [ - "3d6393d7-4979-4e42-9718-944dd6e42264" + "8300136e-d873-4228-8843-3734644a6424" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233238Z:3d6393d7-4979-4e42-9718-944dd6e42264" + "WESTUS:20191108T211131Z:8300136e-d873-4228-8843-3734644a6424" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Fri, 08 Nov 2019 21:11:31 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "12" ], - "Date": [ - "Wed, 21 Feb 2018 23:32:38 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2471eaf-1b8b-4a13-a5da-14f78a69a9c4" + "a4fc1758-0601-45cf-9fd5-0aea42a3668f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5a12b690-51e3-4c72-b3be-0bf5ae44a4c0" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-correlation-request-id": [ + "380791e5-df3a-4105-b5ba-b24975af216f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T211202Z:380791e5-df3a-4105-b5ba-b24975af216f" + ], + "Date": [ + "Fri, 08 Nov 2019 21:12:01 GMT" + ], "Content-Length": [ - "1581" + "12" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25ccd03a-af7d-4284-a7ed-53d47fef5f78" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "477fd7a9-916a-46b9-b00e-32fd14985ffc", - "38dcfde6-051a-430b-abe7-7c965adbfc17" + "x-ms-request-id": [ + "d88182ac-fca2-48ef-b4a5-f829c002e0e2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], - "x-ms-request-id": [ - "23957946-6a09-42c5-8086-22dd2ad19843" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" ], "x-ms-correlation-request-id": [ - "23957946-6a09-42c5-8086-22dd2ad19843" + "c484842b-6f3c-4c7b-a162-9fd3a63fee52" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233308Z:23957946-6a09-42c5-8086-22dd2ad19843" + "WESTUS:20191108T211232Z:c484842b-6f3c-4c7b-a162-9fd3a63fee52" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Fri, 08 Nov 2019 21:12:31 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "12" ], - "Date": [ - "Wed, 21 Feb 2018 23:33:08 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca6c5796-052b-4d75-9320-6a3348f04b84" + "0bb545b4-f0f5-4971-8bdd-868fa11b6e55" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1581" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "182de40c-e9f6-419e-a6ca-da77bf9507c5", - "feb94638-3337-480e-945d-316ff17d7910" + "x-ms-request-id": [ + "ada9977f-2d3a-4ce4-9773-883b700acac9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], - "x-ms-request-id": [ - "506097d9-00ab-4aca-8704-074e35a26322" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" ], "x-ms-correlation-request-id": [ - "506097d9-00ab-4aca-8704-074e35a26322" + "0fa11d2d-d49a-49df-85be-7a8667ac91d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233308Z:506097d9-00ab-4aca-8704-074e35a26322" + "WESTUS:20191108T211303Z:0fa11d2d-d49a-49df-85be-7a8667ac91d1" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Fri, 08 Nov 2019 21:13:03 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "12" ], - "Date": [ - "Wed, 21 Feb 2018 23:33:08 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff94f0e8-9494-4d83-a6ef-a20a62b416f0" + "b5a0d991-cafb-461b-b3f8-604bf85468fb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "764c1b80-4576-4149-bb91-e5ef085ec3cb", - "43a74e02-54cd-4da7-b98f-16b453e46831" + "x-ms-request-id": [ + "ae9b792d-8192-45e9-bf68-c30a3f613268" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], - "x-ms-request-id": [ - "e5a93025-1c0e-4ca2-be79-5d4dc4e850ba" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" ], "x-ms-correlation-request-id": [ - "e5a93025-1c0e-4ca2-be79-5d4dc4e850ba" + "2bd407bb-3c8a-4b35-a8ae-dc5718bc72de" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233338Z:e5a93025-1c0e-4ca2-be79-5d4dc4e850ba" + "WESTUS:20191108T211333Z:2bd407bb-3c8a-4b35-a8ae-dc5718bc72de" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Fri, 08 Nov 2019 21:13:33 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "12" ], - "Date": [ - "Wed, 21 Feb 2018 23:33:37 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81763b45-b420-4d10-bfbb-63882119e8dd" + "056d3260-6706-4f4e-bac5-685a0d9d8113" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "8fee3739-bb73-411f-9945-060e69c09024", - "5d4c140e-a5c4-4256-8005-3a2d70322ac3" + "x-ms-request-id": [ + "74f2d4ad-89d3-464c-a255-742eb1d273b3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], - "x-ms-request-id": [ - "1a99075c-1ea0-44e5-b641-845a5f0b16ce" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" ], "x-ms-correlation-request-id": [ - "1a99075c-1ea0-44e5-b641-845a5f0b16ce" + "56e937a7-32f2-46c7-ad08-a923b356da78" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233338Z:1a99075c-1ea0-44e5-b641-845a5f0b16ce" + "WESTUS:20191108T211404Z:56e937a7-32f2-46c7-ad08-a923b356da78" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Fri, 08 Nov 2019 21:14:03 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "12" ], - "Date": [ - "Wed, 21 Feb 2018 23:33:38 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9d9d4e2-d499-439d-b081-96ef2a4f9327" + "d428f9af-3b47-4bfe-8231-12f4a252a7c5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "3b49e237-4c82-4664-b925-6097213834fc", - "ff98bab5-4d8c-4695-80e4-8ad0dcd21d9d" + "x-ms-request-id": [ + "96d77c6c-2a19-4165-8658-11910e9c0aca" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], - "x-ms-request-id": [ - "e12a4333-566f-4eeb-9252-8656b2088603" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" ], "x-ms-correlation-request-id": [ - "e12a4333-566f-4eeb-9252-8656b2088603" + "edaf66ea-9074-467f-9caa-568ce422cfc4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233409Z:e12a4333-566f-4eeb-9252-8656b2088603" + "WESTUS:20191108T210827Z:edaf66ea-9074-467f-9caa-568ce422cfc4" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Fri, 08 Nov 2019 21:08:27 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "506" ], - "Date": [ - "Wed, 21 Feb 2018 23:34:08 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7993dbce-3bc5-4892-bd7f-262644664eb7" + "a9bb51a1-0e3f-40e9-870c-7c9aa01868e8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Unlinking\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1415" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "abe99479-4ff5-40c8-beca-037cb27f3e7a", - "14933e02-74db-461c-ba8d-2f51a1e46028" + "x-ms-request-id": [ + "54d7b84d-601c-4315-8c8a-8160364c2d06" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], - "x-ms-request-id": [ - "bdd6a1e3-060a-4f00-a05c-827bf1a9a0c3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" ], "x-ms-correlation-request-id": [ - "bdd6a1e3-060a-4f00-a05c-827bf1a9a0c3" + "fbd8cba5-6172-489a-9a22-6620ecbbdb12" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233409Z:bdd6a1e3-060a-4f00-a05c-827bf1a9a0c3" + "WESTUS:20191108T210828Z:fbd8cba5-6172-489a-9a22-6620ecbbdb12" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Fri, 08 Nov 2019 21:08:28 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "506" ], - "Date": [ - "Wed, 21 Feb 2018 23:34:08 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f41aa4b9-c53b-481b-81ba-924ba881423c" + "8dcb3d14-e089-482e-bcde-160da2f49014" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1249" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "b990b73c-f1f9-4ee7-a626-a072018b4dc1", - "713e9af8-0854-44eb-87aa-ade326b57317" + "x-ms-request-id": [ + "becc73d9-6b62-4a0f-96d2-ebe254c6e249" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], - "x-ms-request-id": [ - "3343ca0d-cf17-48ee-8b1b-a211d8eadd8a" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" ], "x-ms-correlation-request-id": [ - "3343ca0d-cf17-48ee-8b1b-a211d8eadd8a" + "e694dc9b-f056-42f0-8f1b-e685e9e412de" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233439Z:3343ca0d-cf17-48ee-8b1b-a211d8eadd8a" + "WESTUS:20191108T210828Z:e694dc9b-f056-42f0-8f1b-e685e9e412de" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Fri, 08 Nov 2019 21:08:28 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "506" ], - "Date": [ - "Wed, 21 Feb 2018 23:34:39 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d09702f-38d4-4e86-8fc5-d84417600dc6" + "093a151f-c690-47d0-a346-12b1d51fca0a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0071.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam0072.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1249" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "ef788adc-59fe-4570-b842-bf5b39f6bb77", - "b9ecf09a-c1ca-45f2-8fdc-e035deb6d4ac" + "x-ms-request-id": [ + "6b51a004-35f3-46d1-8207-de0ed00e5de5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], - "x-ms-request-id": [ - "58ff0769-c138-4c9c-b3a0-7e11792942ab" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" ], "x-ms-correlation-request-id": [ - "58ff0769-c138-4c9c-b3a0-7e11792942ab" + "29168720-b3ad-4f98-b93e-a7b93778824b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233439Z:58ff0769-c138-4c9c-b3a0-7e11792942ab" + "WESTUS:20191108T210859Z:29168720-b3ad-4f98-b93e-a7b93778824b" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Fri, 08 Nov 2019 21:08:59 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "506" ], - "Date": [ - "Wed, 21 Feb 2018 23:34:39 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "263" - ], "x-ms-client-request-id": [ - "996f301b-9e82-4bb0-bf61-043c880cfa96" + "60ab0881-4d52-4a0d-bc77-5f3e5781bdee" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "549" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e8dd18ea-7104-4aaf-b744-4489855eee44" + "1432744c-8ffd-4f56-ab75-1d79ce4eec09" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" ], "x-ms-correlation-request-id": [ - "104d269d-66bb-40d5-80a5-6e72e7a3d11d" + "45b41535-4a43-4f7b-8ba7-dc8853d58af6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232731Z:104d269d-66bb-40d5-80a5-6e72e7a3d11d" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T210930Z:45b41535-4a43-4f7b-8ba7-dc8853d58af6" ], "Date": [ - "Wed, 21 Feb 2018 23:27:31 GMT" + "Fri, 08 Nov 2019 21:09:29 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "506" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bf9c8c8-9b16-47bd-8be9-54743fa4b865" + "de6c62bb-d845-49bd-b0b0-e03a39fb027d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "495" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e1436ae2-1156-4b90-b935-ea1356eb9dc2" + "34516e09-b452-4b15-b39e-38283b79c9d8" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "11923" ], "x-ms-correlation-request-id": [ - "976f581e-3d87-4eb1-bf55-84ea35648252" + "48292de7-fa32-4602-a9de-58c14ee4e044" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232801Z:976f581e-3d87-4eb1-bf55-84ea35648252" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211000Z:48292de7-fa32-4602-a9de-58c14ee4e044" ], "Date": [ - "Wed, 21 Feb 2018 23:28:01 GMT" + "Fri, 08 Nov 2019 21:09:59 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "506" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43f428c0-4595-4a8c-81e5-25b18439980b" + "d7ba5612-88b2-4019-a965-1c9e9e7715e0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "495" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "dd546cf7-d8bb-4878-a059-330672a7e070" + "c4d1399d-54b3-43d4-ad4a-961c10c0bd30" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "11919" ], "x-ms-correlation-request-id": [ - "aab23af3-8e89-4343-8ac0-151d6c8306ee" + "e168843b-761e-4aae-852c-d7179226e5d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232832Z:aab23af3-8e89-4343-8ac0-151d6c8306ee" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211030Z:e168843b-761e-4aae-852c-d7179226e5d3" ], "Date": [ - "Wed, 21 Feb 2018 23:28:31 GMT" + "Fri, 08 Nov 2019 21:10:30 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "506" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19ebcd15-859d-438c-8d3e-d45c054d7527" + "2eef5ced-1b42-4a73-a13f-234040320a95" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "494" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f50232a8-4edf-499e-9c3a-5f1d7b78639a" + "7a6ec79b-d786-442f-b3b6-68fa6cb98be4" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "11915" ], "x-ms-correlation-request-id": [ - "bc65f712-abcd-4b18-a53b-24e8a377c20f" + "5556eac3-dedb-475a-abd8-e8d2a3a3d54f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232902Z:bc65f712-abcd-4b18-a53b-24e8a377c20f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211101Z:5556eac3-dedb-475a-abd8-e8d2a3a3d54f" ], "Date": [ - "Wed, 21 Feb 2018 23:29:02 GMT" + "Fri, 08 Nov 2019 21:11:01 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "505" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Deleting\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab1564ef-8f98-4410-a718-e8caeefb3a58" + "d956e29f-f311-4781-88f3-39650451d5da" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "494" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "793a4013-f55e-4643-8672-27cb1af83cf9" + "06a1c965-58df-4acc-9587-4233ac6cfc6c" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "11911" ], "x-ms-correlation-request-id": [ - "63fd7134-7057-4451-8a2e-148bee17dfda" + "82d4ebaa-810e-44be-9386-938b47fd0b8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T232933Z:63fd7134-7057-4451-8a2e-148bee17dfda" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211132Z:82d4ebaa-810e-44be-9386-938b47fd0b8f" ], "Date": [ - "Wed, 21 Feb 2018 23:29:32 GMT" + "Fri, 08 Nov 2019 21:11:32 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "505" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Deleting\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa2726fe-7c76-4d67-8a15-ff8a98f5c2c1" + "82e3a5a7-805b-4b6a-845e-deb13cd5b8de" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "494" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "584c7826-4e1d-4c02-baab-facb7084f2a4" + "d59d638d-b7ef-4da0-b7ad-8489b78b3063" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "11907" ], "x-ms-correlation-request-id": [ - "f07d1273-df33-43a6-ab0f-fc7e350edaee" + "cf202d49-2ad2-4eb5-846d-66016ce9f65f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233003Z:f07d1273-df33-43a6-ab0f-fc7e350edaee" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211202Z:cf202d49-2ad2-4eb5-846d-66016ce9f65f" ], "Date": [ - "Wed, 21 Feb 2018 23:30:03 GMT" + "Fri, 08 Nov 2019 21:12:02 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "505" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Deleting\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c5444cd-25a7-4ee1-9580-28acc5dc9aa1" + "1799cddb-e4df-4f89-bec0-cbd4490de8b7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "494" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "15c3123a-e0a0-4a38-ac81-8fa48c65ab9f" + "59f744cd-f275-43c6-97c8-cb7ea0097843" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "11903" ], "x-ms-correlation-request-id": [ - "8eded59b-87a1-4956-a11d-e18dc8fa6bfb" + "d270d14b-b4dc-479f-aa5c-683faa106647" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233034Z:8eded59b-87a1-4956-a11d-e18dc8fa6bfb" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211233Z:d270d14b-b4dc-479f-aa5c-683faa106647" ], "Date": [ - "Wed, 21 Feb 2018 23:30:33 GMT" + "Fri, 08 Nov 2019 21:12:32 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "505" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Deleting\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18af57c2-b1f1-458f-a761-b0ef2d1c33c6" + "ab33f709-2e51-4f2f-9352-96a6e7a0d992" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "494" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9263f608-94e1-44c5-a025-46464c20566b" + "c7c6302b-c57f-415d-9bc1-1764779fa2c5" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "11899" ], "x-ms-correlation-request-id": [ - "3b481c4e-f44e-4043-9665-aef45574662f" + "869d0080-0470-4edb-a6c9-71851e5e8e3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233104Z:3b481c4e-f44e-4043-9665-aef45574662f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211303Z:869d0080-0470-4edb-a6c9-71851e5e8e3c" ], "Date": [ - "Wed, 21 Feb 2018 23:31:03 GMT" + "Fri, 08 Nov 2019 21:13:03 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "505" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Deleting\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0863856d-2b9d-4ac6-92a0-608b21401392" + "43778038-76e9-4c97-8482-5467eb2a42ec" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "496" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "57170ee2-1843-4bc6-ba42-f1437b853840" + "fb7fb63e-81ec-4acf-9519-c3b0c9ff9abb" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "11895" ], "x-ms-correlation-request-id": [ - "a8118dc8-670d-406c-b019-99842e62dbd2" + "decb2bb1-d02d-4490-896b-fb10b503784d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233135Z:a8118dc8-670d-406c-b019-99842e62dbd2" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211334Z:decb2bb1-d02d-4490-896b-fb10b503784d" ], "Date": [ - "Wed, 21 Feb 2018 23:31:34 GMT" + "Fri, 08 Nov 2019 21:13:33 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "505" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Deleting\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "593d500d-2f6f-410d-92e9-43dc913bcce6" + "f91a7885-a9d0-4c49-8429-7547f3b704ca" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "508" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8ffdf7d0-fd7d-4fd9-a69d-b89a2cacf6b6" + "09ea4b0f-465f-4682-8aa4-6143037592a6" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "11891" ], "x-ms-correlation-request-id": [ - "d428cc24-7f42-47ad-be83-ea95a89dec7c" + "399d660e-e31b-4965-be49-419db0c29ae3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233135Z:d428cc24-7f42-47ad-be83-ea95a89dec7c" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211404Z:399d660e-e31b-4965-be49-419db0c29ae3" ], "Date": [ - "Wed, 21 Feb 2018 23:31:35 GMT" + "Fri, 08 Nov 2019 21:14:04 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7532101d-ac35-4992-a3af-2c3c800c7faf" + "fc8403d8-ae3d-4342-bf03-7cd3d63d15a4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "508" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3277fbc4-8d27-480f-a3ef-2bb610ea7033" + "4dfc36e4-5faf-483b-bdeb-edb61e4f77fb" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "15baddf9-1d10-4c75-bbbb-f181bb225adf" + "81767503-d691-40c8-9c10-1e1b9b103ae3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233136Z:15baddf9-1d10-4c75-bbbb-f181bb225adf" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T210828Z:81767503-d691-40c8-9c10-1e1b9b103ae3" ], "Date": [ - "Wed, 21 Feb 2018 23:31:35 GMT" + "Fri, 08 Nov 2019 21:08:28 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95c89f71-5705-47fa-8991-4fb53de5f08d" + "872f05c4-fca1-4c4e-b367-4c1d6c1560c3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "508" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01" + ], "x-ms-request-id": [ - "a97f877e-8cc2-4fcf-94ac-3074102b2df4" + "4d732cad-06d2-4236-aabe-fb1b6acc4bc2" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "7923d4bd-41d1-480b-b57d-77b10339038f" + "f698c28a-d17b-4059-adaf-45663b6ff008" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233136Z:7923d4bd-41d1-480b-b57d-77b10339038f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211405Z:f698c28a-d17b-4059-adaf-45663b6ff008" ], "Date": [ - "Wed, 21 Feb 2018 23:31:36 GMT" + "Fri, 08 Nov 2019 21:14:04 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzRkNzMyY2FkLTA2ZDItNDIzNi1hYWJlLWZiMWI2YWNjNGJjMj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6aa08aaa-15f9-4d98-8e9e-1f6103ea32cc" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "508" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01" + ], "x-ms-request-id": [ - "388b0e0c-762d-4d76-ac91-b7b57f5bd826" + "549f7f71-e461-46f1-b1b2-e29fd3e23a2a" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "11890" ], "x-ms-correlation-request-id": [ - "7af0301f-ce4d-4ef5-bff7-b399a9f434cc" + "747e9ad7-f572-48b5-b81a-9929525906d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233207Z:7af0301f-ce4d-4ef5-bff7-b399a9f434cc" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211435Z:747e9ad7-f572-48b5-b81a-9929525906d1" ], "Date": [ - "Wed, 21 Feb 2018 23:32:07 GMT" + "Fri, 08 Nov 2019 21:14:35 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzRkNzMyY2FkLTA2ZDItNDIzNi1hYWJlLWZiMWI2YWNjNGJjMj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "06cbd891-c3d0-473b-beee-01a773f77634" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "508" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01" + ], "x-ms-request-id": [ - "7ae76b18-a31e-4294-b356-33bb8ea404ba" + "90aa3d31-fef5-4bd8-979a-6026ec4090ea" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "11889" ], "x-ms-correlation-request-id": [ - "139949ae-fa18-4b7d-bcf1-d8dabbd21119" + "c71f284c-b9c7-44db-b8b9-285a653a2cb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233237Z:139949ae-fa18-4b7d-bcf1-d8dabbd21119" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211505Z:c71f284c-b9c7-44db-b8b9-285a653a2cb4" ], "Date": [ - "Wed, 21 Feb 2018 23:32:37 GMT" + "Fri, 08 Nov 2019 21:15:04 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzRkNzMyY2FkLTA2ZDItNDIzNi1hYWJlLWZiMWI2YWNjNGJjMj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a3adb747-f79b-4a64-9b77-e25363a5e7db" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072\",\r\n \"name\": \"redisteam0072\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "508" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01" + ], "x-ms-request-id": [ - "6e078421-e8e5-46aa-9738-23abee7b2367" + "507262c1-9d46-45da-abad-83ee11fd2229" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "11888" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "a601307d-228e-4fae-ad35-8dcf09c15e59" + "ed584837-4241-465f-bbd7-abd4a8a568c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233308Z:a601307d-228e-4fae-ad35-8dcf09c15e59" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211535Z:ed584837-4241-465f-bbd7-abd4a8a568c4" ], "Date": [ - "Wed, 21 Feb 2018 23:33:08 GMT" + "Fri, 08 Nov 2019 21:15:34 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzRkNzMyY2FkLTA2ZDItNDIzNi1hYWJlLWZiMWI2YWNjNGJjMj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a7fd7a48-e354-4147-9364-e87500efa2b7" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01" + ], "x-ms-request-id": [ - "10b36b03-ae4d-4dab-8486-da45a31c2d3b" + "45b3490c-414f-4a22-aee4-b300d4e30981" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "11887" ], "x-ms-correlation-request-id": [ - "f90ae513-77c6-462e-83fb-411b91e4a2ea" + "597db87f-ccf2-485f-8c99-40c794680fd3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233338Z:f90ae513-77c6-462e-83fb-411b91e4a2ea" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211605Z:597db87f-ccf2-485f-8c99-40c794680fd3" ], "Date": [ - "Wed, 21 Feb 2018 23:33:37 GMT" + "Fri, 08 Nov 2019 21:16:05 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzRkNzMyY2FkLTA2ZDItNDIzNi1hYWJlLWZiMWI2YWNjNGJjMj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2f8dce34-9a75-4708-83b6-de2ee1c9f5e5" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01" + ], "x-ms-request-id": [ - "3389b752-92e3-4dcf-b131-7522ed5cf2d3" + "ac809202-ff05-4f1a-909e-1dea76b406f1" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" + "11886" ], "x-ms-correlation-request-id": [ - "d08ad8f7-aed1-46cb-816d-ed399cead143" + "ebcf4083-11db-4448-a40e-3ec16650824a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233409Z:d08ad8f7-aed1-46cb-816d-ed399cead143" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211635Z:ebcf4083-11db-4448-a40e-3ec16650824a" ], "Date": [ - "Wed, 21 Feb 2018 23:34:08 GMT" + "Fri, 08 Nov 2019 21:16:35 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzRkNzMyY2FkLTA2ZDItNDIzNi1hYWJlLWZiMWI2YWNjNGJjMj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d357e503-5d76-445e-af45-ff302d8f08ed" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01" + ], "x-ms-request-id": [ - "c532d98a-0071-42d1-abcf-e2dd49acf851" + "9e9f1fac-8398-4b6d-b813-342e4eccf3c3" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "11885" ], "x-ms-correlation-request-id": [ - "9ab7f71c-ab98-4697-a05c-ecb3c9c11909" + "176cf1dc-ee80-4a3d-b93c-96821c43c11e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233439Z:9ab7f71c-ab98-4697-a05c-ecb3c9c11909" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211705Z:176cf1dc-ee80-4a3d-b93c-96821c43c11e" ], "Date": [ - "Wed, 21 Feb 2018 23:34:39 GMT" + "Fri, 08 Nov 2019 21:17:05 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzRkNzMyY2FkLTA2ZDItNDIzNi1hYWJlLWZiMWI2YWNjNGJjMj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5e083486-7413-41bb-af81-cb0b1e02d3d0" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "506" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a6967102-8d10-46d7-afd4-d1bc895e9689" + "9491ac06-ad05-40e7-b107-d3cbe87732bc" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "11884" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "5fe43f4b-7882-4ca7-8445-52aa695a4604" + "4995a4a7-b848-45a5-a467-77504bdda0eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233135Z:5fe43f4b-7882-4ca7-8445-52aa695a4604" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211735Z:4995a4a7-b848-45a5-a467-77504bdda0eb" ], "Date": [ - "Wed, 21 Feb 2018 23:31:35 GMT" + "Fri, 08 Nov 2019 21:17:34 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/4d732cad-06d2-4236-aabe-fb1b6acc4bc2?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzRkNzMyY2FkLTA2ZDItNDIzNi1hYWJlLWZiMWI2YWNjNGJjMj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1430b20f-8c41-4b0a-bb42-af74f617cc60" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "506" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2afa81a5-4ab0-4819-8f66-fd9b3e2cbddc" + "1c7191e8-1233-49d9-ac9a-15ba98fdc4cf" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "11883" ], "x-ms-correlation-request-id": [ - "68d5c55f-26e6-4d42-aedb-4a24ebf1cee2" + "4f2f5da1-cbd2-4a3d-a2a6-b7c871aef539" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233136Z:68d5c55f-26e6-4d42-aedb-4a24ebf1cee2" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211735Z:4f2f5da1-cbd2-4a3d-a2a6-b7c871aef539" ], "Date": [ - "Wed, 21 Feb 2018 23:31:35 GMT" + "Fri, 08 Nov 2019 21:17:35 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyP2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b0d0000-89bc-4a0d-8d14-92182e6c8900" + "bf43d6bc-735c-4ca4-bba7-2b4dffbce70d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "506" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01" + ], "x-ms-request-id": [ - "6b60ee09-30a3-42c5-b516-2ee9bd5f721d" + "6e60e9a0-108f-4206-b8eb-f5539b6466e3" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" ], "x-ms-correlation-request-id": [ - "e7336403-eacd-4ef5-9422-9a5ba5738de5" + "e06a00f9-d5ed-4e1f-ad27-d0a68e7bcb47" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233136Z:e7336403-eacd-4ef5-9422-9a5ba5738de5" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211736Z:e06a00f9-d5ed-4e1f-ad27-d0a68e7bcb47" ], "Date": [ - "Wed, 21 Feb 2018 23:31:35 GMT" + "Fri, 08 Nov 2019 21:17:35 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzZlNjBlOWEwLTEwOGYtNDIwNi1iOGViLWY1NTM5YjY0NjZlMz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2b3025b7-b2d3-4e7f-90b9-9388bca8f819" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "506" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01" + ], "x-ms-request-id": [ - "7586d347-1326-4485-b76a-90f9b701cf5d" + "d7402486-96be-4a88-8a8e-936650871967" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "11882" ], "x-ms-correlation-request-id": [ - "b6d7805b-7323-4917-8cce-a0e28b8de25e" + "18da1ebb-7c82-4937-ae65-345b690a9b44" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233207Z:b6d7805b-7323-4917-8cce-a0e28b8de25e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211806Z:18da1ebb-7c82-4937-ae65-345b690a9b44" ], "Date": [ - "Wed, 21 Feb 2018 23:32:07 GMT" + "Fri, 08 Nov 2019 21:18:06 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzZlNjBlOWEwLTEwOGYtNDIwNi1iOGViLWY1NTM5YjY0NjZlMz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6a2e165d-0499-412e-b869-ac3c125ffc90" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "506" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01" + ], "x-ms-request-id": [ - "1247f61d-6698-4dce-bd8e-49d62e8f50c4" + "8c063365-f49a-4ecc-bbaa-f402d963bcfd" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "11881" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "d543dc33-798e-45d1-9823-5a7211fa8835" + "4ab4dbfc-9768-49c7-9c52-765c5d125adb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233238Z:d543dc33-798e-45d1-9823-5a7211fa8835" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211836Z:4ab4dbfc-9768-49c7-9c52-765c5d125adb" ], "Date": [ - "Wed, 21 Feb 2018 23:32:38 GMT" + "Fri, 08 Nov 2019 21:18:36 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzZlNjBlOWEwLTEwOGYtNDIwNi1iOGViLWY1NTM5YjY0NjZlMz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3824465c-1cda-463d-aa86-c64fd8b626c0" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "506" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01" + ], "x-ms-request-id": [ - "3a332e30-b67f-47a0-b1e6-be228684edf6" + "e5ebcc35-c323-4198-aa10-3c4b15f9ac17" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" + "11880" ], "x-ms-correlation-request-id": [ - "2662b40c-e81a-4590-9e8e-9e000cef0d4c" + "50b4a085-89b3-4b02-8697-b7c4256a2aa0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233308Z:2662b40c-e81a-4590-9e8e-9e000cef0d4c" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211906Z:50b4a085-89b3-4b02-8697-b7c4256a2aa0" ], "Date": [ - "Wed, 21 Feb 2018 23:33:08 GMT" + "Fri, 08 Nov 2019 21:19:06 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzZlNjBlOWEwLTEwOGYtNDIwNi1iOGViLWY1NTM5YjY0NjZlMz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "128f8886-3299-4252-aaf2-ea020bc5379e" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Deleting\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "505" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01" + ], "x-ms-request-id": [ - "5b201f0f-494f-4655-ae04-c319b4dffa6f" + "5927935f-56e8-44e6-9bb9-dd49d36ba12c" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "11879" ], "x-ms-correlation-request-id": [ - "614a3fb7-a39a-49ac-bde4-c44fd8cd7287" + "112e19e3-3846-4a1c-83c0-3368f81f32a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233338Z:614a3fb7-a39a-49ac-bde4-c44fd8cd7287" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T211937Z:112e19e3-3846-4a1c-83c0-3368f81f32a9" ], "Date": [ - "Wed, 21 Feb 2018 23:33:38 GMT" + "Fri, 08 Nov 2019 21:19:36 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzZlNjBlOWEwLTEwOGYtNDIwNi1iOGViLWY1NTM5YjY0NjZlMz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "30c5298d-6a30-4b92-b1a7-4167d42a186a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers/redisteam0071\",\r\n \"name\": \"redisteam0071\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"provisioningState\": \"Deleting\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "505" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01" + ], "x-ms-request-id": [ - "881d1720-a30f-4dc1-830d-987ac230fe5f" + "84a6dc59-7173-44e4-b536-7bbf10f865c9" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "11878" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "742020c9-eaab-4e36-b016-8bda069efadb" + "f5c985c4-f8ec-43d0-8664-65fa7ae0d06e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233409Z:742020c9-eaab-4e36-b016-8bda069efadb" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212007Z:f5c985c4-f8ec-43d0-8664-65fa7ae0d06e" ], "Date": [ - "Wed, 21 Feb 2018 23:34:08 GMT" + "Fri, 08 Nov 2019 21:20:06 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072/linkedServers?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyL2xpbmtlZFNlcnZlcnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzZlNjBlOWEwLTEwOGYtNDIwNi1iOGViLWY1NTM5YjY0NjZlMz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5a4a27a6-5749-4a32-8a9a-93141ede94e4" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01" + ], "x-ms-request-id": [ - "99eb9da3-60af-4b43-9325-053de251acd1" + "3142f33c-e65e-4b48-bde7-fc2e04c9b453" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "11877" ], "x-ms-correlation-request-id": [ - "52167adc-6aa7-425a-aaa2-d86e95d47ec7" + "2a45723e-dae0-4d57-866f-830f33183067" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233439Z:52167adc-6aa7-425a-aaa2-d86e95d47ec7" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212037Z:2a45723e-dae0-4d57-866f-830f33183067" ], "Date": [ - "Wed, 21 Feb 2018 23:34:39 GMT" + "Fri, 08 Nov 2019 21:20:36 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071/linkedServers/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxL2xpbmtlZFNlcnZlcnMvcmVkaXN0ZWFtMDA3Mj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzZlNjBlOWEwLTEwOGYtNDIwNi1iOGViLWY1NTM5YjY0NjZlMz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "175c2be4-662e-4212-92b9-a94b5ed1b1a7" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ac5d7e5e-c82b-46f4-890b-033cd4a5e1ed" + "bba6d4da-3981-429d-9b28-96de131b584e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11876" ], "x-ms-correlation-request-id": [ - "aeb9c0c3-4a18-494a-9c7b-e701c140d0eb" + "3ca8bae2-1a49-4aae-9f56-afdc595a8b9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233137Z:aeb9c0c3-4a18-494a-9c7b-e701c140d0eb" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212107Z:3ca8bae2-1a49-4aae-9f56-afdc595a8b9b" ], "Date": [ - "Wed, 21 Feb 2018 23:31:36 GMT" + "Fri, 08 Nov 2019 21:21:07 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0071?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcxP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/6e60e9a0-108f-4206-b8eb-f5539b6466e3?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzZlNjBlOWEwLTEwOGYtNDIwNi1iOGViLWY1NTM5YjY0NjZlMz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0b8092bc-e0de-45b3-983d-a2ec7bcfbbed" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b26e4e31-1428-4f1d-8494-9426dc0c67d0" + "1d35f1fe-dc21-423f-810e-7ad2557c0317" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11875" ], "x-ms-correlation-request-id": [ - "73467baf-0d7e-464d-858e-d11e893253ca" + "ee1ad17d-3765-4e7d-8ca2-8f41a7afe418" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233441Z:73467baf-0d7e-464d-858e-d11e893253ca" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212107Z:ee1ad17d-3765-4e7d-8ca2-8f41a7afe418" ], "Date": [ - "Wed, 21 Feb 2018 23:34:40 GMT" + "Fri, 08 Nov 2019 21:21:07 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-7/providers/Microsoft.Cache/Redis/redisteam0072?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDcyP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-7?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8b58bfd-6056-4949-a577-9fd25b016c28" + "cb134a1f-744c-45ac-955a-a28ae47fd575" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "c9b09461-68d1-456e-9e26-6daddd248369" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "15" ], - "x-content-type-options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "x-ms-request-id": [ + "c13e7149-4501-4707-a536-27fbf90cec1d" ], "x-ms-correlation-request-id": [ - "0b1f993b-6906-4074-80b3-cc1f592eeaa3" + "c13e7149-4501-4707-a536-27fbf90cec1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233441Z:0b1f993b-6906-4074-80b3-cc1f592eeaa3" + "WESTUS:20191108T212108Z:c13e7149-4501-4707-a536-27fbf90cec1d" ], - "Cache-Control": [ - "no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:34:41 GMT" + "Fri, 08 Nov 2019 21:21:08 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-7?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGN0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-request-id": [ - "88c8c8d3-1b52-4778-a5cf-e918dcad597a" + "2aa1cb3d-ffda-4bc9-97c5-480c96141fab" ], "x-ms-correlation-request-id": [ - "88c8c8d3-1b52-4778-a5cf-e918dcad597a" + "2aa1cb3d-ffda-4bc9-97c5-480c96141fab" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233442Z:88c8c8d3-1b52-4778-a5cf-e918dcad597a" + "WESTUS:20191108T212123Z:2aa1cb3d-ffda-4bc9-97c5-480c96141fab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:34:42 GMT" + "Fri, 08 Nov 2019 21:21:23 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGN0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGN0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11998" ], "x-ms-request-id": [ - "72434dd4-f56c-442a-ada4-09a2458c87ee" + "9c612627-b046-4d91-b97c-0aded888c731" ], "x-ms-correlation-request-id": [ - "72434dd4-f56c-442a-ada4-09a2458c87ee" + "9c612627-b046-4d91-b97c-0aded888c731" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233442Z:72434dd4-f56c-442a-ada4-09a2458c87ee" + "WESTUS:20191108T212138Z:9c612627-b046-4d91-b97c-0aded888c731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:34:42 GMT" + "Fri, 08 Nov 2019 21:21:38 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGN0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGN0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11997" ], "x-ms-request-id": [ - "b766d286-95ac-4add-9334-dec8a4d42501" + "477bdcf6-b966-4f6e-96a9-04d0afacbbbf" ], "x-ms-correlation-request-id": [ - "b766d286-95ac-4add-9334-dec8a4d42501" + "477bdcf6-b966-4f6e-96a9-04d0afacbbbf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233457Z:b766d286-95ac-4add-9334-dec8a4d42501" + "WESTUS:20191108T212153Z:477bdcf6-b966-4f6e-96a9-04d0afacbbbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:34:57 GMT" + "Fri, 08 Nov 2019 21:21:53 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGN0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGN0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11996" ], "x-ms-request-id": [ - "180bf513-eef8-46a5-ab18-614936f457c5" + "ce711c1d-a2b7-4d56-87bc-f9e30f556900" ], "x-ms-correlation-request-id": [ - "180bf513-eef8-46a5-ab18-614936f457c5" + "ce711c1d-a2b7-4d56-87bc-f9e30f556900" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233512Z:180bf513-eef8-46a5-ab18-614936f457c5" + "WESTUS:20191108T212208Z:ce711c1d-a2b7-4d56-87bc-f9e30f556900" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:35:12 GMT" + "Fri, 08 Nov 2019 21:22:08 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 202 + "ResponseBody": "", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGN0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGN0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11995" ], "x-ms-request-id": [ - "d5bba515-b481-45b0-b30e-95053517932d" + "f0ed017d-e10c-4b51-9bfa-f4954c8186b1" ], "x-ms-correlation-request-id": [ - "d5bba515-b481-45b0-b30e-95053517932d" + "f0ed017d-e10c-4b51-9bfa-f4954c8186b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233528Z:d5bba515-b481-45b0-b30e-95053517932d" + "WESTUS:20191108T212208Z:f0ed017d-e10c-4b51-9bfa-f4954c8186b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:35:28 GMT" + "Fri, 08 Nov 2019 21:22:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + "SubscriptionId": "bc130894-c5b3-4adc-a077-0b51f3714abe" } } \ No newline at end of file diff --git a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestImportExportReboot.json b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestImportExportReboot.json index dd63e8f3d62c..8eee7eea5316 100644 --- a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestImportExportReboot.json +++ b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestImportExportReboot.json @@ -1,34 +1,51 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-5?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "x-ms-client-request-id": [ - "b9baf697-4a81-4c4e-afa9-e14d1592224f" + "2f0cb10a-59b9-400a-9754-b4dec30428d7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5\",\r\n \"name\": \"PowerShellTest-5\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "185" + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c925ccd5-1a1d-45d2-81b7-82a4db864425" + ], + "x-ms-correlation-request-id": [ + "c925ccd5-1a1d-45d2-81b7-82a4db864425" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T200221Z:c925ccd5-1a1d-45d2-81b7-82a4db864425" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 20:02:20 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,6 +53,42 @@ "Expires": [ "-1" ], + "Content-Length": [ + "3202" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-5?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "856887bd-4e23-4ded-8b40-79dacc9f63db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Pragma": [ "no-cache" ], @@ -43,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "2f9a5c55-f296-45fc-9c23-a20fb87e5435" + "1d083a42-c2a9-461d-9328-e2b1c9061cb2" ], "x-ms-correlation-request-id": [ - "2f9a5c55-f296-45fc-9c23-a20fb87e5435" + "1d083a42-c2a9-461d-9328-e2b1c9061cb2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224007Z:2f9a5c55-f296-45fc-9c23-a20fb87e5435" + "WESTUS:20191108T200221Z:1d083a42-c2a9-461d-9328-e2b1c9061cb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -57,176 +110,176 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 22:40:07 GMT" + "Fri, 08 Nov 2019 20:02:21 GMT" + ], + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5\",\r\n \"name\": \"PowerShellTest-5\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Storage/storageAccounts/redisteam005s?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9yZWRpc3RlYW0wMDVzP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Storage/storageAccounts/redisteam005s?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9yZWRpc3RlYW0wMDVzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "97" - ], "x-ms-client-request-id": [ - "ea513592-4044-4c9e-8849-17ee37c313a7" + "a1cafbc1-6e37-4bf9-954a-48beaf84379b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Storage.StorageManagementClient/6.5.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Storage/locations/westus/asyncoperations/50ad44a0-7e24-4e71-8259-2094c4bf4840?monitor=true&api-version=2017-10-01" + ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "d5db84b1-cfb2-43be-886e-baff37b076a7" + "50ad44a0-7e24-4e71-8259-2094c4bf4840" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "2a46d3de-0ea0-43ad-b1e4-4bf12ac2ef27" + "50251cdb-765c-43eb-948b-20be59e6d95d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224008Z:2a46d3de-0ea0-43ad-b1e4-4bf12ac2ef27" + "WESTUS:20191108T200223Z:50251cdb-765c-43eb-948b-20be59e6d95d" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 22:40:08 GMT" + "Fri, 08 Nov 2019 20:02:22 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Storage/locations/westus/asyncoperations/d5db84b1-cfb2-43be-886e-baff37b076a7?monitor=true&api-version=2017-06-01" + "Content-Type": [ + "text/plain; charset=utf-8" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Storage/locations/westus/asyncoperations/d5db84b1-cfb2-43be-886e-baff37b076a7?monitor=true&api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy9kNWRiODRiMS1jZmIyLTQzYmUtODg2ZS1iYWZmMzdiMDc2YTc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Storage/locations/westus/asyncoperations/50ad44a0-7e24-4e71-8259-2094c4bf4840?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy81MGFkNDRhMC03ZTI0LTRlNzEtODI1OS0yMDk0YzRiZjQ4NDA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Storage.StorageManagementClient/6.5.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Storage/storageAccounts/redisteam005s\",\r\n \"name\": \"redisteam005s\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"trustedDirectories\": [\r\n \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n ],\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-28T22:40:08.6732437Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-28T22:40:08.6732437Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-08-28T22:40:08.2983027Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://redisteam005s.blob.core.windows.net/\",\r\n \"queue\": \"https://redisteam005s.queue.core.windows.net/\",\r\n \"table\": \"https://redisteam005s.table.core.windows.net/\",\r\n \"file\": \"https://redisteam005s.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1106" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "dd11ff4d-c0b0-4126-ad09-ae0c245aa71d" + "a627b89c-549f-4a6c-b835-a0c510764fba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "658b720c-d6b9-464c-b371-4b720274d475" + "5640560d-45e3-43ee-af5f-99a8694256c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224026Z:658b720c-d6b9-464c-b371-4b720274d475" + "WESTUS:20191108T200240Z:5640560d-45e3-43ee-af5f-99a8694256c0" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 22:40:25 GMT" + "Fri, 08 Nov 2019 20:02:39 GMT" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1065" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Storage/storageAccounts/redisteam005s\",\r\n \"name\": \"redisteam005s\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-08T20:02:22.5489309Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-08T20:02:22.5489309Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-11-08T20:02:22.5013572Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://redisteam005s.blob.core.windows.net/\",\r\n \"queue\": \"https://redisteam005s.queue.core.windows.net/\",\r\n \"table\": \"https://redisteam005s.table.core.windows.net/\",\r\n \"file\": \"https://redisteam005s.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ec81d4c-310a-456d-819b-98d3523ad7a4" + "bb61f43a-0672-460b-b508-271b5dbec416" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam005' under resource group 'PowerShellTest-5' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "154" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -235,13 +288,13 @@ "gateway" ], "x-ms-request-id": [ - "03e073cc-f0f0-43ec-a34f-1c6035a4f246" + "af99d120-2b39-4888-999e-a348c50edc71" ], "x-ms-correlation-request-id": [ - "03e073cc-f0f0-43ec-a34f-1c6035a4f246" + "af99d120-2b39-4888-999e-a348c50edc71" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224026Z:03e073cc-f0f0-43ec-a34f-1c6035a4f246" + "WESTUS:20191108T200240Z:af99d120-2b39-4888-999e-a348c50edc71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,53 +302,53 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 22:40:26 GMT" + "Fri, 08 Nov 2019 20:02:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "154" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam005' under resource group 'PowerShellTest-5' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b904192-334d-41cf-a859-72762ccf1cf7" + "be1c1ea1-ebdd-4656-ba28-4517283cde35" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f36d3d8d-dd09-4efb-b8b5-7d364bb5cb87" + "abaf26c1-4f85-40a6-b4bb-b32b9ac9edc4" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,65 +356,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "b706d45d-4682-45a4-a0c4-3abc97351628" + "46cc4f6f-bfc0-4113-bf31-3df889e796fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224059Z:b706d45d-4682-45a4-a0c4-3abc97351628" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200314Z:46cc4f6f-bfc0-4113-bf31-3df889e796fb" ], "Date": [ - "Tue, 28 Aug 2018 22:40:59 GMT" + "Fri, 08 Nov 2019 20:03:13 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "129a6410-5df9-45b5-8bfa-d2c5d8da834f" + "b7d0b144-b675-4302-9979-adb00075b667" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "22ac37f1-2492-40c1-8b6c-d20970668a8c" + "2704af21-b71f-457f-af5e-ac2023ddcec1" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,65 +422,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "f0018ebc-1489-486b-8c8d-d03fc110fc49" + "ffac4897-9cd7-46c8-9d6e-18f6199fd4fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224130Z:f0018ebc-1489-486b-8c8d-d03fc110fc49" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200344Z:ffac4897-9cd7-46c8-9d6e-18f6199fd4fe" ], "Date": [ - "Tue, 28 Aug 2018 22:41:29 GMT" + "Fri, 08 Nov 2019 20:03:43 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3270cf7c-598a-4066-bf4d-57e6ff9d324a" + "ecd29630-72ac-4894-9d2a-821134592f54" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "df6890c6-7305-476b-a2ca-7b15102fd0c9" + "df9e1180-9c52-4247-b387-e452f2a81718" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -435,65 +488,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "b98e0462-ffbd-47f1-af23-bbd5af42899c" + "efa219ca-7136-40f8-b064-301832f60187" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224200Z:b98e0462-ffbd-47f1-af23-bbd5af42899c" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200414Z:efa219ca-7136-40f8-b064-301832f60187" ], "Date": [ - "Tue, 28 Aug 2018 22:41:59 GMT" + "Fri, 08 Nov 2019 20:04:14 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "631c6099-9f1c-4b3c-b75e-03eef50190e3" + "77966d6d-0796-43d9-b6a5-434f61d2998f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f3c4fc5c-253c-4fdf-ab40-76b3b6b4f35c" + "2c0471a9-098d-47ef-b767-cb6a4bac2957" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -501,65 +554,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "a3a3f332-b152-4852-92e8-7535b68cc7eb" + "67599c34-ef54-4ab4-b666-4f7958cddb4f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224230Z:a3a3f332-b152-4852-92e8-7535b68cc7eb" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200444Z:67599c34-ef54-4ab4-b666-4f7958cddb4f" ], "Date": [ - "Tue, 28 Aug 2018 22:42:29 GMT" + "Fri, 08 Nov 2019 20:04:43 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b9ff661-4854-4bcc-ad25-a4fcebd86670" + "c500f3da-acea-49a6-a9f1-6e785df08c04" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9296230c-069f-464b-b7b0-2af80c66d745" + "0b135c52-8ca6-4906-9e3b-17a7a4ea0f78" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,65 +620,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "5e718b10-9da0-4083-ae01-329ee6de2ac2" + "2ca2e731-c101-46e9-8028-63e36a75b42a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224300Z:5e718b10-9da0-4083-ae01-329ee6de2ac2" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200514Z:2ca2e731-c101-46e9-8028-63e36a75b42a" ], "Date": [ - "Tue, 28 Aug 2018 22:42:59 GMT" + "Fri, 08 Nov 2019 20:05:13 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7296c3b1-ff3f-41c6-8274-c558949c9314" + "3a4c418a-835a-4b49-bb3a-58b5b9e99898" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ae688219-c74e-4af8-809b-906d0f143bdf" + "084ce3d4-abe6-4a13-b5fa-a42626d3b62a" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,65 +686,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "30dcbca0-9b8c-42f4-a009-ba36e132cefa" + "020743e2-3603-4199-b3df-606d6ba9c4ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224330Z:30dcbca0-9b8c-42f4-a009-ba36e132cefa" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200544Z:020743e2-3603-4199-b3df-606d6ba9c4ec" ], "Date": [ - "Tue, 28 Aug 2018 22:43:29 GMT" + "Fri, 08 Nov 2019 20:05:44 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62fd914a-44c7-4c4e-9a45-a293b617c194" + "3ef31314-ec60-49dc-98fe-1a5df66253a6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4e8f07f8-debf-4196-bccc-2c326900a687" + "9436bb21-0c6a-4c02-af9f-12a36282f5bc" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -699,65 +752,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "1c89195f-443e-4c72-9596-f12a1efd1bd9" + "67473a2b-ccdd-4a81-88b6-f59993a53217" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224400Z:1c89195f-443e-4c72-9596-f12a1efd1bd9" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200614Z:67473a2b-ccdd-4a81-88b6-f59993a53217" ], "Date": [ - "Tue, 28 Aug 2018 22:44:00 GMT" + "Fri, 08 Nov 2019 20:06:14 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "880ac5b8-c8ee-4b92-87a6-05d2ff147d6b" + "399e2003-409a-40dd-ad15-306cec77c4c5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ea46016a-1cd7-45aa-ba3c-ddcb288a8dc5" + "3e351866-5fb1-4f7e-8f39-829cd830ca88" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -765,65 +818,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "dc13f792-4996-4027-bef7-98f5f455f181" + "94f765e0-db53-4a7a-b138-db3eca544aba" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224430Z:dc13f792-4996-4027-bef7-98f5f455f181" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200645Z:94f765e0-db53-4a7a-b138-db3eca544aba" ], "Date": [ - "Tue, 28 Aug 2018 22:44:29 GMT" + "Fri, 08 Nov 2019 20:06:44 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a2334b3-32e1-49e8-b9e7-5b9a4c312b6a" + "fe5110b1-13c5-4887-bd82-e1d16d336e13" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a1d16429-7d31-4678-b664-6fd05c57f5b5" + "339d0880-0723-486f-be33-6891fd83e313" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -831,65 +884,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "8e81a290-f603-47c8-be66-b7a0e6aa484f" + "80e5ba28-4017-4c23-a323-ca0f6910e93c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224500Z:8e81a290-f603-47c8-be66-b7a0e6aa484f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200715Z:80e5ba28-4017-4c23-a323-ca0f6910e93c" ], "Date": [ - "Tue, 28 Aug 2018 22:45:00 GMT" + "Fri, 08 Nov 2019 20:07:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f5dcdbd-baab-4d43-b1d2-c1cafe899e8c" + "487b8bc7-d36b-448c-b238-830e0f141578" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cda3aa7c-fb29-465a-90d9-f64d83775440" + "29364098-04a9-4d4b-b832-3c1e98251d37" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -897,65 +950,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "4eb97398-64bc-429b-b81d-a6c4cd0be427" + "b1c6a7b4-a7ae-4459-8552-c4c5c5c2c33f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224530Z:4eb97398-64bc-429b-b81d-a6c4cd0be427" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200745Z:b1c6a7b4-a7ae-4459-8552-c4c5c5c2c33f" ], "Date": [ - "Tue, 28 Aug 2018 22:45:30 GMT" + "Fri, 08 Nov 2019 20:07:44 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a097a528-6d00-4172-8f31-d1aa34310b17" + "159ed1ac-49c2-4ec2-acf1-50a85638e9d3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "804be4f7-87bf-4127-9dea-33f41af96976" + "3850bf8b-04bf-4017-aee0-15f36933f14a" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -963,65 +1016,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "ca1c6372-48fd-415f-af40-f812726a4478" + "3fcd77f1-34ee-43be-b7b6-6a15220da10e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224600Z:ca1c6372-48fd-415f-af40-f812726a4478" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200815Z:3fcd77f1-34ee-43be-b7b6-6a15220da10e" ], "Date": [ - "Tue, 28 Aug 2018 22:46:00 GMT" + "Fri, 08 Nov 2019 20:08:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb59444b-68f3-444d-b502-370897f53a17" + "fab0ded0-3af6-41f5-b840-cfbf3e9cab4d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "169fa90f-be51-4f88-b6ad-cb7f77a740ad" + "e7598b45-9e93-4100-bcc2-96154491cf53" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1029,65 +1082,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "82b7f45f-fe75-4840-b7e0-98acda0c990b" + "95d9f335-bd31-47a2-877f-f5869f08e721" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224630Z:82b7f45f-fe75-4840-b7e0-98acda0c990b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200845Z:95d9f335-bd31-47a2-877f-f5869f08e721" ], "Date": [ - "Tue, 28 Aug 2018 22:46:30 GMT" + "Fri, 08 Nov 2019 20:08:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1cc3290-2f4a-451c-a754-35d6994aa619" + "0aa3ba26-2c63-492a-9cd8-abdcb4d4d143" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cc126329-bf4f-432a-bb80-6a0dcdabfc08" + "266dcb20-18ed-40ce-8880-563ed2e909e6" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,65 +1148,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-correlation-request-id": [ - "df386fd3-9630-4acf-8363-88f0709d726c" + "c9e2de42-b7ca-4d10-b188-0526122d3c3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224700Z:df386fd3-9630-4acf-8363-88f0709d726c" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200916Z:c9e2de42-b7ca-4d10-b188-0526122d3c3d" ], "Date": [ - "Tue, 28 Aug 2018 22:47:00 GMT" + "Fri, 08 Nov 2019 20:09:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "707036fd-d801-4a89-961e-81f7a385a6be" + "1f563470-350b-4a96-ac30-1d0706b85f65" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "796693d6-9c1b-455d-9a76-8c2bbeaff903" + "d69a2f30-de8a-4014-a079-82e519be1aaf" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1161,65 +1214,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "x-ms-correlation-request-id": [ - "94d31b9a-f6c4-4a66-8afc-8ee74b451522" + "18132412-1c7f-4e95-80c7-3c8ab17fade2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224731Z:94d31b9a-f6c4-4a66-8afc-8ee74b451522" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T200946Z:18132412-1c7f-4e95-80c7-3c8ab17fade2" ], "Date": [ - "Tue, 28 Aug 2018 22:47:30 GMT" + "Fri, 08 Nov 2019 20:09:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6c1c761-7899-4957-99cd-10d0510b100c" + "7e1a4e62-d9be-4fe8-8aaa-56135d6f8926" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b6eddc50-bd1f-444a-a774-c2f6d189a3f0" + "c9f64988-f3c7-4c38-9523-af02f9f99785" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1227,65 +1280,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], "x-ms-correlation-request-id": [ - "85d50c69-0161-474e-a4eb-695ecab61350" + "c1f5e1ea-1531-4783-a987-509d47f33813" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224801Z:85d50c69-0161-474e-a4eb-695ecab61350" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201016Z:c1f5e1ea-1531-4783-a987-509d47f33813" ], "Date": [ - "Tue, 28 Aug 2018 22:48:00 GMT" + "Fri, 08 Nov 2019 20:10:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33b1ea40-a0e6-44e2-bd8a-d5858260752a" + "78415fa7-7816-42eb-9b23-f73c1f1b114a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b5240152-9951-49fd-88df-db3dcf3aceec" + "68a4f828-4e6a-42d9-bb3e-40aaddf6b8ab" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1293,65 +1346,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], "x-ms-correlation-request-id": [ - "3d32fedf-41a1-4751-9554-dfe7d10b2dfb" + "4adf2292-ce11-4e91-b89c-ab77451695ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224831Z:3d32fedf-41a1-4751-9554-dfe7d10b2dfb" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201046Z:4adf2292-ce11-4e91-b89c-ab77451695ae" ], "Date": [ - "Tue, 28 Aug 2018 22:48:30 GMT" + "Fri, 08 Nov 2019 20:10:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e71fc7e2-b152-47a2-8736-d6a2636f580f" + "97b29509-e4d5-4f31-80c9-9b97e699e7c0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3af4380d-688c-4044-9c7c-9b23d84caf9c" + "37635a5e-6d2e-4504-8402-b1e318055c20" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1359,65 +1412,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], "x-ms-correlation-request-id": [ - "a17d3e9a-cd22-4e94-8760-09b6ea087c4f" + "6a7be872-f570-4a9c-814c-dae2ff7ef50e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224901Z:a17d3e9a-cd22-4e94-8760-09b6ea087c4f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201116Z:6a7be872-f570-4a9c-814c-dae2ff7ef50e" ], "Date": [ - "Tue, 28 Aug 2018 22:49:00 GMT" + "Fri, 08 Nov 2019 20:11:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f01dafe-e923-4e0e-bb01-7d40dd6c0ea2" + "08fd31ad-3c1e-4ea8-83d8-e5fe97b37b06" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cd7a7620-1faa-4544-8aed-3364a39096c3" + "1b533c5c-60ba-4ef0-ac7d-1e4c58315c35" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1425,65 +1478,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], "x-ms-correlation-request-id": [ - "681c7f58-78d1-4e7b-b07a-9921235cc63f" + "1c63d42f-5432-423e-b6b6-1d709023ab4f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224931Z:681c7f58-78d1-4e7b-b07a-9921235cc63f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201146Z:1c63d42f-5432-423e-b6b6-1d709023ab4f" ], "Date": [ - "Tue, 28 Aug 2018 22:49:30 GMT" + "Fri, 08 Nov 2019 20:11:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89a7a356-8c06-46a2-8168-e0b2314b1349" + "7aa460d5-897c-4307-bb20-db8b8198fe55" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "74f80010-f609-4707-8940-eb4019d473ae" + "d03b2943-f34e-4618-88d3-c1806d581908" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1491,65 +1544,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], "x-ms-correlation-request-id": [ - "3035a294-e582-46c8-bfc5-0430e100cc2b" + "dd1e3273-cad7-48a8-bd38-9fa9daf10384" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225001Z:3035a294-e582-46c8-bfc5-0430e100cc2b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201216Z:dd1e3273-cad7-48a8-bd38-9fa9daf10384" ], "Date": [ - "Tue, 28 Aug 2018 22:50:01 GMT" + "Fri, 08 Nov 2019 20:12:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd259bb9-c050-441a-bb9b-8914a34a0b29" + "50ad7592-f44c-4825-a1be-ac6d3f732ed3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9c9c206e-bed2-43f1-a4f1-e62c4e4ea552" + "d4358f54-3301-46bc-801c-e2a5798e7101" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,65 +1610,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], "x-ms-correlation-request-id": [ - "0f7a33a2-6881-48f9-b745-6f85636225e3" + "35e97b4a-c41e-4be3-b9fd-0aa0e38dc3a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225031Z:0f7a33a2-6881-48f9-b745-6f85636225e3" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201247Z:35e97b4a-c41e-4be3-b9fd-0aa0e38dc3a2" ], "Date": [ - "Tue, 28 Aug 2018 22:50:30 GMT" + "Fri, 08 Nov 2019 20:12:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "135a6244-d46e-446a-bd27-d03e68461513" + "98f7ec31-fd2a-4d76-a499-a107e86adff4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ed0d91c9-1c7c-47ab-b7cf-aaf385d36aa8" + "601f4e3d-2eab-4e70-a1d9-cd8e82aedea1" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1623,65 +1676,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], "x-ms-correlation-request-id": [ - "8adb942d-3b6d-485e-9acc-d7774b8da3a3" + "71411a3a-8208-4543-8983-6aeb44f555e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225101Z:8adb942d-3b6d-485e-9acc-d7774b8da3a3" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201317Z:71411a3a-8208-4543-8983-6aeb44f555e4" ], "Date": [ - "Tue, 28 Aug 2018 22:51:01 GMT" + "Fri, 08 Nov 2019 20:13:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "255360b0-1f7c-4a39-810c-85b5aa4b1508" + "31f5f5fd-8428-4660-9c4f-8e62691432ed" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c059ca42-a21f-4774-ba0e-bccacc86f529" + "a28b9614-843e-4f7d-9805-d66b8ef5c254" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1689,65 +1742,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], "x-ms-correlation-request-id": [ - "f6589076-7941-4d8b-b77d-672f23fd8935" + "176ec692-6e6c-44a2-b24e-29d342133207" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225131Z:f6589076-7941-4d8b-b77d-672f23fd8935" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201347Z:176ec692-6e6c-44a2-b24e-29d342133207" ], "Date": [ - "Tue, 28 Aug 2018 22:51:30 GMT" + "Fri, 08 Nov 2019 20:13:47 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "599f7e81-7816-48a3-81e6-a37b5d85b16e" + "e827c77c-fc21-4615-af3b-8c9f862b2040" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f598fc29-fc2a-409d-ad66-15393bb06f43" + "a9951c44-2757-44f5-92ca-574839979455" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1755,65 +1808,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], "x-ms-correlation-request-id": [ - "94a648a9-293f-41a2-9186-f4f0f14fcf92" + "bbc69789-3288-44e2-8dfd-b78728552834" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225201Z:94a648a9-293f-41a2-9186-f4f0f14fcf92" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201417Z:bbc69789-3288-44e2-8dfd-b78728552834" ], "Date": [ - "Tue, 28 Aug 2018 22:52:01 GMT" + "Fri, 08 Nov 2019 20:14:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33ad431b-b18f-4162-8c2c-9daa86a192a0" + "accd3b6b-ccb1-4212-8d1d-ea7a675b2e0e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "dfc50c8d-9d58-48a6-9118-290e3df6da29" + "20cad0d2-3bce-4ad8-b4ee-88b52bd2cbe2" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1821,65 +1874,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], "x-ms-correlation-request-id": [ - "301487c8-8e54-4e9e-ab31-dbda685c04c2" + "f874f812-806f-46d3-bc0a-408ebd3ab4ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225231Z:301487c8-8e54-4e9e-ab31-dbda685c04c2" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201447Z:f874f812-806f-46d3-bc0a-408ebd3ab4ac" ], "Date": [ - "Tue, 28 Aug 2018 22:52:30 GMT" + "Fri, 08 Nov 2019 20:14:47 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80385aed-3ba3-4e77-a32b-5698c72c493e" + "69c449b9-8d26-436f-b6ca-2a99413302ed" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "56a22fbb-e30b-484f-9a35-53afc444bea9" + "1a00a41b-9792-420b-866b-96add7a38351" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1887,65 +1940,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], "x-ms-correlation-request-id": [ - "dbf87b18-f53f-4a9b-a97a-defb46d35e4f" + "89213ca0-9ef1-4fcd-969f-d4d028ac3560" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225301Z:dbf87b18-f53f-4a9b-a97a-defb46d35e4f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201517Z:89213ca0-9ef1-4fcd-969f-d4d028ac3560" ], "Date": [ - "Tue, 28 Aug 2018 22:53:01 GMT" + "Fri, 08 Nov 2019 20:15:17 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3d71b17-f23e-4dad-9d4a-d12bbea265d3" + "eca0fa71-230c-4436-9959-c2a28a6b97cb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "615" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0b375447-6f43-4662-8d78-b60c8fabb252" + "b0bc1f70-aff9-42e0-a51e-37b21f77f66a" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1953,71 +2006,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], "x-ms-correlation-request-id": [ - "deb2a97b-acc0-4014-b81d-c647f86dfa1b" + "5f5938c2-ddfc-499c-b4ca-17e09ec69a80" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225331Z:deb2a97b-acc0-4014-b81d-c647f86dfa1b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201547Z:5f5938c2-ddfc-499c-b4ca-17e09ec69a80" ], "Date": [ - "Tue, 28 Aug 2018 22:53:31 GMT" + "Fri, 08 Nov 2019 20:15:47 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c71b403f-d93d-4780-a357-c475e62388ae" + "685aa6ab-8fd8-4782-ba90-36351de821aa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2597" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], "x-ms-request-id": [ - "91248566-f77e-4def-b936-2f0975e50d9f" - ], - "x-ms-correlation-request-id": [ - "91248566-f77e-4def-b936-2f0975e50d9f" + "2de7061d-80cf-41cc-9fbc-342bdd2f2634" ], - "x-ms-routing-request-id": [ - "WESTUS2:20180828T224027Z:91248566-f77e-4def-b936-2f0975e50d9f" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2025,59 +2072,65 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "5a86e9c4-b437-4c9a-9150-15be1f479463" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T201618Z:5a86e9c4-b437-4c9a-9150-15be1f479463" ], "Date": [ - "Tue, 28 Aug 2018 22:40:27 GMT" + "Fri, 08 Nov 2019 20:16:17 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "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 },\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "144" - ], "x-ms-client-request-id": [ - "76f7b732-07bc-478d-908f-a79b838f9934" + "e14e2b8a-e249-4fc4-b0c5-c5f984810882" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"nyH9WC5hZ59XfUyivR+Ew3J5HNAxBS7AzislZ7oGgmA=\",\r\n \"secondaryKey\": \"uvhTYO7T7zrkAeI8S4maWXTUPokxmRDPSbZiWFHh3ZY=\"\r\n },\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "733" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f586c949-aed9-4ae2-afc7-9d67cda9244e" + "815df757-1375-4f61-95bd-2e1e166bcc48" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2085,68 +2138,65 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" ], "x-ms-correlation-request-id": [ - "cf555708-8ae1-491b-9425-8e5cac55a5aa" + "42e67434-cb48-4ee6-bb7c-1ae43c70a9a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224029Z:cf555708-8ae1-491b-9425-8e5cac55a5aa" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201648Z:42e67434-cb48-4ee6-bb7c-1ae43c70a9a1" ], "Date": [ - "Tue, 28 Aug 2018 22:40:29 GMT" + "Fri, 08 Nov 2019 20:16:48 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/redis/redisteam005?api-version=2017-10-01" + "Content-Length": [ + "614" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "846cf145-1c2c-45b6-b72a-9ad27ebfa3a7" + "bf4e775a-1468-4c26-b84b-8a6b4b7772ea" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"nyH9WC5hZ59XfUyivR+Ew3J5HNAxBS7AzislZ7oGgmA=\",\r\n \"secondaryKey\": \"uvhTYO7T7zrkAeI8S4maWXTUPokxmRDPSbZiWFHh3ZY=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4fc1c266-a61a-4b53-a876-bb5d7c18f201" + "5f973ccf-4418-49ea-8572-c6d7dc9d194e" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2154,257 +2204,392 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" ], "x-ms-correlation-request-id": [ - "4abbeeb4-70ba-4a34-b7e8-a995079ee286" + "92286a1f-77c9-4161-a3c6-e676b436f7a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T224029Z:4abbeeb4-70ba-4a34-b7e8-a995079ee286" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201718Z:92286a1f-77c9-4161-a3c6-e676b436f7a6" ], "Date": [ - "Tue, 28 Aug 2018 22:40:29 GMT" + "Fri, 08 Nov 2019 20:17:17 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Storage/storageAccounts/redisteam005s/listKeys?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9yZWRpc3RlYW0wMDVzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9248a18c-baea-4854-9fd7-72d12e089554" + "616b39ce-6988-4816-96e5-eaac7811144b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Storage.StorageManagementClient/6.5.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"BOvImp/dc3GlgjfEIVl+DxCGXt0fRUHWA0ESfayA8z0rYyBaJNQM6m7ZkpTyaxeAoNk9XZc5xo8iAg/7TWUU3Q==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"W/mcYaANiDzZZDB1wt/Qh69dQVs1Dt2bSufNSNC5UB/0RaL60O9NGhCONqJxRS5XIm2DIK+5gw40tllU+kJPdA==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "b0b73db1-70f9-44d3-afe2-41c0e7f5b06e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-request-id": [ + "babafee1-1d4a-43bd-b52e-18ca6ae2fa81" + ], "x-ms-correlation-request-id": [ - "1885cb39-5c64-4ad2-9a2a-392837fce93f" + "babafee1-1d4a-43bd-b52e-18ca6ae2fa81" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225332Z:1885cb39-5c64-4ad2-9a2a-392837fce93f" + "WESTUS:20191108T200242Z:babafee1-1d4a-43bd-b52e-18ca6ae2fa81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 22:53:31 GMT" + "Fri, 08 Nov 2019 20:02:42 GMT" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "3202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Storage/storageAccounts/redisteam005s/listKeys?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9yZWRpc3RlYW0wMDVzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", - "RequestMethod": "POST", - "RequestBody": "", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "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 },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e2349964-c400-4df8-be4d-57fccb23265d" + "bc31a3d8-35a2-454d-9a2e-5f095d9ff2af" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Storage.StorageManagementClient/6.5.0.0" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"BOvImp/dc3GlgjfEIVl+DxCGXt0fRUHWA0ESfayA8z0rYyBaJNQM6m7ZkpTyaxeAoNk9XZc5xo8iAg/7TWUU3Q==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"W/mcYaANiDzZZDB1wt/Qh69dQVs1Dt2bSufNSNC5UB/0RaL60O9NGhCONqJxRS5XIm2DIK+5gw40tllU+kJPdA==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "288" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "144" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/redis/redisteam005?api-version=2018-03-01" + ], "x-ms-request-id": [ - "88bcb952-c334-4efd-9eee-6ea33678c0f9" + "270f9cda-ec6b-4916-abc4-6a4dc8e648b5" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "a350183d-89c3-4f50-9fb5-155889904235" + "873691bb-f915-4314-912f-6e908997a57f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225405Z:a350183d-89c3-4f50-9fb5-155889904235" + "WESTUS:20191108T200243Z:873691bb-f915-4314-912f-6e908997a57f" ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Fri, 08 Nov 2019 20:02:42 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "733" ], - "Date": [ - "Tue, 28 Aug 2018 22:54:04 GMT" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"PRtAIKInrKCxt92dRVWKk60vb5vgusvlpjhIWivSohY=\",\r\n \"secondaryKey\": \"cTFDuMPKOU5dwwp79QxORDIl3BTumP4hqrUUFE+xec0=\"\r\n },\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baf62164-7570-485c-a7f3-82d1f3d3e936" + "6f3aa565-18ea-4ee9-ad81-c03134fb8e14" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c6a667b7-10d1-4203-92a8-363a78280dc7" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "bf7b7d32-10dc-4ec7-a86b-caa01201ab5d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T200243Z:bf7b7d32-10dc-4ec7-a86b-caa01201ab5d" + ], + "Date": [ + "Fri, 08 Nov 2019 20:02:42 GMT" + ], "Content-Length": [ - "627" + "123" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"PRtAIKInrKCxt92dRVWKk60vb5vgusvlpjhIWivSohY=\",\r\n \"secondaryKey\": \"cTFDuMPKOU5dwwp79QxORDIl3BTumP4hqrUUFE+xec0=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Storage/storageAccounts/redisteam005s/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9yZWRpc3RlYW0wMDVzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25be7299-eeb7-486c-a8d9-5818c57bee57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fa5a6459-d314-4e9c-8292-3d24b9a7b337" - ], - "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "e3e6686f-b51a-439e-8c49-c58fce0b7d71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "288c9bc3-8b1e-4100-923a-0e0a04c6eef0" + "dc2984c1-cc32-4bb5-99ab-bed41a9c346a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225333Z:288c9bc3-8b1e-4100-923a-0e0a04c6eef0" + "WESTUS:20191108T201718Z:dc2984c1-cc32-4bb5-99ab-bed41a9c346a" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 28 Aug 2018 22:53:32 GMT" + "Fri, 08 Nov 2019 20:17:17 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"hbZHNWTvx9Bn5zpQZtx72cJPkfK35MatpqNNrxBrXy+ZR1DGdgDCPOihpTgguh5cSQap5rL/ImYC0sMgZVKTWA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"dCB59FWROXiPpLIAhP9BKnfnInYucBGUTEUIqU+9UgNyllkQ5ImBukl3BQBCrVN3vKr5Nd5QXH2dPJuEeE6gDw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Storage/storageAccounts/redisteam005s/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9yZWRpc3RlYW0wMDVzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0f0e729-9bf3-4800-90ca-adfce49831e8" + "c7097532-e734-491f-a118-09118aae1f62" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0c69e4f4-3d88-439d-b678-1514efe3bfb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "78c7b56d-d4c1-4c1a-9d77-975a282f687f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T201822Z:78c7b56d-d4c1-4c1a-9d77-975a282f687f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 20:18:21 GMT" + ], "Content-Length": [ - "627" + "288" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"hbZHNWTvx9Bn5zpQZtx72cJPkfK35MatpqNNrxBrXy+ZR1DGdgDCPOihpTgguh5cSQap5rL/ImYC0sMgZVKTWA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"dCB59FWROXiPpLIAhP9BKnfnInYucBGUTEUIqU+9UgNyllkQ5ImBukl3BQBCrVN3vKr5Nd5QXH2dPJuEeE6gDw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68b34f06-4263-4c2c-9c6c-df6e5c3f9222" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a2bb2f56-5494-4af3-bfe6-ebbfdf8c716a" + "83012fc1-8024-440d-90d9-46e7981cab7f" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2412,48 +2597,87 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], "x-ms-correlation-request-id": [ - "80e2f58b-c383-4f7c-9058-ad444b26529e" + "5097afcd-ae5f-4539-87a9-f9d4b301e10c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225406Z:80e2f58b-c383-4f7c-9058-ad444b26529e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201719Z:5097afcd-ae5f-4539-87a9-f9d4b301e10c" ], "Date": [ - "Tue, 28 Aug 2018 22:54:05 GMT" + "Fri, 08 Nov 2019 20:17:19 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "627" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5b20f3d-9817-48e1-93ba-afa0def50de6" + "d9c91328-cd7b-4d9c-a1a1-60e693b60ef1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "95dde5ad-b327-494a-be6d-2d74614c8ebb" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "43cb6199-1a66-4e94-93b0-8c59b009d993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T201822Z:43cb6199-1a66-4e94-93b0-8c59b009d993" + ], + "Date": [ + "Fri, 08 Nov 2019 20:18:22 GMT" + ], "Content-Length": [ "627" ], @@ -2462,15 +2686,42 @@ ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f84d334e-b0d8-4e23-891d-493c8f796e90" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b43ed38f-2d0b-4e8a-ba87-ff9e8b0c0053" + "3277320f-6c01-43d6-a19c-51fdfdf6b84b" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2478,68 +2729,74 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11960" ], "x-ms-correlation-request-id": [ - "afadd97e-0551-4fb6-a666-5b95fa914e76" + "522c69c4-5ca1-4341-aa54-e10fa0ee7e00" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225638Z:afadd97e-0551-4fb6-a666-5b95fa914e76" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201955Z:522c69c4-5ca1-4341-aa54-e10fa0ee7e00" ], "Date": [ - "Tue, 28 Aug 2018 22:56:37 GMT" + "Fri, 08 Nov 2019 20:19:54 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "627" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam005\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam005.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005/export?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDUvZXhwb3J0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005/export?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDUvZXhwb3J0P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"prefix\": \"sunny\",\r\n \"container\": \"https://redisteam005s.blob.core.windows.net/exportimport?sv=2017-07-29&sr=c&sig=%2F4VMyZM7DSthZTAzDKX6xdmbHBn2l0dHtBu2kTfwz3Y%3D&st=2018-08-28T22%3A33%3A33Z&se=2018-08-29T00%3A53%3A33Z&sp=rwdl\"\r\n}", + "RequestBody": "{\r\n \"prefix\": \"sunny\",\r\n \"container\": \"https://redisteam005s.blob.core.windows.net/exportimport?sv=2019-02-02&sr=c&sig=F5dqg%2FrOdizojv0TZPLwpira%2BNT7jgB1t20aV6uqBss%3D&st=2019-11-08T19%3A57%3A19Z&se=2019-11-08T22%3A17%3A19Z&sp=rwdl\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "237" - ], "x-ms-client-request-id": [ - "6b435a13-3be2-439b-8315-98eee9429df1" + "cd480d98-739b-486b-9674-4994fc4d6ac0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "239" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/79a0050e-c267-4f35-aea2-db56b4d78ae7?api-version=2018-03-01" + ], "x-ms-request-id": [ - "315856f3-7e6b-4ea3-b795-07d5c0b03745" + "79a0050e-c267-4f35-aea2-db56b4d78ae7" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2547,59 +2804,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "f4bb9e97-b2cc-4090-83ea-1bcbc7dabc68" + "f8b73d2b-34f3-4051-b9a8-a1ea1b8ddc4a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225335Z:f4bb9e97-b2cc-4090-83ea-1bcbc7dabc68" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201721Z:f8b73d2b-34f3-4051-b9a8-a1ea1b8ddc4a" ], "Date": [ - "Tue, 28 Aug 2018 22:53:34 GMT" + "Fri, 08 Nov 2019 20:17:21 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/315856f3-7e6b-4ea3-b795-07d5c0b03745?api-version=2017-10-01" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/315856f3-7e6b-4ea3-b795-07d5c0b03745?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzMxNTg1NmYzLTdlNmItNGVhMy1iNzk1LTA3ZDVjMGIwMzc0NT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/79a0050e-c267-4f35-aea2-db56b4d78ae7?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc5YTAwNTBlLWMyNjctNGYzNS1hZWEyLWRiNTZiNGQ3OGFlNz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/79a0050e-c267-4f35-aea2-db56b4d78ae7?api-version=2018-03-01" + ], "x-ms-request-id": [ - "0b7da159-282a-42ac-aece-2b2048c62c08" + "15ea28a5-2c33-4235-b02e-49134fdfa0c6" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2607,56 +2864,419 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11968" + ], + "x-ms-correlation-request-id": [ + "b5aba7fe-2701-4c0b-b41c-b957a0deba2a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T201751Z:b5aba7fe-2701-4c0b-b41c-b957a0deba2a" + ], + "Date": [ + "Fri, 08 Nov 2019 20:17:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/79a0050e-c267-4f35-aea2-db56b4d78ae7?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc5YTAwNTBlLWMyNjctNGYzNS1hZWEyLWRiNTZiNGQ3OGFlNz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b9365e7e-7194-43a8-b351-728abd116c24" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "2c82ae1b-ca8d-426e-9132-e55252191479" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T201822Z:2c82ae1b-ca8d-426e-9132-e55252191479" + ], + "Date": [ + "Fri, 08 Nov 2019 20:18:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/79a0050e-c267-4f35-aea2-db56b4d78ae7?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc5YTAwNTBlLWMyNjctNGYzNS1hZWEyLWRiNTZiNGQ3OGFlNz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d17cac87-8e10-4982-b27b-55aca07a6f12" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "3089ed2a-ae5e-48c2-bf1b-12ba12099052" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T201822Z:3089ed2a-ae5e-48c2-bf1b-12ba12099052" + ], + "Date": [ + "Fri, 08 Nov 2019 20:18:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005/import?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDUvaW1wb3J0P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"files\": [\r\n \"https://redisteam005s.blob.core.windows.net/exportimport/sunny?sv=2019-02-02&sr=b&sig=yr%2BIaHvVlHizuuAKMWv2p9lmePxM6YL27x0wNQBVfOQ%3D&st=2019-11-08T19%3A58%3A22Z&se=2019-11-08T22%3A18%3A22Z&sp=rwdl\"\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e948a8f8-9c0c-410e-abbb-0fc9a2a60eb4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "229" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae89b611-4da3-4883-8fb8-dac5a16eed52?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "ae89b611-4da3-4883-8fb8-dac5a16eed52" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "8f3fb215-68a9-4968-a0c6-a5fe36fb7d3a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T201824Z:8f3fb215-68a9-4968-a0c6-a5fe36fb7d3a" + ], + "Date": [ + "Fri, 08 Nov 2019 20:18:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae89b611-4da3-4883-8fb8-dac5a16eed52?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2FlODliNjExLTRkYTMtNDg4My04ZmI4LWRhYzVhMTZlZWQ1Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae89b611-4da3-4883-8fb8-dac5a16eed52?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "bd1579fc-2809-4fe6-9b85-27c5a0b3f6d8" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "51f7b8ea-9b11-4b85-852d-59a22549d4d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T201854Z:51f7b8ea-9b11-4b85-852d-59a22549d4d7" + ], + "Date": [ + "Fri, 08 Nov 2019 20:18:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae89b611-4da3-4883-8fb8-dac5a16eed52?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2FlODliNjExLTRkYTMtNDg4My04ZmI4LWRhYzVhMTZlZWQ1Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae89b611-4da3-4883-8fb8-dac5a16eed52?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "8e401531-c191-4640-92e4-cea6dc85d33a" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "fc90970a-ae5b-4415-9edf-d65ff5abaa53" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T201924Z:fc90970a-ae5b-4415-9edf-d65ff5abaa53" + ], + "Date": [ + "Fri, 08 Nov 2019 20:19:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae89b611-4da3-4883-8fb8-dac5a16eed52?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2FlODliNjExLTRkYTMtNDg4My04ZmI4LWRhYzVhMTZlZWQ1Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b752129a-58b3-4dfd-96bb-0ef9423af4c9" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" ], "x-ms-correlation-request-id": [ - "201b8a12-095e-43fd-938f-caa6b8b86ee0" + "8192c9ca-b786-40e2-8e54-5085dd37f6bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225405Z:201b8a12-095e-43fd-938f-caa6b8b86ee0" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201954Z:8192c9ca-b786-40e2-8e54-5085dd37f6bc" ], "Date": [ - "Tue, 28 Aug 2018 22:54:05 GMT" + "Fri, 08 Nov 2019 20:19:54 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/315856f3-7e6b-4ea3-b795-07d5c0b03745?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzMxNTg1NmYzLTdlNmItNGVhMy1iNzk1LTA3ZDVjMGIwMzc0NT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae89b611-4da3-4883-8fb8-dac5a16eed52?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2FlODliNjExLTRkYTMtNDg4My04ZmI4LWRhYzVhMTZlZWQ1Mj9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "bf8f4c0c-f492-41af-bc59-f7731aba5cc7" + "8d3299e2-5de3-477f-88cb-055b90135aad" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2664,68 +3284,68 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11961" ], "x-ms-correlation-request-id": [ - "b2e27919-176b-44e3-b030-02ab320aa23c" + "f35685e9-50c4-434b-9857-581498f20d18" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225405Z:b2e27919-176b-44e3-b030-02ab320aa23c" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201955Z:f35685e9-50c4-434b-9857-581498f20d18" ], "Date": [ - "Tue, 28 Aug 2018 22:54:05 GMT" + "Fri, 08 Nov 2019 20:19:54 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005/import?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDUvaW1wb3J0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005/forceReboot?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDUvZm9yY2VSZWJvb3Q/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"files\": [\r\n \"https://redisteam005s.blob.core.windows.net/exportimport/sunny?sv=2017-07-29&sr=b&sig=z%2Boen2BPEIjQN5VLusfa9PbEcbNcA1B8xqucPd3K7t8%3D&st=2018-08-28T22%3A34%3A05Z&se=2018-08-29T00%3A54%3A05Z&sp=rwdl\"\r\n ]\r\n}", + "RequestBody": "{\r\n \"rebootType\": \"PrimaryNode\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "229" - ], "x-ms-client-request-id": [ - "04723087-1a24-42d9-bca8-0b9b530e8c20" + "17c25f4c-d143-4032-adb8-574e566dd5d4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "668b239e-4429-4d30-a693-e564ba4e3589" + "7fc60ccb-014f-418f-b2fa-c2aef78f4bc7" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2733,59 +3353,68 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "0f110daa-5f9d-4e09-b3b7-f7400bb84601" + "92a15cdf-1a19-4284-87cc-1ccc3af511e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225408Z:0f110daa-5f9d-4e09-b3b7-f7400bb84601" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T201956Z:92a15cdf-1a19-4284-87cc-1ccc3af511e5" ], "Date": [ - "Tue, 28 Aug 2018 22:54:07 GMT" + "Fri, 08 Nov 2019 20:19:55 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/668b239e-4429-4d30-a693-e564ba4e3589?api-version=2017-10-01" + "Content-Length": [ + "133" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 202 + "ResponseBody": "{\r\n \"message\": \"The requested reboot operation for 'PrimaryNode' has been successfully scheduled and should be executed shortly.\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/668b239e-4429-4d30-a693-e564ba4e3589?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzY2OGIyMzllLTQ0MjktNGQzMC1hNjkzLWU1NjRiYTRlMzU4OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3d589292-e1a6-42c4-a903-23059c2a22ef" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01" + ], "x-ms-request-id": [ - "cdf2743e-92ac-4a19-ad91-e4b52616d96c" + "6381bdc3-73de-4ec8-ab78-fd7d8446f3f0" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2793,59 +3422,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "fcd86267-b8c4-4edd-93c9-0e8937cbfe75" + "bff4de27-523e-40f0-8a2d-1e6a7e63f974" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225438Z:fcd86267-b8c4-4edd-93c9-0e8937cbfe75" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T202156Z:bff4de27-523e-40f0-8a2d-1e6a7e63f974" ], "Date": [ - "Tue, 28 Aug 2018 22:54:38 GMT" + "Fri, 08 Nov 2019 20:21:56 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/668b239e-4429-4d30-a693-e564ba4e3589?api-version=2017-10-01" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/668b239e-4429-4d30-a693-e564ba4e3589?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzY2OGIyMzllLTQ0MjktNGQzMC1hNjkzLWU1NjRiYTRlMzU4OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzYzODFiZGMzLTczZGUtNGVjOC1hYjc4LWZkN2Q4NDQ2ZjNmMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01" + ], "x-ms-request-id": [ - "4089faad-c49d-4852-a343-f2e60ef96eea" + "ae9e0c4a-614c-4529-974a-97accf40513e" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2853,59 +3482,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11999" ], "x-ms-correlation-request-id": [ - "6a23bf4b-9da2-4951-b912-5e985bab338e" + "ff1bda90-7e80-4f4a-84df-6f05cb864c9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225508Z:6a23bf4b-9da2-4951-b912-5e985bab338e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T202226Z:ff1bda90-7e80-4f4a-84df-6f05cb864c9a" ], "Date": [ - "Tue, 28 Aug 2018 22:55:08 GMT" + "Fri, 08 Nov 2019 20:22:26 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/668b239e-4429-4d30-a693-e564ba4e3589?api-version=2017-10-01" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/668b239e-4429-4d30-a693-e564ba4e3589?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzY2OGIyMzllLTQ0MjktNGQzMC1hNjkzLWU1NjRiYTRlMzU4OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzYzODFiZGMzLTczZGUtNGVjOC1hYjc4LWZkN2Q4NDQ2ZjNmMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01" + ], "x-ms-request-id": [ - "793ff42a-0525-4636-b19f-556301ade717" + "56899a8f-3812-4867-97e8-0e18414e4339" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2914,58 +3543,58 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11998" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "629f686b-2138-41da-ae72-32f2f48b1b37" + "5b254113-1b63-498c-a5d9-acccd63d7a53" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225538Z:629f686b-2138-41da-ae72-32f2f48b1b37" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T202257Z:5b254113-1b63-498c-a5d9-acccd63d7a53" ], "Date": [ - "Tue, 28 Aug 2018 22:55:37 GMT" + "Fri, 08 Nov 2019 20:22:57 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/668b239e-4429-4d30-a693-e564ba4e3589?api-version=2017-10-01" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/668b239e-4429-4d30-a693-e564ba4e3589?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzY2OGIyMzllLTQ0MjktNGQzMC1hNjkzLWU1NjRiYTRlMzU4OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzYzODFiZGMzLTczZGUtNGVjOC1hYjc4LWZkN2Q4NDQ2ZjNmMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01" + ], "x-ms-request-id": [ - "9a84849f-06f8-4ecb-9c34-5465c749d12b" + "a2a2ec20-4197-4606-8b2c-93d27dd643de" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2973,59 +3602,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11997" ], "x-ms-correlation-request-id": [ - "fe70036f-92db-4815-ab08-0ada1230a8ae" + "7c42bdc1-755a-44cc-aadc-ed455bbc4986" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225608Z:fe70036f-92db-4815-ab08-0ada1230a8ae" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T202327Z:7c42bdc1-755a-44cc-aadc-ed455bbc4986" ], "Date": [ - "Tue, 28 Aug 2018 22:56:08 GMT" + "Fri, 08 Nov 2019 20:23:26 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/668b239e-4429-4d30-a693-e564ba4e3589?api-version=2017-10-01" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/668b239e-4429-4d30-a693-e564ba4e3589?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzY2OGIyMzllLTQ0MjktNGQzMC1hNjkzLWU1NjRiYTRlMzU4OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzYzODFiZGMzLTczZGUtNGVjOC1hYjc4LWZkN2Q4NDQ2ZjNmMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01" + ], "x-ms-request-id": [ - "662d73a8-34d2-4a12-b16e-ee33d6501c16" + "c6273c97-9309-40a9-809c-414c22976038" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3033,56 +3662,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11996" ], "x-ms-correlation-request-id": [ - "4d2fc6e3-1834-42b0-bfb4-1b64c43f9b79" + "cba16da6-cbf8-4d33-8ade-834f4723443a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225638Z:4d2fc6e3-1834-42b0-bfb4-1b64c43f9b79" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T202357Z:cba16da6-cbf8-4d33-8ade-834f4723443a" ], "Date": [ - "Tue, 28 Aug 2018 22:56:37 GMT" + "Fri, 08 Nov 2019 20:23:56 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/locations/West%20US/operationresults/668b239e-4429-4d30-a693-e564ba4e3589?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzY2OGIyMzllLTQ0MjktNGQzMC1hNjkzLWU1NjRiYTRlMzU4OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzYzODFiZGMzLTczZGUtNGVjOC1hYjc4LWZkN2Q4NDQ2ZjNmMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01" + ], "x-ms-request-id": [ - "e09820b6-4b6c-48d6-83ba-c0976c2c0eaf" + "0cd9782a-7d10-4102-895c-5836b2f265ef" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3091,70 +3723,55 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11995" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "1b1e2f47-ae8a-4ce7-9cc7-0dc69d98a0c8" + "0d00eb69-40f8-4b2c-be58-6cf5ef49d536" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225638Z:1b1e2f47-ae8a-4ce7-9cc7-0dc69d98a0c8" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T202427Z:0d00eb69-40f8-4b2c-be58-6cf5ef49d536" ], "Date": [ - "Tue, 28 Aug 2018 22:56:37 GMT" + "Fri, 08 Nov 2019 20:24:27 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005/forceReboot?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDUvZm9yY2VSZWJvb3Q/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"rebootType\": \"PrimaryNode\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], - "x-ms-client-request-id": [ - "104af720-0b87-4b5d-a1d2-455c84c9a6b5" - ], - "accept-language": [ - "en-US" - ], + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzYzODFiZGMzLTczZGUtNGVjOC1hYjc4LWZkN2Q4NDQ2ZjNmMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"message\": \"The requested reboot operation for 'PrimaryNode' has been successfully scheduled and should be executed shortly.\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "133" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "264c4ce8-910d-4f77-9d79-e7a3474cda0c" + "1f0def4c-b709-4cc5-bc89-6398ece41ba5" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3162,62 +3779,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], "x-ms-correlation-request-id": [ - "05f76422-fb93-478c-a031-020e1819ed02" + "b3271392-6332-4726-ac1f-9c8c2abc9899" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225642Z:05f76422-fb93-478c-a031-020e1819ed02" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T202457Z:b3271392-6332-4726-ac1f-9c8c2abc9899" ], "Date": [ - "Tue, 28 Aug 2018 22:56:41 GMT" + "Fri, 08 Nov 2019 20:24:56 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/redisteam005?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/6381bdc3-73de-4ec8-ab78-fd7d8446f3f0?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzYzODFiZGMzLTczZGUtNGVjOC1hYjc4LWZkN2Q4NDQ2ZjNmMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "be7d1291-6844-4bd0-874c-ba4bd6d75c7c" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ec8f53fb-276e-4315-bb16-5304f96016da" + "0ddce778-feeb-47c7-836a-25d17fc4de81" ], "x-rp-server-mvid": [ - "9aaa90c1-3b88-45ca-9a75-95763c01c286" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3225,57 +3836,60 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], "x-ms-correlation-request-id": [ - "033a1c69-1377-4bbf-af38-bd8d3f7c337f" + "4aad7a08-1a69-49aa-9be4-fda519835303" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225843Z:033a1c69-1377-4bbf-af38-bd8d3f7c337f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T202458Z:4aad7a08-1a69-49aa-9be4-fda519835303" ], "Date": [ - "Tue, 28 Aug 2018 22:58:42 GMT" + "Fri, 08 Nov 2019 20:24:57 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-5?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-5?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f32d14a9-7a4b-4042-94ee-ae0637b140f4" + "4159a490-8b1d-4570-9815-6448f46a3535" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], @@ -3283,13 +3897,13 @@ "14999" ], "x-ms-request-id": [ - "3f240541-4888-4bba-a296-f9c5ef6eac1c" + "ddcde195-4eab-4080-934d-0177f7672953" ], "x-ms-correlation-request-id": [ - "3f240541-4888-4bba-a296-f9c5ef6eac1c" + "ddcde195-4eab-4080-934d-0177f7672953" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225843Z:3f240541-4888-4bba-a296-f9c5ef6eac1c" + "WESTUS:20191108T202458Z:ddcde195-4eab-4080-934d-0177f7672953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3297,56 +3911,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 22:58:43 GMT" + "Fri, 08 Nov 2019 20:24:57 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "f07e7cf4-1d5c-4fed-925c-8fa67a8f64e8" + "367bad85-a2f3-4382-8a0c-8484e6bcce32" ], "x-ms-correlation-request-id": [ - "f07e7cf4-1d5c-4fed-925c-8fa67a8f64e8" + "367bad85-a2f3-4382-8a0c-8484e6bcce32" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225858Z:f07e7cf4-1d5c-4fed-925c-8fa67a8f64e8" + "WESTUS:20191108T202513Z:367bad85-a2f3-4382-8a0c-8484e6bcce32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3354,56 +3968,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 22:58:58 GMT" + "Fri, 08 Nov 2019 20:25:12 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "e60ed264-0f33-4ae1-a69f-a8fd02b3f0c1" + "572c2d81-4c93-4839-a283-f7ff354860de" ], "x-ms-correlation-request-id": [ - "e60ed264-0f33-4ae1-a69f-a8fd02b3f0c1" + "572c2d81-4c93-4839-a283-f7ff354860de" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225914Z:e60ed264-0f33-4ae1-a69f-a8fd02b3f0c1" + "WESTUS:20191108T202528Z:572c2d81-4c93-4839-a283-f7ff354860de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3411,56 +4025,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 22:59:13 GMT" + "Fri, 08 Nov 2019 20:25:28 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "a93c0dee-7242-4408-b356-3b564acf2dd9" + "177acba5-3fd1-474b-ba8f-092a433e1323" ], "x-ms-correlation-request-id": [ - "a93c0dee-7242-4408-b356-3b564acf2dd9" + "177acba5-3fd1-474b-ba8f-092a433e1323" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225929Z:a93c0dee-7242-4408-b356-3b564acf2dd9" + "WESTUS:20191108T202543Z:177acba5-3fd1-474b-ba8f-092a433e1323" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3468,56 +4082,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 22:59:28 GMT" + "Fri, 08 Nov 2019 20:25:43 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "722878d1-e9cd-497b-8dfa-a0ec1ab296e5" + "5a6bd565-3fba-441d-a66f-c5ded2e40a2a" ], "x-ms-correlation-request-id": [ - "722878d1-e9cd-497b-8dfa-a0ec1ab296e5" + "5a6bd565-3fba-441d-a66f-c5ded2e40a2a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225944Z:722878d1-e9cd-497b-8dfa-a0ec1ab296e5" + "WESTUS:20191108T202558Z:5a6bd565-3fba-441d-a66f-c5ded2e40a2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3525,56 +4139,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 22:59:44 GMT" + "Fri, 08 Nov 2019 20:25:58 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "4f435ebb-e1fe-4e9a-b561-a5b542fc2a58" + "27db633f-9ea9-4ba8-8709-8803be93d5ee" ], "x-ms-correlation-request-id": [ - "4f435ebb-e1fe-4e9a-b561-a5b542fc2a58" + "27db633f-9ea9-4ba8-8709-8803be93d5ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T225959Z:4f435ebb-e1fe-4e9a-b561-a5b542fc2a58" + "WESTUS:20191108T202614Z:27db633f-9ea9-4ba8-8709-8803be93d5ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3582,56 +4196,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 22:59:58 GMT" + "Fri, 08 Nov 2019 20:26:13 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "7564b6cd-6406-411b-b6c9-f28eefbddb0d" + "15c9a6cd-a57e-4b67-9d51-47db93adfd83" ], "x-ms-correlation-request-id": [ - "7564b6cd-6406-411b-b6c9-f28eefbddb0d" + "15c9a6cd-a57e-4b67-9d51-47db93adfd83" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T230014Z:7564b6cd-6406-411b-b6c9-f28eefbddb0d" + "WESTUS:20191108T202629Z:15c9a6cd-a57e-4b67-9d51-47db93adfd83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3639,53 +4253,50 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 23:00:13 GMT" + "Fri, 08 Nov 2019 20:26:28 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "fe678eb5-94df-4598-aae6-322f0961be16" + "88a68fbc-016c-4adf-b7aa-3ac112c934d6" ], "x-ms-correlation-request-id": [ - "fe678eb5-94df-4598-aae6-322f0961be16" + "88a68fbc-016c-4adf-b7aa-3ac112c934d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T230029Z:fe678eb5-94df-4598-aae6-322f0961be16" + "WESTUS:20191108T202644Z:88a68fbc-016c-4adf-b7aa-3ac112c934d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3693,50 +4304,50 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 23:00:29 GMT" + "Fri, 08 Nov 2019 20:26:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "c1f0ea42-63c9-426f-a17e-13ef4fa2c5de" + "2ae01606-1782-40a0-a1bc-f75cc1e135bd" ], "x-ms-correlation-request-id": [ - "c1f0ea42-63c9-426f-a17e-13ef4fa2c5de" + "2ae01606-1782-40a0-a1bc-f75cc1e135bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180828T230029Z:c1f0ea42-63c9-426f-a17e-13ef4fa2c5de" + "WESTUS:20191108T202644Z:2ae01606-1782-40a0-a1bc-f75cc1e135bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3744,18 +4355,22 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 28 Aug 2018 23:00:29 GMT" + "Fri, 08 Nov 2019 20:26:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + "SubscriptionId": "bc130894-c5b3-4adc-a077-0b51f3714abe" } } \ No newline at end of file diff --git a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json index f54d772b99ec..2be636345003 100644 --- a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json +++ b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json @@ -1,25 +1,51 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-1?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-client-request-id": [ + "87f5e908-de89-42da-9f76-2839a5af89d9" ], - "Content-Length": [ - "29" + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1\",\r\n \"name\": \"PowerShellTest-1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "185" + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "2d1bdfeb-ec82-4d07-939b-480fb312bd2e" + ], + "x-ms-correlation-request-id": [ + "2d1bdfeb-ec82-4d07-939b-480fb312bd2e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T222117Z:2d1bdfeb-ec82-4d07-939b-480fb312bd2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 22:21:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -27,6 +53,42 @@ "Expires": [ "-1" ], + "Content-Length": [ + "3202" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a521d578-bbc1-4895-ac22-516f3a3dbfc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Pragma": [ "no-cache" ], @@ -34,55 +96,58 @@ "1199" ], "x-ms-request-id": [ - "d2698feb-d260-4754-a2c1-0725d51c3365" + "11775a40-fd39-45dc-bfa2-0ddde8368f9f" ], "x-ms-correlation-request-id": [ - "d2698feb-d260-4754-a2c1-0725d51c3365" + "11775a40-fd39-45dc-bfa2-0ddde8368f9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234843Z:d2698feb-d260-4754-a2c1-0725d51c3365" + "WESTUS:20191108T222117Z:11775a40-fd39-45dc-bfa2-0ddde8368f9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:48:42 GMT" + "Fri, 08 Nov 2019 22:21:17 GMT" + ], + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1\",\r\n \"name\": \"PowerShellTest-1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cf6be38-9bb9-4482-95c4-ac57e70ae666" + "4b5df84f-151b-40f9-acfd-7df8afc0ad77" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam001' under resource group 'PowerShellTest-1' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "154" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -91,1763 +156,1739 @@ "gateway" ], "x-ms-request-id": [ - "4bc26673-e44a-438d-965e-741dfb83fd36" + "3283de08-6fde-4ec1-b13d-5437a6fea706" ], "x-ms-correlation-request-id": [ - "4bc26673-e44a-438d-965e-741dfb83fd36" + "3283de08-6fde-4ec1-b13d-5437a6fea706" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234843Z:4bc26673-e44a-438d-965e-741dfb83fd36" + "WESTUS:20191108T222117Z:3283de08-6fde-4ec1-b13d-5437a6fea706" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:48:42 GMT" + "Fri, 08 Nov 2019 22:21:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "154" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam001' under resource group 'PowerShellTest-1' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e5373b8-f0ce-43d6-88b3-6e4c2d05e0c2" + "45021478-c80e-4927-a153-05910a1f2727" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9a296ec7-db7a-4de0-91ea-063672c32067" + "d40e3eba-d70f-479d-ad9e-497c0d93c2e9" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11998" ], "x-ms-correlation-request-id": [ - "9c375795-7eab-408e-a065-e9ec472facf9" + "f0ef929d-d569-4a34-a211-0bb6ba94ff09" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234916Z:9c375795-7eab-408e-a065-e9ec472facf9" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222150Z:f0ef929d-d569-4a34-a211-0bb6ba94ff09" ], "Date": [ - "Wed, 21 Feb 2018 23:49:15 GMT" + "Fri, 08 Nov 2019 22:21:49 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b34fc194-ac03-4931-a07b-d460c8e42fdf" + "b3ee33e2-f067-4aa6-ba3b-b8aeaef57706" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8eb62eed-db9f-482a-a6d0-47244af7351c" + "002a8386-80ea-426d-97ed-a0f716ff4ada" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11997" ], "x-ms-correlation-request-id": [ - "d514d529-2df4-4720-992c-ca67ba7be422" + "33c18d88-2890-4364-8043-e65f7abfbfc8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234946Z:d514d529-2df4-4720-992c-ca67ba7be422" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222220Z:33c18d88-2890-4364-8043-e65f7abfbfc8" ], "Date": [ - "Wed, 21 Feb 2018 23:49:46 GMT" + "Fri, 08 Nov 2019 22:22:20 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "170a92de-1dc6-4cc2-835b-ea8226d0fb11" + "a16b2c5c-612e-4592-b1c4-76b641043567" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "886ec627-68b1-46e1-ad71-efe73d8be630" + "0e8a997d-4c6e-4969-b039-9a5c086a4ff3" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11996" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "66d7fe56-4edf-4d4c-9e19-e4bd1103537e" + "b7a57de5-6d76-41ff-b500-53874423374c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235016Z:66d7fe56-4edf-4d4c-9e19-e4bd1103537e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222250Z:b7a57de5-6d76-41ff-b500-53874423374c" ], "Date": [ - "Wed, 21 Feb 2018 23:50:16 GMT" + "Fri, 08 Nov 2019 22:22:50 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b511e9b-4d52-45bd-a4d8-a5794f8cde59" + "a126d1a4-4625-4ade-9850-828e24355de7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "85ae2514-cbe3-4a94-9f39-d4a23ef280c3" + "eb94463a-9ac8-44fc-b17a-3ddb0bb5984e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11995" ], "x-ms-correlation-request-id": [ - "d92ea22f-f0e6-466b-b481-6d4b784a2966" + "063643d0-ea92-4202-a74b-d834dfebdd9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235046Z:d92ea22f-f0e6-466b-b481-6d4b784a2966" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222320Z:063643d0-ea92-4202-a74b-d834dfebdd9e" ], "Date": [ - "Wed, 21 Feb 2018 23:50:45 GMT" + "Fri, 08 Nov 2019 22:23:20 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1919a56c-fe84-47a4-a44f-ab89d82bc1ac" + "d6ce9ca3-d568-416c-b33e-ce113e30626d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ef059427-257e-49b4-88b4-a097368fffbd" + "73d5624d-ca73-489a-bccc-f8576edd993d" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11994" ], "x-ms-correlation-request-id": [ - "b60d1bc8-b003-4cac-9f88-14d4029d7ce4" + "c3e72bfa-57e8-4f03-8fed-7d1fc9eacc54" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235116Z:b60d1bc8-b003-4cac-9f88-14d4029d7ce4" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222350Z:c3e72bfa-57e8-4f03-8fed-7d1fc9eacc54" ], "Date": [ - "Wed, 21 Feb 2018 23:51:16 GMT" + "Fri, 08 Nov 2019 22:23:50 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "744b46e0-254a-446d-9be7-eacb6b1b54d8" + "c6751cac-5875-4e90-8eed-8fe8779e9c9b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c352c593-9b1d-4875-9e81-fb0ed0a54f8f" + "981bd47f-70ac-49ca-8adf-9342ed4bb71d" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11993" ], "x-ms-correlation-request-id": [ - "f68fef37-e95c-4c68-ad1d-7a821362e697" + "c8a806f3-58c8-41ba-8b49-80e16da1b9d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235146Z:f68fef37-e95c-4c68-ad1d-7a821362e697" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222421Z:c8a806f3-58c8-41ba-8b49-80e16da1b9d0" ], "Date": [ - "Wed, 21 Feb 2018 23:51:46 GMT" + "Fri, 08 Nov 2019 22:24:20 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "659679f4-a27b-48e4-9cf4-0d94c0ac1a45" + "adc7945a-e01a-40f2-bbc6-d43a526378d3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c3f2571e-6263-4f0a-ace3-4fbf777430a8" + "eaeba2bd-84f7-4137-b07a-2cae2f188b41" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11992" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "9155bf8e-aa36-4ab9-809b-3781999b6175" + "a446d1cc-4a00-4a71-ba3f-ab48e3260d2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235216Z:9155bf8e-aa36-4ab9-809b-3781999b6175" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222451Z:a446d1cc-4a00-4a71-ba3f-ab48e3260d2c" ], "Date": [ - "Wed, 21 Feb 2018 23:52:16 GMT" + "Fri, 08 Nov 2019 22:24:50 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "490ba072-4219-4ebb-9050-46cfd429e595" + "ca1c628a-f90d-4441-8324-448a98d90446" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1154e984-5410-4e28-a156-c059f9e00c8a" + "ba5a54d9-e392-4fbf-a0b8-b73a669ee5a8" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11991" ], "x-ms-correlation-request-id": [ - "ceb03744-4009-4016-8001-2d7e5a1a8bd2" + "7ba46466-be60-4d60-b679-2c34f9d0c057" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235247Z:ceb03744-4009-4016-8001-2d7e5a1a8bd2" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222521Z:7ba46466-be60-4d60-b679-2c34f9d0c057" ], "Date": [ - "Wed, 21 Feb 2018 23:52:46 GMT" + "Fri, 08 Nov 2019 22:25:20 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60242832-d915-4d53-ac95-59eda78820c4" + "817ac5e2-8125-4b28-8f30-92bd99869d7b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e561d2de-7c57-4f41-8ec2-f9fa4c0119d7" + "9e94dfde-f0ae-4a3a-885b-a88f2bea7ccd" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11990" ], "x-ms-correlation-request-id": [ - "706f78f8-97c3-4323-a1c2-9f47f81b54d5" + "fa10d76b-d352-4d38-88f3-b89f534c0cb0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235317Z:706f78f8-97c3-4323-a1c2-9f47f81b54d5" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222551Z:fa10d76b-d352-4d38-88f3-b89f534c0cb0" ], "Date": [ - "Wed, 21 Feb 2018 23:53:16 GMT" + "Fri, 08 Nov 2019 22:25:50 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d840019-282d-4224-83bc-a3fc12627ee7" + "a0803fc3-0732-471d-ba22-a00af4ebb758" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "30e6d7f1-4ce7-4add-91ba-ad5d1d2243ce" + "eb20623e-77f5-41ae-b24a-1853ebec3a67" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11989" ], "x-ms-correlation-request-id": [ - "cfecb9cf-15a6-4281-ae25-d6590f7cf0b7" + "0f624917-6a86-4e0e-9028-1a04f0e7dad8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235347Z:cfecb9cf-15a6-4281-ae25-d6590f7cf0b7" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222621Z:0f624917-6a86-4e0e-9028-1a04f0e7dad8" ], "Date": [ - "Wed, 21 Feb 2018 23:53:46 GMT" + "Fri, 08 Nov 2019 22:26:21 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21cc09b0-5c33-47ea-a33e-d04850445803" + "c65aedd9-05ae-4333-bf6b-459945f283fc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "64fb4d73-fbb2-4ee1-a591-fbe5c396677e" + "446fdf3c-2934-48ec-aa41-2b4e29b4a7a0" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11988" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "8090f3a9-afb7-425d-8339-0eb9383b5899" + "7dd076c3-f5c6-4411-a8d9-35e51327aca8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235417Z:8090f3a9-afb7-425d-8339-0eb9383b5899" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222651Z:7dd076c3-f5c6-4411-a8d9-35e51327aca8" ], "Date": [ - "Wed, 21 Feb 2018 23:54:17 GMT" + "Fri, 08 Nov 2019 22:26:51 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df3d793e-1f95-425e-ab0d-c88f68a6e3ff" + "f429b243-9f47-4638-a20f-f0ac3e3a0596" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0e60407a-cfd6-4da9-b0d5-64d592b6876a" + "583d5482-25d7-4cbe-8272-725f6c267731" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11987" ], "x-ms-correlation-request-id": [ - "fd96d559-532c-467d-aadb-4463c689aeca" + "1dbb95e5-0c02-4326-ac24-09d4e19c0777" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235447Z:fd96d559-532c-467d-aadb-4463c689aeca" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222721Z:1dbb95e5-0c02-4326-ac24-09d4e19c0777" ], "Date": [ - "Wed, 21 Feb 2018 23:54:47 GMT" + "Fri, 08 Nov 2019 22:27:20 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbc2cac3-95f4-44d4-b1a2-d2ae0812722d" + "718dca5f-f321-43d7-8d9d-e125408cea57" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7d43b7e6-4cae-463f-8fa5-db8f7e8efdd6" + "b30385ab-bb4d-43ec-8940-e1bc36d98258" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11986" ], "x-ms-correlation-request-id": [ - "657bbc46-0428-4485-bccc-b77ea97f5100" + "d44243b2-35b9-4d3e-945b-6c99eb168bfe" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235517Z:657bbc46-0428-4485-bccc-b77ea97f5100" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222751Z:d44243b2-35b9-4d3e-945b-6c99eb168bfe" ], "Date": [ - "Wed, 21 Feb 2018 23:55:16 GMT" + "Fri, 08 Nov 2019 22:27:51 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd858a60-75cb-49f8-b2f5-c3cb142b387d" + "306bd92e-3533-4c0a-b618-d144e6285461" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2fbab000-eb0f-42a6-83de-a9830ec5bbc2" + "a297b0c2-3451-4dee-ac7d-7bd01dbcda6e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11985" ], "x-ms-correlation-request-id": [ - "58d4b5ab-7d2a-4cdd-905b-d8cd98412f8b" + "3d77a672-1dd2-4fd1-8c1e-0b16b09df6cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235547Z:58d4b5ab-7d2a-4cdd-905b-d8cd98412f8b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222821Z:3d77a672-1dd2-4fd1-8c1e-0b16b09df6cc" ], "Date": [ - "Wed, 21 Feb 2018 23:55:47 GMT" + "Fri, 08 Nov 2019 22:28:21 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2c0c97e-9027-4562-98b0-d555fd0529ce" + "056b5dec-1fa4-4aa9-8b49-4f87efcd7a12" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f54b506c-06e9-4e88-9890-50087c0c98af" + "00e73595-c46d-45a0-b6f4-45ba88e8cb7b" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11984" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f69bf385-907e-4f22-bf73-33b9ea150f7b" + "a8828967-efd3-49f4-8fd9-ec63a643b272" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235617Z:f69bf385-907e-4f22-bf73-33b9ea150f7b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222851Z:a8828967-efd3-49f4-8fd9-ec63a643b272" ], "Date": [ - "Wed, 21 Feb 2018 23:56:17 GMT" + "Fri, 08 Nov 2019 22:28:51 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0707ed8-7c47-4b8c-ba06-d62eae41256c" + "8faaa3be-b3e8-43fc-9b3e-7e3b834d6b33" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a4b26068-1ef1-4c93-9dfc-dc65f8007d43" + "0e37cc26-c97d-43cb-b531-ac37535946d3" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "11983" ], "x-ms-correlation-request-id": [ - "031f8e8a-a208-496f-9ed4-b2b15eaf5220" + "3ec75a69-161e-4126-9b17-ff6cba3e6dca" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235647Z:031f8e8a-a208-496f-9ed4-b2b15eaf5220" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222921Z:3ec75a69-161e-4126-9b17-ff6cba3e6dca" ], "Date": [ - "Wed, 21 Feb 2018 23:56:46 GMT" + "Fri, 08 Nov 2019 22:29:20 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a233726-a5f3-4525-b110-ed74987750b2" + "3a45d635-fd9a-44b4-a2e6-bf8aa103b210" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e4a50aa1-b095-4fe5-8ae4-aa58e8364703" + "31a4be67-bb8f-4658-8c02-f15ec99c6018" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "11982" ], "x-ms-correlation-request-id": [ - "2b06a139-a704-4859-856c-d8e34bb86f73" + "ec228085-7f01-4eec-9b27-c0c302146dad" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235717Z:2b06a139-a704-4859-856c-d8e34bb86f73" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222951Z:ec228085-7f01-4eec-9b27-c0c302146dad" ], "Date": [ - "Wed, 21 Feb 2018 23:57:16 GMT" + "Fri, 08 Nov 2019 22:29:51 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2804bcc-78cb-4dec-977c-9c718c2fd9ce" + "45c000b8-8e2a-4eb7-ae8d-235d9391db07" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d7dbed4e-ba9b-4a7f-8a74-a813e1ec1e04" + "6e813eda-0e2f-4440-a9ae-f945f8c44ca3" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "11981" ], "x-ms-correlation-request-id": [ - "339cac89-0543-4981-a394-f7d8684b28f1" + "63f32a34-5822-4be6-bffb-bd14c2017fa4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235747Z:339cac89-0543-4981-a394-f7d8684b28f1" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223021Z:63f32a34-5822-4be6-bffb-bd14c2017fa4" ], "Date": [ - "Wed, 21 Feb 2018 23:57:47 GMT" + "Fri, 08 Nov 2019 22:30:21 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51a1b780-0709-4052-a25a-efbfbfd5b46d" + "318a9dcc-122e-41cd-9a1f-f7c73e00225d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "54146837-6be1-4149-9e08-3bf88cf9902a" + "993a16da-c058-4a6e-a7a9-e1097581ac25" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "11980" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "c1f31f4e-d322-49f0-b13c-b4f5da4d28b4" + "02dad776-660b-4e9e-9895-c1ae4eafd598" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235817Z:c1f31f4e-d322-49f0-b13c-b4f5da4d28b4" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223051Z:02dad776-660b-4e9e-9895-c1ae4eafd598" ], "Date": [ - "Wed, 21 Feb 2018 23:58:17 GMT" + "Fri, 08 Nov 2019 22:30:51 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27755c82-ba46-4721-ae38-b0a9d8c24e31" + "509408ec-5ec2-40b9-b653-0a773179b05e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "85d874b9-6785-4c9e-910d-8d30b0c512ce" + "d1797ed2-2a88-43f7-b03a-e6bb215ed88c" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "11979" ], "x-ms-correlation-request-id": [ - "c28d4646-c075-46cf-8e29-77624e109043" + "bcf041df-d42c-4c38-9943-77eee2732999" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235848Z:c28d4646-c075-46cf-8e29-77624e109043" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223121Z:bcf041df-d42c-4c38-9943-77eee2732999" ], "Date": [ - "Wed, 21 Feb 2018 23:58:47 GMT" + "Fri, 08 Nov 2019 22:31:21 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca972e46-28d3-4d10-ba71-804ea605f1a6" + "9e442e4b-4b8e-40ac-afcb-b9ea74be332c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c77e20d4-0530-43f4-946c-004ff09790c7" + "79172f57-51a0-4935-a4f4-5af2c01c3a82" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "11978" ], "x-ms-correlation-request-id": [ - "be997736-4114-4507-a769-c850896504eb" + "41cca177-2dba-4e53-a5f5-0a347e8617e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235918Z:be997736-4114-4507-a769-c850896504eb" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223151Z:41cca177-2dba-4e53-a5f5-0a347e8617e2" ], "Date": [ - "Wed, 21 Feb 2018 23:59:17 GMT" + "Fri, 08 Nov 2019 22:31:51 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0aa743d2-5e30-4685-9509-c7af5f4210ed" + "4ab0fcbe-5bc2-4160-bc29-373fb96368b2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7748b1b9-8e65-417e-ab3a-627d69a756e2" + "1b49798c-ff3e-45ed-9d6c-21fff899b2b7" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "11977" ], "x-ms-correlation-request-id": [ - "a6e7d0c2-d5e0-4d0c-b8af-dfba6596cdda" + "c63b98da-8b04-4f09-9689-16a514badcf6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T235948Z:a6e7d0c2-d5e0-4d0c-b8af-dfba6596cdda" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223222Z:c63b98da-8b04-4f09-9689-16a514badcf6" ], "Date": [ - "Wed, 21 Feb 2018 23:59:47 GMT" + "Fri, 08 Nov 2019 22:32:21 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "484f4d67-d288-45ec-a2fc-43f080dc687a" + "d5c67032-7cef-4580-8f64-6dfea011de33" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9a77aa38-0e8a-4721-9cf8-cbcba75e9f1d" + "04e60290-8e6a-4d83-babc-4df4848a696a" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "11976" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "3b9cbc4b-67ef-433d-aa69-191acf423555" + "604f3db4-835e-4840-8152-e6b0c4c8c0bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000018Z:3b9cbc4b-67ef-433d-aa69-191acf423555" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223252Z:604f3db4-835e-4840-8152-e6b0c4c8c0bb" ], "Date": [ - "Thu, 22 Feb 2018 00:00:17 GMT" + "Fri, 08 Nov 2019 22:32:51 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eea489f6-0751-461b-9ff2-6b76de9c645e" + "c81b5446-5f9d-4656-8006-65b0f7bff7fe" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d6d8f3a4-92b7-4039-b537-3d16c5ea3cf8" + "bddca535-dc5c-4d44-b6a5-af5424cce848" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "11975" ], "x-ms-correlation-request-id": [ - "2f236988-9765-4132-96e7-2baa47072c72" + "bc8c6016-e356-4420-984b-a508242f1947" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000048Z:2f236988-9765-4132-96e7-2baa47072c72" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223322Z:bc8c6016-e356-4420-984b-a508242f1947" ], "Date": [ - "Thu, 22 Feb 2018 00:00:48 GMT" + "Fri, 08 Nov 2019 22:33:21 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4d781e7-563f-48ea-9048-59d9369528d9" + "064626b9-299b-4cb6-921e-090560726add" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b24203c3-3d66-4a10-ae14-defefeb6fdb8" + "ce152f34-572a-470d-a2c9-7f2c45b46f15" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "11974" ], "x-ms-correlation-request-id": [ - "f8b3eacb-5a60-4da4-99c7-331aef5689c9" + "a5d0e498-3385-4541-b16b-b87d74d29e19" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000118Z:f8b3eacb-5a60-4da4-99c7-331aef5689c9" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223352Z:a5d0e498-3385-4541-b16b-b87d74d29e19" ], "Date": [ - "Thu, 22 Feb 2018 00:01:17 GMT" + "Fri, 08 Nov 2019 22:33:51 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e438b262-0b3c-4ac1-bab1-ced3efc82a78" + "1ee1ce7b-fb41-4c66-8464-0b6890bac49c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "39347b55-b0b7-42a9-91d0-4fdc5bda6e87" + "78d03ed3-bb72-4616-a291-ef3403c5604b" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "11973" ], "x-ms-correlation-request-id": [ - "81d41b35-ad42-454f-8689-206cf86b5e78" + "57aa2203-b90d-454c-95c2-7161c7ef7826" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000148Z:81d41b35-ad42-454f-8689-206cf86b5e78" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223422Z:57aa2203-b90d-454c-95c2-7161c7ef7826" ], "Date": [ - "Thu, 22 Feb 2018 00:01:47 GMT" + "Fri, 08 Nov 2019 22:34:21 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "abf408ec-dad6-4b95-b26d-7fb7da197b3b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { "Content-Length": [ "614" ], @@ -1856,130 +1897,64 @@ ], "Expires": [ "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8b979236-2d01-401c-991e-e185b1060f5c" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "702da9d7-5480-4a58-965e-8d6a9071321e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180222T000218Z:702da9d7-5480-4a58-965e-8d6a9071321e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 22 Feb 2018 00:02:18 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb56563f-842f-494d-8861-9b45918b8ac0" + "cb390b6f-1b5e-48f8-b167-4d4194403804" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "492c9a8f-e307-402b-8a53-3cc025c19cb9" + "1d890986-1351-453c-9d88-4db418d7b11c" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "11999" ], "x-ms-correlation-request-id": [ - "36be9a9e-a6d4-4dc7-8c5f-17f0b1cd8319" + "9baeb723-bef5-44bb-8eef-e730f44b2b68" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000248Z:36be9a9e-a6d4-4dc7-8c5f-17f0b1cd8319" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223452Z:9baeb723-bef5-44bb-8eef-e730f44b2b68" ], "Date": [ - "Thu, 22 Feb 2018 00:02:48 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8171fe06-3790-4b77-81c4-519e8c06bc89" - ], - "accept-language": [ - "en-US" + "Fri, 08 Nov 2019 22:34:52 GMT" ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { "Content-Length": [ "615" ], @@ -1988,72 +1963,33 @@ ], "Expires": [ "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a221676d-ad65-4604-864a-abab3523e1f4" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], - "x-ms-correlation-request-id": [ - "5b6393b8-cbf7-46a8-89cf-9f9277b9fcbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180222T000318Z:5b6393b8-cbf7-46a8-89cf-9f9277b9fcbf" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 22 Feb 2018 00:03:18 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e836f5e7-06f0-4f52-9e3d-b0de093e009d" + "bff46b59-2dea-4163-b3d9-9f2c97720259" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2351" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2062,55 +1998,58 @@ "1199" ], "x-ms-request-id": [ - "0f369cd7-89f5-46e9-85cd-408a06ea89d3" + "2dc958b4-a298-4597-be83-b5775f3c38df" ], "x-ms-correlation-request-id": [ - "0f369cd7-89f5-46e9-85cd-408a06ea89d3" + "2dc958b4-a298-4597-be83-b5775f3c38df" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234844Z:0f369cd7-89f5-46e9-85cd-408a06ea89d3" + "WESTUS:20191108T222119Z:2dc958b4-a298-4597-be83-b5775f3c38df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:48:43 GMT" + "Fri, 08 Nov 2019 22:21:19 GMT" + ], + "Content-Length": [ + "3202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "077420ee-d78b-411b-96b9-53508bf3dd7c" + "f7874aff-9f53-4577-8fa1-c231da78bd5a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2351" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2119,320 +2058,362 @@ "1199" ], "x-ms-request-id": [ - "8d6c3b5f-ea1f-4a60-9acf-353a54f2ff80" + "4e0cc594-5fe7-4f24-b92a-1d4c812c0395" ], "x-ms-correlation-request-id": [ - "8d6c3b5f-ea1f-4a60-9acf-353a54f2ff80" + "4e0cc594-5fe7-4f24-b92a-1d4c812c0395" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000323Z:8d6c3b5f-ea1f-4a60-9acf-353a54f2ff80" + "WESTUS:20191108T223454Z:4e0cc594-5fe7-4f24-b92a-1d4c812c0395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 22 Feb 2018 00:03:22 GMT" + "Fri, 08 Nov 2019 22:34:53 GMT" + ], + "Content-Length": [ + "3202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "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 },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "144" - ], "x-ms-client-request-id": [ - "12117c6f-d12d-4fb0-ae16-1de96d7c3133" + "f0a919f5-d093-4e42-9db9-646b1a623a05" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"fx3m/8yzaCjJjLUGit5JDaH87xCg/ppUXdaUKOVUjmE=\",\r\n \"secondaryKey\": \"9ZHuCvokae2NMZDa1XJDcRHree8szzbi/RW3cvjGpZc=\"\r\n },\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "733" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "144" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/redis/redisteam001?api-version=2018-03-01" + ], "x-ms-request-id": [ - "5e0c5b03-4122-4365-8354-b51e07dded6a" + "2e2b39d4-6815-409e-ad9e-f18c470ce450" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "84c16d91-c720-40ae-b0da-ee0141d7c49b" + "919fb150-db91-4388-8b79-5c41550c1ce9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234846Z:84c16d91-c720-40ae-b0da-ee0141d7c49b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222120Z:919fb150-db91-4388-8b79-5c41550c1ce9" ], "Date": [ - "Wed, 21 Feb 2018 23:48:45 GMT" + "Fri, 08 Nov 2019 22:21:19 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/redis/redisteam001?api-version=2017-10-01" + "Content-Length": [ + "733" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"fyCkcHQGPFTockMoDvwXCr+pPeUWnBNOK+wz1g1TqRc=\",\r\n \"secondaryKey\": \"nfsY94RqTCMcYIsSTsTZxr7GhYvqgC4cMv+5L5NtXu0=\"\r\n },\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "318b9241-a4e8-48bb-b278-7f8e48318a28" + "c763b7a4-a591-49a0-aea8-e2cb0dc61d98" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"fx3m/8yzaCjJjLUGit5JDaH87xCg/ppUXdaUKOVUjmE=\",\r\n \"secondaryKey\": \"9ZHuCvokae2NMZDa1XJDcRHree8szzbi/RW3cvjGpZc=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9b1e7f9c-c2ee-4f50-8a98-5cbb8de2de02" + "1fa64d00-c693-4799-bcd8-88ed0a0954e6" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "1135dda6-7e3b-48ff-b256-c3f9fa1e22ca" + "1b9cc3eb-46e9-4514-9f17-830b0aa4ebb0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234846Z:1135dda6-7e3b-48ff-b256-c3f9fa1e22ca" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222120Z:1b9cc3eb-46e9-4514-9f17-830b0aa4ebb0" ], "Date": [ - "Wed, 21 Feb 2018 23:48:45 GMT" + "Fri, 08 Nov 2019 22:21:19 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"primaryKey\": \"fyCkcHQGPFTockMoDvwXCr+pPeUWnBNOK+wz1g1TqRc=\",\r\n \"secondaryKey\": \"nfsY94RqTCMcYIsSTsTZxr7GhYvqgC4cMv+5L5NtXu0=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d203e2e5-26d1-400e-ab62-6f2bc720c0b1" + "dde1062b-7682-42d4-97a3-b6b82669915f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"fx3m/8yzaCjJjLUGit5JDaH87xCg/ppUXdaUKOVUjmE=\",\r\n \"secondaryKey\": \"9ZHuCvokae2NMZDa1XJDcRHree8szzbi/RW3cvjGpZc=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "87730862-7133-4d48-b70b-eba76570438b" + "e7f91610-d975-4c5a-bc78-e313cc9ad70a" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "4e5ece80-805e-4b02-b7ad-6d9a6b7baade" + "f6607479-131c-453a-ad12-b6df93706e93" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000324Z:4e5ece80-805e-4b02-b7ad-6d9a6b7baade" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223455Z:f6607479-131c-453a-ad12-b6df93706e93" ], "Date": [ - "Thu, 22 Feb 2018 00:03:24 GMT" + "Fri, 08 Nov 2019 22:34:55 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"primaryKey\": \"fyCkcHQGPFTockMoDvwXCr+pPeUWnBNOK+wz1g1TqRc=\",\r\n \"secondaryKey\": \"nfsY94RqTCMcYIsSTsTZxr7GhYvqgC4cMv+5L5NtXu0=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1b4ad47-8cc0-49ec-a649-277df4059dab" + "5c9221fb-47af-47ad-a24c-e457fba80c45" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"fx3m/8yzaCjJjLUGit5JDaH87xCg/ppUXdaUKOVUjmE=\",\r\n \"secondaryKey\": \"9ZHuCvokae2NMZDa1XJDcRHree8szzbi/RW3cvjGpZc=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5f0652b5-87a1-4aa5-b2b9-9c6bc421bbb1" + "b719b8ba-4632-41be-8da2-a2f7829fda91" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "9449b669-cbdc-4318-a997-21453a20b595" + "b89a15e0-3502-465e-bb94-33c00fadf027" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000324Z:9449b669-cbdc-4318-a997-21453a20b595" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223455Z:b89a15e0-3502-465e-bb94-33c00fadf027" ], "Date": [ - "Thu, 22 Feb 2018 00:03:24 GMT" + "Fri, 08 Nov 2019 22:34:55 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"fyCkcHQGPFTockMoDvwXCr+pPeUWnBNOK+wz1g1TqRc=\",\r\n \"secondaryKey\": \"nfsY94RqTCMcYIsSTsTZxr7GhYvqgC4cMv+5L5NtXu0=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cac0be5-22d5-41df-b350-ada0a0004785" + "65b432d4-d26e-4dde-a53f-3d2da6735856" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"gZjNjZM7jKUU8DtF3JhjkrZeBDdRknL78HXGFNWsBwE=\",\r\n \"secondaryKey\": \"9ZHuCvokae2NMZDa1XJDcRHree8szzbi/RW3cvjGpZc=\"\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a3bfdb11-3f0f-4c74-bb4d-a084a396cee2" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "edd30843-0288-4879-a571-947cce8df405" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T223456Z:edd30843-0288-4879-a571-947cce8df405" + ], + "Date": [ + "Fri, 08 Nov 2019 22:34:56 GMT" + ], "Content-Length": [ "123" ], @@ -2441,712 +2422,1111 @@ ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"xCgKqjFPjAd3elu+lIcDeepePmO6fBR9X3OefMCSqLo=\",\r\n \"secondaryKey\": \"nfsY94RqTCMcYIsSTsTZxr7GhYvqgC4cMv+5L5NtXu0=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8af5a00-be34-4226-9402-69af16ce8652" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ + "b8759652-c2bd-460c-be18-0e2d63b63a6e", + "d897c66c-8623-4afe-b724-545829f622d2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], "x-ms-request-id": [ - "df274bae-8fb7-4333-8ae5-09f53293d321" + "31258c18-6181-483c-a683-33b02049d728" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "31258c18-6181-483c-a683-33b02049d728" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T223452Z:31258c18-6181-483c-a683-33b02049d728" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "Date": [ + "Fri, 08 Nov 2019 22:34:52 GMT" ], - "x-ms-correlation-request-id": [ - "a294f243-ca96-449f-80d5-0bf94da1cc37" + "Content-Type": [ + "application/json; charset=utf-8" ], - "x-ms-routing-request-id": [ - "WESTUS2:20180222T000325Z:a294f243-ca96-449f-80d5-0bf94da1cc37" + "Expires": [ + "-1" + ], + "Content-Length": [ + "1352" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14a832d6-d8c9-417f-b050-795982884410" ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "8d00885c-98fe-4ea7-8379-7139c3836a76", + "5b4ecc5a-87ea-473b-8f10-f3e79e36ace7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "f0150df0-21f8-4481-a8df-b720969c4431" + ], + "x-ms-correlation-request-id": [ + "f0150df0-21f8-4481-a8df-b720969c4431" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T223455Z:f0150df0-21f8-4481-a8df-b720969c4431" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Thu, 22 Feb 2018 00:03:25 GMT" + "Fri, 08 Nov 2019 22:34:55 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1410" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "42424273-33e3-4b97-8003-ea2076ecd74e" + "384ca6ec-5110-48e6-b0a2-8c88f924a27c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "260" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "10b21078-e874-4f09-8198-a31a2f33cb53" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "efdc4fc7-f556-4d95-8533-ca8834d606f5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T223455Z:efdc4fc7-f556-4d95-8533-ca8834d606f5" + ], + "Date": [ + "Fri, 08 Nov 2019 22:34:54 GMT" + ], "Content-Length": [ - "627" + "673" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa2d7c60-ea71-4192-b565-c83499d8a52d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3c3ca791-e9e3-4037-b848-a0bb23099399" + "4235961c-a01c-43f1-9cb4-b98634bf3827" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "11997" ], "x-ms-correlation-request-id": [ - "c31ef3e2-f45c-41ee-8204-59a5fdf99eff" + "666d8bf8-61d7-4c52-9d3f-848915af3a7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000318Z:c31ef3e2-f45c-41ee-8204-59a5fdf99eff" + "WESTUS:20191108T223455Z:666d8bf8-61d7-4c52-9d3f-848915af3a7c" ], + "Date": [ + "Fri, 08 Nov 2019 22:34:55 GMT" + ], + "Content-Length": [ + "685" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001/regenerateKey?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDEvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29263940-9eef-47b5-93a7-814cbca46a33" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Thu, 22 Feb 2018 00:03:18 GMT" + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7fb002bd-7667-4dc0-8eb4-a93f67c05c5d" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "83851856-4b26-4d9d-a6b0-1fe628e3ff8b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T223456Z:83851856-4b26-4d9d-a6b0-1fe628e3ff8b" + ], + "Date": [ + "Fri, 08 Nov 2019 22:34:56 GMT" + ], + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"primaryKey\": \"xCgKqjFPjAd3elu+lIcDeepePmO6fBR9X3OefMCSqLo=\",\r\n \"secondaryKey\": \"nfsY94RqTCMcYIsSTsTZxr7GhYvqgC4cMv+5L5NtXu0=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5aa6c4b-52a8-44df-bc2f-f8da662429b6" + "095ebf12-b802-4b68-b7e5-42639f59eb47" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "12b29b9c-8571-4abb-acd4-d871fa90b029" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "500859f0-5d8d-4eae-8030-6a3f74461adc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T223456Z:500859f0-5d8d-4eae-8030-6a3f74461adc" + ], + "Date": [ + "Fri, 08 Nov 2019 22:34:56 GMT" ], "Expires": [ "-1" ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzEyYjI5YjljLTg1NzEtNGFiYi1hY2Q0LWQ4NzFmYTkwYjAyOT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01" + ], "x-ms-request-id": [ - "5ab2abad-48a8-48b4-8f2e-7466e0cf3980" + "71b684b1-1cd1-4717-aa0c-e6fe25dae04a" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "11995" ], "x-ms-correlation-request-id": [ - "6291ea7f-85d2-461e-88ab-cad2fd6fe29e" + "b0aeef4a-12ac-45a9-af25-866da52ab0e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000324Z:6291ea7f-85d2-461e-88ab-cad2fd6fe29e" + "WESTUS:20191108T223526Z:b0aeef4a-12ac-45a9-af25-866da52ab0e3" + ], + "Date": [ + "Fri, 08 Nov 2019 22:35:26 GMT" ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzEyYjI5YjljLTg1NzEtNGFiYi1hY2Q0LWQ4NzFmYTkwYjAyOT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Thu, 22 Feb 2018 00:03:24 GMT" + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "06d37b20-3f66-42e9-ab9a-16ee61913b39" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], "Server": [ "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "34b77c8c-0919-4fac-aa38-348442df5b3f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T223556Z:34b77c8c-0919-4fac-aa38-348442df5b3f" + ], + "Date": [ + "Fri, 08 Nov 2019 22:35:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"enableNonSslPort\": true,\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzEyYjI5YjljLTg1NzEtNGFiYi1hY2Q0LWQ4NzFmYTkwYjAyOT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Content-Length": [ - "227" + "Pragma": [ + "no-cache" ], - "x-ms-client-request-id": [ - "46307eeb-777e-4081-a233-032c82ad1854" + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01" ], - "accept-language": [ - "en-US" + "x-ms-request-id": [ + "69cc7427-dad3-43dc-824f-1ed9822c1fcc" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "b5b2c0f2-a4e2-4f35-bb29-8d39cb13088e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T223626Z:b5b2c0f2-a4e2-4f35-bb29-8d39cb13088e" + ], + "Date": [ + "Fri, 08 Nov 2019 22:36:26 GMT" + ], + "Expires": [ + "-1" ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzEyYjI5YjljLTg1NzEtNGFiYi1hY2Q0LWQ4NzFmYTkwYjAyOT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "647" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01" + ], "x-ms-request-id": [ - "db0ae8b3-4508-4e6c-9634-7abd0ab05daa" + "e4c887c2-2b3c-417a-9e66-757d1de6832e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" ], "x-ms-correlation-request-id": [ - "b16e3c4a-0777-4450-b03c-a46a66254a4f" + "7bc0404e-c864-421a-a1de-406bf3157d78" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000324Z:b16e3c4a-0777-4450-b03c-a46a66254a4f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223657Z:7bc0404e-c864-421a-a1de-406bf3157d78" ], "Date": [ - "Thu, 22 Feb 2018 00:03:24 GMT" + "Fri, 08 Nov 2019 22:36:56 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzEyYjI5YjljLTg1NzEtNGFiYi1hY2Q0LWQ4NzFmYTkwYjAyOT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "048bf66b-6ed0-4249-be7f-b0665e4c037c" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam001\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam001.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01" + ], "x-ms-request-id": [ - "de7ff5f6-d3df-4b50-9081-bf3ba07a4320" + "01da7fab-f9c2-4fd0-90cf-e702c5eb9774" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "11991" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "cb2abe1d-1ba6-4528-b3ca-6a9dbd9c6c48" + "977c9219-e80a-488f-9b2c-9b149652f896" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000324Z:cb2abe1d-1ba6-4528-b3ca-6a9dbd9c6c48" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223727Z:977c9219-e80a-488f-9b2c-9b149652f896" ], "Date": [ - "Thu, 22 Feb 2018 00:03:24 GMT" + "Fri, 08 Nov 2019 22:37:26 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001/regenerateKey?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDEvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzEyYjI5YjljLTg1NzEtNGFiYi1hY2Q0LWQ4NzFmYTkwYjAyOT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "x-ms-client-request-id": [ - "e6d1b3bb-b154-446c-b564-5da3b7d7caa6" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"gZjNjZM7jKUU8DtF3JhjkrZeBDdRknL78HXGFNWsBwE=\",\r\n \"secondaryKey\": \"9ZHuCvokae2NMZDa1XJDcRHree8szzbi/RW3cvjGpZc=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e27bd441-5010-4828-a9b1-1d1dbc7c5b36" + "368c515c-24d4-4ea3-ac76-4d1eb15ea720" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" ], "x-ms-correlation-request-id": [ - "32a0d482-9c12-4b9a-8543-8a1063bbeda9" + "6c24eda0-4e3a-4877-8bcc-f9902bde201b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000325Z:32a0d482-9c12-4b9a-8543-8a1063bbeda9" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223757Z:6c24eda0-4e3a-4877-8bcc-f9902bde201b" ], "Date": [ - "Thu, 22 Feb 2018 00:03:25 GMT" + "Fri, 08 Nov 2019 22:37:56 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-1/providers/Microsoft.Cache/Redis/redisteam001?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/12b29b9c-8571-4abb-acd4-d871fa90b029?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzEyYjI5YjljLTg1NzEtNGFiYi1hY2Q0LWQ4NzFmYTkwYjAyOT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3469598b-4109-4ebe-a0ac-79d78705e06a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "829e6402-739e-4134-b202-8809df4c7580" + "c34d81e6-7351-4056-8830-7ca5b9549eae" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], "x-ms-correlation-request-id": [ - "ce827e76-c895-4854-8d98-5dfcd505b0f1" + "f4bc571b-6082-48dc-a42e-c230e5d24183" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000326Z:ce827e76-c895-4854-8d98-5dfcd505b0f1" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T223757Z:f4bc571b-6082-48dc-a42e-c230e5d24183" ], "Date": [ - "Thu, 22 Feb 2018 00:03:26 GMT" + "Fri, 08 Nov 2019 22:37:56 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-1?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d80cfe16-7cd2-4e3f-87c0-9405d6bfdb35" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "494add20-d121-4aa6-922d-890d83a34d94" + "d6327abe-82a7-47d9-b5ab-46ed2d833fc4" ], "x-ms-correlation-request-id": [ - "494add20-d121-4aa6-922d-890d83a34d94" + "d6327abe-82a7-47d9-b5ab-46ed2d833fc4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000327Z:494add20-d121-4aa6-922d-890d83a34d94" + "WESTUS:20191108T223757Z:d6327abe-82a7-47d9-b5ab-46ed2d833fc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 22 Feb 2018 00:03:27 GMT" + "Fri, 08 Nov 2019 22:37:56 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "771c90e4-0195-49fe-a096-7b013dfc5b9e" + "5189a53f-0660-46bb-a7f8-b2a6af74e4c5" ], "x-ms-correlation-request-id": [ - "771c90e4-0195-49fe-a096-7b013dfc5b9e" + "5189a53f-0660-46bb-a7f8-b2a6af74e4c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000328Z:771c90e4-0195-49fe-a096-7b013dfc5b9e" + "WESTUS:20191108T223812Z:5189a53f-0660-46bb-a7f8-b2a6af74e4c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 22 Feb 2018 00:03:27 GMT" + "Fri, 08 Nov 2019 22:38:12 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-request-id": [ - "9aaa47ba-a613-456a-a3a0-91fbac211f4a" + "e5a98f15-e1d2-43ea-8ee3-670273777ec0" ], "x-ms-correlation-request-id": [ - "9aaa47ba-a613-456a-a3a0-91fbac211f4a" + "e5a98f15-e1d2-43ea-8ee3-670273777ec0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000343Z:9aaa47ba-a613-456a-a3a0-91fbac211f4a" + "WESTUS:20191108T223827Z:e5a98f15-e1d2-43ea-8ee3-670273777ec0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 22 Feb 2018 00:03:43 GMT" + "Fri, 08 Nov 2019 22:38:27 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11997" ], "x-ms-request-id": [ - "8d9c0013-bd44-44f4-b175-f28ebbe706d0" + "cbcd492d-df3d-4413-93c2-baae71c1f89f" ], "x-ms-correlation-request-id": [ - "8d9c0013-bd44-44f4-b175-f28ebbe706d0" + "cbcd492d-df3d-4413-93c2-baae71c1f89f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000358Z:8d9c0013-bd44-44f4-b175-f28ebbe706d0" + "WESTUS:20191108T223842Z:cbcd492d-df3d-4413-93c2-baae71c1f89f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 22 Feb 2018 00:03:58 GMT" + "Fri, 08 Nov 2019 22:38:42 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 202 + "ResponseBody": "", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11996" ], "x-ms-request-id": [ - "7d68eb63-380d-4e36-b4ff-c6a7a06058b9" + "4ee3dd82-04d7-4eb4-b6b2-12b34499a574" ], "x-ms-correlation-request-id": [ - "7d68eb63-380d-4e36-b4ff-c6a7a06058b9" + "4ee3dd82-04d7-4eb4-b6b2-12b34499a574" ], "x-ms-routing-request-id": [ - "WESTUS2:20180222T000413Z:7d68eb63-380d-4e36-b4ff-c6a7a06058b9" + "WESTUS:20191108T223842Z:4ee3dd82-04d7-4eb4-b6b2-12b34499a574" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 22 Feb 2018 00:04:12 GMT" + "Fri, 08 Nov 2019 22:38:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + "SubscriptionId": "bc130894-c5b3-4adc-a077-0b51f3714abe" } } \ No newline at end of file diff --git a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheClustering.json b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheClustering.json index ac10897f2d70..18a544cd4f8b 100644 --- a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheClustering.json +++ b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheClustering.json @@ -1,4274 +1,3536 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-3?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-client-request-id": [ + "5028a702-5260-4e12-ace7-69aa65e30f46" ], - "Content-Length": [ - "29" + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3\",\r\n \"name\": \"PowerShellTest-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "185" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-request-id": [ - "9f46d4a1-baf5-4139-8f3e-fda2a9372809" + "f35eb436-4555-409b-b481-19424cbd871a" ], "x-ms-correlation-request-id": [ - "9f46d4a1-baf5-4139-8f3e-fda2a9372809" + "f35eb436-4555-409b-b481-19424cbd871a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T214621Z:9f46d4a1-baf5-4139-8f3e-fda2a9372809" + "WESTUS:20191108T203206Z:f35eb436-4555-409b-b481-19424cbd871a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 21:46:21 GMT" + "Fri, 08 Nov 2019 20:32:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "3202" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-3?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4c9e395a-9712-492b-8351-d55a92b15755" + "984591f5-cb0d-412d-939e-03b77c8f7412" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam003' under resource group 'PowerShellTest-3' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "154" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "ce5d035c-efd4-4260-a4cc-3020a13c0e5f" + "96628dba-5a5e-496a-862b-7d764421c58b" ], "x-ms-correlation-request-id": [ - "ce5d035c-efd4-4260-a4cc-3020a13c0e5f" + "96628dba-5a5e-496a-862b-7d764421c58b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T214621Z:ce5d035c-efd4-4260-a4cc-3020a13c0e5f" + "WESTUS:20191108T203206Z:96628dba-5a5e-496a-862b-7d764421c58b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 21:46:21 GMT" + "Fri, 08 Nov 2019 20:32:05 GMT" + ], + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3\",\r\n \"name\": \"PowerShellTest-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5551e5e9-ae24-4ec4-a663-47cc3bbd2834" + "b607a20b-f1dd-4265-9f46-0c8fd7b4ad2b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-request-id": [ - "88e3852e-3048-43af-b4c6-31d5de5e36f3" + "d2fe0c27-f614-4c74-be46-ce8d4afed2eb" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "d2fe0c27-f614-4c74-be46-ce8d4afed2eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T203206Z:d2fe0c27-f614-4c74-be46-ce8d4afed2eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-correlation-request-id": [ - "c6072991-9925-4ac3-a915-1060d0c788af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T214655Z:c6072991-9925-4ac3-a915-1060d0c788af" + "Date": [ + "Fri, 08 Nov 2019 20:32:06 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 21:46:54 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "154" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam003' under resource group 'PowerShellTest-3' was not found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11a6b387-bf5e-40e1-9c57-ce46698f3217" + "5ec88075-1485-40a7-be01-cf7938a96f0e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7aa9a82e-0abe-431f-b029-0145e1c06dae" + "3a74cb3d-ce84-4bcc-85fd-5362f4d64108" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11998" ], "x-ms-correlation-request-id": [ - "42df8597-dbaa-4c36-a1a3-f2f3d04aeec2" + "9b4a646c-c7e3-403c-993e-899bebed0797" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T214725Z:42df8597-dbaa-4c36-a1a3-f2f3d04aeec2" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203240Z:9b4a646c-c7e3-403c-993e-899bebed0797" ], "Date": [ - "Wed, 21 Feb 2018 21:47:24 GMT" + "Fri, 08 Nov 2019 20:32:39 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d61a5211-1464-4914-aa72-21313c68d3be" + "768fe101-a131-46a8-b4a6-fb51964d307d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "afe8f027-c55b-412d-9d82-aba4596b7be5" + "bae88b11-1528-416e-aa58-89d391cc658a" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11997" ], "x-ms-correlation-request-id": [ - "bb33d0bc-b2fb-4f00-8152-61de6cf80fbd" + "1a239173-83cc-410b-81b5-7e2d066ded10" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T214755Z:bb33d0bc-b2fb-4f00-8152-61de6cf80fbd" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203310Z:1a239173-83cc-410b-81b5-7e2d066ded10" ], "Date": [ - "Wed, 21 Feb 2018 21:47:54 GMT" + "Fri, 08 Nov 2019 20:33:09 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8b1b355-0e95-4bd6-8274-af13885a6e53" + "c09b9186-8fba-467d-b5bc-5b6272cfe566" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a381f7f5-7669-464d-8ef5-67f0df036154" + "3186504d-1e7e-40b4-8603-c46a7d6d4f75" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11996" ], "x-ms-correlation-request-id": [ - "63c8248e-4e45-44f0-b6e3-c175e1663b1f" + "e8ffd0ae-c5a0-464a-b754-f030a655ca8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T214825Z:63c8248e-4e45-44f0-b6e3-c175e1663b1f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203340Z:e8ffd0ae-c5a0-464a-b754-f030a655ca8f" ], "Date": [ - "Wed, 21 Feb 2018 21:48:25 GMT" + "Fri, 08 Nov 2019 20:33:39 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dcbc4ce1-c6b5-4d23-b7d9-20b6b4026c5a" + "50ee035c-30a8-4b02-8644-3b6330388545" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5b27239b-290d-443e-a1be-a69b6739f079" + "7fd9508d-cda9-4cb4-801d-013ae244588f" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11995" ], "x-ms-correlation-request-id": [ - "4c187bd3-f6f5-454c-b6d9-abd05cbd621e" + "bcfb0cfa-655f-4164-ab15-89a6cf29b568" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T214855Z:4c187bd3-f6f5-454c-b6d9-abd05cbd621e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203410Z:bcfb0cfa-655f-4164-ab15-89a6cf29b568" ], "Date": [ - "Wed, 21 Feb 2018 21:48:55 GMT" + "Fri, 08 Nov 2019 20:34:10 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ef2ce09-6618-4680-be44-d9fdb422c241" + "fe48b00e-a0fb-4693-8338-b34c65f142d8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "60931280-aa0d-49b0-94c1-83c72d3bbb1d" + "7b1347e9-bc09-4a5c-960c-9062fa54c721" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11994" ], "x-ms-correlation-request-id": [ - "c0d4770a-0a7a-4eea-ad59-d1246294021f" + "988d0347-30df-4153-95ca-57b68388a64c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T214925Z:c0d4770a-0a7a-4eea-ad59-d1246294021f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203440Z:988d0347-30df-4153-95ca-57b68388a64c" ], "Date": [ - "Wed, 21 Feb 2018 21:49:25 GMT" + "Fri, 08 Nov 2019 20:34:39 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b8fec27-9981-48f7-96a1-704115993566" + "a685f630-8ee2-4798-a85a-1d35d025cd66" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f2628df1-0e6a-420e-b311-c0ca14b2e15a" + "9903c83a-8cb4-4b61-8070-327ca8798022" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11993" ], "x-ms-correlation-request-id": [ - "ec1c9ee7-8f43-4e8b-a5ec-c28326cca70e" + "7fe2fba7-f680-4cd0-99ce-150a8c2ed73e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T214955Z:ec1c9ee7-8f43-4e8b-a5ec-c28326cca70e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203510Z:7fe2fba7-f680-4cd0-99ce-150a8c2ed73e" ], "Date": [ - "Wed, 21 Feb 2018 21:49:55 GMT" + "Fri, 08 Nov 2019 20:35:09 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a219c35c-ebae-466c-810c-662a26da7ae2" + "1a77a5fc-4662-4ef1-8b85-cc0019232ef4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b1f9d0ce-e01d-45be-9ef6-880c079d501a" + "3e666b6f-9418-44d4-853d-ba20be25eaf3" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11992" ], "x-ms-correlation-request-id": [ - "b27eec9d-21b7-4861-8159-62c7e8eb1b7a" + "5674806d-cce3-459b-b7cd-826bc671bb34" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215026Z:b27eec9d-21b7-4861-8159-62c7e8eb1b7a" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203540Z:5674806d-cce3-459b-b7cd-826bc671bb34" ], "Date": [ - "Wed, 21 Feb 2018 21:50:25 GMT" + "Fri, 08 Nov 2019 20:35:40 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a567945-d275-4565-8f37-5a416e01ec1a" + "ba308431-4749-4aa5-a5af-dce8ac967c35" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8878396e-e8a4-48ef-bdda-67f73e417839" + "f2af2c57-ba01-473e-84d7-376288f2cdf5" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11991" ], "x-ms-correlation-request-id": [ - "e9b647bd-32df-4817-8966-d27e536a9f00" + "b95e23b9-fe41-488e-91f4-9d6d40a43132" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215056Z:e9b647bd-32df-4817-8966-d27e536a9f00" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203610Z:b95e23b9-fe41-488e-91f4-9d6d40a43132" ], "Date": [ - "Wed, 21 Feb 2018 21:50:55 GMT" + "Fri, 08 Nov 2019 20:36:09 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "044336fb-7611-4a9e-b91e-c3f1aa6db990" + "ffc6791b-57ae-4318-a0a3-f801ec45655a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "275d4904-2225-4b53-9125-c9f2d489272f" + "df95e72c-ddbf-4323-8ce2-27f4f2a51d1d" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11990" ], "x-ms-correlation-request-id": [ - "30119092-9304-4f72-bbef-c85227465e67" + "7f95321b-9dcf-46b3-a76c-50af4f8b1333" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215126Z:30119092-9304-4f72-bbef-c85227465e67" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203640Z:7f95321b-9dcf-46b3-a76c-50af4f8b1333" ], "Date": [ - "Wed, 21 Feb 2018 21:51:25 GMT" + "Fri, 08 Nov 2019 20:36:40 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bccd03f3-ebcd-4ff5-b56b-411e1d508d71" + "5f43e859-8445-4eff-ae65-efb9c02f0355" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d648ebad-2ddf-4390-b940-ec22c4a081ae" + "9501223b-35dd-4c8a-90b8-9fd1ac9304c5" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "11989" ], "x-ms-correlation-request-id": [ - "ca227934-32cf-4b5c-881d-ab44bf3a1a60" + "75d99e9b-bf77-4366-98f4-e9839406e6b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215156Z:ca227934-32cf-4b5c-881d-ab44bf3a1a60" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203710Z:75d99e9b-bf77-4366-98f4-e9839406e6b2" ], "Date": [ - "Wed, 21 Feb 2018 21:51:56 GMT" + "Fri, 08 Nov 2019 20:37:10 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "093fd3fc-af8e-4403-be7d-0808c6d5cc2d" + "579e275a-6c8d-4552-9ebb-ad14457060e6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6a2c823f-258d-471e-aea4-9b9a4801c722" + "37f165b3-cc61-439c-ace3-0667bb5d3016" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "11988" ], "x-ms-correlation-request-id": [ - "5b3db368-edab-4bb1-9a3a-0d993fa34fb5" + "28d4c19c-026c-421f-ac13-7620729ed373" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215226Z:5b3db368-edab-4bb1-9a3a-0d993fa34fb5" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203740Z:28d4c19c-026c-421f-ac13-7620729ed373" ], "Date": [ - "Wed, 21 Feb 2018 21:52:25 GMT" + "Fri, 08 Nov 2019 20:37:40 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3703332e-374c-4d95-8882-63b8d9823c99" + "76a586bc-e7ff-407c-9251-ccd2ac22cdcc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c0b91d32-42fe-4167-bdcb-1acc3af4af48" + "d4addefb-b115-4c27-859f-e46c2fd24d74" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "11987" ], "x-ms-correlation-request-id": [ - "461d7e46-1877-413b-b9f2-2e2f5387ebfa" + "8638bf56-6043-41f8-a1f3-ef0492c9895e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215256Z:461d7e46-1877-413b-b9f2-2e2f5387ebfa" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203810Z:8638bf56-6043-41f8-a1f3-ef0492c9895e" ], "Date": [ - "Wed, 21 Feb 2018 21:52:55 GMT" + "Fri, 08 Nov 2019 20:38:09 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "940c0291-1697-49f9-b779-561c6b2a8173" + "1e9d9165-6e50-4668-84bb-31be6e3c675e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8f81cc02-e459-4eb9-97a2-2e4917c657a7" + "801b51eb-5038-4d2b-93b9-3f245faf01a5" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "11986" ], "x-ms-correlation-request-id": [ - "b388f7f2-cffd-4dfb-98c6-bd0bebc974eb" + "6fd8484c-ac2d-42e6-86a0-2abdd5e6549d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215326Z:b388f7f2-cffd-4dfb-98c6-bd0bebc974eb" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203840Z:6fd8484c-ac2d-42e6-86a0-2abdd5e6549d" ], "Date": [ - "Wed, 21 Feb 2018 21:53:25 GMT" + "Fri, 08 Nov 2019 20:38:40 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "795444ad-d42b-496f-a5c4-668b78a2a886" + "d9114d93-9eda-4c1b-91ed-1ee9f5e46521" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fb0f676c-b442-411c-b5de-4a83765ece62" + "099e63ee-3624-4217-b197-0aa3808367fe" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "11985" ], "x-ms-correlation-request-id": [ - "58284836-ac0d-490b-8ed8-6866738f16d6" + "42023290-559d-4673-af41-f9d27458df38" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215356Z:58284836-ac0d-490b-8ed8-6866738f16d6" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203911Z:42023290-559d-4673-af41-f9d27458df38" ], "Date": [ - "Wed, 21 Feb 2018 21:53:56 GMT" + "Fri, 08 Nov 2019 20:39:10 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "548b203f-9914-419a-9dee-64d30b3b666c" + "bf1bb694-8151-4756-8987-257d2a15bcd1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "19730275-9624-44bb-9e31-dc542d2bb738" + "e8cb4bee-c7c1-43b1-8bc4-93e2bf82ce53" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "11984" ], "x-ms-correlation-request-id": [ - "97f0e74b-5cea-45c9-b88b-6226f50cc6b6" + "12925249-a3af-4854-a906-e2234b49a73a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215426Z:97f0e74b-5cea-45c9-b88b-6226f50cc6b6" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203941Z:12925249-a3af-4854-a906-e2234b49a73a" ], "Date": [ - "Wed, 21 Feb 2018 21:54:25 GMT" + "Fri, 08 Nov 2019 20:39:40 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1408db5e-7e27-4ec9-9ff2-f5d71f4479f8" + "f6309458-986b-4338-b184-d21989ef9a99" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "04468026-cc94-42b0-b631-6d8d6185ea66" + "77dcae03-9f1c-4203-9b0d-9310c7fde470" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], "x-ms-correlation-request-id": [ - "057e6208-8df1-48ee-877e-0510aa80bcf5" + "a30199bf-fe2d-4c8d-a6c9-84e97d6217b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215456Z:057e6208-8df1-48ee-877e-0510aa80bcf5" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204011Z:a30199bf-fe2d-4c8d-a6c9-84e97d6217b7" ], "Date": [ - "Wed, 21 Feb 2018 21:54:56 GMT" + "Fri, 08 Nov 2019 20:40:10 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62c6efcc-b9d6-4df2-b693-75b3147de5f0" + "59368670-abfb-4265-bd6b-5d1ff8cfe1eb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "68e894c4-681b-4a90-ae61-cb0486e9c89f" + "79fc518f-6cd9-4ec1-8ea9-dea752100f23" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "11982" ], "x-ms-correlation-request-id": [ - "bd0c847c-f408-40ac-8883-6b604c76849b" + "f3560d56-a607-47dd-8148-22cc8edbf668" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215526Z:bd0c847c-f408-40ac-8883-6b604c76849b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204041Z:f3560d56-a607-47dd-8148-22cc8edbf668" ], "Date": [ - "Wed, 21 Feb 2018 21:55:25 GMT" + "Fri, 08 Nov 2019 20:40:41 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b70cb82b-38e3-4abe-a7c8-f94f8e2ead8e" + "87d6cc39-1c93-4571-ac16-410a66aae9c3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2c9ebd5f-9889-4e63-b579-fc9c34649109" + "0e7f36a3-eb68-43ac-9853-3bd35fb248bd" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "11981" ], "x-ms-correlation-request-id": [ - "0a39f93d-4157-43e6-be48-34d0b7967a34" + "6197f14f-f7a2-4d4a-bb82-d6dc20939d5b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215556Z:0a39f93d-4157-43e6-be48-34d0b7967a34" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204111Z:6197f14f-f7a2-4d4a-bb82-d6dc20939d5b" ], "Date": [ - "Wed, 21 Feb 2018 21:55:56 GMT" + "Fri, 08 Nov 2019 20:41:11 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d529e7e4-a71c-49d5-85a9-9a00fa39a9da" + "1ef99988-fffc-4fe9-9ce4-74e7004d0692" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "97243861-fe58-4c1b-92a2-896c84842a9e" + "b32b4b34-af33-4174-aafb-ff5476f55ad7" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "11980" ], "x-ms-correlation-request-id": [ - "4c1a01d2-8323-4800-8a1b-33a91dae3ba4" + "f75c1a5d-45e1-4508-be51-9595dafcfa96" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215627Z:4c1a01d2-8323-4800-8a1b-33a91dae3ba4" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204141Z:f75c1a5d-45e1-4508-be51-9595dafcfa96" ], "Date": [ - "Wed, 21 Feb 2018 21:56:26 GMT" + "Fri, 08 Nov 2019 20:41:41 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4baaabf-7dfb-460a-bc51-d5e0995b2da0" + "0b72d8bc-0143-4bec-8389-ceede5610c74" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8a324131-8e47-455d-a445-2792bf63599b" + "b038d4f0-569d-42b4-91ed-39e56db833e7" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "11979" ], "x-ms-correlation-request-id": [ - "410b7d50-ec30-4bd3-b703-144e9fd6da3e" + "4424ac8a-7e78-4847-aba8-daf3760d0f23" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215657Z:410b7d50-ec30-4bd3-b703-144e9fd6da3e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204211Z:4424ac8a-7e78-4847-aba8-daf3760d0f23" ], "Date": [ - "Wed, 21 Feb 2018 21:56:57 GMT" + "Fri, 08 Nov 2019 20:42:11 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ec856b4-7ccd-4b6c-9635-bde81a64d6d8" + "1a924c6b-860c-459d-a59a-6087770f320b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "dbdf24c2-c76e-4c8a-b570-d71067b09970" + "21c9abb9-9813-4d0c-adf3-d8143c206a13" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "11978" ], "x-ms-correlation-request-id": [ - "231078d5-1ba7-4638-92ff-f4bdc3ec94c8" + "bb1865ce-34ed-4c99-8c5d-862c3bf240db" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215727Z:231078d5-1ba7-4638-92ff-f4bdc3ec94c8" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204241Z:bb1865ce-34ed-4c99-8c5d-862c3bf240db" ], "Date": [ - "Wed, 21 Feb 2018 21:57:26 GMT" + "Fri, 08 Nov 2019 20:42:41 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62f27923-8ae8-4f9e-9650-f0973771c9da" + "1b5c65cd-7c13-4818-80d7-3e757799cc64" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "90b9c61c-9141-4ff7-9ed7-dec41c0a3840" + "0fb63fbd-0e64-49ae-8a7c-acc28f06b172" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "11977" ], "x-ms-correlation-request-id": [ - "c34adbaf-ddcd-4940-8a7c-0ccf36a635fd" + "caa39204-4638-4f3f-a590-b668f94006cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215757Z:c34adbaf-ddcd-4940-8a7c-0ccf36a635fd" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204312Z:caa39204-4638-4f3f-a590-b668f94006cc" ], "Date": [ - "Wed, 21 Feb 2018 21:57:56 GMT" + "Fri, 08 Nov 2019 20:43:11 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf758c64-8d67-4dd4-9a4c-b89730932aa1" + "e49362ff-a5be-4295-ac32-62311515ab07" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "984cc51a-845a-4754-a7f5-b095587c321c" + "10d2fdbd-e0f2-44c1-a2af-e82c2105139e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "11976" ], "x-ms-correlation-request-id": [ - "241c9e76-a415-4215-93a1-f989d965619d" + "4ef37220-d2ec-4ccc-966a-3ad1f465e636" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215827Z:241c9e76-a415-4215-93a1-f989d965619d" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204342Z:4ef37220-d2ec-4ccc-966a-3ad1f465e636" ], "Date": [ - "Wed, 21 Feb 2018 21:58:26 GMT" + "Fri, 08 Nov 2019 20:43:41 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "367ed01f-9aa5-4913-84f3-6c0afee92536" + "e7fd2d1c-1f61-43c0-8d08-60b91bad6780" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e1a1c4b6-7cda-4029-95c9-99c5333ff9b6" + "8a351e7b-0a65-4749-a881-2d176f7a8660" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "11975" ], "x-ms-correlation-request-id": [ - "e5cb9301-930a-4143-bb79-90b78f2b2374" + "1face5a4-c413-4b36-9539-b011a3ed08b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215857Z:e5cb9301-930a-4143-bb79-90b78f2b2374" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204412Z:1face5a4-c413-4b36-9539-b011a3ed08b0" ], "Date": [ - "Wed, 21 Feb 2018 21:58:56 GMT" + "Fri, 08 Nov 2019 20:44:11 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7c94596-cd8b-4220-82d0-c569076be9ab" + "a08f47c3-e036-4959-b4fb-f7391adf963a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "bdc35295-2783-4c11-9377-a01bb23c82f9" + "98b8e140-0ee4-40c2-ad06-a8d8ca07059e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "11974" ], "x-ms-correlation-request-id": [ - "d43f016f-3e69-42d1-9051-2f3299430a7b" + "2d317d67-2ac7-4d15-a7dd-3ccee5975ecc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215927Z:d43f016f-3e69-42d1-9051-2f3299430a7b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204442Z:2d317d67-2ac7-4d15-a7dd-3ccee5975ecc" ], "Date": [ - "Wed, 21 Feb 2018 21:59:26 GMT" + "Fri, 08 Nov 2019 20:44:42 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a43b6582-41f2-4108-b665-67a0a659ce97" + "4426b8be-0a02-40d7-a1e7-c82e739bfa0c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "95186f53-5f91-4ceb-8528-7eddd426e533" + "80988df5-8bd5-4df4-b318-c01effdd09d6" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "11973" ], "x-ms-correlation-request-id": [ - "bd57db83-34a1-4a2e-b8f8-5c422df7dcd6" + "fdae7a46-3b80-4b49-ab12-165662011c8d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T215957Z:bd57db83-34a1-4a2e-b8f8-5c422df7dcd6" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204512Z:fdae7a46-3b80-4b49-ab12-165662011c8d" ], "Date": [ - "Wed, 21 Feb 2018 21:59:56 GMT" + "Fri, 08 Nov 2019 20:45:11 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02b11623-7d98-4715-9bfd-42236181a6ac" + "ebff6b99-8f70-4436-b614-e63e94582544" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ed18c8c3-972a-4a6a-90ba-4d1cd249ca30" + "a60955e9-e14f-424b-bf58-7591d1758785" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "11972" ], "x-ms-correlation-request-id": [ - "55ff5fc1-59d9-4e03-8f7f-66e0a789500f" + "99dd5c2c-5c1d-441f-8d6d-7e4c517ca49e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220027Z:55ff5fc1-59d9-4e03-8f7f-66e0a789500f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204542Z:99dd5c2c-5c1d-441f-8d6d-7e4c517ca49e" ], "Date": [ - "Wed, 21 Feb 2018 22:00:27 GMT" + "Fri, 08 Nov 2019 20:45:41 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eef96515-e160-4045-b512-4d8ab5b5eb3c" + "98a983a3-1926-4261-8672-5109fe8889f9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c52e2100-5773-470a-89ef-03279ca2596f" + "20fd2b81-554b-48be-bc3a-6935c8235eb2" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "11971" ], "x-ms-correlation-request-id": [ - "434d0a1a-bcd7-428b-a995-63719028a8ec" + "8634c542-206e-49ca-8f7c-b2a51eafc02c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220057Z:434d0a1a-bcd7-428b-a995-63719028a8ec" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204542Z:8634c542-206e-49ca-8f7c-b2a51eafc02c" ], "Date": [ - "Wed, 21 Feb 2018 22:00:57 GMT" + "Fri, 08 Nov 2019 20:45:41 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be383447-ae86-48e4-9fb7-ed6a43051649" + "6a8eaf52-c6a3-4dd1-96cd-749d634b255d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], "x-ms-request-id": [ - "945fb7a5-efde-4fc4-a94e-25455ade6cd2" + "fd77d247-66b3-4c23-8095-940422ddf356" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "fd77d247-66b3-4c23-8095-940422ddf356" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T203208Z:fd77d247-66b3-4c23-8095-940422ddf356" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-correlation-request-id": [ - "afafb2c5-c899-4c1d-8603-ef9bcd310444" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T220127Z:afafb2c5-c899-4c1d-8603-ef9bcd310444" + "Date": [ + "Fri, 08 Nov 2019 20:32:08 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "3202" ], - "Date": [ - "Wed, 21 Feb 2018 22:01:27 GMT" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a25907f-3695-432c-9109-ee68571601cd" + "2fb6feba-8f0e-4df8-b97c-aebfc83eb9b0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], "x-ms-request-id": [ - "28f35f96-68d7-44f0-83c7-866789f9745a" + "5f0c8724-3e1c-402f-8fe6-11e116c22772" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "5f0c8724-3e1c-402f-8fe6-11e116c22772" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T204544Z:5f0c8724-3e1c-402f-8fe6-11e116c22772" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" - ], - "x-ms-correlation-request-id": [ - "0ab09a49-69b6-4d48-87a6-c86567a072c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T220157Z:0ab09a49-69b6-4d48-87a6-c86567a072c7" + "Date": [ + "Fri, 08 Nov 2019 20:45:44 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "3202" ], - "Date": [ - "Wed, 21 Feb 2018 22:01:56 GMT" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"shardCount\": 3,\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "448e46f0-9e32-41c1-a8e4-ba8df4b016d5" + "fcace74c-0bdc-4a9d-956d-96d27fb7fd5c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "629" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "166" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/redis/redisteam003?api-version=2018-03-01" + ], "x-ms-request-id": [ - "23a82fa2-d88d-4325-a60c-5e6e3edd86a1" + "485f1476-28ec-4acf-be25-baa652650e62" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "b44b3189-a62b-4cd1-9708-cb309cd048d6" + "5ddedadb-dd8b-48f4-9bc6-bfdb67e3f875" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220227Z:b44b3189-a62b-4cd1-9708-cb309cd048d6" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203209Z:5ddedadb-dd8b-48f4-9bc6-bfdb67e3f875" ], "Date": [ - "Wed, 21 Feb 2018 22:02:27 GMT" + "Fri, 08 Nov 2019 20:32:09 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"eHXarfhu9bWg3RlnDEO0paTdfL8Tl8K0B5XaPbcrxpE=\",\r\n \"secondaryKey\": \"WyWyWFUVFE7i8YrKDxh0J80EPXHiImsXMHtf3886GR4=\"\r\n },\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e68d0f95-9943-49c6-8b15-0dde399bbd2b" + "e1385a28-688c-4758-b5d6-7688e58a384f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "09d6e0bd-08b4-4606-867f-c61ed16a2e49" + "806dab1c-ef11-4527-89ad-a3f07d82bb97" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "beeeb6b5-97a8-4741-b133-bdda3bb2fb7c" + "3a19ee91-cecf-443f-8c9f-0fd96a711832" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220257Z:beeeb6b5-97a8-4741-b133-bdda3bb2fb7c" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T203209Z:3a19ee91-cecf-443f-8c9f-0fd96a711832" ], "Date": [ - "Wed, 21 Feb 2018 22:02:57 GMT" + "Fri, 08 Nov 2019 20:32:09 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"primaryKey\": \"eHXarfhu9bWg3RlnDEO0paTdfL8Tl8K0B5XaPbcrxpE=\",\r\n \"secondaryKey\": \"WyWyWFUVFE7i8YrKDxh0J80EPXHiImsXMHtf3886GR4=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34909a87-3fa5-45be-befd-578f3677738c" + "17684d1e-3b59-4692-9316-006493d72bbb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "459f9335-ea11-4a4c-a2a2-30d3abe4fdfd" + "f850281f-980f-4a70-a67c-7a9e1363ea7f" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "6e26bcdd-3a92-4ad2-a2ed-0d52c76c69fa" + "8416322c-8ccb-4b1c-a9a5-3cf33cd33ab0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220327Z:6e26bcdd-3a92-4ad2-a2ed-0d52c76c69fa" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204545Z:8416322c-8ccb-4b1c-a9a5-3cf33cd33ab0" ], "Date": [ - "Wed, 21 Feb 2018 22:03:27 GMT" + "Fri, 08 Nov 2019 20:45:44 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"primaryKey\": \"eHXarfhu9bWg3RlnDEO0paTdfL8Tl8K0B5XaPbcrxpE=\",\r\n \"secondaryKey\": \"WyWyWFUVFE7i8YrKDxh0J80EPXHiImsXMHtf3886GR4=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13795663-8930-4677-a59b-4a51bf8fc6ab" + "9c91fe1e-755e-4401-a1ce-12220c6a33fb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5861954c-dc53-4ca5-a598-b6999f6c533c" + "30c8b232-75de-4f41-b718-23360bbae9ef" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "027745ae-9c0b-454b-b551-17317871479a" + "fe4a606d-74b5-414d-a325-136d0a290b75" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220358Z:027745ae-9c0b-454b-b551-17317871479a" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204545Z:fe4a606d-74b5-414d-a325-136d0a290b75" ], "Date": [ - "Wed, 21 Feb 2018 22:03:57 GMT" + "Fri, 08 Nov 2019 20:45:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"primaryKey\": \"eHXarfhu9bWg3RlnDEO0paTdfL8Tl8K0B5XaPbcrxpE=\",\r\n \"secondaryKey\": \"WyWyWFUVFE7i8YrKDxh0J80EPXHiImsXMHtf3886GR4=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0bb6141-736c-4518-a51d-9c4a4d279190" + "b1aededf-1c97-490f-92aa-3f67de68f4b1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2b62c0ab-c956-4d40-a66c-64792f5ed61b" + "f921448c-d915-4247-bd14-888ceb452048" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "4b231f1a-10c9-4410-9159-2833766f0d46" + "f7e92ea0-bf5e-4c0f-8ad5-afa06001efc3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220428Z:4b231f1a-10c9-4410-9159-2833766f0d46" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204546Z:f7e92ea0-bf5e-4c0f-8ad5-afa06001efc3" ], "Date": [ - "Wed, 21 Feb 2018 22:04:27 GMT" + "Fri, 08 Nov 2019 20:45:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"primaryKey\": \"0vx2eQHpSDXbyTL3MMUn6ugSLeNgdT2wNY7W2U1TCWs=\",\r\n \"secondaryKey\": \"WyWyWFUVFE7i8YrKDxh0J80EPXHiImsXMHtf3886GR4=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"tenantSettings\": {\r\n \"some-key\": \"some-value\"\r\n },\r\n \"shardCount\": 3,\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "89864323-d907-4ec7-8c5d-8d7b7e1b7424" + "14c03194-2f7d-48aa-95f7-a8a14bb5d2f9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "629" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "283" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "54c5b13d-acca-4a2e-8d82-573fcddb6df3" + "60e27dfb-d0da-4c23-bae6-84b946d940e3" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "60528623-492b-4f48-acd3-2fd1db8c43d7" + "9765ca10-7e92-4d77-8f0b-9df0e98280c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220458Z:60528623-492b-4f48-acd3-2fd1db8c43d7" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204545Z:9765ca10-7e92-4d77-8f0b-9df0e98280c2" ], "Date": [ - "Wed, 21 Feb 2018 22:04:57 GMT" + "Fri, 08 Nov 2019 20:45:44 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "706" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcz9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82ac2b2f-d472-4e5c-a7e5-46b5110d6b85" + "2f415ce0-94c3-4984-91a6-e950b6db994d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "023b8639-a4c1-4a61-bae6-4d1f7cd7b887" + "8858c549-cf79-49ae-83d7-0d8f1f6f5fca" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "11970" ], "x-ms-correlation-request-id": [ - "cc1b4a9c-5969-4c88-bdc4-761c127c50f7" + "0e29b09b-68ee-4d10-924c-9ad53b813ca5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220528Z:cc1b4a9c-5969-4c88-bdc4-761c127c50f7" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204545Z:0e29b09b-68ee-4d10-924c-9ad53b813ca5" ], "Date": [ - "Wed, 21 Feb 2018 22:05:28 GMT" + "Fri, 08 Nov 2019 20:45:44 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf4cfa41-3745-4faf-a3cc-0f28e7c37b9f" + "141575bf-7533-4457-9337-12afc0f526e1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "528c6994-51f5-4cfd-8a11-5f9286344e37" + "d86bb344-b5c1-4bd6-bc41-57ade1eec622" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "11969" ], "x-ms-correlation-request-id": [ - "da907783-f1e3-4bc5-add9-5c291445503b" + "c00ce431-cd1f-4c9f-b25b-c59ace56057a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220558Z:da907783-f1e3-4bc5-add9-5c291445503b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204545Z:c00ce431-cd1f-4c9f-b25b-c59ace56057a" ], "Date": [ - "Wed, 21 Feb 2018 22:05:58 GMT" + "Fri, 08 Nov 2019 20:45:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003/regenerateKey?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDMvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e83c89bb-9489-43bf-9441-a03ebc7d72ec" + "963f6ec8-970d-47fc-a264-46496714ba5b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "629" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b3f1ae0f-6a81-4545-9154-33201d963471" + "8818b60b-3e59-4878-ae35-47ca41450c4d" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "bd34896f-188d-45ef-8799-905377704afa" + "aa57f21f-daa9-4a72-b867-fffebb521d5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220628Z:bd34896f-188d-45ef-8799-905377704afa" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204546Z:aa57f21f-daa9-4a72-b867-fffebb521d5d" ], "Date": [ - "Wed, 21 Feb 2018 22:06:27 GMT" + "Fri, 08 Nov 2019 20:45:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"primaryKey\": \"0vx2eQHpSDXbyTL3MMUn6ugSLeNgdT2wNY7W2U1TCWs=\",\r\n \"secondaryKey\": \"WyWyWFUVFE7i8YrKDxh0J80EPXHiImsXMHtf3886GR4=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6616b95f-a66c-4133-811e-f37dbf57dbec" + "ff0de473-7ac7-49e3-bb8c-1bd20c32b85b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01" + ], "x-ms-request-id": [ - "95a340e2-f04a-4722-a9ef-366ea88f269e" + "cb9a3a77-3662-4344-85a9-6e0180cb8e3d" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "743603e9-1cf3-408f-93e3-9a55ae5d5255" + "a5620094-e88e-47d1-bae5-67892b8eb519" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220658Z:743603e9-1cf3-408f-93e3-9a55ae5d5255" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204547Z:a5620094-e88e-47d1-bae5-67892b8eb519" ], "Date": [ - "Wed, 21 Feb 2018 22:06:58 GMT" + "Fri, 08 Nov 2019 20:45:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2NiOWEzYTc3LTM2NjItNDM0NC04NWE5LTZlMDE4MGNiOGUzZD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "69a1a5cb-8bd3-4bfc-af2b-7a1119ed572f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01" + ], "x-ms-request-id": [ - "6a7f9373-6830-4f94-ab0c-436adc2def4c" + "3f70d4a8-200f-4e84-a12b-51d6c7acc63b" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "11968" ], "x-ms-correlation-request-id": [ - "08a118f7-a54e-43ce-95cd-7b876da0ea45" + "aff0f5b4-0737-4e25-bf90-62e2a9ec3848" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220728Z:08a118f7-a54e-43ce-95cd-7b876da0ea45" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204617Z:aff0f5b4-0737-4e25-bf90-62e2a9ec3848" ], "Date": [ - "Wed, 21 Feb 2018 22:07:28 GMT" + "Fri, 08 Nov 2019 20:46:17 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2NiOWEzYTc3LTM2NjItNDM0NC04NWE5LTZlMDE4MGNiOGUzZD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d74d63e8-f8a0-46af-9659-7267f8e97d7a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01" + ], "x-ms-request-id": [ - "6d140f44-6d44-48b1-b4d7-8f0edce1d5d2" + "587cc361-a857-4f8c-8595-40ad1400c16d" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-correlation-request-id": [ - "65f12f23-70c5-4d91-a8a1-9a481b1163c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T220759Z:65f12f23-70c5-4d91-a8a1-9a481b1163c3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Feb 2018 22:07:58 GMT" - ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1221c64b-a9c6-434c-bc94-2776713d7bc0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "01afe3ba-b3e0-4b63-b96b-cfafbbe75796" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-content-type-options": [ - "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "11967" ], "x-ms-correlation-request-id": [ - "9fe15616-42c4-435d-a0ee-6259e8461e03" + "5f3f4889-5b19-4756-ae94-e9904fa19b70" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220829Z:9fe15616-42c4-435d-a0ee-6259e8461e03" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204647Z:5f3f4889-5b19-4756-ae94-e9904fa19b70" ], "Date": [ - "Wed, 21 Feb 2018 22:08:28 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "49a10592-86df-453c-9467-d0c4dc59a050" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 08 Nov 2019 20:46:47 GMT" ], "Expires": [ "-1" ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "030dfefa-c9b7-4d11-9ccd-c10822e9f834" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], - "x-ms-correlation-request-id": [ - "a0c96349-e2dc-4488-8362-e3f767b313ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T220859Z:a0c96349-e2dc-4488-8362-e3f767b313ca" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Feb 2018 22:08:58 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2NiOWEzYTc3LTM2NjItNDM0NC04NWE5LTZlMDE4MGNiOGUzZD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "80f19362-6286-4d48-aa0d-d54df102b3ca" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "630" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bd083124-29be-4cdd-ad0f-a8d27d56a2a8" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" - ], - "x-ms-correlation-request-id": [ - "96e4fdd9-d210-4c7f-9720-1f3f0a18c5f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T220929Z:96e4fdd9-d210-4c7f-9720-1f3f0a18c5f1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Feb 2018 22:09:29 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1299771b-9a18-4ef4-88cd-2dcfcd82c215" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "630" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01" + ], "x-ms-request-id": [ - "97a3c4a7-962d-40c6-84a5-2628bc84c18a" + "775bb5a0-3e2b-4b6c-a4b8-c9142433585b" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" - ], - "x-ms-correlation-request-id": [ - "edc7dda8-8da7-4d63-aabb-2d2a118c9835" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T220929Z:edc7dda8-8da7-4d63-aabb-2d2a118c9835" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Feb 2018 22:09:29 GMT" - ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f8a8b04f-9bc8-4e81-baa0-f5754d455e4f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2351" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "46bea750-2c79-455c-b8b3-740de283c76f" - ], - "x-ms-correlation-request-id": [ - "46bea750-2c79-455c-b8b3-740de283c76f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T214629Z:46bea750-2c79-455c-b8b3-740de283c76f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Feb 2018 21:46:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cb8ffb43-eb0e-4c36-a27b-568591d31297" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2351" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "0146d35e-31d8-4004-aa2b-a4b8e4b4e0b6" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" ], "x-ms-correlation-request-id": [ - "0146d35e-31d8-4004-aa2b-a4b8e4b4e0b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T220930Z:0146d35e-31d8-4004-aa2b-a4b8e4b4e0b6" + "cdd232e3-b4a4-49ee-ab39-2b66cccc6213" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Feb 2018 22:09:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"shardCount\": 3,\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "166" - ], - "x-ms-client-request-id": [ - "1ee40843-56b0-40b6-b840-08c3994c880a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"mfJgraHrTtEVmZkVWlb2pXPTX1v6TUo44iQXdzB+ngo=\",\r\n \"secondaryKey\": \"C25BBzZCtTJvMiks1a6s2OeNZ/uey3VqNczvEu2zIKg=\"\r\n },\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "748" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bac11e32-5f55-4620-87de-c0495d5f302f" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "152d3326-9688-4659-ad80-ed96b5499810" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T214625Z:152d3326-9688-4659-ad80-ed96b5499810" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Feb 2018 21:46:24 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/redis/redisteam003?api-version=2017-10-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "436eee60-817a-4d65-a586-fc385a744939" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"primaryKey\": \"mfJgraHrTtEVmZkVWlb2pXPTX1v6TUo44iQXdzB+ngo=\",\r\n \"secondaryKey\": \"C25BBzZCtTJvMiks1a6s2OeNZ/uey3VqNczvEu2zIKg=\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d87ffb64-5ee9-4719-9d6e-5d908b649255" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "aa115906-d54a-4f61-a2a5-3f6ec1cd09f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T214625Z:aa115906-d54a-4f61-a2a5-3f6ec1cd09f7" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Feb 2018 21:46:24 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1c990521-a4bd-4ae5-83d6-6d9db35f0275" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"primaryKey\": \"mfJgraHrTtEVmZkVWlb2pXPTX1v6TUo44iQXdzB+ngo=\",\r\n \"secondaryKey\": \"C25BBzZCtTJvMiks1a6s2OeNZ/uey3VqNczvEu2zIKg=\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8c4df91c-c01a-4c7a-95cf-146c2f07c4f1" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-correlation-request-id": [ - "f5d7e684-a336-4670-98d6-ae9ffc38bacd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T220932Z:f5d7e684-a336-4670-98d6-ae9ffc38bacd" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Feb 2018 22:09:31 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b74463a1-58bb-4f21-a919-5d39cc894711" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"primaryKey\": \"mfJgraHrTtEVmZkVWlb2pXPTX1v6TUo44iQXdzB+ngo=\",\r\n \"secondaryKey\": \"C25BBzZCtTJvMiks1a6s2OeNZ/uey3VqNczvEu2zIKg=\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "22876682-2bca-448a-ad3f-83969f76b54c" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "1bd19ef2-23c7-449e-9241-e19cf4962c7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T220932Z:1bd19ef2-23c7-449e-9241-e19cf4962c7f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Feb 2018 22:09:32 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "51312528-6e9f-4cf1-a08d-273425623649" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"primaryKey\": \"yGE3m3gRviALgNoDT8J5vTcKUc7P4EOA7dK3iSYVMCw=\",\r\n \"secondaryKey\": \"C25BBzZCtTJvMiks1a6s2OeNZ/uey3VqNczvEu2zIKg=\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "21109665-712d-4ecd-8c98-ad936e5a61bb" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-correlation-request-id": [ - "ba5046d6-f222-4d75-89ae-a27eeb40526e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T220933Z:ba5046d6-f222-4d75-89ae-a27eeb40526e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Feb 2018 22:09:33 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"tenantSettings\": {\r\n \"some-key\": \"some-value\"\r\n },\r\n \"shardCount\": 3,\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "283" - ], - "x-ms-client-request-id": [ - "eb991d73-d7e8-46c4-b35a-ec4a4f8bba89" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "706" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "69d09703-a399-4d64-8b2e-92f16c8391f4" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "086e870b-976d-4da0-85e1-ac03bd4d36e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T220932Z:086e870b-976d-4da0-85e1-ac03bd4d36e4" - ], - "Cache-Control": [ - "no-cache" + "x-ms-routing-request-id": [ + "WESTUS:20191108T204717Z:cdd232e3-b4a4-49ee-ab39-2b66cccc6213" ], "Date": [ - "Wed, 21 Feb 2018 22:09:31 GMT" + "Fri, 08 Nov 2019 20:47:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2NiOWEzYTc3LTM2NjItNDM0NC04NWE5LTZlMDE4MGNiOGUzZD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2a2a7911-4b2d-43ad-9c36-fb5c1cbacb4d" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "718" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01" + ], "x-ms-request-id": [ - "578ef3e5-6c1d-4d3f-ac83-c9329e693455" + "cc4b1cbd-ef89-424e-ab47-602a4f7c2927" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "11965" ], "x-ms-correlation-request-id": [ - "717e505c-21d1-4e65-8be5-5acb82038359" + "e84f5343-3c98-4875-af07-32adc7ea219a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220932Z:717e505c-21d1-4e65-8be5-5acb82038359" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204747Z:e84f5343-3c98-4875-af07-32adc7ea219a" ], "Date": [ - "Wed, 21 Feb 2018 22:09:32 GMT" + "Fri, 08 Nov 2019 20:47:47 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2NiOWEzYTc3LTM2NjItNDM0NC04NWE5LTZlMDE4MGNiOGUzZD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4e6a0e10-4753-42ed-97a9-698fb9336b9e" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam003\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam003.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 3,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "718" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01" + ], "x-ms-request-id": [ - "80d9cda5-7e6d-458d-8d5d-ad67c268076e" + "cb94e21f-92d7-46ba-bb5e-3f8e903a859b" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "11964" ], "x-ms-correlation-request-id": [ - "d64bee5c-18bf-49a6-83e8-8598e58ca9c3" + "a95f69e1-4515-4d22-a40f-7d83ee77bd50" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220932Z:d64bee5c-18bf-49a6-83e8-8598e58ca9c3" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204817Z:a95f69e1-4515-4d22-a40f-7d83ee77bd50" ], "Date": [ - "Wed, 21 Feb 2018 22:09:32 GMT" + "Fri, 08 Nov 2019 20:48:17 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003/regenerateKey?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDMvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2NiOWEzYTc3LTM2NjItNDM0NC04NWE5LTZlMDE4MGNiOGUzZD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "x-ms-client-request-id": [ - "f2e04ea9-2c22-4688-a39a-365ca158ee6a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"yGE3m3gRviALgNoDT8J5vTcKUc7P4EOA7dK3iSYVMCw=\",\r\n \"secondaryKey\": \"C25BBzZCtTJvMiks1a6s2OeNZ/uey3VqNczvEu2zIKg=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "15733751-9148-4e4d-bbd7-d8a727182b4b" + "43b3f279-bcd0-4d62-a347-280f4f24d126" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" ], "x-ms-correlation-request-id": [ - "09f5e99e-e208-47ef-81e2-c540ae06e071" + "4c555021-d003-4173-b728-384e0535050e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220933Z:09f5e99e-e208-47ef-81e2-c540ae06e071" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204847Z:4c555021-d003-4173-b728-384e0535050e" ], "Date": [ - "Wed, 21 Feb 2018 22:09:33 GMT" + "Fri, 08 Nov 2019 20:48:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-3/providers/Microsoft.Cache/Redis/redisteam003?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTMvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/cb9a3a77-3662-4344-85a9-6e0180cb8e3d?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2NiOWEzYTc3LTM2NjItNDM0NC04NWE5LTZlMDE4MGNiOGUzZD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d847027d-713b-4de4-8c27-3a726ceff120" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0affb254-7b19-4e4c-9346-f5cd75bf29a4" + "643fae40-68b9-4c72-8ec9-6508a6778b03" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" ], "x-ms-correlation-request-id": [ - "1330bb36-4b37-404d-9552-3a47da669cc9" + "62a71773-794d-4748-852b-2e865a10a9c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220934Z:1330bb36-4b37-404d-9552-3a47da669cc9" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T204847Z:62a71773-794d-4748-852b-2e865a10a9c7" ], "Date": [ - "Wed, 21 Feb 2018 22:09:34 GMT" + "Fri, 08 Nov 2019 20:48:47 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-3?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-3?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cc546072-0a23-4285-b7fb-9b6fc2cfb194" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "97366ce5-7381-42d8-83e0-e7ea360dfcdb" + "861e78bf-b636-4394-8c10-88675548bac7" ], "x-ms-correlation-request-id": [ - "97366ce5-7381-42d8-83e0-e7ea360dfcdb" + "861e78bf-b636-4394-8c10-88675548bac7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220935Z:97366ce5-7381-42d8-83e0-e7ea360dfcdb" + "WESTUS:20191108T204848Z:861e78bf-b636-4394-8c10-88675548bac7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:09:35 GMT" + "Fri, 08 Nov 2019 20:48:47 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11999" ], "x-ms-request-id": [ - "030265fa-6961-4b35-9ad4-b64faaa356b9" + "5fa7a11b-5eea-45cd-bf95-8a7bf27172a8" ], "x-ms-correlation-request-id": [ - "030265fa-6961-4b35-9ad4-b64faaa356b9" + "5fa7a11b-5eea-45cd-bf95-8a7bf27172a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220935Z:030265fa-6961-4b35-9ad4-b64faaa356b9" + "WESTUS:20191108T204903Z:5fa7a11b-5eea-45cd-bf95-8a7bf27172a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:09:35 GMT" + "Fri, 08 Nov 2019 20:49:02 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11998" ], "x-ms-request-id": [ - "e9fb6313-b3b1-47a9-a54d-94e73e998091" + "094e73b0-93fb-402e-9a9b-d4f2ae84d132" ], "x-ms-correlation-request-id": [ - "e9fb6313-b3b1-47a9-a54d-94e73e998091" + "094e73b0-93fb-402e-9a9b-d4f2ae84d132" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T220950Z:e9fb6313-b3b1-47a9-a54d-94e73e998091" + "WESTUS:20191108T204918Z:094e73b0-93fb-402e-9a9b-d4f2ae84d132" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:09:50 GMT" + "Fri, 08 Nov 2019 20:49:18 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11997" ], "x-ms-request-id": [ - "514c1508-edf6-4680-b87b-4760b701042c" + "0589a430-84ed-4ede-8c0c-68660f18deac" ], "x-ms-correlation-request-id": [ - "514c1508-edf6-4680-b87b-4760b701042c" + "0589a430-84ed-4ede-8c0c-68660f18deac" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T221005Z:514c1508-edf6-4680-b87b-4760b701042c" + "WESTUS:20191108T204933Z:0589a430-84ed-4ede-8c0c-68660f18deac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:10:05 GMT" + "Fri, 08 Nov 2019 20:49:33 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 202 + "ResponseBody": "", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11996" ], "x-ms-request-id": [ - "5aee2c75-cf16-4199-b7e5-3047f2ff57ca" + "e0100dd4-5792-4927-90ef-3a9e0aa63ba5" ], "x-ms-correlation-request-id": [ - "5aee2c75-cf16-4199-b7e5-3047f2ff57ca" + "e0100dd4-5792-4927-90ef-3a9e0aa63ba5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T221021Z:5aee2c75-cf16-4199-b7e5-3047f2ff57ca" + "WESTUS:20191108T204933Z:e0100dd4-5792-4927-90ef-3a9e0aa63ba5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:10:20 GMT" + "Fri, 08 Nov 2019 20:49:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + "SubscriptionId": "bc130894-c5b3-4adc-a077-0b51f3714abe" } } \ No newline at end of file diff --git a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePatchSchedules.json b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePatchSchedules.json index c86aa8f5c7ec..8e05d93ebdf7 100644 --- a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePatchSchedules.json +++ b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePatchSchedules.json @@ -1,2882 +1,4244 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-4?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-client-request-id": [ + "38980837-789e-45cf-b76a-e4df298689a9" ], - "Content-Length": [ - "29" + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4\",\r\n \"name\": \"PowerShellTest-4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "185" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-request-id": [ - "28a34781-5a59-45ae-b92b-8408c2d23bc7" + "d49af0a3-6227-4a5c-b4ac-777bc6636d7c" ], "x-ms-correlation-request-id": [ - "28a34781-5a59-45ae-b92b-8408c2d23bc7" + "d49af0a3-6227-4a5c-b4ac-777bc6636d7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233552Z:28a34781-5a59-45ae-b92b-8408c2d23bc7" + "WESTUS:20191108T215958Z:d49af0a3-6227-4a5c-b4ac-777bc6636d7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:35:51 GMT" + "Fri, 08 Nov 2019 21:59:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "3202" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-4?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cba386a4-7f2c-4675-abd8-5e31cbd0f7e0" + "aebd4f6d-e8bb-4ff3-80a7-197e9d779a4e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam004' under resource group 'PowerShellTest-4' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "154" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "9c025ec2-a2ff-4b42-acf9-126f1388231c" + "4934e0ea-f5fa-4039-9501-614a5d0edc62" ], "x-ms-correlation-request-id": [ - "9c025ec2-a2ff-4b42-acf9-126f1388231c" + "4934e0ea-f5fa-4039-9501-614a5d0edc62" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233553Z:9c025ec2-a2ff-4b42-acf9-126f1388231c" + "WESTUS:20191108T215958Z:4934e0ea-f5fa-4039-9501-614a5d0edc62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:35:53 GMT" + "Fri, 08 Nov 2019 21:59:58 GMT" + ], + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4\",\r\n \"name\": \"PowerShellTest-4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8120c47b-6280-4ff2-8038-6b6f7c412256" + "40c1ab20-0c27-4025-ac75-7148d75afb96" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-request-id": [ - "7c70b9f0-4763-4b77-85c1-05c4ddd02b17" + "6947e7de-0482-435a-ae4d-e1aa6907d006" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "6947e7de-0482-435a-ae4d-e1aa6907d006" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T215958Z:6947e7de-0482-435a-ae4d-e1aa6907d006" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "6f617c65-9b34-4ea3-877a-f9dd4ba3212f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T233626Z:6f617c65-9b34-4ea3-877a-f9dd4ba3212f" + "Date": [ + "Fri, 08 Nov 2019 21:59:58 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Date": [ - "Wed, 21 Feb 2018 23:36:26 GMT" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "154" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam004' under resource group 'PowerShellTest-4' was not found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1379614d-c9bb-4600-ae26-579ebc89bb1c" + "d7ce657a-ae25-4fe0-b80c-96cf414650de" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2099eaac-f8f8-403c-9e11-ed109f6fcb2a" + "ab4c9c44-d179-4767-970c-db3103b67a69" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11998" ], "x-ms-correlation-request-id": [ - "0e9dba67-6ff1-4a54-8ab4-6350960c6c9a" + "94e84f86-34fb-41c6-ac74-e821b666712c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233656Z:0e9dba67-6ff1-4a54-8ab4-6350960c6c9a" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220031Z:94e84f86-34fb-41c6-ac74-e821b666712c" ], "Date": [ - "Wed, 21 Feb 2018 23:36:56 GMT" + "Fri, 08 Nov 2019 22:00:30 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0333f64d-f2cf-4cfd-9f56-4d67804b0f3a" + "c3595b40-cc8c-47c7-aa01-9585d10476af" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1e54de83-a0dd-426a-a64e-04440c5585f1" + "dd9090ee-6d6f-40dd-a4ec-ee79ad2ab77f" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11997" ], "x-ms-correlation-request-id": [ - "d52cecdc-18a4-477d-b6a3-3f96c401b2d0" + "9e05835a-2dc5-48a9-8c06-36dfd12bf5a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233726Z:d52cecdc-18a4-477d-b6a3-3f96c401b2d0" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220101Z:9e05835a-2dc5-48a9-8c06-36dfd12bf5a4" ], "Date": [ - "Wed, 21 Feb 2018 23:37:26 GMT" + "Fri, 08 Nov 2019 22:01:01 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b0922e7-1420-4ce9-9bee-d9de58470ed0" + "bc95e741-85ab-4a45-8d0a-5468b685aa67" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fd0d0f40-b65c-46a8-9980-8cc1163c2904" + "93ab5572-5231-4bff-9b9a-4c8722223d19" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11996" ], "x-ms-correlation-request-id": [ - "a44cbb82-ede2-438c-bbad-6a3af2f1d243" + "1b3fb5a6-66b0-4d91-bb7c-752bb87e6949" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233757Z:a44cbb82-ede2-438c-bbad-6a3af2f1d243" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220131Z:1b3fb5a6-66b0-4d91-bb7c-752bb87e6949" ], "Date": [ - "Wed, 21 Feb 2018 23:37:56 GMT" + "Fri, 08 Nov 2019 22:01:31 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6cf46bc-cc3c-485a-9d96-273a9d98cccb" + "79218b7a-3c8d-4b49-baa7-f4bfd460ede9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "caab8c92-e3ae-4b70-9fe0-769fa3602813" + "f1209228-b274-43ed-b3cf-81e03702f23e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11995" ], "x-ms-correlation-request-id": [ - "09bfb7e7-20c8-4816-a114-1bf98db95580" + "f4eb04f9-ce6b-4cc1-8cb4-8bb07d73170f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233827Z:09bfb7e7-20c8-4816-a114-1bf98db95580" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220201Z:f4eb04f9-ce6b-4cc1-8cb4-8bb07d73170f" ], "Date": [ - "Wed, 21 Feb 2018 23:38:26 GMT" + "Fri, 08 Nov 2019 22:02:01 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdc54b5f-1214-433a-bd60-d5e7cf5fb675" + "c18a6fe6-54ec-48d7-a18d-caf611fbe8ef" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "511cd870-762f-45a2-8e77-854aa15ea206" + "d23ec7ae-c397-4aeb-8c1a-8c9d9b1b45f7" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11994" ], "x-ms-correlation-request-id": [ - "47fb37a5-e183-4d1e-9bf5-b604e4d9b09b" + "170384b4-f655-4eb9-be75-05d15d46fa39" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233857Z:47fb37a5-e183-4d1e-9bf5-b604e4d9b09b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220231Z:170384b4-f655-4eb9-be75-05d15d46fa39" ], "Date": [ - "Wed, 21 Feb 2018 23:38:56 GMT" + "Fri, 08 Nov 2019 22:02:31 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "659c31fa-6663-4a10-86d4-856332c331e6" + "b2c5df70-8427-4e3a-b9b6-954f0de8db19" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d33f3631-ac87-4283-ad7b-5d25eb82ad88" + "8bdf502e-5316-4a1b-98d7-25f25ed79f5b" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11993" ], "x-ms-correlation-request-id": [ - "91636800-2133-4d73-a09d-eb0a33c1e292" + "9d87c463-e02f-45e7-9563-80d887cf1f63" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233927Z:91636800-2133-4d73-a09d-eb0a33c1e292" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220302Z:9d87c463-e02f-45e7-9563-80d887cf1f63" ], "Date": [ - "Wed, 21 Feb 2018 23:39:27 GMT" + "Fri, 08 Nov 2019 22:03:01 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b5c4542-2769-4cb9-972c-b5e0d1b524b3" + "09cfdc54-e4a9-40d3-982e-e246826a484e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b0b0d7f9-fe90-4684-aa1c-af5f5971ad85" + "0a2df4a9-5e30-472f-aa0e-f51353a4ba1e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11992" ], "x-ms-correlation-request-id": [ - "85bd43ce-4012-49b9-a384-69da3d96008d" + "856f815b-a05b-4be1-86f1-ea1932524134" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233957Z:85bd43ce-4012-49b9-a384-69da3d96008d" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220332Z:856f815b-a05b-4be1-86f1-ea1932524134" ], "Date": [ - "Wed, 21 Feb 2018 23:39:57 GMT" + "Fri, 08 Nov 2019 22:03:31 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3a881a0-2c1b-49c7-a4ee-00f3f5fe8abf" + "d67735d8-9686-4797-a916-dc1c6386972d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "928f887f-a65b-4ae4-bc44-e681849a4fe6" + "7227ff1f-11c9-48b9-8717-4c6e0b4cc4ce" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11991" ], "x-ms-correlation-request-id": [ - "ef18fbdd-d0c1-4c4e-b1ae-ec07d14437d0" + "5a3f757a-1a44-4ed9-9d73-93deb7808d38" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234027Z:ef18fbdd-d0c1-4c4e-b1ae-ec07d14437d0" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220402Z:5a3f757a-1a44-4ed9-9d73-93deb7808d38" ], "Date": [ - "Wed, 21 Feb 2018 23:40:26 GMT" + "Fri, 08 Nov 2019 22:04:02 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71690431-4a75-452c-a51f-ed0d29b0fff7" + "17658fd1-0dc6-4071-a4d3-94c5e6ef18ea" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b249b25e-8250-457b-9d1b-bb6b5c9eccbc" + "70f9dd37-5299-4eab-8332-fffd0e7af671" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11990" ], "x-ms-correlation-request-id": [ - "f645bc14-59e4-4f7e-a9d5-f9c676d0d252" + "7b3c2a83-e1d1-401f-8a70-1fd2937f5b65" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234057Z:f645bc14-59e4-4f7e-a9d5-f9c676d0d252" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220432Z:7b3c2a83-e1d1-401f-8a70-1fd2937f5b65" ], "Date": [ - "Wed, 21 Feb 2018 23:40:57 GMT" + "Fri, 08 Nov 2019 22:04:31 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb0cda56-8702-4415-99b3-5a5e1de68cd9" + "0b98fdfd-088f-44b2-be69-b963e828699d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "727f30bd-5ca4-4ec2-825c-410f126f4036" + "a7beb7d5-984c-4873-8aa1-4162b760de75" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11989" ], "x-ms-correlation-request-id": [ - "b6a318cc-e123-42f4-8725-961584b1ac71" + "a7f57ed1-c67a-40e1-958a-8e39fe86a362" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234127Z:b6a318cc-e123-42f4-8725-961584b1ac71" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220502Z:a7f57ed1-c67a-40e1-958a-8e39fe86a362" ], "Date": [ - "Wed, 21 Feb 2018 23:41:27 GMT" + "Fri, 08 Nov 2019 22:05:02 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80040e7d-3543-4373-b9a4-f10d36613635" + "4f394d21-487f-4153-8278-b40a270a9111" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "24e5151f-da24-4426-a3c1-94a8b4ae488f" + "b9ae9467-a00d-4836-9bd4-f5707378fd8a" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "11988" ], "x-ms-correlation-request-id": [ - "b3fcfdc8-5453-49fe-b284-a6c792f2a07b" + "ce482005-bcb3-4e56-8fe6-65eb870a1a13" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234158Z:b3fcfdc8-5453-49fe-b284-a6c792f2a07b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220532Z:ce482005-bcb3-4e56-8fe6-65eb870a1a13" ], "Date": [ - "Wed, 21 Feb 2018 23:41:57 GMT" + "Fri, 08 Nov 2019 22:05:32 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ea5123e-9a83-4596-aba3-bae43e7f2b31" + "98732b4e-e4eb-4967-8eaf-99b73c73d069" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "890fab58-2137-4e82-8ad3-bd897521109f" + "7808ad9b-5ac0-45ae-afb7-6e8525e5d560" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "11987" ], "x-ms-correlation-request-id": [ - "ade524fd-ef8c-4a6a-8f1c-8ca3b348c65d" + "cea11c25-7dc5-47a7-9953-a1510c8ddfdd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234228Z:ade524fd-ef8c-4a6a-8f1c-8ca3b348c65d" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220602Z:cea11c25-7dc5-47a7-9953-a1510c8ddfdd" ], "Date": [ - "Wed, 21 Feb 2018 23:42:27 GMT" + "Fri, 08 Nov 2019 22:06:01 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4681921b-edee-4214-bc3d-533a5ee71ab6" + "eb923db6-111e-44c8-b364-359cf37eabaf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "03b1a90c-250e-47e5-9367-e6b7a37f1349" + "a9bee249-e6a1-4ace-934e-a90af4126176" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "11986" ], "x-ms-correlation-request-id": [ - "78119140-a3d5-4e6e-ad85-8d51093ba665" + "45ca67e2-5b34-45de-9eb0-ad8b0078176d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234258Z:78119140-a3d5-4e6e-ad85-8d51093ba665" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220632Z:45ca67e2-5b34-45de-9eb0-ad8b0078176d" ], "Date": [ - "Wed, 21 Feb 2018 23:42:57 GMT" + "Fri, 08 Nov 2019 22:06:32 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f70320b-50dd-494c-8073-e9ed6fd8bb25" + "7c37e611-e421-470f-b161-4dd1d6dc49eb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7f853fc8-ef51-4474-9d40-3f6c5de0a323" + "945c634c-7ccc-4288-983c-985fd8494ca8" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "11985" ], "x-ms-correlation-request-id": [ - "f8d6cd31-68fa-406a-86c4-e482e7b51c21" + "340efd21-b260-40c3-bdf0-f753f9ae646f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234328Z:f8d6cd31-68fa-406a-86c4-e482e7b51c21" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220702Z:340efd21-b260-40c3-bdf0-f753f9ae646f" ], "Date": [ - "Wed, 21 Feb 2018 23:43:27 GMT" + "Fri, 08 Nov 2019 22:07:02 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6766c2c9-8a18-4fa7-8b77-bda27709d33c" + "e4051368-000b-4fcf-a106-be9fb8bc6735" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "10752bbd-4d25-41e9-b98c-1f6de89029aa" + "ce5bb265-2803-4e23-8255-6d9b244888c0" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "11984" ], "x-ms-correlation-request-id": [ - "6baaf5e8-db26-452b-85f7-6b58d21925da" + "0c85e624-0307-4cb5-b8ad-a5302ca67de8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234358Z:6baaf5e8-db26-452b-85f7-6b58d21925da" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220732Z:0c85e624-0307-4cb5-b8ad-a5302ca67de8" ], "Date": [ - "Wed, 21 Feb 2018 23:43:57 GMT" + "Fri, 08 Nov 2019 22:07:32 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0623506-a305-42d3-8bff-8520ddd575d4" + "9c969719-92c4-4f5e-bb03-d4888bc7f07a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "32121b54-8eab-4b37-bb2a-67d21ae199b7" + "cbfde26f-6fc4-4d0b-b698-be85af23f6ab" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" ], "x-ms-correlation-request-id": [ - "b064a73b-6ab4-454c-9c59-a5c0e3cd76e2" + "0ebd353f-b4bf-4190-9999-892cf87e4986" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234428Z:b064a73b-6ab4-454c-9c59-a5c0e3cd76e2" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220802Z:0ebd353f-b4bf-4190-9999-892cf87e4986" ], "Date": [ - "Wed, 21 Feb 2018 23:44:27 GMT" + "Fri, 08 Nov 2019 22:08:02 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f69a2a9-221c-4ddc-aafb-8407638ed4f3" + "a455a51a-0a3b-4157-9fed-5876f6dc467a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6bad5eae-4377-4f1d-8b32-9c3755c95469" + "c4d8ad93-bde5-4d09-b075-bdd03ff17bdd" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "11982" ], "x-ms-correlation-request-id": [ - "b4165c85-5247-41c8-b746-e22716387aad" + "f79047c2-d5fc-4707-a1d8-ac6d5c086151" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234458Z:b4165c85-5247-41c8-b746-e22716387aad" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220833Z:f79047c2-d5fc-4707-a1d8-ac6d5c086151" ], "Date": [ - "Wed, 21 Feb 2018 23:44:58 GMT" + "Fri, 08 Nov 2019 22:08:32 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9302529-88bf-4437-82fa-ee1927d57428" + "4e67abc6-2b0e-4e67-94e3-055c8271ef57" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3f922135-28d9-431c-889b-921c4726829a" + "fea74d84-b7e4-4384-80b6-430d600c77cd" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "11981" ], "x-ms-correlation-request-id": [ - "7d15f37f-8e3b-4d25-bba4-1ecc38f6ae7b" + "913dcb0d-d897-4920-8802-186d98f55010" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234528Z:7d15f37f-8e3b-4d25-bba4-1ecc38f6ae7b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220903Z:913dcb0d-d897-4920-8802-186d98f55010" ], "Date": [ - "Wed, 21 Feb 2018 23:45:27 GMT" + "Fri, 08 Nov 2019 22:09:03 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a4d9849-93a2-4934-a2e4-e5058f5965d2" + "4095d417-134f-499c-8b9a-a7e8902ebea1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7ea07096-ca44-408d-a364-efe0b87f6fed" + "501e8380-ee41-4793-87a3-6111f70aab7a" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "11980" ], "x-ms-correlation-request-id": [ - "7d56bb7c-f45b-4283-8f3a-b457cae1cdcd" + "1544ec4a-5c58-4a99-bd7e-051516da7670" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234558Z:7d56bb7c-f45b-4283-8f3a-b457cae1cdcd" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T220933Z:1544ec4a-5c58-4a99-bd7e-051516da7670" ], "Date": [ - "Wed, 21 Feb 2018 23:45:57 GMT" + "Fri, 08 Nov 2019 22:09:32 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf5585b4-eff2-4608-90bd-ab612dfabdf3" + "fe86c1fd-733a-45c8-b4f4-4d9612d43730" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a1219b52-b73c-4fec-b683-ff48a7e39e3a" + "87186232-0e0f-40e5-92e4-aea67b8cde60" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "11979" ], "x-ms-correlation-request-id": [ - "f8cfff13-f23e-4da5-a7aa-c9f8c413ad3e" + "2584e54e-2f37-44de-87e4-17b571bcecf5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234628Z:f8cfff13-f23e-4da5-a7aa-c9f8c413ad3e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T221003Z:2584e54e-2f37-44de-87e4-17b571bcecf5" ], "Date": [ - "Wed, 21 Feb 2018 23:46:28 GMT" + "Fri, 08 Nov 2019 22:10:02 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40a19a88-a5fc-49ba-bc24-e47e846ede90" + "3f792a1f-7b96-4e31-ad4e-f97f512b68aa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "615" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "92b57b7b-73bc-43d0-85e9-1e0644bf319d" + "9ad30eac-fa26-4813-89f5-3e98ef5b42c9" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "11978" ], "x-ms-correlation-request-id": [ - "026101fc-d50d-4eb0-a10e-d00d77bdc6aa" + "1d91e2b6-9bc2-4f5d-8cf7-43bf7c4264ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234658Z:026101fc-d50d-4eb0-a10e-d00d77bdc6aa" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T221033Z:1d91e2b6-9bc2-4f5d-8cf7-43bf7c4264ce" ], "Date": [ - "Wed, 21 Feb 2018 23:46:58 GMT" + "Fri, 08 Nov 2019 22:10:32 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30edb9c3-dc76-415d-9df4-783369abc230" + "7127490c-5903-4ff6-af9b-c7aecffe7816" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "615" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "46021f47-4365-4eb5-bd63-9cb36a80848b" + "bdd1b8a7-4a03-4d50-bd94-9a38523933d6" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "11977" ], "x-ms-correlation-request-id": [ - "d5b00152-04b4-4a69-8e1d-36cb88660bf3" + "1930d12a-e545-480b-b6bd-9d20d92fc995" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234659Z:d5b00152-04b4-4a69-8e1d-36cb88660bf3" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T221103Z:1930d12a-e545-480b-b6bd-9d20d92fc995" ], "Date": [ - "Wed, 21 Feb 2018 23:46:59 GMT" + "Fri, 08 Nov 2019 22:11:03 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0a09afc-25b2-42e6-b454-4a39ed031fe7" + "fe383fed-e933-49af-8a9b-c2482241d797" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "72e7668d-80bb-44c0-b4dc-dce2c25dda6f" + "c24892ff-98e9-4d74-a10e-5e781f620a8d" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "11976" ], "x-ms-correlation-request-id": [ - "deab7605-b765-43a2-89af-50a4a6215833" + "04f33098-3a97-4600-a6f5-f32fc4594a66" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234702Z:deab7605-b765-43a2-89af-50a4a6215833" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T221133Z:04f33098-3a97-4600-a6f5-f32fc4594a66" ], "Date": [ - "Wed, 21 Feb 2018 23:47:02 GMT" + "Fri, 08 Nov 2019 22:11:33 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92ebc001-bb70-4ce9-ba21-2e5e56cedafe" + "36c6b7e2-235e-4e31-b43b-2fe7870cd2c9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2351" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "x-ms-request-id": [ - "783543ff-df1a-4255-bfdb-3c5517b2d277" - ], - "x-ms-correlation-request-id": [ - "783543ff-df1a-4255-bfdb-3c5517b2d277" + "c2963313-e61b-4f87-884b-329dbe95fe0f" ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T233554Z:783543ff-df1a-4255-bfdb-3c5517b2d277" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "b911de44-2507-4a96-908e-bb63932fbe4f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221203Z:b911de44-2507-4a96-908e-bb63932fbe4f" ], "Date": [ - "Wed, 21 Feb 2018 23:35:53 GMT" + "Fri, 08 Nov 2019 22:12:03 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c2f5f2a-b40e-478b-bd5e-f8cbc2641f71" + "ed2c5fb5-c8b8-4edc-a5c3-1f9a2f3f3c52" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2351" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "x-ms-request-id": [ - "c9cda5e7-5cb3-4961-aecb-272593005733" + "f6d3bb6e-6938-46bf-ae2d-7d39698b76da" ], - "x-ms-correlation-request-id": [ - "c9cda5e7-5cb3-4961-aecb-272593005733" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T234700Z:c9cda5e7-5cb3-4961-aecb-272593005733" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "Date": [ - "Wed, 21 Feb 2018 23:47:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4778849d-a0d9-44cc-b689-07047782030a" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], - "accept-language": [ - "en-US" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "8e117a5b-8dce-48e6-99ab-3bee53a995b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221233Z:8e117a5b-8dce-48e6-99ab-3bee53a995b8" + ], + "Date": [ + "Fri, 08 Nov 2019 22:12:33 GMT" ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", - "ResponseHeaders": { "Content-Length": [ - "2351" + "614" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "0a7d6fcd-fed4-4e7e-89a7-59162dd00957" - ], - "x-ms-correlation-request-id": [ - "0a7d6fcd-fed4-4e7e-89a7-59162dd00957" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T234703Z:0a7d6fcd-fed4-4e7e-89a7-59162dd00957" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Feb 2018 23:47:02 GMT" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "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 },\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "144" - ], "x-ms-client-request-id": [ - "f88547f3-85e2-4ec5-b2ed-7237de3d79ef" + "02b60bb3-2ee8-4944-b3bc-aca15c51ba55" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"OgS3/85AasFYDSbj0KzKPKgLYQU6igDbZ4HN+y4sUMg=\",\r\n \"secondaryKey\": \"ZreHgfwwSlFgBS6o8GmDXNBHrmZFKgTu5/6jNeSKXhc=\"\r\n },\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "733" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "611c68f3-822e-41e8-a85f-981ef7bc6928" + "65ef5b7c-f51f-4211-b8bd-9bcdb2e8a065" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" ], "x-ms-correlation-request-id": [ - "8c9cebea-5a64-4e25-b405-8bf88d3c77d6" + "7e3b5463-29d0-4f5e-a6c4-643d52d4984d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233556Z:8c9cebea-5a64-4e25-b405-8bf88d3c77d6" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T221304Z:7e3b5463-29d0-4f5e-a6c4-643d52d4984d" ], "Date": [ - "Wed, 21 Feb 2018 23:35:56 GMT" + "Fri, 08 Nov 2019 22:13:03 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/redis/redisteam004?api-version=2017-10-01" + "Content-Length": [ + "614" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d40bc0e9-59d0-4ca8-8770-2d73cd668605" + "5ed3b0ca-59e8-4925-a4c1-c981165eeab3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"OgS3/85AasFYDSbj0KzKPKgLYQU6igDbZ4HN+y4sUMg=\",\r\n \"secondaryKey\": \"ZreHgfwwSlFgBS6o8GmDXNBHrmZFKgTu5/6jNeSKXhc=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d0cbecad-640f-4830-afc5-a01e6968da02" + "13650892-7bb0-408a-bf60-e3d5e1f4b909" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" ], "x-ms-correlation-request-id": [ - "68d7adb8-403a-4a5b-9bdf-b5d1a656ade6" + "ff4aba6a-d2cd-4183-8924-95b497363860" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T233556Z:68d7adb8-403a-4a5b-9bdf-b5d1a656ade6" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T221334Z:ff4aba6a-d2cd-4183-8924-95b497363860" ], "Date": [ - "Wed, 21 Feb 2018 23:35:56 GMT" + "Fri, 08 Nov 2019 22:13:34 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bc35f9a-4c42-44c9-adcd-919bccfa892d" + "39799f27-a87f-4f4c-a923-82c7ec2e4925" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"OgS3/85AasFYDSbj0KzKPKgLYQU6igDbZ4HN+y4sUMg=\",\r\n \"secondaryKey\": \"ZreHgfwwSlFgBS6o8GmDXNBHrmZFKgTu5/6jNeSKXhc=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fc26cc61-b956-4a78-a11d-8a353cfe00c9" + "cd67a607-24ed-48db-8787-05a4f9b86ea7" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" ], "x-ms-correlation-request-id": [ - "83bcf551-6d56-4705-a86f-edf8716b14d0" + "440e36f0-068e-42fe-bf31-dfa782519053" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234702Z:83bcf551-6d56-4705-a86f-edf8716b14d0" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T221404Z:440e36f0-068e-42fe-bf31-dfa782519053" ], "Date": [ - "Wed, 21 Feb 2018 23:47:01 GMT" + "Fri, 08 Nov 2019 22:14:04 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab673bb9-6c52-40e5-81c6-629e5b5750b4" + "aa5c19b1-5891-485d-9c5e-bae2ad7f4fe4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"OgS3/85AasFYDSbj0KzKPKgLYQU6igDbZ4HN+y4sUMg=\",\r\n \"secondaryKey\": \"ZreHgfwwSlFgBS6o8GmDXNBHrmZFKgTu5/6jNeSKXhc=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c663630e-d047-48cc-b6dc-d8f1f7e701af" + "9521e759-5c91-4e53-877c-a245413a0b70" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" ], "x-ms-correlation-request-id": [ - "4cb1446f-9722-481b-ab91-ea23523f6796" + "c25c0789-9639-4b86-88ed-ea439ebf4f62" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234704Z:4cb1446f-9722-481b-ab91-ea23523f6796" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T221434Z:c25c0789-9639-4b86-88ed-ea439ebf4f62" ], "Date": [ - "Wed, 21 Feb 2018 23:47:03 GMT" + "Fri, 08 Nov 2019 22:14:33 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/patchSchedules/default?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvcGF0Y2hTY2hlZHVsZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Weekend\",\r\n \"startHourUtc\": 2,\r\n \"maintenanceWindow\": \"PT6H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Thursday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT9H\"\r\n }\r\n ]\r\n }\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "296" - ], "x-ms-client-request-id": [ - "57f2bd76-1b45-4a87-ac32-9409bbe538ff" + "2feee836-a4f2-44b7-b01b-68b0365fbd1a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/patchSchedules/default\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004/default\",\r\n \"type\": \"Microsoft.Cache/Redis/PatchSchedules\",\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Saturday\",\r\n \"startHourUtc\": 2,\r\n \"maintenanceWindow\": \"PT6H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Sunday\",\r\n \"startHourUtc\": 2,\r\n \"maintenanceWindow\": \"PT6H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Thursday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT9H\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "498" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "04f48a7a-c2b0-43b8-8b83-c1e8386ad0cb" + "c4c8b0c1-8fc1-44ab-b4c9-e515c9776531" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" ], "x-ms-correlation-request-id": [ - "cac472ab-c67a-4d5b-b685-daa367baff0c" + "d0d8be0e-0da1-4039-af86-7873544eba7e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234659Z:cac472ab-c67a-4d5b-b685-daa367baff0c" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T221504Z:d0d8be0e-0da1-4039-af86-7873544eba7e" ], "Date": [ - "Wed, 21 Feb 2018 23:46:59 GMT" + "Fri, 08 Nov 2019 22:15:04 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/patchSchedules/default?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvcGF0Y2hTY2hlZHVsZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bf8b529-f880-48b8-97e0-14a4ef4e80c9" + "9a0082c2-6825-43dc-87c0-1d3d5af7b339" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/patchSchedules/default\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004/default\",\r\n \"type\": \"Microsoft.Cache/Redis/PatchSchedules\",\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Saturday\",\r\n \"startHourUtc\": 2,\r\n \"maintenanceWindow\": \"PT6H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Sunday\",\r\n \"startHourUtc\": 2,\r\n \"maintenanceWindow\": \"PT6H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Thursday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT9H\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "498" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a698561b-285e-4c68-98df-7ac5bca224b3" + "17d4eb4a-f168-4c0d-94c4-fde343e4f078" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "11968" ], "x-ms-correlation-request-id": [ - "3f3a9622-1560-4179-905f-3ba257da2b2f" + "5a9e01c8-1ab5-4543-8818-3efe7bcaf587" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234659Z:3f3a9622-1560-4179-905f-3ba257da2b2f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T221534Z:5a9e01c8-1ab5-4543-8818-3efe7bcaf587" ], "Date": [ - "Wed, 21 Feb 2018 23:46:59 GMT" + "Fri, 08 Nov 2019 22:15:34 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/patchSchedules/default?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvcGF0Y2hTY2hlZHVsZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90c1ee79-0fb9-4c04-a950-ebaae37ab842" + "f6f7f21f-ae81-4542-938f-ea9a760500b5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"There are no patch schedules found for redis cache 'redisteam004'.\\r\\nRequestID=99a68bd9-be00-4ccb-854a-5df31a72d2c6\",\r\n \"target\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "180" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "99a68bd9-be00-4ccb-854a-5df31a72d2c6" + "e37ae038-0fe7-4edd-a5eb-ba512ec6e96f" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" ], "x-ms-correlation-request-id": [ - "5f0caebf-02f2-4048-b620-bf2ba71a8a0c" + "a96b3fb7-1490-478c-9820-793dd137c27f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234659Z:5f0caebf-02f2-4048-b620-bf2ba71a8a0c" + "WESTUS:20191108T221605Z:a96b3fb7-1490-478c-9820-793dd137c27f" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:04 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0177240-2eff-48e7-9400-8cb818fb5b34" ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6725b2ba-fe07-4856-8dbe-653f45af0f0f" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "6b67f5e6-b56c-4dbd-bca2-741d553c051d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221635Z:6b67f5e6-b56c-4dbd-bca2-741d553c051d" + ], "Date": [ - "Wed, 21 Feb 2018 23:46:59 GMT" + "Fri, 08 Nov 2019 22:16:34 GMT" + ], + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cad6ba04-e080-4da4-aca8-1665ff174f9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dad6c6db-a72b-41b4-812c-c5c347ee2063" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "01221db0-3819-40d0-8ef5-61fd2bd5f60a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221635Z:01221db0-3819-40d0-8ef5-61fd2bd5f60a" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:35 GMT" + ], + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/patchSchedules/default?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvcGF0Y2hTY2hlZHVsZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d457e4a-d402-40d3-aff1-66e0e53979f1" + "1065b799-e763-443a-ae10-e50a8b8cf392" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "47880e8f-71be-4776-99b7-472de94f847e" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "72c99947-61a7-4300-855f-dd229988496d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221638Z:72c99947-61a7-4300-855f-dd229988496d" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:38 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f7889c1-4ae2-488c-890e-e10ba3c7d182" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "97bfc054-f337-4020-8cde-5096cdeca536" + ], + "x-ms-correlation-request-id": [ + "97bfc054-f337-4020-8cde-5096cdeca536" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T220000Z:97bfc054-f337-4020-8cde-5096cdeca536" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 22:00:00 GMT" + ], + "Content-Length": [ + "3202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8332037-990f-4cd1-997a-855d3b1dc5bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "bab26503-bf59-4e21-8af3-cd3a85e29c1e" + ], + "x-ms-correlation-request-id": [ + "bab26503-bf59-4e21-8af3-cd3a85e29c1e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221637Z:bab26503-bf59-4e21-8af3-cd3a85e29c1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:37 GMT" + ], + "Content-Length": [ + "3202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21d61988-a5ed-4b97-b955-81eb466e4720" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "7448060e-59de-491e-a449-9ebbc56d02f7" + ], + "x-ms-correlation-request-id": [ + "7448060e-59de-491e-a449-9ebbc56d02f7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221639Z:7448060e-59de-491e-a449-9ebbc56d02f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:38 GMT" + ], + "Content-Length": [ + "3202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "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 },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6db3eab-3b8d-4510-8c2c-d623496cdd28" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "144" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/redis/redisteam004?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "2ecbb4cf-cc44-4bef-867e-0a328c32d03f" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8a747105-3835-4857-85ab-94e2340d1ab5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T220001Z:8a747105-3835-4857-85ab-94e2340d1ab5" + ], + "Date": [ + "Fri, 08 Nov 2019 22:00:00 GMT" + ], + "Content-Length": [ + "733" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"NzP76iinFnPBVPcRsAGasTfddMXn5m2TGQcGVz7XC0U=\",\r\n \"secondaryKey\": \"mPZ78HWb2oCIRaco2A5z9HqcsahKfJ2Gzy5fdabWfvI=\"\r\n },\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b72a402f-d519-4d40-9a05-99686b30d56d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1110eaf2-2c2f-408b-a731-8efe73f73bc7" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f60987b2-17d5-494d-9a0a-147644f28480" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T220001Z:f60987b2-17d5-494d-9a0a-147644f28480" + ], + "Date": [ + "Fri, 08 Nov 2019 22:00:01 GMT" + ], + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"NzP76iinFnPBVPcRsAGasTfddMXn5m2TGQcGVz7XC0U=\",\r\n \"secondaryKey\": \"mPZ78HWb2oCIRaco2A5z9HqcsahKfJ2Gzy5fdabWfvI=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e8583ee-76fb-4448-832d-af5fcd3e6df3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c03ac6a2-d77d-4a9e-8265-1168cc613375" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "98662df2-175c-43fc-a7e8-46c26dc10828" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221638Z:98662df2-175c-43fc-a7e8-46c26dc10828" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:38 GMT" + ], + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"NzP76iinFnPBVPcRsAGasTfddMXn5m2TGQcGVz7XC0U=\",\r\n \"secondaryKey\": \"mPZ78HWb2oCIRaco2A5z9HqcsahKfJ2Gzy5fdabWfvI=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0820d8a1-ef46-424d-b937-382e9c8d0ab3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "02c8bd22-d880-41c8-a5b3-cb9766084b24" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "9ad464eb-4189-432e-aa59-50cd1832cca5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221640Z:9ad464eb-4189-432e-aa59-50cd1832cca5" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:40 GMT" + ], + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"NzP76iinFnPBVPcRsAGasTfddMXn5m2TGQcGVz7XC0U=\",\r\n \"secondaryKey\": \"mPZ78HWb2oCIRaco2A5z9HqcsahKfJ2Gzy5fdabWfvI=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/patchSchedules/default?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvcGF0Y2hTY2hlZHVsZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Weekend\",\r\n \"startHourUtc\": 2,\r\n \"maintenanceWindow\": \"PT6H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Thursday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT9H\"\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f0eb087-233a-4883-89be-c43c09d01693" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "296" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5b51a313-a094-4e23-9af5-a12ad2ad3c89" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "fd6e4d0b-2be8-4ac7-baf7-05fde8706bbf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221635Z:fd6e4d0b-2be8-4ac7-baf7-05fde8706bbf" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:35 GMT" + ], + "Content-Length": [ + "498" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/patchSchedules/default\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004/default\",\r\n \"type\": \"Microsoft.Cache/Redis/PatchSchedules\",\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Saturday\",\r\n \"startHourUtc\": 2,\r\n \"maintenanceWindow\": \"PT6H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Sunday\",\r\n \"startHourUtc\": 2,\r\n \"maintenanceWindow\": \"PT6H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Thursday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT9H\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/patchSchedules/default?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvcGF0Y2hTY2hlZHVsZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93f0069a-110d-449a-8771-e04e4a9f921d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3aac96c0-356a-44dd-a23f-ba7f70f3e977" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "bc490b25-c123-41d2-bce8-bf6560cfb90a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221635Z:bc490b25-c123-41d2-bce8-bf6560cfb90a" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:35 GMT" + ], + "Content-Length": [ + "498" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/patchSchedules/default\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004/default\",\r\n \"type\": \"Microsoft.Cache/Redis/PatchSchedules\",\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Saturday\",\r\n \"startHourUtc\": 2,\r\n \"maintenanceWindow\": \"PT6H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Sunday\",\r\n \"startHourUtc\": 2,\r\n \"maintenanceWindow\": \"PT6H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Thursday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT9H\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/patchSchedules/default?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvcGF0Y2hTY2hlZHVsZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48cfaaf7-ba6a-4260-a0c1-4e174a0197d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a52bcd1c-3c14-4fe4-921b-54c868074ed3" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "3153e056-7575-4e71-968b-fea4949e9c2b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221635Z:3153e056-7575-4e71-968b-fea4949e9c2b" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:35 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"There are no patch schedules found for redis cache 'redisteam004'.\\r\\nRequestID=a52bcd1c-3c14-4fe4-921b-54c868074ed3\",\r\n \"target\": null\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004/patchSchedules/default?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQvcGF0Y2hTY2hlZHVsZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6935ce2f-d3af-4b20-93c2-b698c2b7a772" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "35b122da-f961-4672-8ace-83ea86546c33" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "60092e1a-60ca-4f17-a3d2-309fa60e196f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221635Z:60092e1a-60ca-4f17-a3d2-309fa60e196f" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"enableNonSslPort\": true,\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17d89eb-406d-48e8-8549-80e5ef249be5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "149" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d5809480-ede7-4b70-9764-04a2ed2c6611" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "b54c0450-1043-4e94-9a38-d8585e17e91a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221638Z:b54c0450-1043-4e94-9a38-d8585e17e91a" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:38 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf9f401a-a69b-4b86-835a-e38aa7b18cde" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "196" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "93213850-d4f2-4f6e-a565-9f286e42f3a6" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "9baabb87-f4a9-4753-b34e-d24ac205d1b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221640Z:9baabb87-f4a9-4753-b34e-d24ac205d1b1" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:40 GMT" + ], + "Content-Length": [ + "647" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c3ca95b-244f-4da4-a621-360356deda81" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "ae0e3d67-8e14-43b8-9ef8-def49a1d3285" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "8f6bea6a-978e-4505-b9b0-676a9e4a4c58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221640Z:8f6bea6a-978e-4505-b9b0-676a9e4a4c58" + ], + "Date": [ + "Fri, 08 Nov 2019 22:16:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2FlMGUzZDY3LThlMTQtNDNiOC05ZWY4LWRlZjQ5YTFkMzI4NT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "f3f3efa8-c2f7-46df-bc40-901b643dde7e" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "910eaf88-60c4-4e6f-b447-0e9070d4c644" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221710Z:910eaf88-60c4-4e6f-b447-0e9070d4c644" + ], + "Date": [ + "Fri, 08 Nov 2019 22:17:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2FlMGUzZDY3LThlMTQtNDNiOC05ZWY4LWRlZjQ5YTFkMzI4NT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "38202c4e-85f7-4921-a2b0-44e9bb1607e6" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "bde83c16-30c9-4719-b7e2-14ff547c5b08" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221740Z:bde83c16-30c9-4719-b7e2-14ff547c5b08" + ], + "Date": [ + "Fri, 08 Nov 2019 22:17:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2FlMGUzZDY3LThlMTQtNDNiOC05ZWY4LWRlZjQ5YTFkMzI4NT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "bf5f2719-febc-434a-bf5e-3b3ea9b390b8" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "5518b52a-b031-413a-a8f0-67f1d7fc331b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221810Z:5518b52a-b031-413a-a8f0-67f1d7fc331b" + ], + "Date": [ + "Fri, 08 Nov 2019 22:18:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2FlMGUzZDY3LThlMTQtNDNiOC05ZWY4LWRlZjQ5YTFkMzI4NT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "22475c90-b800-4d78-8070-923c8f76ac7f" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "3e817cd5-15fd-46bd-ba75-29601f216d07" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221841Z:3e817cd5-15fd-46bd-ba75-29601f216d07" + ], + "Date": [ + "Fri, 08 Nov 2019 22:18:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2FlMGUzZDY3LThlMTQtNDNiOC05ZWY4LWRlZjQ5YTFkMzI4NT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "d9b760cd-940c-4400-a7fb-67f75d046edb" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "80b845ad-1fed-47bc-8dc8-b75b55950406" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T221911Z:80b845ad-1fed-47bc-8dc8-b75b55950406" + ], + "Date": [ + "Fri, 08 Nov 2019 22:19:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2FlMGUzZDY3LThlMTQtNDNiOC05ZWY4LWRlZjQ5YTFkMzI4NT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01" + ], "x-ms-request-id": [ - "4d0102ea-c390-4428-956a-d0afbbf748c4" + "a801081f-bcb4-4d2a-a127-cdd1d549dd49" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" ], "x-ms-correlation-request-id": [ - "0d3b38e4-1311-44cd-9fdb-bbe773f77eab" + "602b60a6-9500-4129-9d06-9917349e4228" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234659Z:0d3b38e4-1311-44cd-9fdb-bbe773f77eab" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T221941Z:602b60a6-9500-4129-9d06-9917349e4228" ], "Date": [ - "Wed, 21 Feb 2018 23:46:59 GMT" + "Fri, 08 Nov 2019 22:19:40 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"enableNonSslPort\": true,\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2FlMGUzZDY3LThlMTQtNDNiOC05ZWY4LWRlZjQ5YTFkMzI4NT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "149" - ], - "x-ms-client-request-id": [ - "33a9f3a1-980e-45dd-9385-ab71e2b90928" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "614" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "88f17c0f-3226-4f9a-a3d2-21a269c87c5f" + "169a7803-d639-4951-9477-e17e0e90a1e5" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" ], "x-ms-correlation-request-id": [ - "46600cc4-77f6-41ea-bdb5-c86dedcdb651" + "c53560a5-c881-4b68-b6dc-af684f7da20d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234702Z:46600cc4-77f6-41ea-bdb5-c86dedcdb651" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222011Z:c53560a5-c881-4b68-b6dc-af684f7da20d" ], "Date": [ - "Wed, 21 Feb 2018 23:47:01 GMT" + "Fri, 08 Nov 2019 22:20:11 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/ae0e3d67-8e14-43b8-9ef8-def49a1d3285?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2FlMGUzZDY3LThlMTQtNDNiOC05ZWY4LWRlZjQ5YTFkMzI4NT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "196" - ], - "x-ms-client-request-id": [ - "df76c78e-783c-4b5d-bdf4-182d8d6e6e66" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam004\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam004.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "647" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c89d6e1d-eeae-4562-b3e1-44f66b955a72" + "53dac1fd-a456-4096-9f8a-0bd16b50c98f" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" ], "x-ms-correlation-request-id": [ - "7ad67d72-da79-429f-8237-5e5b0421603a" + "89aa89da-29e4-4a8f-bf02-5e5da5531a30" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234704Z:7ad67d72-da79-429f-8237-5e5b0421603a" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T222011Z:89aa89da-29e4-4a8f-bf02-5e5da5531a30" ], "Date": [ - "Wed, 21 Feb 2018 23:47:03 GMT" + "Fri, 08 Nov 2019 22:20:11 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-4/providers/Microsoft.Cache/Redis/redisteam004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-4?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d4536b2-7fc5-443e-9983-5e3d0c9d226e" + "76597a4c-d17d-426b-b9af-cda78c87d75c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "604599d0-c3c2-4854-81eb-172f879dd414" - ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "15" ], - "x-content-type-options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-request-id": [ + "31b9e988-05d0-4e62-a71e-5f8f9d8fac98" ], "x-ms-correlation-request-id": [ - "82170314-5b16-4633-9dca-212f79a1eb4c" + "31b9e988-05d0-4e62-a71e-5f8f9d8fac98" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234704Z:82170314-5b16-4633-9dca-212f79a1eb4c" + "WESTUS:20191108T222011Z:31b9e988-05d0-4e62-a71e-5f8f9d8fac98" ], - "Cache-Control": [ - "no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:47:04 GMT" + "Fri, 08 Nov 2019 22:20:11 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-4?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-request-id": [ - "9b4a1bdf-d989-40a1-b794-4ed636529ce0" + "1a5ee689-62cf-4c23-864d-ccd0ca8619d2" ], "x-ms-correlation-request-id": [ - "9b4a1bdf-d989-40a1-b794-4ed636529ce0" + "1a5ee689-62cf-4c23-864d-ccd0ca8619d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234706Z:9b4a1bdf-d989-40a1-b794-4ed636529ce0" + "WESTUS:20191108T222026Z:1a5ee689-62cf-4c23-864d-ccd0ca8619d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:47:06 GMT" + "Fri, 08 Nov 2019 22:20:26 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11998" ], "x-ms-request-id": [ - "598c8ab2-ec33-446b-bbb6-5a1116c9aa2c" + "0d8fda83-e905-473b-825a-8d1d61402940" ], "x-ms-correlation-request-id": [ - "598c8ab2-ec33-446b-bbb6-5a1116c9aa2c" + "0d8fda83-e905-473b-825a-8d1d61402940" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234707Z:598c8ab2-ec33-446b-bbb6-5a1116c9aa2c" + "WESTUS:20191108T222041Z:0d8fda83-e905-473b-825a-8d1d61402940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:47:06 GMT" + "Fri, 08 Nov 2019 22:20:41 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11997" ], "x-ms-request-id": [ - "66d24df8-1fba-43d8-8897-db742cf07755" + "9c620fac-4925-4193-8469-9410d9713019" ], "x-ms-correlation-request-id": [ - "66d24df8-1fba-43d8-8897-db742cf07755" + "9c620fac-4925-4193-8469-9410d9713019" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234722Z:66d24df8-1fba-43d8-8897-db742cf07755" + "WESTUS:20191108T222056Z:9c620fac-4925-4193-8469-9410d9713019" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:47:21 GMT" + "Fri, 08 Nov 2019 22:20:56 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11996" ], "x-ms-request-id": [ - "399139bd-eb38-4cbc-ac95-ed38d6f91ba9" + "44b9e61b-bdfa-4f09-9893-165c4e2480b3" ], "x-ms-correlation-request-id": [ - "399139bd-eb38-4cbc-ac95-ed38d6f91ba9" + "44b9e61b-bdfa-4f09-9893-165c4e2480b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234737Z:399139bd-eb38-4cbc-ac95-ed38d6f91ba9" + "WESTUS:20191108T222111Z:44b9e61b-bdfa-4f09-9893-165c4e2480b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:47:36 GMT" + "Fri, 08 Nov 2019 22:21:11 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 202 + "ResponseBody": "", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRFF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11995" ], "x-ms-request-id": [ - "0b5f998e-7308-4326-aa67-a34e45fa8872" + "abef4410-28d6-429d-b129-788e8782f0b8" ], "x-ms-correlation-request-id": [ - "0b5f998e-7308-4326-aa67-a34e45fa8872" + "abef4410-28d6-429d-b129-788e8782f0b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234752Z:0b5f998e-7308-4326-aa67-a34e45fa8872" + "WESTUS:20191108T222112Z:abef4410-28d6-429d-b129-788e8782f0b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:47:51 GMT" + "Fri, 08 Nov 2019 22:21:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + "SubscriptionId": "bc130894-c5b3-4adc-a077-0b51f3714abe" } } \ No newline at end of file diff --git a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json index e0eb1cf4e58b..428c28a974bd 100644 --- a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json +++ b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json @@ -1,25 +1,51 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-2?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-client-request-id": [ + "658e81ee-5a98-4796-9564-c0439234d6ea" ], - "Content-Length": [ - "29" + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2\",\r\n \"name\": \"PowerShellTest-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "185" + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a983f2ea-6b51-429f-a99f-3445da7ca9a5" + ], + "x-ms-correlation-request-id": [ + "a983f2ea-6b51-429f-a99f-3445da7ca9a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T212210Z:a983f2ea-6b51-429f-a99f-3445da7ca9a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:22:10 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -27,6 +53,42 @@ "Expires": [ "-1" ], + "Content-Length": [ + "3202" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1593f307-1715-48bf-8e7a-e8157a2b983c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Pragma": [ "no-cache" ], @@ -34,55 +96,58 @@ "1199" ], "x-ms-request-id": [ - "fa001104-f91d-47c7-9783-244defbea395" + "e15faec2-aa7b-4e54-9de8-2aff8a3a24a3" ], "x-ms-correlation-request-id": [ - "fa001104-f91d-47c7-9783-244defbea395" + "e15faec2-aa7b-4e54-9de8-2aff8a3a24a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224741Z:fa001104-f91d-47c7-9783-244defbea395" + "WESTUS:20191108T212211Z:e15faec2-aa7b-4e54-9de8-2aff8a3a24a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:47:41 GMT" + "Fri, 08 Nov 2019 21:22:11 GMT" + ], + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2\",\r\n \"name\": \"PowerShellTest-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e045b41-0aa8-4f19-beee-0434846c88e8" + "4ee3c9af-cbc9-43c4-a024-5a3b2cb3fc62" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam002' under resource group 'PowerShellTest-2' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "154" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -91,2996 +156,3769 @@ "gateway" ], "x-ms-request-id": [ - "1bedc8ca-1b34-4de9-a2fe-01bd5ce5d2f5" + "317a5d06-451f-4b83-8284-47ef8a7b3177" ], "x-ms-correlation-request-id": [ - "1bedc8ca-1b34-4de9-a2fe-01bd5ce5d2f5" + "317a5d06-451f-4b83-8284-47ef8a7b3177" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224742Z:1bedc8ca-1b34-4de9-a2fe-01bd5ce5d2f5" + "WESTUS:20191108T212211Z:317a5d06-451f-4b83-8284-47ef8a7b3177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:47:41 GMT" + "Fri, 08 Nov 2019 21:22:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "154" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam002' under resource group 'PowerShellTest-2' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33703878-aec9-493f-9b93-849068d05ee5" + "b35cfe52-c390-4bdd-9d02-82651788ff3c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0f655d25-f7e6-496d-9973-6263415a7e97" + "4f57a52c-531b-42ce-8025-7882590e8c04" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-correlation-request-id": [ - "bfb6886b-6d65-4455-990e-a74e37d63841" + "585bcf74-d624-4899-ae80-32aa2b58f434" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224816Z:bfb6886b-6d65-4455-990e-a74e37d63841" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212244Z:585bcf74-d624-4899-ae80-32aa2b58f434" ], "Date": [ - "Wed, 21 Feb 2018 22:48:15 GMT" + "Fri, 08 Nov 2019 21:22:43 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "961baf76-da57-4f92-a797-538aa91681a6" + "c6134bfd-22de-4053-b552-974c918c9316" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b4512744-dd3e-4a4c-a338-75383586a476" + "94444de6-a9fd-460d-99e5-d49c0250018f" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11997" ], "x-ms-correlation-request-id": [ - "63c5b90e-ff13-48cc-bd9a-7f1752ed4717" + "f8394f58-2b9b-4f82-8688-eefbe0ad1a92" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224846Z:63c5b90e-ff13-48cc-bd9a-7f1752ed4717" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212314Z:f8394f58-2b9b-4f82-8688-eefbe0ad1a92" ], "Date": [ - "Wed, 21 Feb 2018 22:48:46 GMT" + "Fri, 08 Nov 2019 21:23:13 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bc92a1-0c13-4503-a04a-e92e880520ec" + "f8463bfe-e18f-4607-a31c-3bab261b7109" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "afa84211-ff7a-4ec3-bf43-c454a0697a12" + "7ac57450-b8c0-4230-b03e-108fafcec03e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11996" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "3f11998c-42fc-45ab-be1e-58f4766ba777" + "30721c84-8071-4dcc-bb72-88de637f4338" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224916Z:3f11998c-42fc-45ab-be1e-58f4766ba777" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212344Z:30721c84-8071-4dcc-bb72-88de637f4338" ], "Date": [ - "Wed, 21 Feb 2018 22:49:15 GMT" + "Fri, 08 Nov 2019 21:23:43 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37e17885-126a-4c99-be4a-b1a9007de02b" + "205c58f4-d436-4773-ba7b-19c42210f468" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "00773595-4251-4fcf-8fb9-577617e56afa" + "bcc83315-c973-4d82-ac51-de04fc5ab097" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11995" ], "x-ms-correlation-request-id": [ - "9bf434e5-1b21-412a-96b8-64460ade42b9" + "800ae42f-7201-49e8-9fa2-f62208c3a7dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224946Z:9bf434e5-1b21-412a-96b8-64460ade42b9" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212414Z:800ae42f-7201-49e8-9fa2-f62208c3a7dd" ], "Date": [ - "Wed, 21 Feb 2018 22:49:46 GMT" + "Fri, 08 Nov 2019 21:24:14 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1703142c-ad4a-4495-a0bd-6fb2e3cca084" + "4709a4f1-8d3a-44d1-a56f-5b4d82ae4dd9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "aa2370c0-fbf2-4fc3-bbb7-fd2acd1fff2a" + "4874f05c-2210-4a08-bb6b-3b993c5b8f0d" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11994" ], "x-ms-correlation-request-id": [ - "70e28591-b8f8-41cd-b3d3-348ead6f2171" + "7ea26b77-cf3a-4df4-9a3e-f60a68e1df17" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225016Z:70e28591-b8f8-41cd-b3d3-348ead6f2171" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212444Z:7ea26b77-cf3a-4df4-9a3e-f60a68e1df17" ], "Date": [ - "Wed, 21 Feb 2018 22:50:16 GMT" + "Fri, 08 Nov 2019 21:24:44 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47ecf103-82f6-47b9-8a84-88d5cf5bfc08" + "5d4e7ddb-a972-4db2-9f5b-5b0f8eaea4ea" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "67ba6576-19e5-404a-8aba-c19d225e8196" + "a8f17564-2e09-44be-bbf7-c6d8af606e4f" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11993" ], "x-ms-correlation-request-id": [ - "0cc360e1-01de-48bf-8965-8b8e9a2076cd" + "620a355e-907d-4be2-b916-0bd8d92089b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225046Z:0cc360e1-01de-48bf-8965-8b8e9a2076cd" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212514Z:620a355e-907d-4be2-b916-0bd8d92089b3" ], "Date": [ - "Wed, 21 Feb 2018 22:50:46 GMT" + "Fri, 08 Nov 2019 21:25:13 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6efbce4-c560-4761-baa6-d7772ddc8daf" + "a560a1e7-c288-402c-ba6f-dbe63d077cdc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e53e7bf7-351a-4ee4-9f9d-f1061aaffcde" + "e39a54b3-f206-4b9a-b1bc-e55c7cb6863d" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11992" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "0e883fce-d24e-402f-8410-66e5fcde3336" + "325fefd9-f888-467f-8f5d-c1e5169b7a5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225116Z:0e883fce-d24e-402f-8410-66e5fcde3336" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212544Z:325fefd9-f888-467f-8f5d-c1e5169b7a5e" ], "Date": [ - "Wed, 21 Feb 2018 22:51:16 GMT" + "Fri, 08 Nov 2019 21:25:44 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfb5ad9a-64d7-43c3-92cd-a6f69376c776" + "ca80c96d-0e0d-434a-8996-e988ed56815b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4c14bb53-4e8d-46f4-a101-504e09f1927b" + "e2c4f0ae-2fa2-41ff-b004-f5d5a4d1bb8e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11991" ], "x-ms-correlation-request-id": [ - "da5bebb2-8c86-4898-b8d6-32324f757562" + "bab6164a-a62d-4599-9ed9-603a73cfc5e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225146Z:da5bebb2-8c86-4898-b8d6-32324f757562" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212614Z:bab6164a-a62d-4599-9ed9-603a73cfc5e9" ], "Date": [ - "Wed, 21 Feb 2018 22:51:46 GMT" + "Fri, 08 Nov 2019 21:26:14 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea81ae4c-49d1-4e8c-8480-eddd0cdfe5db" + "6447284f-bb01-4a4f-9ae3-b7938a9d0c25" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b875c0f9-655b-412f-9387-9ffde2987842" + "d4939d5d-c3bf-48ba-94e3-1107cefeae3f" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11990" ], "x-ms-correlation-request-id": [ - "ade77ce7-edbc-48a5-a45e-6947eb515ccd" + "c6e32df4-887d-4ece-a030-ac73dd60e4f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225216Z:ade77ce7-edbc-48a5-a45e-6947eb515ccd" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212645Z:c6e32df4-887d-4ece-a030-ac73dd60e4f0" ], "Date": [ - "Wed, 21 Feb 2018 22:52:16 GMT" + "Fri, 08 Nov 2019 21:26:44 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9587d779-cf14-4f61-b400-f3d536cd089f" + "712885f6-6e6c-4d51-ad25-2055a7ff0c71" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "54202ee5-3f33-4cee-a315-5fd178bfe514" + "15d197a1-4eae-425a-a851-260fa461f3d5" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11989" ], "x-ms-correlation-request-id": [ - "5ba0eb8a-1835-4d43-b403-e9e09c68c462" + "ccdc847e-8118-45aa-aab0-e534d8e18bcd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225246Z:5ba0eb8a-1835-4d43-b403-e9e09c68c462" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212715Z:ccdc847e-8118-45aa-aab0-e534d8e18bcd" ], "Date": [ - "Wed, 21 Feb 2018 22:52:46 GMT" + "Fri, 08 Nov 2019 21:27:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "224c25e8-f1fc-475f-8752-90d42bdc399d" + "1b565a0c-979c-4d66-85b0-0913081b453b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "55e41788-b014-43c2-9ac9-55640b370666" + "8968b687-698a-47ab-948c-969a93a85329" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "11988" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "59670924-6c43-4ff9-bee5-19621363897a" + "8ff9744b-8b25-4e6c-b6ba-dcc3420caef9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225317Z:59670924-6c43-4ff9-bee5-19621363897a" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212745Z:8ff9744b-8b25-4e6c-b6ba-dcc3420caef9" ], "Date": [ - "Wed, 21 Feb 2018 22:53:16 GMT" + "Fri, 08 Nov 2019 21:27:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed39f4cc-48a7-43d7-94b3-eaeb3a1e664b" + "aee2127b-68d5-47b4-b8cc-a7ea3f47829f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "34501451-2f83-40f6-bc96-fe2959e405d6" + "4b43efd5-8f2e-4285-a14f-8738e3400455" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "11987" ], "x-ms-correlation-request-id": [ - "cf9ea505-4223-41f7-ba51-d1ca50d7d7a1" + "b4e97578-520e-4d2b-aeae-3580ec04b8b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225347Z:cf9ea505-4223-41f7-ba51-d1ca50d7d7a1" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212815Z:b4e97578-520e-4d2b-aeae-3580ec04b8b4" ], "Date": [ - "Wed, 21 Feb 2018 22:53:46 GMT" + "Fri, 08 Nov 2019 21:28:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4ecf654-3623-498c-a666-f2c1dab90d03" + "6ba318d9-e5d2-42c7-b2a4-72f405763444" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1aea828f-5f8d-44f9-a229-2cf23072b6d9" + "bf46f048-5f87-45fc-83fc-7f616ac7188c" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "11986" ], "x-ms-correlation-request-id": [ - "b34ec304-5141-4276-8231-b764c9b40b43" + "fd9150a8-c911-480a-bf72-64ca1d7b04a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225417Z:b34ec304-5141-4276-8231-b764c9b40b43" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212845Z:fd9150a8-c911-480a-bf72-64ca1d7b04a7" ], "Date": [ - "Wed, 21 Feb 2018 22:54:17 GMT" + "Fri, 08 Nov 2019 21:28:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8276ca40-2924-4478-a148-ff5a2d28e5ef" + "790ae10f-ad77-4807-9171-350683920077" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a06f2b10-21cc-4aa9-bf0f-e2c11c8453e8" + "3a1d4f6c-48c1-4be1-b39d-421bb6dcb062" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "11985" ], "x-ms-correlation-request-id": [ - "119bef54-a179-4669-8c3e-b781a510df17" + "71414a30-3c31-4e8b-bb96-77d7a08e4a3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225447Z:119bef54-a179-4669-8c3e-b781a510df17" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212915Z:71414a30-3c31-4e8b-bb96-77d7a08e4a3a" ], "Date": [ - "Wed, 21 Feb 2018 22:54:46 GMT" + "Fri, 08 Nov 2019 21:29:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d69dae3c-e03e-417a-aee3-54d5403e0b76" + "db087230-e606-46c6-9a74-c2c91cc4b767" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "433fc82d-d331-4561-a5e8-ef3498aa9eed" + "7a8924f5-fcab-4272-828a-73ed73c82608" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "11984" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "dbb4b9e6-df0f-41e0-8359-1938a4e2e2b5" + "00265ba2-fb82-44f9-8a60-adac13c5268d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225517Z:dbb4b9e6-df0f-41e0-8359-1938a4e2e2b5" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T212946Z:00265ba2-fb82-44f9-8a60-adac13c5268d" ], "Date": [ - "Wed, 21 Feb 2018 22:55:16 GMT" + "Fri, 08 Nov 2019 21:29:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef396645-4457-4851-80ba-d9fe7abf0618" + "5398a1a0-9b23-4151-b2af-49636bb1aa7f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "70d8f8c7-769e-4122-b1a2-d368ebd35b88" + "b8d9c4d3-660b-41c2-8b4a-84c87432d1df" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "11983" ], "x-ms-correlation-request-id": [ - "c6caf5c2-1f26-4995-86a7-5c31f1b2fb68" + "62c66e80-405b-4344-9721-9dcf9c312df7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225547Z:c6caf5c2-1f26-4995-86a7-5c31f1b2fb68" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213016Z:62c66e80-405b-4344-9721-9dcf9c312df7" ], "Date": [ - "Wed, 21 Feb 2018 22:55:46 GMT" + "Fri, 08 Nov 2019 21:30:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3db71ef8-b77e-4cb9-a1a1-885631b74a2a" + "3e631479-e941-41aa-a5f2-39b94794394c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "084823d5-adf9-4d73-9f69-63d179ffe1f4" + "fc96650d-310b-462d-9a47-0b22219fc9b3" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "11982" ], "x-ms-correlation-request-id": [ - "2ae1d173-3109-4c46-8bb9-216836ee0274" + "d598a94c-b2c3-432e-9005-fe7e4b7b79ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225617Z:2ae1d173-3109-4c46-8bb9-216836ee0274" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213046Z:d598a94c-b2c3-432e-9005-fe7e4b7b79ba" ], "Date": [ - "Wed, 21 Feb 2018 22:56:17 GMT" + "Fri, 08 Nov 2019 21:30:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e2a1dba-13fc-4f12-946a-d6afd7174534" + "80656435-289f-4fe1-9002-5807e69ea3d9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "93cde4aa-af71-43a2-ac43-763ad960f1e6" + "76c5ff8d-b970-4942-976f-21649ed4053c" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "11981" ], "x-ms-correlation-request-id": [ - "0a2d25d6-5832-4a6a-8882-d00a80bf1faf" + "cfe9827f-cb81-40f5-8b49-4eff852e1d74" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225647Z:0a2d25d6-5832-4a6a-8882-d00a80bf1faf" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213116Z:cfe9827f-cb81-40f5-8b49-4eff852e1d74" ], "Date": [ - "Wed, 21 Feb 2018 22:56:47 GMT" + "Fri, 08 Nov 2019 21:31:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "825bd0bb-9b72-4e81-8d61-c26131c0844d" + "28ff922f-1954-4b64-95e6-cd79e1536264" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cb0771e8-4882-472c-98b5-08ffc7bab5e5" + "87a97a58-71ed-4f39-90b1-f83d16bc5e86" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "11980" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "9c5efa84-8250-4f4a-ab9c-38c2c6e04643" + "6c391f15-95ce-4a9d-aa41-e5174e5dcf1b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225717Z:9c5efa84-8250-4f4a-ab9c-38c2c6e04643" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213146Z:6c391f15-95ce-4a9d-aa41-e5174e5dcf1b" ], "Date": [ - "Wed, 21 Feb 2018 22:57:17 GMT" + "Fri, 08 Nov 2019 21:31:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce7188d5-788f-439b-8dbf-0eca1bb0ab73" + "04fc6e65-ccfd-4d16-8982-d1a98b085093" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9e0da016-879c-4c2d-bdfc-d32ea8a7f784" + "7e6a427b-4fab-41ff-abb6-6e54f6c49705" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "11979" ], "x-ms-correlation-request-id": [ - "c083bdf6-3cf9-4b59-a55a-e5520dfc1dc4" + "baeb6bc1-2ce2-48dc-88b8-6a752a8416a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225747Z:c083bdf6-3cf9-4b59-a55a-e5520dfc1dc4" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213216Z:baeb6bc1-2ce2-48dc-88b8-6a752a8416a9" ], "Date": [ - "Wed, 21 Feb 2018 22:57:46 GMT" + "Fri, 08 Nov 2019 21:32:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97ecb4f0-a660-46dc-908f-fe239575a83a" + "8bfb3cfd-ac64-480c-ab87-d42cf878ca6a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3f484540-e402-4136-b9ba-652e31bd384c" + "f1aca7a5-59d0-4cea-8b2d-41973f3f0341" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "11978" ], "x-ms-correlation-request-id": [ - "46b2df9a-40c4-427e-a944-e89468c87bff" + "8b582b2b-1973-44d5-9fcf-47026c33d339" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225817Z:46b2df9a-40c4-427e-a944-e89468c87bff" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213246Z:8b582b2b-1973-44d5-9fcf-47026c33d339" ], "Date": [ - "Wed, 21 Feb 2018 22:58:17 GMT" + "Fri, 08 Nov 2019 21:32:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f948c74f-75a4-448f-adc5-d7b7b9d785d9" + "ea31918f-0e5c-4d0d-950a-8b4c274f021b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cf710b30-bf47-4dd3-a514-42caacbb2dbc" + "8dcd0bf0-19af-46a7-8cc0-46650d81e87c" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "11977" ], "x-ms-correlation-request-id": [ - "57894df0-509b-4caf-8717-f413cc9ad730" + "31fb5f6b-b187-4746-a2d2-e7bba0b29a51" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225847Z:57894df0-509b-4caf-8717-f413cc9ad730" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213316Z:31fb5f6b-b187-4746-a2d2-e7bba0b29a51" ], "Date": [ - "Wed, 21 Feb 2018 22:58:47 GMT" + "Fri, 08 Nov 2019 21:33:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "658fd287-68c1-4a6b-bede-7018b2126b65" + "655e9aa4-ebfe-4d13-87c2-954f2d20d0ba" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6f7d48a2-5e48-41fa-a3c0-b6a66b1ab1f1" + "d4f00523-f41a-475e-9581-ba22cda51fd7" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "11976" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f5943b75-eb67-4303-9af6-7daf8c07697e" + "3d127006-f8ba-4ee0-86c9-bc0b0ca6d1b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225918Z:f5943b75-eb67-4303-9af6-7daf8c07697e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213346Z:3d127006-f8ba-4ee0-86c9-bc0b0ca6d1b6" ], "Date": [ - "Wed, 21 Feb 2018 22:59:17 GMT" + "Fri, 08 Nov 2019 21:33:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9ac95c-1987-4c68-9cc4-6d7c47fcbe07" + "1430cc2b-c1fc-4561-978d-8ae578250dab" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "611" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "592f7f25-ae50-43da-98db-88e60a91a5fd" + "d7c43129-9641-4791-a38e-c0a8ca667782" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "11975" ], "x-ms-correlation-request-id": [ - "07a099e3-fe1b-4842-a0ab-142bef8afc7a" + "7062ced1-4e62-41a2-b52f-f7673ab65a10" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T225948Z:07a099e3-fe1b-4842-a0ab-142bef8afc7a" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213416Z:7062ced1-4e62-41a2-b52f-f7673ab65a10" ], "Date": [ - "Wed, 21 Feb 2018 22:59:48 GMT" + "Fri, 08 Nov 2019 21:34:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5837ed7-ed5d-4fc3-929e-a869ac76aad5" + "9432e837-40e2-4db8-990d-69aaefb1251d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "612" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "bb8892f3-0f0e-4a92-92e2-626358ddc4e1" + "458d19cf-b413-4438-8c47-d1521031b8f7" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "11974" ], "x-ms-correlation-request-id": [ - "11788fb2-1342-47b4-ab51-fec29bd81ada" + "e8b17634-24a3-48b2-a619-de879633202a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230018Z:11788fb2-1342-47b4-ab51-fec29bd81ada" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213446Z:e8b17634-24a3-48b2-a619-de879633202a" ], "Date": [ - "Wed, 21 Feb 2018 23:00:18 GMT" + "Fri, 08 Nov 2019 21:34:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2e8cb04-c9fb-43d5-baeb-84c3c6573d95" + "a58d8ea6-0f01-4f08-9cf9-e046e82d22dc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "612" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c54679ae-3414-46c9-a348-39e68c2cb38d" + "40ab57ee-2d00-4088-b304-dc16eb621dba" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "11973" ], "x-ms-correlation-request-id": [ - "72d5835d-3ac4-42d2-a704-03d8bdb56e2b" + "37881928-9e01-42f9-9a23-61559535b9fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230018Z:72d5835d-3ac4-42d2-a704-03d8bdb56e2b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213516Z:37881928-9e01-42f9-9a23-61559535b9fd" ], "Date": [ - "Wed, 21 Feb 2018 23:00:18 GMT" + "Fri, 08 Nov 2019 21:35:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f5ff214-f4ea-4e3f-9b29-8fb887ee5efe" + "5be996a7-06a9-4255-9460-eb300b4fa0fc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "612" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7173d5a6-c641-4338-9ae8-a6d31feb9ef7" + "b464a3db-f199-43a8-a12b-a621fde44671" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "11972" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "49860783-c0e5-43ef-839c-6ca17f2844bf" + "c98623e8-fe04-41c8-b690-cb1881a01f3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230018Z:49860783-c0e5-43ef-839c-6ca17f2844bf" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213546Z:c98623e8-fe04-41c8-b690-cb1881a01f3b" ], "Date": [ - "Wed, 21 Feb 2018 23:00:18 GMT" + "Fri, 08 Nov 2019 21:35:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66d364fd-d7c6-4fef-b5b5-ba56d54b3503" + "5a0828bc-0106-4b16-9dd0-27af40091478" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "649" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5bb3c49c-3dbc-432e-9a18-46b07ebfdc72" + "ed2b506f-36ca-449a-bdb4-af808f4b26dd" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "11971" ], "x-ms-correlation-request-id": [ - "2a55077b-62f6-4226-9050-f99e32643922" + "0714e286-9227-4576-a972-597c77a5f42a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230023Z:2a55077b-62f6-4226-9050-f99e32643922" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213617Z:0714e286-9227-4576-a972-597c77a5f42a" ], "Date": [ - "Wed, 21 Feb 2018 23:00:23 GMT" + "Fri, 08 Nov 2019 21:36:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38cc2234-b8c3-4879-b529-a1413d2168c8" + "fc617e01-31ca-4427-886d-21118086789b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "649" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b25c6ca6-8b4d-41d7-a5b9-2c27884f1aea" + "92f2a716-860e-4e2d-85db-b5574d231c4c" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "11970" ], "x-ms-correlation-request-id": [ - "2e2f5e24-275d-4abe-aa8b-2d22fcffefb2" + "f9e3d747-813b-45da-8568-505dbbebde6e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230023Z:2e2f5e24-275d-4abe-aa8b-2d22fcffefb2" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213647Z:f9e3d747-813b-45da-8568-505dbbebde6e" ], "Date": [ - "Wed, 21 Feb 2018 23:00:23 GMT" + "Fri, 08 Nov 2019 21:36:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "638" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95d1052a-9c2b-4e3c-9428-25edb13fba61" + "0ad5d50d-72ea-41a8-b2fa-f87f59a728f8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "649" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "044a9cc2-3fbf-4dc5-93d8-af2816e84b77" + "f05ca572-32e9-4309-b161-7abdbca09fc0" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "11969" ], "x-ms-correlation-request-id": [ - "1bc4f2a0-fb89-473d-a886-ab9544033ffe" + "70116db9-bb46-4008-9423-99811b4e7025" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230024Z:1bc4f2a0-fb89-473d-a886-ab9544033ffe" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213647Z:70116db9-bb46-4008-9423-99811b4e7025" ], "Date": [ - "Wed, 21 Feb 2018 23:00:24 GMT" + "Fri, 08 Nov 2019 21:36:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "638" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5aac798f-2316-4e32-9b46-e8580798ac7e" + "39648e4e-cea6-469b-ac35-167accc8f789" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2351" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "x-ms-request-id": [ - "05422756-8595-4d7d-a6f0-8fe7ae149954" + "2fccbda3-f5a1-4bc7-a65b-4813129248e6" ], - "x-ms-correlation-request-id": [ - "05422756-8595-4d7d-a6f0-8fe7ae149954" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T224744Z:05422756-8595-4d7d-a6f0-8fe7ae149954" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "Date": [ - "Wed, 21 Feb 2018 22:47:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "046a822e-4cd0-427d-a1d9-1726087b7b78" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], - "accept-language": [ - "en-US" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "a1e97eb8-d20b-42c0-a88e-9869872514df" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213647Z:a1e97eb8-d20b-42c0-a88e-9869872514df" + ], + "Date": [ + "Fri, 08 Nov 2019 21:36:46 GMT" ], - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", - "ResponseHeaders": { "Content-Length": [ - "2351" + "638" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "1785950a-e398-46c0-a55a-02342c582363" - ], - "x-ms-correlation-request-id": [ - "1785950a-e398-46c0-a55a-02342c582363" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T230018Z:1785950a-e398-46c0-a55a-02342c582363" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Feb 2018 23:00:18 GMT" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"enableNonSslPort\": true,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "176" - ], "x-ms-client-request-id": [ - "96e52605-c9ad-4389-bc98-23bd72f3e9cc" + "6e3637b9-0977-4693-b0ee-2b6c5899bb52" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"x9E4RmltEmunIUz0RX/E/sYQNa+5cqoUcAMXmIRX1z0=\",\r\n \"secondaryKey\": \"sc/eCLypP3hYDcXJgT91YJBARHpxPujFTSebvUMMq0Y=\"\r\n },\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "730" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "593b2bc8-dcf6-471f-8de4-09031aea8dc8" + "40d9449c-44d2-474b-9ebe-7db03f8842e8" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" ], "x-ms-correlation-request-id": [ - "2a45bd22-53c1-40e4-a4d1-0fc7a82d7cd8" + "c82279e6-8f72-4478-8118-d6ee13a173cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224745Z:2a45bd22-53c1-40e4-a4d1-0fc7a82d7cd8" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213650Z:c82279e6-8f72-4478-8118-d6ee13a173cf" ], "Date": [ - "Wed, 21 Feb 2018 22:47:45 GMT" + "Fri, 08 Nov 2019 21:36:49 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/redis/redisteam002?api-version=2017-10-01" + "Content-Length": [ + "675" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "363405a8-bf44-4331-97f8-bb5306ac9fea" + "8b759b85-526e-4e15-8a03-74bae9592c01" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"x9E4RmltEmunIUz0RX/E/sYQNa+5cqoUcAMXmIRX1z0=\",\r\n \"secondaryKey\": \"sc/eCLypP3hYDcXJgT91YJBARHpxPujFTSebvUMMq0Y=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "13a82adb-eb30-4870-a1ca-40cd0874b131" + "436eca0f-e782-4530-b197-c865fe9cd360" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" ], "x-ms-correlation-request-id": [ - "553bb80a-bc5b-434f-8442-4f768080c45c" + "0ae4d6f4-9a90-4608-885c-795d7b945c9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224745Z:553bb80a-bc5b-434f-8442-4f768080c45c" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213650Z:0ae4d6f4-9a90-4608-885c-795d7b945c9f" ], "Date": [ - "Wed, 21 Feb 2018 22:47:45 GMT" + "Fri, 08 Nov 2019 21:36:49 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "675" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1e6190e-df35-4358-80cd-d2e628d4d1a7" + "37712eb4-69e2-4554-b95a-da6628f2ab62" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"x9E4RmltEmunIUz0RX/E/sYQNa+5cqoUcAMXmIRX1z0=\",\r\n \"secondaryKey\": \"sc/eCLypP3hYDcXJgT91YJBARHpxPujFTSebvUMMq0Y=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "53e80473-3333-417b-82c6-14124490a4ad" + "3b4c214a-d4aa-4f33-b97f-83d52d376c8b" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" ], "x-ms-correlation-request-id": [ - "cc8275da-97bd-47e7-a6ce-bbcbcd7450ef" + "e507f8ba-9b6d-4183-9352-9563425734cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230023Z:cc8275da-97bd-47e7-a6ce-bbcbcd7450ef" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213651Z:e507f8ba-9b6d-4183-9352-9563425734cc" ], "Date": [ - "Wed, 21 Feb 2018 23:00:23 GMT" + "Fri, 08 Nov 2019 21:36:50 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "675" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f666ec0-c383-4dd8-b6d8-43e364acc53f" + "58e3c1ce-342a-4654-903e-0ea09304c2bc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"x9E4RmltEmunIUz0RX/E/sYQNa+5cqoUcAMXmIRX1z0=\",\r\n \"secondaryKey\": \"sc/eCLypP3hYDcXJgT91YJBARHpxPujFTSebvUMMq0Y=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], "x-ms-request-id": [ - "8e853e7e-3de6-4227-a0ff-6cc4dfe09252" + "d56be252-5535-4f1c-8b71-76a8c2cbed59" ], - "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "x-ms-correlation-request-id": [ + "d56be252-5535-4f1c-8b71-76a8c2cbed59" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T212213Z:d56be252-5535-4f1c-8b71-76a8c2cbed59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "15671a58-c81a-40ab-9a3e-6adccf50fa5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T230023Z:15671a58-c81a-40ab-9a3e-6adccf50fa5a" + "Date": [ + "Fri, 08 Nov 2019 21:22:13 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "3202" ], - "Date": [ - "Wed, 21 Feb 2018 23:00:23 GMT" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1424b66-1e20-4284-bd16-63240c3f3c59" + "16842ce6-2d92-4de7-bbba-fdaab4fddbef" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"aCVGAvMO3HcB0oKpCVIW85aOB8gByhblRs90grfP4dk=\",\r\n \"secondaryKey\": \"sc/eCLypP3hYDcXJgT91YJBARHpxPujFTSebvUMMq0Y=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "e0f86fb9-0430-4135-a8b0-5e24df87886d" + ], + "x-ms-correlation-request-id": [ + "e0f86fb9-0430-4135-a8b0-5e24df87886d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213648Z:e0f86fb9-0430-4135-a8b0-5e24df87886d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:36:48 GMT" + ], + "Content-Length": [ + "3202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d49bd0-870c-4f5c-ae51-e4bbe695f4d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "209" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/redis/redisteam002?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "34ea2749-f18d-470d-a619-3c73d7eefada" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2d48606d-b65c-49b3-bb6a-5d3300439867" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T212214Z:2d48606d-b65c-49b3-bb6a-5d3300439867" + ], + "Date": [ + "Fri, 08 Nov 2019 21:22:13 GMT" + ], + "Content-Length": [ + "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"xff7IJACWhlfW9Ibei1ddxRQUL3F0YUSpyciHZgi+DQ=\",\r\n \"secondaryKey\": \"Nt+OmvJPnX2HIJgvkfCcClxzLrxwYGaDYE6IbPIy5oA=\"\r\n },\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0d49428-e4d0-47d8-9fe1-e7eb4ab8af07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "624bddc3-01f5-470f-8499-866d825fd82a" + "4d2864a2-20dc-423f-945c-9371a00907fb" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-correlation-request-id": [ - "ac925f2e-d1a3-4ba8-bd56-915cb4faf8b3" + "8f39e8f0-cebf-4c1c-a697-4b19d38acd57" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230024Z:ac925f2e-d1a3-4ba8-bd56-915cb4faf8b3" + "WESTUS:20191108T212214Z:8f39e8f0-cebf-4c1c-a697-4b19d38acd57" + ], + "Date": [ + "Fri, 08 Nov 2019 21:22:13 GMT" + ], + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"xff7IJACWhlfW9Ibei1ddxRQUL3F0YUSpyciHZgi+DQ=\",\r\n \"secondaryKey\": \"Nt+OmvJPnX2HIJgvkfCcClxzLrxwYGaDYE6IbPIy5oA=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "060bb91e-93ff-4fea-9841-ed44505aedad" + ], + "Accept-Language": [ + "en-US" ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2318ad21-1690-45d7-b9d3-1999ad4d878c" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "85b9d5ac-0197-4f56-86b6-d728ee90632d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213649Z:85b9d5ac-0197-4f56-86b6-d728ee90632d" + ], "Date": [ - "Wed, 21 Feb 2018 23:00:24 GMT" + "Fri, 08 Nov 2019 21:36:49 GMT" + ], + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"xff7IJACWhlfW9Ibei1ddxRQUL3F0YUSpyciHZgi+DQ=\",\r\n \"secondaryKey\": \"Nt+OmvJPnX2HIJgvkfCcClxzLrxwYGaDYE6IbPIy5oA=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b8ad6b7-9f6d-4d23-826d-65bd9f790df3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4fd7bef0-0cbb-4b99-9843-76feb067ec57" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "67fbdf97-d86d-4c2a-b5c4-32b2e5b7e9c7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213650Z:67fbdf97-d86d-4c2a-b5c4-32b2e5b7e9c7" + ], + "Date": [ + "Fri, 08 Nov 2019 21:36:49 GMT" + ], + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"primaryKey\": \"xff7IJACWhlfW9Ibei1ddxRQUL3F0YUSpyciHZgi+DQ=\",\r\n \"secondaryKey\": \"Nt+OmvJPnX2HIJgvkfCcClxzLrxwYGaDYE6IbPIy5oA=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"enableNonSslPort\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90a4be12-a39b-4574-a08a-415ff6d0f6db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "85f4b32b-a609-4760-837e-77216b51141d" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "79658514-bdd8-4304-8e19-c43e4f072854" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213651Z:79658514-bdd8-4304-8e19-c43e4f072854" + ], + "Date": [ + "Fri, 08 Nov 2019 21:36:50 GMT" + ], + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"MxXmNaBoiLV9sukS70zd6RzQTmpYqzMhSqIB1Veje9s=\",\r\n \"secondaryKey\": \"Nt+OmvJPnX2HIJgvkfCcClxzLrxwYGaDYE6IbPIy5oA=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"enableNonSslPort\": false,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7462118e-8610-421f-bf82-64f680e17705" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "280" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5349c8b8-4e33-4e42-aff1-969df152672b" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "6f249e36-0cc3-4483-891b-2bcf2452d8b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213649Z:6f249e36-0cc3-4483-891b-2bcf2452d8b3" + ], + "Date": [ + "Fri, 08 Nov 2019 21:36:49 GMT" + ], + "Content-Length": [ + "675" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49bf8a20-ce49-440d-8df4-921c7338efda" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "17fd9980-2be9-40cc-84da-2c1c81e5c6e3", + "88518c58-f477-4f98-9102-b0e6c46bf747" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "c2e283da-6f51-4e0f-b923-233002598cc5" + ], + "x-ms-correlation-request-id": [ + "c2e283da-6f51-4e0f-b923-233002598cc5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213650Z:c2e283da-6f51-4e0f-b923-233002598cc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 21:36:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1412" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/cli_test_redisqgoh6x5zcd47ig5s4wwiknepbrlo54unuorq4sz3t6zltsdkhdiammctpaw77/providers/Microsoft.Cache/Redis/cliredis3nkvtj6lhhczpncr\",\r\n \"location\": \"West US 2\",\r\n \"name\": \"cliredis3nkvtj6lhhczpncr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {},\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"cliredis3nkvtj6lhhczpncr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002/regenerateKey?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDIvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ecbc19a-79c5-44c6-a7ee-450ec5091ba5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "60a13fde-7450-4f92-a078-6be1129ba308" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "07553a31-d7ae-4ef2-aa0e-59c3362616c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213650Z:07553a31-d7ae-4ef2-aa0e-59c3362616c0" + ], + "Date": [ + "Fri, 08 Nov 2019 21:36:50 GMT" + ], + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"MxXmNaBoiLV9sukS70zd6RzQTmpYqzMhSqIB1Veje9s=\",\r\n \"secondaryKey\": \"Nt+OmvJPnX2HIJgvkfCcClxzLrxwYGaDYE6IbPIy5oA=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6147dd3a-b5cb-4517-9a21-e4b4917cf19d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "b75254b6-383a-448f-937b-9c0b0097ae6a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213651Z:b75254b6-383a-448f-937b-9c0b0097ae6a" + ], + "Date": [ + "Fri, 08 Nov 2019 21:36:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA1MWRkYjE1LTVkYzAtNDkxYi1iNWE0LWM4ZTJkZGZkNWFjZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "2eb29e03-7ae4-4f52-bb13-b87afe497578" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "460d865a-4c7c-46b8-9654-58f9805f3e86" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213721Z:460d865a-4c7c-46b8-9654-58f9805f3e86" + ], + "Date": [ + "Fri, 08 Nov 2019 21:37:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA1MWRkYjE1LTVkYzAtNDkxYi1iNWE0LWM4ZTJkZGZkNWFjZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "09d4fa8e-7ed6-4f4f-bab3-0f3285d9f28a" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "814c48bf-0fbc-45b5-b678-638701490bbf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213751Z:814c48bf-0fbc-45b5-b678-638701490bbf" + ], + "Date": [ + "Fri, 08 Nov 2019 21:37:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA1MWRkYjE1LTVkYzAtNDkxYi1iNWE0LWM4ZTJkZGZkNWFjZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "32716c38-7d34-422a-bbdc-08aba24c634f" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "3b8db1bd-5826-4085-8860-bf4f111d475f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213821Z:3b8db1bd-5826-4085-8860-bf4f111d475f" + ], + "Date": [ + "Fri, 08 Nov 2019 21:38:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA1MWRkYjE1LTVkYzAtNDkxYi1iNWE0LWM4ZTJkZGZkNWFjZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "94faff31-baac-41fb-a4aa-797922a617b9" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "2560422b-9ae0-4950-ab42-5bce00f64f81" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T213851Z:2560422b-9ae0-4950-ab42-5bce00f64f81" + ], + "Date": [ + "Fri, 08 Nov 2019 21:38:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA1MWRkYjE1LTVkYzAtNDkxYi1iNWE0LWM4ZTJkZGZkNWFjZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "247" - ], - "x-ms-client-request-id": [ - "415e2c35-198a-4e1b-943a-a89b274b779b" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "649" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01" + ], "x-ms-request-id": [ - "5e46999b-6a3c-40ee-b1bb-a1e748a7d118" + "40d7f119-3f44-4ad2-8363-4769ac191d69" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" ], "x-ms-correlation-request-id": [ - "c50b0fc4-6414-4d2a-a129-54dedf3a7d78" + "07949cff-c13d-4112-9b9d-b284e86af98e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230023Z:c50b0fc4-6414-4d2a-a129-54dedf3a7d78" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213922Z:07949cff-c13d-4112-9b9d-b284e86af98e" ], "Date": [ - "Wed, 21 Feb 2018 23:00:23 GMT" + "Fri, 08 Nov 2019 21:39:21 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA1MWRkYjE1LTVkYzAtNDkxYi1iNWE0LWM4ZTJkZGZkNWFjZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7fdf33a4-e713-4ab4-9bfa-01b6a9f34ac1" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002\",\r\n \"location\": \"West US\",\r\n \"name\": \"redisteam002\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam002.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "661" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01" + ], "x-ms-request-id": [ - "ac334798-9e5a-4b40-bddf-7a256c060809" + "846a0173-d129-4961-b5b3-1c00b68382f5" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "11958" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "278d75d5-4cac-4fe9-a493-0a5b916e8c56" + "c077d7bc-ae86-4634-90dd-51690c067495" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230023Z:278d75d5-4cac-4fe9-a493-0a5b916e8c56" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T213952Z:c077d7bc-ae86-4634-90dd-51690c067495" ], "Date": [ - "Wed, 21 Feb 2018 23:00:23 GMT" + "Fri, 08 Nov 2019 21:39:51 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002/regenerateKey?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDIvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA1MWRkYjE1LTVkYzAtNDkxYi1iNWE0LWM4ZTJkZGZkNWFjZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "x-ms-client-request-id": [ - "229b2c54-89e0-4fe8-9a16-e3f85ac1ac36" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"aCVGAvMO3HcB0oKpCVIW85aOB8gByhblRs90grfP4dk=\",\r\n \"secondaryKey\": \"sc/eCLypP3hYDcXJgT91YJBARHpxPujFTSebvUMMq0Y=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ab7c2197-4437-41b2-b3c0-de016853bdc4" + "319db7fe-056f-41b5-9b82-ab3d2b15bbc2" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" ], "x-ms-correlation-request-id": [ - "8ea3309c-c633-40f8-9535-fd81d0fc8063" + "4f34e4b4-ab35-4f43-b12a-f200f66d6e00" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230024Z:8ea3309c-c633-40f8-9535-fd81d0fc8063" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T214022Z:4f34e4b4-ab35-4f43-b12a-f200f66d6e00" ], "Date": [ - "Wed, 21 Feb 2018 23:00:24 GMT" + "Fri, 08 Nov 2019 21:40:21 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-2/providers/Microsoft.Cache/Redis/redisteam002?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/West%20US/operationresults/051ddb15-5dc0-491b-b5a4-c8e2ddfd5ace?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA1MWRkYjE1LTVkYzAtNDkxYi1iNWE0LWM4ZTJkZGZkNWFjZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1a164561-1977-4ee8-a38c-7a5514595d38" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "537c7d2b-d323-4076-b29e-438062c17a81" + "8569f0d0-0376-4ad8-9e32-b701ce2fd725" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" ], "x-ms-correlation-request-id": [ - "b806e95d-d0a8-4696-85b0-a548dd02d0a2" + "ed0fb920-30c4-4c14-84a0-0679583c51c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230025Z:b806e95d-d0a8-4696-85b0-a548dd02d0a2" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191108T214022Z:ed0fb920-30c4-4c14-84a0-0679583c51c6" ], "Date": [ - "Wed, 21 Feb 2018 23:00:24 GMT" + "Fri, 08 Nov 2019 21:40:21 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-2?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ac0bfd27-7a16-43d7-8ef3-96fdb738d433" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "aa2c6d88-e53b-4288-a875-6b7b1dc4281a" + "fb65d864-189c-4fdf-aa24-81da94a94d5f" ], "x-ms-correlation-request-id": [ - "aa2c6d88-e53b-4288-a875-6b7b1dc4281a" + "fb65d864-189c-4fdf-aa24-81da94a94d5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230030Z:aa2c6d88-e53b-4288-a875-6b7b1dc4281a" + "WESTUS:20191108T214023Z:fb65d864-189c-4fdf-aa24-81da94a94d5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:00:30 GMT" + "Fri, 08 Nov 2019 21:40:23 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11999" ], "x-ms-request-id": [ - "6154372d-e7ca-4e1b-915b-468d3842c3b9" + "4b61c596-e8e9-45d6-b8ca-cdb6719ea663" ], "x-ms-correlation-request-id": [ - "6154372d-e7ca-4e1b-915b-468d3842c3b9" + "4b61c596-e8e9-45d6-b8ca-cdb6719ea663" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230031Z:6154372d-e7ca-4e1b-915b-468d3842c3b9" + "WESTUS:20191108T214038Z:4b61c596-e8e9-45d6-b8ca-cdb6719ea663" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:00:30 GMT" + "Fri, 08 Nov 2019 21:40:37 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11998" ], "x-ms-request-id": [ - "27734425-a5a2-40f8-b237-2b2f99e2d3a3" + "cc00befd-e0bc-43f9-9b05-7e78c62bbadd" ], "x-ms-correlation-request-id": [ - "27734425-a5a2-40f8-b237-2b2f99e2d3a3" + "cc00befd-e0bc-43f9-9b05-7e78c62bbadd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230046Z:27734425-a5a2-40f8-b237-2b2f99e2d3a3" + "WESTUS:20191108T214053Z:cc00befd-e0bc-43f9-9b05-7e78c62bbadd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:00:46 GMT" + "Fri, 08 Nov 2019 21:40:52 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11997" ], "x-ms-request-id": [ - "6a141dfc-16eb-472e-ab7a-14769c0a11d7" + "8191cbf2-fb97-4bb6-b874-8250de0474f8" ], "x-ms-correlation-request-id": [ - "6a141dfc-16eb-472e-ab7a-14769c0a11d7" + "8191cbf2-fb97-4bb6-b874-8250de0474f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230101Z:6a141dfc-16eb-472e-ab7a-14769c0a11d7" + "WESTUS:20191108T214108Z:8191cbf2-fb97-4bb6-b874-8250de0474f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:01:01 GMT" + "Fri, 08 Nov 2019 21:41:07 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 202 + "ResponseBody": "", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "11996" ], "x-ms-request-id": [ - "3f81d41d-3a3c-4b2c-a8e9-13fd419fc812" + "21b268c6-e078-4205-84cf-5de2f68bdf39" ], "x-ms-correlation-request-id": [ - "3f81d41d-3a3c-4b2c-a8e9-13fd419fc812" + "21b268c6-e078-4205-84cf-5de2f68bdf39" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T230116Z:3f81d41d-3a3c-4b2c-a8e9-13fd419fc812" + "WESTUS:20191108T214108Z:21b268c6-e078-4205-84cf-5de2f68bdf39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:01:16 GMT" + "Fri, 08 Nov 2019 21:41:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + "SubscriptionId": "bc130894-c5b3-4adc-a077-0b51f3714abe" } } \ No newline at end of file diff --git a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json index a6c4d43fe661..b245fbb4e477 100644 --- a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json +++ b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json @@ -1,28 +1,51 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTestNonExisting/providers/Microsoft.Cache/Redis/nonexistingrediscache?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0Tm9uRXhpc3RpbmcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9ub25leGlzdGluZ3JlZGlzY2FjaGU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cacdf31-2067-4fe2-b580-05dfc3645448" + "f699f6de-68a7-4ed8-958d-1f976d4e550f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PowerShellTestNonExisting' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "117" + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "56a00f2e-7e71-48f5-93bf-e3e1d5de556d" + ], + "x-ms-correlation-request-id": [ + "56a00f2e-7e71-48f5-93bf-e3e1d5de556d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191108T222114Z:56a00f2e-7e71-48f5-93bf-e3e1d5de556d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 Nov 2019 22:21:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,6 +53,36 @@ "Expires": [ "-1" ], + "Content-Length": [ + "3202" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTestNonExisting/providers/Microsoft.Cache/Redis/nonexistingrediscache?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0Tm9uRXhpc3RpbmcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9ub25leGlzdGluZ3JlZGlzY2FjaGU/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb10f1cc-d2bf-4e2d-8da2-bb72affa4fdf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Pragma": [ "no-cache" ], @@ -37,29 +90,39 @@ "gateway" ], "x-ms-request-id": [ - "0693ae6a-8afc-4c9d-b40d-21a21a2b3395" + "ff82758f-8b81-48ae-93bc-bb1cd5c03835" ], "x-ms-correlation-request-id": [ - "0693ae6a-8afc-4c9d-b40d-21a21a2b3395" + "ff82758f-8b81-48ae-93bc-bb1cd5c03835" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T234817Z:0693ae6a-8afc-4c9d-b40d-21a21a2b3395" + "WESTUS:20191108T222114Z:ff82758f-8b81-48ae-93bc-bb1cd5c03835" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 23:48:16 GMT" + "Fri, 08 Nov 2019 22:21:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "117" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PowerShellTestNonExisting' could not be found.\"\r\n }\r\n}", "StatusCode": 404 } ], "Names": {}, "Variables": { - "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + "SubscriptionId": "bc130894-c5b3-4adc-a077-0b51f3714abe" } } \ No newline at end of file diff --git a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestZones.json b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestZones.json index 362227fe2bfd..7cb9a9d93145 100644 --- a/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestZones.json +++ b/src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestZones.json @@ -1,25 +1,51 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-client-request-id": [ + "c5b1f730-9a2e-4dc4-94ac-2e91cbf36f13" ], - "Content-Length": [ - "31" + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9\",\r\n \"name\": \"PowerShellTest-9\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "186" + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "021f5e99-64ca-41e0-ad1f-49caddf05be5" + ], + "x-ms-correlation-request-id": [ + "021f5e99-64ca-41e0-ad1f-49caddf05be5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T220038Z:021f5e99-64ca-41e0-ad1f-49caddf05be5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 10 Nov 2019 22:00:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -27,6 +53,42 @@ "Expires": [ "-1" ], + "Content-Length": [ + "3202" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f575f333-79db-4b5b-90e0-50b2d193fb5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Pragma": [ "no-cache" ], @@ -34,55 +96,58 @@ "1199" ], "x-ms-request-id": [ - "2b993819-1ab3-4782-b20e-3a6cf8d4d520" + "cb69691d-213c-46b1-a0e9-5adf4544d6e0" ], "x-ms-correlation-request-id": [ - "2b993819-1ab3-4782-b20e-3a6cf8d4d520" + "cb69691d-213c-46b1-a0e9-5adf4544d6e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223611Z:2b993819-1ab3-4782-b20e-3a6cf8d4d520" + "WESTUS:20191110T220040Z:cb69691d-213c-46b1-a0e9-5adf4544d6e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:36:11 GMT" + "Sun, 10 Nov 2019 22:00:39 GMT" + ], + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9\",\r\n \"name\": \"PowerShellTest-9\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7dbdc1b-7fe2-43a7-8775-670996d68f6a" + "0d3e8e98-fcd6-44c8-90a5-ffd7c6f4a35d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam009' under resource group 'PowerShellTest-9' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "154" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -91,1871 +156,2775 @@ "gateway" ], "x-ms-request-id": [ - "3588480c-0e71-472a-8fd9-fed6f8428b14" + "13fa9a39-22b4-4845-b174-9a6179d8d777" ], "x-ms-correlation-request-id": [ - "3588480c-0e71-472a-8fd9-fed6f8428b14" + "13fa9a39-22b4-4845-b174-9a6179d8d777" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223616Z:3588480c-0e71-472a-8fd9-fed6f8428b14" + "WESTUS:20191110T220041Z:13fa9a39-22b4-4845-b174-9a6179d8d777" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:36:15 GMT" + "Sun, 10 Nov 2019 22:00:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "154" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/redisteam009' under resource group 'PowerShellTest-9' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7c52c91-68bb-485f-9999-c9c3d73632b8" + "0984f739-185f-44b8-ae26-bfadb23c8f0c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "52d10b97-0a10-458b-9d3c-debd7ce26af5" + "99332cf8-920c-4bf1-959f-f7faa76b5b80" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11998" ], "x-ms-correlation-request-id": [ - "0a87f2dd-a4cc-4170-b63b-6eac4654066f" + "6d874394-cf47-42d3-aa29-083a91493a78" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223650Z:0a87f2dd-a4cc-4170-b63b-6eac4654066f" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220115Z:6d874394-cf47-42d3-aa29-083a91493a78" ], "Date": [ - "Wed, 21 Feb 2018 22:36:50 GMT" + "Sun, 10 Nov 2019 22:01:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9a18a94-561c-4a31-88ec-14757101f969" + "4d9e17d8-377f-497f-90b2-b33651c25618" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4cbcb799-d068-44b6-b6d8-a06354d5c4a8" + "4a68b44f-3706-46bc-904a-c491a311267a" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11997" ], "x-ms-correlation-request-id": [ - "34ee5be7-03b0-4eea-a397-195e664ae728" + "cfb65ea3-c5cd-44a6-9944-5a3a8843a5e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223720Z:34ee5be7-03b0-4eea-a397-195e664ae728" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220145Z:cfb65ea3-c5cd-44a6-9944-5a3a8843a5e3" ], "Date": [ - "Wed, 21 Feb 2018 22:37:19 GMT" + "Sun, 10 Nov 2019 22:01:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2750f5b-25a2-4699-ac0e-6971694c1f82" + "66e0d9d7-2bdb-4025-a086-751d92185938" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "84c6b15b-fbbd-4124-835e-c6a1b7d74e7a" + "c692a560-8d35-4c28-ad7d-702bf965f640" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11996" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "382a5588-3938-42c8-b5b5-b4e6fd836e62" + "edab9ea3-5e4e-4e6b-b770-6b5216972cb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223750Z:382a5588-3938-42c8-b5b5-b4e6fd836e62" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220215Z:edab9ea3-5e4e-4e6b-b770-6b5216972cb7" ], "Date": [ - "Wed, 21 Feb 2018 22:37:50 GMT" + "Sun, 10 Nov 2019 22:02:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b622b00f-6d0e-463b-9d3f-b41cc87c534f" + "d1ee2e95-4da4-4c17-a6b6-5afd5c2312b4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "dbf30453-bafa-4ce3-8278-ab585f1aea68" + "0f899a13-bcee-40c4-b6b3-f5ee8c2a7c53" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11995" ], "x-ms-correlation-request-id": [ - "f98034ed-9fdf-460a-893e-8e18a5d96b07" + "3e662f12-de16-4186-8481-fc948614abee" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223821Z:f98034ed-9fdf-460a-893e-8e18a5d96b07" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220246Z:3e662f12-de16-4186-8481-fc948614abee" ], "Date": [ - "Wed, 21 Feb 2018 22:38:20 GMT" + "Sun, 10 Nov 2019 22:02:45 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "693f3c07-f5d0-47c3-a775-3b703828fbe8" + "d25fc1e2-038c-49d2-837a-df3fef0eb085" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f4c59560-152a-4063-91c1-4cfe1d9c48e1" + "4f2d5d40-da4e-4329-b64c-c08c1494e03a" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11994" ], "x-ms-correlation-request-id": [ - "4aa6fd6e-ae8c-4a72-b7fa-499de3125585" + "2a71f20d-1678-47bb-97fb-952209c5ed8d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223851Z:4aa6fd6e-ae8c-4a72-b7fa-499de3125585" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220316Z:2a71f20d-1678-47bb-97fb-952209c5ed8d" ], "Date": [ - "Wed, 21 Feb 2018 22:38:50 GMT" + "Sun, 10 Nov 2019 22:03:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21cd7f56-dfc0-4269-90c7-f386e6a1eac9" + "d17fa108-0172-4cb4-a3e5-a49a023f3431" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "22393325-e508-478d-a926-590313bc8e52" + "64254c71-f598-44d2-a651-0e6bfababb2b" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11993" ], "x-ms-correlation-request-id": [ - "7260c00f-7156-4e89-b229-6e086a70223e" + "9d6ddcc7-b6c8-46d9-b110-68f7ea3ff654" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223921Z:7260c00f-7156-4e89-b229-6e086a70223e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220346Z:9d6ddcc7-b6c8-46d9-b110-68f7ea3ff654" ], "Date": [ - "Wed, 21 Feb 2018 22:39:20 GMT" + "Sun, 10 Nov 2019 22:03:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe13ceef-5e6d-465f-831c-cb39f296fc5d" + "6d4ebde8-58a3-4d22-b80f-dd547aa2fdd1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9fa35197-95e5-4505-9885-53734358e14a" + "cfaf70e8-b3ed-4c1e-af12-9e312f73d83a" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11992" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "0f68530c-bcfe-440c-9a60-338cb2750aee" + "5fc8d197-1e83-4f05-b7f6-982a33927fff" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223951Z:0f68530c-bcfe-440c-9a60-338cb2750aee" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220416Z:5fc8d197-1e83-4f05-b7f6-982a33927fff" ], "Date": [ - "Wed, 21 Feb 2018 22:39:51 GMT" + "Sun, 10 Nov 2019 22:04:15 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5057cff-3676-401e-b6d5-a72c964efbc0" + "1386b3e7-e968-4f1e-a59b-4f75077076e6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "20bb03f6-2615-443d-857d-95dcb13f4791" + "415c7927-574d-4f77-b8d5-0a11dccd1618" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11991" ], "x-ms-correlation-request-id": [ - "3e6df570-d423-4321-b5ab-e36964bce3ff" + "6e584fdf-9a3f-4bd7-b58a-2b0158071ac8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224021Z:3e6df570-d423-4321-b5ab-e36964bce3ff" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220446Z:6e584fdf-9a3f-4bd7-b58a-2b0158071ac8" ], "Date": [ - "Wed, 21 Feb 2018 22:40:21 GMT" + "Sun, 10 Nov 2019 22:04:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f3468ab-9c9f-4101-afa4-8732069c1d6e" + "fbfdba2d-0428-424f-adb8-f9ac503537aa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4daa0fed-6153-4081-a46b-c1eeaf61cf13" + "f7b33777-4661-4f86-b4c5-94b84e7e45a8" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11990" ], "x-ms-correlation-request-id": [ - "06d707ae-821e-4757-acc9-6680429ec18e" + "43728696-3d0c-4055-9e90-8596fc0d19f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224052Z:06d707ae-821e-4757-acc9-6680429ec18e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220517Z:43728696-3d0c-4055-9e90-8596fc0d19f9" ], "Date": [ - "Wed, 21 Feb 2018 22:40:51 GMT" + "Sun, 10 Nov 2019 22:05:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "816efe51-cac5-48c7-a4bd-81d1ca060667" + "b01ab8ee-488c-4668-9b28-127eac354f4b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ae57470e-b228-4a05-a37c-9578383d7ce4" + "051cf31f-9e6f-49e9-91e2-97c7cd2fd66e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11989" ], "x-ms-correlation-request-id": [ - "9b971c5f-d50e-4fa4-a520-a41294bb8056" + "05ad2a01-b013-4db6-b375-a9bec489b594" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224122Z:9b971c5f-d50e-4fa4-a520-a41294bb8056" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220547Z:05ad2a01-b013-4db6-b375-a9bec489b594" ], "Date": [ - "Wed, 21 Feb 2018 22:41:21 GMT" + "Sun, 10 Nov 2019 22:05:47 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60f42ad9-94f8-4a98-afc5-a80639d8eb4f" + "d804e938-e1ae-4dcb-8787-3fae9416e800" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ada61dd5-7713-475f-a08e-9824b6dc3e81" + "1189ef6b-f595-4dc6-b901-bcdd56152b91" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "11988" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f43128db-72ba-4b7d-93d9-5ca94dbe164d" + "7e9ea865-b3d7-4e92-8ee5-a5b3c49c5d89" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224152Z:f43128db-72ba-4b7d-93d9-5ca94dbe164d" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220617Z:7e9ea865-b3d7-4e92-8ee5-a5b3c49c5d89" ], "Date": [ - "Wed, 21 Feb 2018 22:41:51 GMT" + "Sun, 10 Nov 2019 22:06:17 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94c88772-f883-4ae8-bc63-717136e09bda" + "4e601bbc-3a3d-457d-9e9d-575dbf3d012d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "48cf1b10-c6ad-4989-821d-a253c1f723d3" + "e2c945b7-6460-4b61-9f38-64dfb7e0ffb9" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "11987" ], "x-ms-correlation-request-id": [ - "87837876-8120-4b05-9989-3f886a971f76" + "8ac6eaaf-697a-42a8-9273-7f735acd4c2a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224222Z:87837876-8120-4b05-9989-3f886a971f76" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220648Z:8ac6eaaf-697a-42a8-9273-7f735acd4c2a" ], "Date": [ - "Wed, 21 Feb 2018 22:42:22 GMT" + "Sun, 10 Nov 2019 22:06:48 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7965efdc-6e56-43e4-a752-14acc3b0dedd" + "f4feb00b-9674-44d6-a95a-817628e0946a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "075ec702-97f4-4561-8e96-c5089037d0e1" + "bba25f77-5211-4216-94a8-092651955270" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "11986" ], "x-ms-correlation-request-id": [ - "37086ec4-7b12-4cec-93c3-0a17afed6270" + "b4629095-14c8-4a47-bd1d-0ff7129001f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224252Z:37086ec4-7b12-4cec-93c3-0a17afed6270" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220718Z:b4629095-14c8-4a47-bd1d-0ff7129001f0" ], "Date": [ - "Wed, 21 Feb 2018 22:42:52 GMT" + "Sun, 10 Nov 2019 22:07:17 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c28ac9c-f304-4683-a8d8-5d1326b99a19" + "9028d564-0075-4f3d-b795-7f77f702162b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "deb8ee9f-dbcd-46b5-8639-2cbfff1e8885" + "53c9e1f9-f9c4-4e9e-bfec-b37ddc3a7c56" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "11985" ], "x-ms-correlation-request-id": [ - "e55d3589-ae09-4d76-b46a-b5eb5004ffdb" + "b0fd4e2a-cfdd-40c8-b81e-7d9fcec17bc6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224322Z:e55d3589-ae09-4d76-b46a-b5eb5004ffdb" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220748Z:b0fd4e2a-cfdd-40c8-b81e-7d9fcec17bc6" ], "Date": [ - "Wed, 21 Feb 2018 22:43:22 GMT" + "Sun, 10 Nov 2019 22:07:47 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b44d9c2-370b-4d81-afbe-c114f1b26d85" + "a51bcca1-bb72-4134-8b98-72538948e99b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f9ed8766-d94b-4447-9c19-8889e5500cfe" + "631d89b5-4eb4-44a6-81a6-29ce3a69c672" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "11984" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "265abcbf-9cf8-419e-911e-2f2bf7def58b" + "4f7cbca0-0022-489c-a509-3c4241439942" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224353Z:265abcbf-9cf8-419e-911e-2f2bf7def58b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220818Z:4f7cbca0-0022-489c-a509-3c4241439942" ], "Date": [ - "Wed, 21 Feb 2018 22:43:52 GMT" + "Sun, 10 Nov 2019 22:08:18 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "586e228a-edf2-4bf9-9730-7c516032f97d" + "1d23ee75-8c83-4fc2-aa06-685a9ed17321" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2a04ed33-835b-43ae-9352-cefc33e603bd" + "fc5d79fe-aa2d-47c3-99da-b405ef93c193" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "11983" ], "x-ms-correlation-request-id": [ - "95da2b91-ab40-481f-beb6-e53bce15b9d0" + "867810bd-17f2-4769-8461-dc897b140872" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224423Z:95da2b91-ab40-481f-beb6-e53bce15b9d0" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220849Z:867810bd-17f2-4769-8461-dc897b140872" ], "Date": [ - "Wed, 21 Feb 2018 22:44:22 GMT" + "Sun, 10 Nov 2019 22:08:48 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67804423-db9f-4566-964b-1c2bf03bfe40" + "253cd7d8-3513-4b16-ab2a-aeed8849dbe3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "659" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9f2b37de-aeba-4a3a-8afd-1ca7193c4e6c" + "ea23d664-8815-4593-bbd3-b9c9de8fbcd9" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "11982" ], "x-ms-correlation-request-id": [ - "ce213fe5-8b74-481d-ab37-e89809cb9d98" + "ea5ee111-76fb-4774-afff-f0bbf6a6147e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224453Z:ce213fe5-8b74-481d-ab37-e89809cb9d98" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T220919Z:ea5ee111-76fb-4774-afff-f0bbf6a6147e" ], "Date": [ - "Wed, 21 Feb 2018 22:44:52 GMT" + "Sun, 10 Nov 2019 22:09:18 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4c84dd2-e718-4a3a-95f5-2e817bec6330" + "c0eae859-6e2e-44b7-841a-723e1e168948" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "85242896-9dce-4eb6-a578-d419315151e7" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "47fa1c76-988a-4455-92ec-8690946219fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T220949Z:47fa1c76-988a-4455-92ec-8690946219fd" + ], + "Date": [ + "Sun, 10 Nov 2019 22:09:49 GMT" + ], "Content-Length": [ - "659" + "658" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13c361e7-14f2-42c9-9513-d409974f28f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "538a5462-60c3-4719-8ca6-0dbd5ce626a6" + "294bf5aa-6c05-49af-87a7-d3c4f111bd7f" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "11980" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "01d2a6e7-54de-49b3-80c5-17b6c8fb205e" + "92e04be0-aea7-423d-9b1e-9e5abbfb393d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224523Z:01d2a6e7-54de-49b3-80c5-17b6c8fb205e" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T221019Z:92e04be0-aea7-423d-9b1e-9e5abbfb393d" ], "Date": [ - "Wed, 21 Feb 2018 22:45:22 GMT" + "Sun, 10 Nov 2019 22:10:19 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5f6060d-b484-40e0-8c2d-f18ef95e0892" + "3452f720-b993-446e-9d34-4e517a0753e3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d88b0a5f-3700-4bc6-bf50-035f02a7f8ce" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "cc77bf74-1cbf-4c6e-a90c-408184dff611" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T221049Z:cc77bf74-1cbf-4c6e-a90c-408184dff611" + ], + "Date": [ + "Sun, 10 Nov 2019 22:10:49 GMT" + ], "Content-Length": [ - "659" + "658" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a99ef879-3dcc-48b2-a98d-1802f62b32ec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ad22120c-3231-444e-87b9-29be73729d4b" + "a2951acf-88ca-4d5c-bd36-a56424ffce86" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "11978" ], "x-ms-correlation-request-id": [ - "b0ee549a-1ba1-416c-8059-07843468eb20" + "78dbde92-84e2-4c63-a8ae-0f3ce67ce815" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224553Z:b0ee549a-1ba1-416c-8059-07843468eb20" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T221119Z:78dbde92-84e2-4c63-a8ae-0f3ce67ce815" ], "Date": [ - "Wed, 21 Feb 2018 22:45:53 GMT" + "Sun, 10 Nov 2019 22:11:19 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c48a809-d709-40f2-8d7c-6b00d3c5e61e" + "a1c6801d-ee54-451f-9069-c8599e2bc4e4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b6658b5e-cd19-4a42-ba28-cbf8a76e9d8c" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "7da48654-567e-4c37-852d-52ae59477569" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T221149Z:7da48654-567e-4c37-852d-52ae59477569" + ], + "Date": [ + "Sun, 10 Nov 2019 22:11:49 GMT" + ], "Content-Length": [ - "660" + "658" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15e3fd66-efee-48ec-a194-b79c51dc48a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9372bb90-1f5c-47d6-bb1c-61361640b6ad" + "83186e59-fae1-4d22-be5b-7d176702deed" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "11976" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "35dfc07b-9bda-4bb9-9df1-bc594c205280" + "bc6cd985-6455-4497-8e2a-3bf0cff5b8f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224623Z:35dfc07b-9bda-4bb9-9df1-bc594c205280" + "WESTUS:20191110T221220Z:bc6cd985-6455-4497-8e2a-3bf0cff5b8f5" + ], + "Date": [ + "Sun, 10 Nov 2019 22:12:19 GMT" + ], + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7258127e-3770-452a-91a8-7c8917ed9419" + ], + "Accept-Language": [ + "en-US" ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Feb 2018 22:46:22 GMT" + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4b8c4c2c-7c14-42c9-9bc6-8fdccf06f333" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "0a5abee4-ee0c-45cf-8e26-e7f5ff175f59" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T221250Z:0a5abee4-ee0c-45cf-8e26-e7f5ff175f59" + ], + "Date": [ + "Sun, 10 Nov 2019 22:12:49 GMT" + ], + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache/register?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "251ea179-4672-42ca-801a-1c3510a7863e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56179b77-3368-43c6-895a-37e8dba9cdfb" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "b7bffad4-08f2-4550-8378-38cb4b020214" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T221320Z:b7bffad4-08f2-4550-8378-38cb4b020214" + ], + "Date": [ + "Sun, 10 Nov 2019 22:13:20 GMT" + ], + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c7378f6-2427-43f3-90ad-76ac5a149d45" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "08308bfe-5643-493d-87ff-6f72d54df2be" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "b97a34dd-592c-4ce7-b65a-7b0d1be8fe28" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T221350Z:b97a34dd-592c-4ce7-b65a-7b0d1be8fe28" + ], + "Date": [ + "Sun, 10 Nov 2019 22:13:50 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a926f0b2-5a34-4a68-96d2-b1a33c6ee8ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "c83082b7-64f7-469d-8a7b-bfbd621a8df7" + ], + "x-ms-correlation-request-id": [ + "c83082b7-64f7-469d-8a7b-bfbd621a8df7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T220043Z:c83082b7-64f7-469d-8a7b-bfbd621a8df7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 10 Nov 2019 22:00:42 GMT" + ], + "Content-Length": [ + "3202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "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 },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6b96d1c-2b01-4301-a2f2-b46c916d3b8e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "228" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/redis/redisteam009?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "810b1f77-b007-4986-93d4-5af347bf1028" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "5cbeaabf-6eaf-4d26-a989-46389fd871f2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T220045Z:5cbeaabf-6eaf-4d26-a989-46389fd871f2" + ], + "Date": [ + "Sun, 10 Nov 2019 22:00:44 GMT" + ], + "Content-Length": [ + "777" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"vy+ZWV4Fq5sAwjd+1cRZSieSJdLaXUJAn5XMpFU1K44=\",\r\n \"secondaryKey\": \"ysM5B0ss9F6blCqUivA4kjEqgYyLBZUI2FI0QC6og0Y=\"\r\n },\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009/listKeys?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDkvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1398335-73e5-40a6-a8b8-55268281785b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bfeb5d89-f4f2-4a1d-a0d3-d8908bcc4fb2" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "30688732-4089-4b39-9d65-2f5e9cdd7788" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T220045Z:30688732-4089-4b39-9d65-2f5e9cdd7788" + ], + "Date": [ + "Sun, 10 Nov 2019 22:00:44 GMT" + ], + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"vy+ZWV4Fq5sAwjd+1cRZSieSJdLaXUJAn5XMpFU1K44=\",\r\n \"secondaryKey\": \"ysM5B0ss9F6blCqUivA4kjEqgYyLBZUI2FI0QC6og0Y=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2617dc74-ff46-4bfc-8eac-5d0a763e1f7d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "409030ea-51ae-4f69-9925-9c1f51928bde" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "a9fce14d-d078-4de6-9e44-ff17360f6bbe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T221351Z:a9fce14d-d078-4de6-9e44-ff17360f6bbe" + ], + "Date": [ + "Sun, 10 Nov 2019 22:13:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQwOTAzMGVhLTUxYWUtNGY2OS05OTI1LTljMWY1MTkyOGJkZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "33d96a3f-a643-46ab-9748-683a62de684c" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "28e4363c-42be-4d8f-abb3-fe35024a03c7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T221421Z:28e4363c-42be-4d8f-abb3-fe35024a03c7" + ], + "Date": [ + "Sun, 10 Nov 2019 22:14:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQwOTAzMGVhLTUxYWUtNGY2OS05OTI1LTljMWY1MTkyOGJkZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "1e00400d-520b-4660-9979-7a23703e5b75" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "850d61d0-25ff-436e-a919-eed286bb0b94" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T221451Z:850d61d0-25ff-436e-a919-eed286bb0b94" + ], + "Date": [ + "Sun, 10 Nov 2019 22:14:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQwOTAzMGVhLTUxYWUtNGY2OS05OTI1LTljMWY1MTkyOGJkZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "f4794469-35e2-4ed9-aacf-78094ef62981" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "a6eaaf03-eec3-40c3-95c7-db7b040a7520" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T221521Z:a6eaaf03-eec3-40c3-95c7-db7b040a7520" + ], + "Date": [ + "Sun, 10 Nov 2019 22:15:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQwOTAzMGVhLTUxYWUtNGY2OS05OTI1LTljMWY1MTkyOGJkZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01" + ], + "x-ms-request-id": [ + "9aa232f0-5cb8-42f3-96f3-8e05f9586eb6" + ], + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "6e55f940-963c-433d-9f73-0f7f1eef16db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T221552Z:6e55f940-963c-433d-9f73-0f7f1eef16db" + ], + "Date": [ + "Sun, 10 Nov 2019 22:15:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQwOTAzMGVhLTUxYWUtNGY2OS05OTI1LTljMWY1MTkyOGJkZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1f955bec-db0c-4c45-8ccb-10b74cf714af" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2351" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01" ], "x-ms-request-id": [ - "e0f35141-60dd-4bbf-a8fb-7686852f0bec" + "c413c962-a72e-4aba-b058-ce673b335ace" ], - "x-ms-correlation-request-id": [ - "e0f35141-60dd-4bbf-a8fb-7686852f0bec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180221T223618Z:e0f35141-60dd-4bbf-a8fb-7686852f0bec" + "x-rp-server-mvid": [ + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6be33a2b-bcb9-4dd2-97ed-56248c6d1c02" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191110T221622Z:6be33a2b-bcb9-4dd2-97ed-56248c6d1c02" ], "Date": [ - "Wed, 21 Feb 2018 22:36:18 GMT" + "Sun, 10 Nov 2019 22:16:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "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 },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n }\r\n}", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQwOTAzMGVhLTUxYWUtNGY2OS05OTI1LTljMWY1MTkyOGJkZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "230" - ], - "x-ms-client-request-id": [ - "3aee6256-867f-4f8f-8c95-dc3a8a1c9266" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redisteam009\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {\r\n \"example-key\": \"example-value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\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 \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"9b2RxC13a0awho46jrwutOX9j/UTzT1Oyxhx+PQV7lM=\",\r\n \"secondaryKey\": \"k+mMJlPoTfHRAZ1xI7gUVqY+cHWEkD1GCva8WDcBckw=\"\r\n },\r\n \"hostName\": \"redisteam009.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "778" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01" + ], "x-ms-request-id": [ - "000b86b0-f35d-4c59-94d7-125b25bd5590" + "166262f1-ac6a-45c6-a3a0-f1de6081545e" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" ], "x-ms-correlation-request-id": [ - "9f20f6c0-0348-42da-a7fa-561bdc16d1d5" + "05b76056-b9be-4023-b70f-62b2bdedc62b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223620Z:9f20f6c0-0348-42da-a7fa-561bdc16d1d5" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T221652Z:05b76056-b9be-4023-b70f-62b2bdedc62b" ], "Date": [ - "Wed, 21 Feb 2018 22:36:19 GMT" + "Sun, 10 Nov 2019 22:16:52 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/redis/redisteam009?api-version=2017-10-01" + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "0" ] }, - "StatusCode": 201 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDkvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQwOTAzMGVhLTUxYWUtNGY2OS05OTI1LTljMWY1MTkyOGJkZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "271fc818-ab14-4fc3-815d-5e7cea1bd629" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"9b2RxC13a0awho46jrwutOX9j/UTzT1Oyxhx+PQV7lM=\",\r\n \"secondaryKey\": \"k+mMJlPoTfHRAZ1xI7gUVqY+cHWEkD1GCva8WDcBckw=\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "123" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "05218163-82cf-4c88-97a4-f27fca466fd5" + "2ebfd53d-b290-447f-91c1-8d7a4e1bed3b" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" ], "x-ms-correlation-request-id": [ - "04a46759-0f20-4cf3-b5d0-0be3c440004b" + "86e8824d-8724-458e-9fa2-b1ef0bbac7ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T223620Z:04a46759-0f20-4cf3-b5d0-0be3c440004b" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T221722Z:86e8824d-8724-458e-9fa2-b1ef0bbac7ac" ], "Date": [ - "Wed, 21 Feb 2018 22:36:19 GMT" + "Sun, 10 Nov 2019 22:17:22 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/PowerShellTest-9/providers/Microsoft.Cache/Redis/redisteam009?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9yZWRpc3RlYW0wMDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/providers/Microsoft.Cache/locations/East%20US/operationresults/409030ea-51ae-4f69-9925-9c1f51928bde?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQwOTAzMGVhLTUxYWUtNGY2OS05OTI1LTljMWY1MTkyOGJkZT9hcGktdmVyc2lvbj0yMDE4LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "61eab237-cabf-44ab-8455-18a054f489d8" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.4.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Redis.RedisManagementClient/5.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5f4d277f-ca1c-4639-8bf5-2621e09dbfd0" + "086b7805-5701-4de7-a1d1-9b2f2dfc635a" ], "x-rp-server-mvid": [ - "f9905c95-258b-4b08-92e4-a98ffe44e862" + "b09efde1-09da-489a-a212-fff1069a7e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-content-type-options": [ + "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" ], "x-ms-correlation-request-id": [ - "d9a00fbf-c7e6-41b3-ace4-55a3dbcd0e87" + "8fbc264f-bf0b-44db-a21a-de447e72d3e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224625Z:d9a00fbf-c7e6-41b3-ace4-55a3dbcd0e87" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20191110T221722Z:8fbc264f-bf0b-44db-a21a-de447e72d3e3" ], "Date": [ - "Wed, 21 Feb 2018 22:46:25 GMT" + "Sun, 10 Nov 2019 22:17:22 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/PowerShellTest-9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/resourcegroups/PowerShellTest-9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL3Jlc291cmNlZ3JvdXBzL1Bvd2VyU2hlbGxUZXN0LTk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6a8dab75-810d-4edb-b601-b43851761bf8" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "10298818-caaf-4499-945f-f15bff733d3e" + "fea95dcf-e826-4f66-a10d-4ca61ca6a72d" ], "x-ms-correlation-request-id": [ - "10298818-caaf-4499-945f-f15bff733d3e" + "fea95dcf-e826-4f66-a10d-4ca61ca6a72d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224623Z:10298818-caaf-4499-945f-f15bff733d3e" + "WESTUS:20191110T221725Z:fea95dcf-e826-4f66-a10d-4ca61ca6a72d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:46:22 GMT" + "Sun, 10 Nov 2019 22:17:25 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGt0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGt0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11998" ], "x-ms-request-id": [ - "40f9471f-ed96-413e-8142-27f49bdbe6d4" + "b3edb83c-d7f7-4138-aee8-50dcd7588828" ], "x-ms-correlation-request-id": [ - "40f9471f-ed96-413e-8142-27f49bdbe6d4" + "b3edb83c-d7f7-4138-aee8-50dcd7588828" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224623Z:40f9471f-ed96-413e-8142-27f49bdbe6d4" + "WESTUS:20191110T221740Z:b3edb83c-d7f7-4138-aee8-50dcd7588828" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:46:22 GMT" + "Sun, 10 Nov 2019 22:17:40 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGt0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGt0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11997" ], "x-ms-request-id": [ - "8698cfd1-157a-489d-8eb0-6e6cf0effe82" + "0067acc9-f81f-4774-9820-4043f5247f41" ], "x-ms-correlation-request-id": [ - "8698cfd1-157a-489d-8eb0-6e6cf0effe82" + "0067acc9-f81f-4774-9820-4043f5247f41" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224638Z:8698cfd1-157a-489d-8eb0-6e6cf0effe82" + "WESTUS:20191110T221755Z:0067acc9-f81f-4774-9820-4043f5247f41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:46:38 GMT" + "Sun, 10 Nov 2019 22:17:55 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGt0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGt0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11996" ], "x-ms-request-id": [ - "d2ad2c67-d5e1-49ee-a742-91c83ddd0c74" + "cdb0de10-846b-46a6-89af-7d9956f1829a" ], "x-ms-correlation-request-id": [ - "d2ad2c67-d5e1-49ee-a742-91c83ddd0c74" + "cdb0de10-846b-46a6-89af-7d9956f1829a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224654Z:d2ad2c67-d5e1-49ee-a742-91c83ddd0c74" + "WESTUS:20191110T221811Z:cdb0de10-846b-46a6-89af-7d9956f1829a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:46:53 GMT" + "Sun, 10 Nov 2019 22:18:10 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 202 + "ResponseBody": "", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGt0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/bc130894-c5b3-4adc-a077-0b51f3714abe/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QT1dFUlNIRUxMVEVTVDoyRDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmMxMzA4OTQtYzViMy00YWRjLWEwNzctMGI1MWYzNzE0YWJlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVDFkRlVsTklSVXhNVkVWVFZEb3lSRGt0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11995" ], "x-ms-request-id": [ - "9d37b69f-7002-49e6-a20e-743a65a80878" + "1b84943d-c980-49aa-bfdc-cc7e97938afb" ], "x-ms-correlation-request-id": [ - "9d37b69f-7002-49e6-a20e-743a65a80878" + "1b84943d-c980-49aa-bfdc-cc7e97938afb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180221T224709Z:9d37b69f-7002-49e6-a20e-743a65a80878" + "WESTUS:20191110T221811Z:1b84943d-c980-49aa-bfdc-cc7e97938afb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 21 Feb 2018 22:47:09 GMT" + "Sun, 10 Nov 2019 22:18:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + "SubscriptionId": "bc130894-c5b3-4adc-a077-0b51f3714abe" } } \ No newline at end of file diff --git a/src/RedisCache/RedisCache/ChangeLog.md b/src/RedisCache/RedisCache/ChangeLog.md index d9c9763522c1..667be337e291 100644 --- a/src/RedisCache/RedisCache/ChangeLog.md +++ b/src/RedisCache/RedisCache/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Added `MinimumTlsVersion` parameter in `New-AzRedisCache` and `Set-AzRedisCache` cmdlets. Also, added `MinimumTlsVersion` in the output of `Get-AzRedisCache` cmdlet. * Added validation on `-Size` parameter for `Set-AzRedisCache` and `New-AzRedisCache` cmdlets ## Version 1.1.1 diff --git a/src/RedisCache/RedisCache/Commands/NewAzureRedisCache.cs b/src/RedisCache/RedisCache/Commands/NewAzureRedisCache.cs index c9bf906b204f..e576cc325458 100644 --- a/src/RedisCache/RedisCache/Commands/NewAzureRedisCache.cs +++ b/src/RedisCache/RedisCache/Commands/NewAzureRedisCache.cs @@ -23,6 +23,7 @@ namespace Microsoft.Azure.Commands.RedisCache using System.Collections; using System.Management.Automation; using SkuStrings = Microsoft.Azure.Management.Redis.Models.SkuName; + using TlsStrings = Microsoft.Azure.Management.Redis.Models.TlsVersion; [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCache", SupportsShouldProcess = true), OutputType(typeof(RedisCacheAttributesWithAccessKeys))] public class NewAzureRedisCache : RedisCacheCmdletBase @@ -63,6 +64,10 @@ public class NewAzureRedisCache : RedisCacheCmdletBase [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 = "Specify the TLS version required by clients to connect to cache.")] + [PSArgumentCompleter(TlsStrings.OneFullStopZero, TlsStrings.OneFullStopOne, TlsStrings.OneFullStopTwo)] + public string MinimumTlsVersion { get; set; } + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "The full resource ID of a subnet in a virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1")] public string SubnetId { get; set; } @@ -135,7 +140,7 @@ public override void ExecuteCmdlet() () => { var redisResource = CacheClient.CreateCache(ResourceGroupName, Name, Location, skuFamily, skuCapacity, Sku, - RedisConfiguration, EnableNonSslPort, TenantSettings, ShardCount, SubnetId, StaticIP, Tag, Zone); + RedisConfiguration, EnableNonSslPort, TenantSettings, ShardCount, MinimumTlsVersion, SubnetId, StaticIP, Tag, Zone); var redisAccessKeys = CacheClient.GetAccessKeys(ResourceGroupName, Name); WriteObject(new RedisCacheAttributesWithAccessKeys(redisResource, redisAccessKeys, ResourceGroupName)); }); diff --git a/src/RedisCache/RedisCache/Commands/SetAzureRedisCache.cs b/src/RedisCache/RedisCache/Commands/SetAzureRedisCache.cs index dce651e6e4fe..e8cec593ea4e 100644 --- a/src/RedisCache/RedisCache/Commands/SetAzureRedisCache.cs +++ b/src/RedisCache/RedisCache/Commands/SetAzureRedisCache.cs @@ -22,6 +22,7 @@ namespace Microsoft.Azure.Commands.RedisCache using System.Collections; using System.Management.Automation; using SkuStrings = Microsoft.Azure.Management.Redis.Models.SkuName; + using TlsStrings = Microsoft.Azure.Management.Redis.Models.TlsVersion; [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCache", SupportsShouldProcess = true), OutputType(typeof(RedisCacheAttributesWithAccessKeys))] public class SetAzureRedisCache : RedisCacheCmdletBase @@ -57,6 +58,10 @@ public class SetAzureRedisCache : RedisCacheCmdletBase [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 = "Specify the TLS version required by clients to connect to cache.")] + [PSArgumentCompleter(TlsStrings.OneFullStopZero, TlsStrings.OneFullStopOne, TlsStrings.OneFullStopTwo)] + public string MinimumTlsVersion { get; set; } + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "A hash table which represents tags.")] public Hashtable Tag { get; set; } @@ -103,7 +108,7 @@ public override void ExecuteCmdlet() if (!ShardCount.HasValue && response.ShardCount.HasValue) { ShardCount = response.ShardCount; - } + } ConfirmAction( string.Format(Resources.UpdateRedisCache, Name), @@ -111,7 +116,7 @@ public override void ExecuteCmdlet() () => { var redisResource = CacheClient.UpdateCache(ResourceGroupName, Name, skuFamily, skuCapacity, - skuName, RedisConfiguration, EnableNonSslPort, TenantSettings, ShardCount, Tag); + skuName, RedisConfiguration, EnableNonSslPort, TenantSettings, ShardCount, MinimumTlsVersion, Tag); var redisAccessKeys = CacheClient.GetAccessKeys(ResourceGroupName, Name); WriteObject(new RedisCacheAttributesWithAccessKeys(redisResource, redisAccessKeys, ResourceGroupName)); }); diff --git a/src/RedisCache/RedisCache/Models/RedisCacheAttributes.cs b/src/RedisCache/RedisCache/Models/RedisCacheAttributes.cs index acbd13ae8121..1a646dbde68d 100644 --- a/src/RedisCache/RedisCache/Models/RedisCacheAttributes.cs +++ b/src/RedisCache/RedisCache/Models/RedisCacheAttributes.cs @@ -39,6 +39,7 @@ public RedisCacheAttributes(RedisResource cache, string resourceGroupName) StaticIP = cache.StaticIP; TenantSettings = cache.TenantSettings; ShardCount = cache.ShardCount; + MinimumTlsVersion = cache.MinimumTlsVersion; Tag = cache.Tags; Zone = cache.Zones; } @@ -97,6 +98,8 @@ protected set public int? ShardCount { get; protected set; } + public string MinimumTlsVersion { get; protected set; } + public string SubnetId { get; protected set; } public string StaticIP { get; protected set; } diff --git a/src/RedisCache/RedisCache/Models/RedisCacheClient.cs b/src/RedisCache/RedisCache/Models/RedisCacheClient.cs index 6904342bf69f..ed7dca81aaeb 100644 --- a/src/RedisCache/RedisCache/Models/RedisCacheClient.cs +++ b/src/RedisCache/RedisCache/Models/RedisCacheClient.cs @@ -46,7 +46,7 @@ public RedisCacheClient(IAzureContext context) public RedisCacheClient() { } public RedisResource CreateCache(string resourceGroupName, string cacheName, string location, string skuFamily, int skuCapacity, string skuName, - Hashtable redisConfiguration, bool? enableNonSslPort, Hashtable tenantSettings, int? shardCount, string subnetId, string staticIP, Hashtable tags, IList zones) + Hashtable redisConfiguration, bool? enableNonSslPort, Hashtable tenantSettings, int? shardCount, string minimumTlsVersion, string subnetId, string staticIP, Hashtable tags, IList zones) { _resourceManagementClient.Providers.Register("Microsoft.Cache"); var parameters = new RedisCreateParameters @@ -102,6 +102,11 @@ public RedisResource CreateCache(string resourceGroupName, string cacheName, str parameters.ShardCount = shardCount.Value; } + if(!string.IsNullOrEmpty(minimumTlsVersion)) + { + parameters.MinimumTlsVersion = minimumTlsVersion; + } + if (!string.IsNullOrWhiteSpace(subnetId)) { parameters.SubnetId = subnetId; @@ -117,7 +122,7 @@ public RedisResource CreateCache(string resourceGroupName, string cacheName, str } public RedisResource UpdateCache(string resourceGroupName, string cacheName, string skuFamily, int skuCapacity, string skuName, - Hashtable redisConfiguration, bool? enableNonSslPort, Hashtable tenantSettings, int? shardCount, Hashtable tags) + Hashtable redisConfiguration, bool? enableNonSslPort, Hashtable tenantSettings, int? shardCount, string MinimumTlsVersion, Hashtable tags) { _resourceManagementClient.Providers.Register("Microsoft.Cache"); var parameters = new RedisUpdateParameters @@ -166,6 +171,11 @@ public RedisResource UpdateCache(string resourceGroupName, string cacheName, str } parameters.ShardCount = shardCount; + + if(!string.IsNullOrEmpty(MinimumTlsVersion)) + { + parameters.MinimumTlsVersion = MinimumTlsVersion; + } RedisResource response = _client.Redis.Update(resourceGroupName: resourceGroupName, name: cacheName, parameters: parameters); return response; diff --git a/src/RedisCache/RedisCache/RedisCache.csproj b/src/RedisCache/RedisCache/RedisCache.csproj index ed6ffd31cead..350912e77f6c 100644 --- a/src/RedisCache/RedisCache/RedisCache.csproj +++ b/src/RedisCache/RedisCache/RedisCache.csproj @@ -12,7 +12,7 @@ - + \ No newline at end of file diff --git a/src/RedisCache/RedisCache/RedisCache.format.ps1xml b/src/RedisCache/RedisCache/RedisCache.format.ps1xml index 625afc3387a6..bf180db44ec4 100644 --- a/src/RedisCache/RedisCache/RedisCache.format.ps1xml +++ b/src/RedisCache/RedisCache/RedisCache.format.ps1xml @@ -82,6 +82,10 @@ ShardCount + + + MinimumTlsVersion + Tag diff --git a/src/RedisCache/RedisCache/help/New-AzRedisCache.md b/src/RedisCache/RedisCache/help/New-AzRedisCache.md index b0e2225a4056..c28e1b25a996 100644 --- a/src/RedisCache/RedisCache/help/New-AzRedisCache.md +++ b/src/RedisCache/RedisCache/help/New-AzRedisCache.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.RedisCache.dll-Help.xml Module Name: Az.RedisCache ms.assetid: 81179AFE-6524-4F59-8BC2-3E152F51D1DD @@ -16,8 +16,9 @@ Creates a Redis Cache. ``` New-AzRedisCache -ResourceGroupName -Name -Location [-Size ] [-Sku ] [-RedisConfiguration ] [-EnableNonSslPort ] [-TenantSettings ] - [-ShardCount ] [-SubnetId ] [-StaticIP ] [-Tag ] [-Zone ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ShardCount ] [-MinimumTlsVersion ] [-SubnetId ] [-StaticIP ] + [-Tag ] [-Zone ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -141,6 +142,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -MinimumTlsVersion +Specify the TLS version required by clients to connect to cache. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name Specifies the name of the Redis Cache to create. @@ -413,7 +429,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/RedisCache/RedisCache/help/Set-AzRedisCache.md b/src/RedisCache/RedisCache/help/Set-AzRedisCache.md index 0626874b4932..bf06280e74f4 100644 --- a/src/RedisCache/RedisCache/help/Set-AzRedisCache.md +++ b/src/RedisCache/RedisCache/help/Set-AzRedisCache.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.RedisCache.dll-Help.xml Module Name: Az.RedisCache ms.assetid: 6234F211-6ED4-443F-9B83-DEB9AC51B763 @@ -16,8 +16,8 @@ Modifies a Redis Cache. ``` Set-AzRedisCache [-ResourceGroupName ] -Name [-Size ] [-Sku ] [-RedisConfiguration ] [-EnableNonSslPort ] [-TenantSettings ] - [-ShardCount ] [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-ShardCount ] [-MinimumTlsVersion ] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -84,6 +84,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -MinimumTlsVersion +Specify the TLS version required by clients to connect to cache. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name Specifies the name of the Redis Cache to update. @@ -302,7 +317,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS