Skip to content

Commit

Permalink
Regenerated Redis with latest fixes. (#445)
Browse files Browse the repository at this point in the history
* Regenerated Redis with latest fixes.

* fix for Azure/azure-libraries-for-net#305

* Fix for Azure/azure-libraries-for-net#304

* fix for Azure/azure-libraries-for-net#303

* Fixed build break

* commit of the current dev state

* Added comments.

* Fixed stylecheck errors.

* fix of the fix

* Fixed the fix of the fix

* Fix the build break.

* Fix for PatchSchedule failures

* fixed style check breaks

* Fixed LinkedServers.

* Fixed build breaks.

* Re-recorded redis Azure test

* re-recorded Redis sample

* Fixed Beta since text.
  • Loading branch information
hovsepm authored Jun 29, 2018
1 parent 0355275 commit b23aae4
Show file tree
Hide file tree
Showing 33 changed files with 15,301 additions and 4,040 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class CdnProfileImpl
@Override
public Map<String, CdnEndpoint> endpoints() {
// This is not right, The endpoints are not inline children of profile (hence they are
// not ached) but CdnEndpointsImpl today is deriving from ExternalChildResourceCachedImpl
// not cached) but CdnEndpointsImpl today is deriving from ExternalChildResourceCachedImpl
// instead it should derive from ExternalChildResourceNonCachedImpl
//
return this.endpoints.endpointsAsMap();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,25 @@
* Code generated by Microsoft (R) AutoRest Code Generator.
*/

package com.microsoft.azure.management.redis.implementation;
package com.microsoft.azure.management.redis;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
* Parameters body to pass for name availability check.
* Parameters body to pass for resource name availability check.
*/
public class CheckNameAvailabilityParametersInner {
public class CheckNameAvailabilityParameters {
/**
* Resource name.
*/
@JsonProperty(value = "name")
@JsonProperty(value = "name", required = true)
private String name;

/**
* Resource type.
* Resource type. The only legal value of this property for checking redis
* cache name availability is 'Microsoft.Cache/redis'.
*/
@JsonProperty(value = "type")
@JsonProperty(value = "type", required = true)
private String type;

/**
Expand All @@ -39,9 +40,9 @@ public String name() {
* Set the name value.
*
* @param name the name value to set
* @return the CheckNameAvailabilityParametersInner object itself.
* @return the CheckNameAvailabilityParameters object itself.
*/
public CheckNameAvailabilityParametersInner withName(String name) {
public CheckNameAvailabilityParameters withName(String name) {
this.name = name;
return this;
}
Expand All @@ -59,9 +60,9 @@ public String type() {
* Set the type value.
*
* @param type the type value to set
* @return the CheckNameAvailabilityParametersInner object itself.
* @return the CheckNameAvailabilityParameters object itself.
*/
public CheckNameAvailabilityParametersInner withType(String type) {
public CheckNameAvailabilityParameters withType(String type) {
this.type = type;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
* Code generated by Microsoft (R) AutoRest Code Generator.
*/

package com.microsoft.azure.management.redis.implementation;
package com.microsoft.azure.management.redis;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
* Parameters for Redis export operation.
*/
public class ExportRDBParametersInner {
public class ExportRDBParameters {
/**
* File format.
*/
Expand Down Expand Up @@ -45,9 +45,9 @@ public String format() {
* Set the format value.
*
* @param format the format value to set
* @return the ExportRDBParametersInner object itself.
* @return the ExportRDBParameters object itself.
*/
public ExportRDBParametersInner withFormat(String format) {
public ExportRDBParameters withFormat(String format) {
this.format = format;
return this;
}
Expand All @@ -65,9 +65,9 @@ public String prefix() {
* Set the prefix value.
*
* @param prefix the prefix value to set
* @return the ExportRDBParametersInner object itself.
* @return the ExportRDBParameters object itself.
*/
public ExportRDBParametersInner withPrefix(String prefix) {
public ExportRDBParameters withPrefix(String prefix) {
this.prefix = prefix;
return this;
}
Expand All @@ -85,9 +85,9 @@ public String container() {
* Set the container value.
*
* @param container the container value to set
* @return the ExportRDBParametersInner object itself.
* @return the ExportRDBParameters object itself.
*/
public ExportRDBParametersInner withContainer(String container) {
public ExportRDBParameters withContainer(String container) {
this.container = container;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
* Code generated by Microsoft (R) AutoRest Code Generator.
*/

package com.microsoft.azure.management.redis.implementation;
package com.microsoft.azure.management.redis;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
* Parameters for Redis import operation.
*/
public class ImportRDBParametersInner {
public class ImportRDBParameters {
/**
* File format.
*/
Expand All @@ -40,9 +40,9 @@ public String format() {
* Set the format value.
*
* @param format the format value to set
* @return the ImportRDBParametersInner object itself.
* @return the ImportRDBParameters object itself.
*/
public ImportRDBParametersInner withFormat(String format) {
public ImportRDBParameters withFormat(String format) {
this.format = format;
return this;
}
Expand All @@ -60,9 +60,9 @@ public List<String> files() {
* Set the files value.
*
* @param files the files value to set
* @return the ImportRDBParametersInner object itself.
* @return the ImportRDBParameters object itself.
*/
public ImportRDBParametersInner withFiles(List<String> files) {
public ImportRDBParameters withFiles(List<String> files) {
this.files = files;
return this;
}
Expand Down
Loading

0 comments on commit b23aae4

Please sign in to comment.