Skip to content

Commit 6d80faf

Browse files
author
Siddharth Chatrola
committed
Return type were internal making them public
1 parent 6c51fec commit 6d80faf

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

ChangeLog.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
2015.07.16 version 0.9.5
22
* Azure RedisCache cmdlets
3-
* Set-AzureRedisCache - Bug fix done in management API that fixes bug here as well
3+
* Set-AzureRedisCache - Bug fix done in management API that fixes bug here as well, Make return type public
4+
* New-AzureRedisCache - Make return type public
5+
* Get-AzureRedisCache - Make return type public
46
* Azure Network Resource Provider cmdlets
57
* Added Application Gateway cmdlets
68
* New-AzureApplicationGateway

src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.RedisCache.Models
1818
using System.Collections;
1919
using System.Collections.Generic;
2020

21-
class RedisCacheAttributes
21+
public class RedisCacheAttributes
2222
{
2323
public RedisCacheAttributes(RedisResource cache, string resourceGroupName)
2424
{

src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Microsoft.Azure.Commands.RedisCache.Models
1616
{
1717
using Microsoft.Azure.Management.Redis.Models;
1818

19-
class RedisCacheAttributesWithAccessKeys : RedisCacheAttributes
19+
public class RedisCacheAttributesWithAccessKeys : RedisCacheAttributes
2020
{
2121
public RedisCacheAttributesWithAccessKeys(RedisCreateOrUpdateResponse cache, string resourceGroupName)
2222
{

0 commit comments

Comments
 (0)