![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.compute.fluent.models.RestorePointCollectionProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-compute Show documentation
Show all versions of azure-resourcemanager-compute Show documentation
This package contains Microsoft Azure Compute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.compute.fluent.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 com.azure.resourcemanager.compute.models.RestorePointCollectionSourceProperties;
import java.io.IOException;
import java.util.List;
/**
* The restore point collection properties.
*/
@Fluent
public final class RestorePointCollectionProperties implements JsonSerializable {
/*
* The properties of the source resource that this restore point collection is created from.
*/
private RestorePointCollectionSourceProperties source;
/*
* The provisioning state of the restore point collection.
*/
private String provisioningState;
/*
* The unique id of the restore point collection.
*/
private String restorePointCollectionId;
/*
* A list containing all restore points created under this restore point collection.
*/
private List restorePoints;
/**
* Creates an instance of RestorePointCollectionProperties class.
*/
public RestorePointCollectionProperties() {
}
/**
* Get the source property: The properties of the source resource that this restore point collection is created
* from.
*
* @return the source value.
*/
public RestorePointCollectionSourceProperties source() {
return this.source;
}
/**
* Set the source property: The properties of the source resource that this restore point collection is created
* from.
*
* @param source the source value to set.
* @return the RestorePointCollectionProperties object itself.
*/
public RestorePointCollectionProperties withSource(RestorePointCollectionSourceProperties source) {
this.source = source;
return this;
}
/**
* Get the provisioningState property: The provisioning state of the restore point collection.
*
* @return the provisioningState value.
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* Get the restorePointCollectionId property: The unique id of the restore point collection.
*
* @return the restorePointCollectionId value.
*/
public String restorePointCollectionId() {
return this.restorePointCollectionId;
}
/**
* Get the restorePoints property: A list containing all restore points created under this restore point collection.
*
* @return the restorePoints value.
*/
public List restorePoints() {
return this.restorePoints;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (source() != null) {
source().validate();
}
if (restorePoints() != null) {
restorePoints().forEach(e -> e.validate());
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeJsonField("source", this.source);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of RestorePointCollectionProperties from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of RestorePointCollectionProperties 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 RestorePointCollectionProperties.
*/
public static RestorePointCollectionProperties fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
RestorePointCollectionProperties deserializedRestorePointCollectionProperties
= new RestorePointCollectionProperties();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("source".equals(fieldName)) {
deserializedRestorePointCollectionProperties.source
= RestorePointCollectionSourceProperties.fromJson(reader);
} else if ("provisioningState".equals(fieldName)) {
deserializedRestorePointCollectionProperties.provisioningState = reader.getString();
} else if ("restorePointCollectionId".equals(fieldName)) {
deserializedRestorePointCollectionProperties.restorePointCollectionId = reader.getString();
} else if ("restorePoints".equals(fieldName)) {
List restorePoints
= reader.readArray(reader1 -> RestorePointInner.fromJson(reader1));
deserializedRestorePointCollectionProperties.restorePoints = restorePoints;
} else {
reader.skipChildren();
}
}
return deserializedRestorePointCollectionProperties;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy