diff --git a/ChangeLog.txt b/ChangeLog.txt index 10bfe4d604ef..7a455382e713 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,6 +1,8 @@ 2015.07.16 version 0.9.5 * Azure RedisCache cmdlets - * Set-AzureRedisCache - Bug fix done in management API that fixes bug here as well + * Set-AzureRedisCache - Bug fix done in management API that fixes bug here as well, Make return type public + * New-AzureRedisCache - Make return type public + * Get-AzureRedisCache - Make return type public * Azure Network Resource Provider cmdlets * Added Application Gateway cmdlets * New-AzureApplicationGateway diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs index 32f600081fe0..3bff9915d4c4 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.RedisCache.Models using System.Collections; using System.Collections.Generic; - class RedisCacheAttributes + public class RedisCacheAttributes { public RedisCacheAttributes(RedisResource cache, string resourceGroupName) { diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs index 3fa29849efe1..ab28ef1c9e00 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Commands.RedisCache.Models { using Microsoft.Azure.Management.Redis.Models; - class RedisCacheAttributesWithAccessKeys : RedisCacheAttributes + public class RedisCacheAttributesWithAccessKeys : RedisCacheAttributes { public RedisCacheAttributesWithAccessKeys(RedisCreateOrUpdateResponse cache, string resourceGroupName) {