Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR sdk/redis/mgmt-v2018_03_01] remove premium SKU requirement for patch schedules #3538

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
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
public interface PatchSchedules extends SupportsCreating<RedisPatchSchedule.DefinitionStages.Blank>, HasInner<PatchSchedulesInner> {
/**
* Gets the patching schedule of a redis cache (requires Premium SKU).
* Gets the patching schedule of a redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the redis cache.
Expand All @@ -39,7 +39,7 @@ public interface PatchSchedules extends SupportsCreating<RedisPatchSchedule.Defi
Observable<RedisPatchSchedule> listByRedisResourceAsync(final String resourceGroupName, final String cacheName);

/**
* Deletes the patching schedule of a redis cache (requires Premium SKU).
* Deletes the patching schedule of a redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the redis cache.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import com.fasterxml.jackson.annotation.JsonProperty;

/**
* Patch schedule entry for a Premium Redis Cache.
* Patch schedule entry for a Redis Cache.
*/
public class ScheduleEntry {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ private ServiceResponse<PageImpl<RedisPatchScheduleInner>> listByRedisResourceDe
}

/**
* Create or replace the patching schedule for Redis cache (requires Premium SKU).
* Create or replace the patching schedule for Redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the Redis cache.
Expand All @@ -224,7 +224,7 @@ public RedisPatchScheduleInner createOrUpdate(String resourceGroupName, String n
}

/**
* Create or replace the patching schedule for Redis cache (requires Premium SKU).
* Create or replace the patching schedule for Redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the Redis cache.
Expand All @@ -238,7 +238,7 @@ public ServiceFuture<RedisPatchScheduleInner> createOrUpdateAsync(String resourc
}

/**
* Create or replace the patching schedule for Redis cache (requires Premium SKU).
* Create or replace the patching schedule for Redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the Redis cache.
Expand All @@ -256,7 +256,7 @@ public RedisPatchScheduleInner call(ServiceResponse<RedisPatchScheduleInner> res
}

/**
* Create or replace the patching schedule for Redis cache (requires Premium SKU).
* Create or replace the patching schedule for Redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the Redis cache.
Expand Down Expand Up @@ -307,7 +307,7 @@ private ServiceResponse<RedisPatchScheduleInner> createOrUpdateDelegate(Response
}

/**
* Deletes the patching schedule of a redis cache (requires Premium SKU).
* Deletes the patching schedule of a redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the redis cache.
Expand All @@ -320,7 +320,7 @@ public void delete(String resourceGroupName, String name) {
}

/**
* Deletes the patching schedule of a redis cache (requires Premium SKU).
* Deletes the patching schedule of a redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the redis cache.
Expand All @@ -333,7 +333,7 @@ public ServiceFuture<Void> deleteAsync(String resourceGroupName, String name, fi
}

/**
* Deletes the patching schedule of a redis cache (requires Premium SKU).
* Deletes the patching schedule of a redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the redis cache.
Expand All @@ -350,7 +350,7 @@ public Void call(ServiceResponse<Void> response) {
}

/**
* Deletes the patching schedule of a redis cache (requires Premium SKU).
* Deletes the patching schedule of a redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the redis cache.
Expand Down Expand Up @@ -394,7 +394,7 @@ private ServiceResponse<Void> deleteDelegate(Response<ResponseBody> response) th
}

/**
* Gets the patching schedule of a redis cache (requires Premium SKU).
* Gets the patching schedule of a redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the redis cache.
Expand All @@ -408,7 +408,7 @@ public RedisPatchScheduleInner get(String resourceGroupName, String name) {
}

/**
* Gets the patching schedule of a redis cache (requires Premium SKU).
* Gets the patching schedule of a redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the redis cache.
Expand All @@ -421,7 +421,7 @@ public ServiceFuture<RedisPatchScheduleInner> getAsync(String resourceGroupName,
}

/**
* Gets the patching schedule of a redis cache (requires Premium SKU).
* Gets the patching schedule of a redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the redis cache.
Expand All @@ -438,7 +438,7 @@ public RedisPatchScheduleInner call(ServiceResponse<RedisPatchScheduleInner> res
}

/**
* Gets the patching schedule of a redis cache (requires Premium SKU).
* Gets the patching schedule of a redis cache.
*
* @param resourceGroupName The name of the resource group.
* @param name The name of the redis cache.
Expand Down