Skip to content

RedisCahe: Update NuGet dependency on management API #594

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 13, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
2015.07.16 version 0.9.5
* Azure RedisCache cmdlets
* Set-AzureRedisCache - Bug fix done in management API that fixes bug here as well
* Azure Network Resource Provider cmdlets
* Added Application Gateway cmdlets
* New-AzureApplicationGateway
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@
<Reference Include="Microsoft.Azure.Common.NetFramework">
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Azure.Management.Redis, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.0-preview\lib\net40\Microsoft.Azure.Management.Redis.dll</HintPath>
<Reference Include="Microsoft.Azure.Management.Redis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.1-preview\lib\net40\Microsoft.Azure.Management.Redis.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Azure.ResourceManager">
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath>
Expand Down Expand Up @@ -162,13 +163,16 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="SessionRecords\Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests\TestRedisCache.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="SessionRecords\Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests\TestRedisCachePipeline.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="SessionRecords\Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests\TestSetNonExistingRedisCacheTest.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="SessionRecords\Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests\TestSetRedisCacheBugFixTest.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,12 @@ public void TestRedisCachePipeline()
{
RunPowerShellTest("Test-RedisCachePipeline");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestSetRedisCacheBugFixTest()
{
RunPowerShellTest("Test-SetRedisCacheBugFixTest");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function Test-SetNonExistingRedisCacheTest
$location = "North Central US"

# Creating Cache
Assert-Throws {Set-AzureRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -MaxMemoryPolicy AllKeysLRU}
Assert-Throws {Set-AzureRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -RedisConfiguration @{"maxmemory-policy" = "allkeys-random"} }
}

<#
Expand Down Expand Up @@ -237,4 +237,25 @@ function Test-RedisCachePipeline

# Delete cache
Assert-True {Get-AzureRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName | Remove-AzureRedisCache -Force -PassThru} "Remove cache failed."
}

<#
.SYNOPSIS
Tests bug fix in set redis cache.
#>
function Test-SetRedisCacheBugFixTest
{
# Setup
# resource group should exists
$resourceGroupName = "Siddharth"
$cacheName = "siddharthchatrola"
$location = "North Central US"

# Updating Cache
$cacheUpdated = Set-AzureRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -EnableNonSslPort $true
Assert-True { $cacheUpdated.EnableNonSslPort }

$cacheUpdated2 = Set-AzureRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -RedisConfiguration @{"maxmemory-policy" = "allkeys-lru"}
Assert-AreEqual "allkeys-lru" $cacheUpdated2.RedisConfiguration.Item("maxmemory-policy")
Assert-True { $cacheUpdated2.EnableNonSslPort }
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,236 @@
{
"Entries": [
{
"RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"volatile-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"535"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
],
"Pragma": [
"no-cache"
],
"x-ms-request-id": [
"d34afb29-3727-40f2-bd5e-1a93e08c60ea"
],
"x-rp-server-mvid": [
"ab3b6d8f-58d8-4b26-88cf-56dfac613ddb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14902"
],
"x-ms-correlation-request-id": [
"dc991535-debb-470c-8fe6-4ec8e38ecefa"
],
"x-ms-routing-request-id": [
"NORTHCENTRALUS:20150713T215524Z:dc991535-debb-470c-8fe6-4ec8e38ecefa"
],
"Cache-Control": [
"no-cache"
],
"Date": [
"Mon, 13 Jul 2015 21:55:23 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"501"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
],
"Pragma": [
"no-cache"
],
"x-ms-request-id": [
"11090a79-684b-4dac-8dad-d686e7645e0b"
],
"x-rp-server-mvid": [
"ab3b6d8f-58d8-4b26-88cf-56dfac613ddb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14901"
],
"x-ms-correlation-request-id": [
"3612d84f-91dd-4a30-a0c2-e7cd9fdf5211"
],
"x-ms-routing-request-id": [
"NORTHCENTRALUS:20150713T215525Z:3612d84f-91dd-4a30-a0c2-e7cd9fdf5211"
],
"Cache-Control": [
"no-cache"
],
"Date": [
"Mon, 13 Jul 2015 21:55:25 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
],
"Content-Length": [
"228"
],
"User-Agent": [
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": {\r\n \"primaryKey\": \"82xerhg0P27QVoRKKEWb2XdLsemKyJ+Fe4BmlHhItS8=\",\r\n \"secondaryKey\": \"W9q9jLz3ICEys0a7ao7T673xQ+gxIhLZl0eBDO4YgG4=\"\r\n },\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"620"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
],
"Pragma": [
"no-cache"
],
"x-ms-request-id": [
"85dde2a3-eabd-4f95-ac46-f9fd973764e0"
],
"x-rp-server-mvid": [
"ab3b6d8f-58d8-4b26-88cf-56dfac613ddb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
"981c04ef-e83d-436a-bb27-d825eaa25bee"
],
"x-ms-routing-request-id": [
"NORTHCENTRALUS:20150713T215525Z:981c04ef-e83d-436a-bb27-d825eaa25bee"
],
"Cache-Control": [
"no-cache"
],
"Date": [
"Mon, 13 Jul 2015 21:55:24 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n }\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
],
"Content-Length": [
"275"
],
"User-Agent": [
"Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"82xerhg0P27QVoRKKEWb2XdLsemKyJ+Fe4BmlHhItS8=\",\r\n \"secondaryKey\": \"W9q9jLz3ICEys0a7ao7T673xQ+gxIhLZl0eBDO4YgG4=\"\r\n },\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"652"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
],
"Pragma": [
"no-cache"
],
"x-ms-request-id": [
"eaeff665-e073-44b2-b9cc-bc49a209369c"
],
"x-rp-server-mvid": [
"ab3b6d8f-58d8-4b26-88cf-56dfac613ddb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
"cbc65150-86a3-4b48-9577-fa6f89bcf69d"
],
"x-ms-routing-request-id": [
"NORTHCENTRALUS:20150713T215526Z:cbc65150-86a3-4b48-9577-fa6f89bcf69d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
"Mon, 13 Jul 2015 21:55:25 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
}
],
"Names": {},
"Variables": {
"SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" />
<package id="Microsoft.Azure.Common.Authentication" version="1.0.27-preview" targetFramework="net45" />
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
<package id="Microsoft.Azure.Management.Redis" version="1.0.1-preview" targetFramework="net45" />
<package id="Microsoft.Azure.Management.Resources" version="2.18.1-preview" targetFramework="net45" />
<package id="Microsoft.Azure.Test.Framework" version="1.0.5571.32271-prerelease" targetFramework="net45" />
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.0.5571.32271-prerelease" targetFramework="net45" />
<package id="Microsoft.Azure.Management.Redis" version="1.0.0-preview" targetFramework="net45" />
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />
<package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
<Reference Include="Microsoft.Azure.Common.NetFramework">
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Azure.Management.Redis, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="Microsoft.Azure.Management.Redis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.0-preview\lib\net40\Microsoft.Azure.Management.Redis.dll</HintPath>
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.1-preview\lib\net40\Microsoft.Azure.Management.Redis.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Azure.ResourceManager, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public RedisCacheAttributes(RedisResource cache, string resourceGroupName)
ProvisioningState = cache.Properties.ProvisioningState;
SslPort = cache.Properties.SslPort;
RedisConfiguration = cache.Properties.RedisConfiguration;
EnableNonSslPort = cache.Properties.EnableNonSslPort;
EnableNonSslPort = cache.Properties.EnableNonSslPort.Value;
RedisVersion = cache.Properties.RedisVersion;
Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Properties.Sku.Family, cache.Properties.Sku.Capacity);
Sku = cache.Properties.Sku.Name;
Expand All @@ -49,7 +49,7 @@ public RedisCacheAttributes(RedisGetResponse cache, string resourceGroupName)
ProvisioningState = cache.Resource.Properties.ProvisioningState;
SslPort = cache.Resource.Properties.SslPort;
RedisConfiguration = cache.Resource.Properties.RedisConfiguration;
EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort;
EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort.Value;
RedisVersion = cache.Resource.Properties.RedisVersion;
Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Resource.Properties.Sku.Family, cache.Resource.Properties.Sku.Capacity);
Sku = cache.Resource.Properties.Sku.Name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public RedisCacheAttributesWithAccessKeys(RedisCreateOrUpdateResponse cache, str
ProvisioningState = cache.Resource.Properties.ProvisioningState;
SslPort = cache.Resource.Properties.SslPort;
RedisConfiguration = cache.Resource.Properties.RedisConfiguration;
EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort;
EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort.Value;
RedisVersion = cache.Resource.Properties.RedisVersion;
Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Resource.Properties.Sku.Family, cache.Resource.Properties.Sku.Capacity);
Sku = cache.Resource.Properties.Sku.Name;
Expand Down
Loading