com.azure.resourcemanager.redis.models.ScheduleEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-redis Show documentation
Show all versions of azure-resourcemanager-redis Show documentation
This package contains Microsoft Azure Redis Cache SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.redis.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.CoreUtils;
import com.azure.core.util.logging.ClientLogger;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.time.Duration;
/**
* Patch schedule entry for a Premium Redis Cache.
*/
@Fluent
public final class ScheduleEntry implements JsonSerializable {
/*
* Day of the week when a cache can be patched.
*/
private DayOfWeek dayOfWeek;
/*
* Start hour after which cache patching can start.
*/
private int startHourUtc;
/*
* ISO8601 timespan specifying how much time cache patching can take.
*/
private Duration maintenanceWindow;
/**
* Creates an instance of ScheduleEntry class.
*/
public ScheduleEntry() {
}
/**
* Get the dayOfWeek property: Day of the week when a cache can be patched.
*
* @return the dayOfWeek value.
*/
public DayOfWeek dayOfWeek() {
return this.dayOfWeek;
}
/**
* Set the dayOfWeek property: Day of the week when a cache can be patched.
*
* @param dayOfWeek the dayOfWeek value to set.
* @return the ScheduleEntry object itself.
*/
public ScheduleEntry withDayOfWeek(DayOfWeek dayOfWeek) {
this.dayOfWeek = dayOfWeek;
return this;
}
/**
* Get the startHourUtc property: Start hour after which cache patching can start.
*
* @return the startHourUtc value.
*/
public int startHourUtc() {
return this.startHourUtc;
}
/**
* Set the startHourUtc property: Start hour after which cache patching can start.
*
* @param startHourUtc the startHourUtc value to set.
* @return the ScheduleEntry object itself.
*/
public ScheduleEntry withStartHourUtc(int startHourUtc) {
this.startHourUtc = startHourUtc;
return this;
}
/**
* Get the maintenanceWindow property: ISO8601 timespan specifying how much time cache patching can take.
*
* @return the maintenanceWindow value.
*/
public Duration maintenanceWindow() {
return this.maintenanceWindow;
}
/**
* Set the maintenanceWindow property: ISO8601 timespan specifying how much time cache patching can take.
*
* @param maintenanceWindow the maintenanceWindow value to set.
* @return the ScheduleEntry object itself.
*/
public ScheduleEntry withMaintenanceWindow(Duration maintenanceWindow) {
this.maintenanceWindow = maintenanceWindow;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (dayOfWeek() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property dayOfWeek in model ScheduleEntry"));
}
}
private static final ClientLogger LOGGER = new ClientLogger(ScheduleEntry.class);
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("dayOfWeek", this.dayOfWeek == null ? null : this.dayOfWeek.toString());
jsonWriter.writeIntField("startHourUtc", this.startHourUtc);
jsonWriter.writeStringField("maintenanceWindow", CoreUtils.durationToStringWithDays(this.maintenanceWindow));
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of ScheduleEntry from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of ScheduleEntry if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the ScheduleEntry.
*/
public static ScheduleEntry fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
ScheduleEntry deserializedScheduleEntry = new ScheduleEntry();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("dayOfWeek".equals(fieldName)) {
deserializedScheduleEntry.dayOfWeek = DayOfWeek.fromString(reader.getString());
} else if ("startHourUtc".equals(fieldName)) {
deserializedScheduleEntry.startHourUtc = reader.getInt();
} else if ("maintenanceWindow".equals(fieldName)) {
deserializedScheduleEntry.maintenanceWindow
= reader.getNullable(nonNullReader -> Duration.parse(nonNullReader.getString()));
} else {
reader.skipChildren();
}
}
return deserializedScheduleEntry;
});
}
}