Skip to content

Commit 3cb95db

Browse files
committed
Merge branch 'release-0.9.5' of https://github.com/Azure/azure-powershell into dev
Conflicts: ChangeLog.txt
2 parents f48508d + 6d80faf commit 3cb95db

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

ChangeLog.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
2015.07.16 version 0.9.5
2-
* Azure RedisCache cmdlets
3-
* Set-AzureRedisCache - Bug fix done in management API that fixes bug here as well
42
* Azure SQL cmdlets
5-
* Allowing to use of Storage V2 accounts in Auditing policies
3+
* Allowing to use of Storage V2 accounts in Auditing policies
4+
* Azure RedisCache cmdlets
5+
* Set-AzureRedisCache - Bug fix done in management API that fixes bug here as well, Make return type public
6+
* New-AzureRedisCache - Make return type public
7+
* Get-AzureRedisCache - Make return type public
68
* Azure Network Resource Provider cmdlets
79
* Added Application Gateway cmdlets
810
* 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)