From 6d80faf3a3cc20ab1ec3b959aca64361a4edcc4b Mon Sep 17 00:00:00 2001 From: Siddharth Chatrola Date: Wed, 15 Jul 2015 11:01:54 -0700 Subject: [PATCH] Return type were internal making them public --- ChangeLog.txt | 4 +++- .../Commands.RedisCache/Models/RedisCacheAttributes.cs | 2 +- .../Models/RedisCacheAttributesWithAccessKeys.cs | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) 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) {