com.microsoft.azure.management.redis.implementation.RedisPatchScheduleInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-redis Show documentation
Show all versions of azure-mgmt-redis Show documentation
This package contains Microsoft Azure Redis Cache SDK.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.redis.implementation;
import java.util.List;
import com.microsoft.azure.management.redis.ScheduleEntry;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
/**
* Response to put/get patch schedules for Redis cache.
*/
@JsonFlatten
public class RedisPatchScheduleInner extends ProxyResourceInner {
/**
* List of patch schedules for a Redis cache.
*/
@JsonProperty(value = "properties.scheduleEntries", required = true)
private List scheduleEntries;
/**
* Get the scheduleEntries value.
*
* @return the scheduleEntries value
*/
public List scheduleEntries() {
return this.scheduleEntries;
}
/**
* Set the scheduleEntries value.
*
* @param scheduleEntries the scheduleEntries value to set
* @return the RedisPatchScheduleInner object itself.
*/
public RedisPatchScheduleInner withScheduleEntries(List scheduleEntries) {
this.scheduleEntries = scheduleEntries;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy