Skip to content
Closed
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
4 changes: 3 additions & 1 deletion ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down