![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.netapp.models.HourlySchedule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-netapp Show documentation
Show all versions of azure-resourcemanager-netapp Show documentation
This package contains Microsoft Azure SDK for NetAppFiles Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Microsoft NetApp Files Azure Resource Provider specification. Package tag package-preview-2024-07-01-preview.
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.netapp.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* Hourly Schedule properties.
*/
@Fluent
public final class HourlySchedule implements JsonSerializable {
/*
* Hourly snapshot count to keep
*/
private Integer snapshotsToKeep;
/*
* Indicates which minute snapshot should be taken
*/
private Integer minute;
/*
* Resource size in bytes, current storage usage for the volume in bytes
*/
private Long usedBytes;
/**
* Creates an instance of HourlySchedule class.
*/
public HourlySchedule() {
}
/**
* Get the snapshotsToKeep property: Hourly snapshot count to keep.
*
* @return the snapshotsToKeep value.
*/
public Integer snapshotsToKeep() {
return this.snapshotsToKeep;
}
/**
* Set the snapshotsToKeep property: Hourly snapshot count to keep.
*
* @param snapshotsToKeep the snapshotsToKeep value to set.
* @return the HourlySchedule object itself.
*/
public HourlySchedule withSnapshotsToKeep(Integer snapshotsToKeep) {
this.snapshotsToKeep = snapshotsToKeep;
return this;
}
/**
* Get the minute property: Indicates which minute snapshot should be taken.
*
* @return the minute value.
*/
public Integer minute() {
return this.minute;
}
/**
* Set the minute property: Indicates which minute snapshot should be taken.
*
* @param minute the minute value to set.
* @return the HourlySchedule object itself.
*/
public HourlySchedule withMinute(Integer minute) {
this.minute = minute;
return this;
}
/**
* Get the usedBytes property: Resource size in bytes, current storage usage for the volume in bytes.
*
* @return the usedBytes value.
*/
public Long usedBytes() {
return this.usedBytes;
}
/**
* Set the usedBytes property: Resource size in bytes, current storage usage for the volume in bytes.
*
* @param usedBytes the usedBytes value to set.
* @return the HourlySchedule object itself.
*/
public HourlySchedule withUsedBytes(Long usedBytes) {
this.usedBytes = usedBytes;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeNumberField("snapshotsToKeep", this.snapshotsToKeep);
jsonWriter.writeNumberField("minute", this.minute);
jsonWriter.writeNumberField("usedBytes", this.usedBytes);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of HourlySchedule from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of HourlySchedule if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IOException If an error occurs while reading the HourlySchedule.
*/
public static HourlySchedule fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
HourlySchedule deserializedHourlySchedule = new HourlySchedule();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("snapshotsToKeep".equals(fieldName)) {
deserializedHourlySchedule.snapshotsToKeep = reader.getNullable(JsonReader::getInt);
} else if ("minute".equals(fieldName)) {
deserializedHourlySchedule.minute = reader.getNullable(JsonReader::getInt);
} else if ("usedBytes".equals(fieldName)) {
deserializedHourlySchedule.usedBytes = reader.getNullable(JsonReader::getLong);
} else {
reader.skipChildren();
}
}
return deserializedHourlySchedule;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy