Skip to content

Commit

Permalink
[Ready for review] Redis Client implementation (#1057)
Browse files Browse the repository at this point in the history
* Added RedisCache to java SDKs
(cherry picked from commit 68a67414c2a288c11ee33886bb23a6311585506d)
* Fixed deserialization bug
* Redis Client implementation
* Regenerated Redis from fixed swagger
* Regenerated Redis with latest AutoRest
* Fixed checkstyle errors
* Regenerated Redis after PatchSchedue model fix in swagger
* Redis Patch Schedule implementation.
* Addressed review comments.
* Fixed review comments.
* Added annotations.
* Moved RedisAccessKeysImpl to package-internal class
  • Loading branch information
Hovsep authored Sep 20, 2016
1 parent ce9f538 commit 80e2202
Show file tree
Hide file tree
Showing 21 changed files with 1,594 additions and 52 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
*.class

#External libs
extlib/

# Auth files
*.auth
*.azureauth
Expand Down
6 changes: 6 additions & 0 deletions azure-mgmt-redis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@
<artifactId>api-annotations</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-mgmt-storage</artifactId>
<version>1.0.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/

package com.microsoft.azure.management.redis;

import com.microsoft.azure.management.apigeneration.LangDefinition;

/**
* The {@link RedisCache#keys} action result.
*/
@LangDefinition(ContainerName = "~/")
public interface RedisAccessKeys {
/**
* @return a primary key value.
*/
String primaryKey();

/**
* @return a secondary key value.
*/
String secondaryKey();
}
Loading

0 comments on commit 80e2202

Please sign in to comment.