com.azure.resourcemanager.dataprotection.models.BackupSchedule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-dataprotection Show documentation
Show all versions of azure-resourcemanager-dataprotection Show documentation
This package contains Microsoft Azure SDK for DataProtection Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Open API 2.0 Specs for Azure Data Protection service. Package tag package-2024-04.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.dataprotection.models;
import com.azure.core.annotation.Fluent;
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.util.List;
/**
* BackupSchedule
*
* Schedule for backup.
*/
@Fluent
public final class BackupSchedule implements JsonSerializable {
/*
* ISO 8601 repeating time interval format
*/
private List repeatingTimeIntervals;
/*
* Time zone for a schedule. Example: Pacific Standard Time
*/
private String timeZone;
/**
* Creates an instance of BackupSchedule class.
*/
public BackupSchedule() {
}
/**
* Get the repeatingTimeIntervals property: ISO 8601 repeating time interval format.
*
* @return the repeatingTimeIntervals value.
*/
public List repeatingTimeIntervals() {
return this.repeatingTimeIntervals;
}
/**
* Set the repeatingTimeIntervals property: ISO 8601 repeating time interval format.
*
* @param repeatingTimeIntervals the repeatingTimeIntervals value to set.
* @return the BackupSchedule object itself.
*/
public BackupSchedule withRepeatingTimeIntervals(List repeatingTimeIntervals) {
this.repeatingTimeIntervals = repeatingTimeIntervals;
return this;
}
/**
* Get the timeZone property: Time zone for a schedule. Example: Pacific Standard Time.
*
* @return the timeZone value.
*/
public String timeZone() {
return this.timeZone;
}
/**
* Set the timeZone property: Time zone for a schedule. Example: Pacific Standard Time.
*
* @param timeZone the timeZone value to set.
* @return the BackupSchedule object itself.
*/
public BackupSchedule withTimeZone(String timeZone) {
this.timeZone = timeZone;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (repeatingTimeIntervals() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException(
"Missing required property repeatingTimeIntervals in model BackupSchedule"));
}
}
private static final ClientLogger LOGGER = new ClientLogger(BackupSchedule.class);
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeArrayField("repeatingTimeIntervals", this.repeatingTimeIntervals,
(writer, element) -> writer.writeString(element));
jsonWriter.writeStringField("timeZone", this.timeZone);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of BackupSchedule from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of BackupSchedule 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 BackupSchedule.
*/
public static BackupSchedule fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
BackupSchedule deserializedBackupSchedule = new BackupSchedule();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("repeatingTimeIntervals".equals(fieldName)) {
List repeatingTimeIntervals = reader.readArray(reader1 -> reader1.getString());
deserializedBackupSchedule.repeatingTimeIntervals = repeatingTimeIntervals;
} else if ("timeZone".equals(fieldName)) {
deserializedBackupSchedule.timeZone = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedBackupSchedule;
});
}
}