com.azure.resourcemanager.compute.fluent.models.UpgradeOperationHistoricalStatusInfoInner 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.Immutable;
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.UpgradeOperationHistoricalStatusInfoProperties;
import java.io.IOException;
/**
* Virtual Machine Scale Set OS Upgrade History operation response.
*/
@Immutable
public final class UpgradeOperationHistoricalStatusInfoInner
implements JsonSerializable {
/*
* Information about the properties of the upgrade operation.
*/
private UpgradeOperationHistoricalStatusInfoProperties properties;
/*
* Resource type
*/
private String type;
/*
* Resource location
*/
private String location;
/**
* Creates an instance of UpgradeOperationHistoricalStatusInfoInner class.
*/
public UpgradeOperationHistoricalStatusInfoInner() {
}
/**
* Get the properties property: Information about the properties of the upgrade operation.
*
* @return the properties value.
*/
public UpgradeOperationHistoricalStatusInfoProperties properties() {
return this.properties;
}
/**
* Get the type property: Resource type.
*
* @return the type value.
*/
public String type() {
return this.type;
}
/**
* Get the location property: Resource location.
*
* @return the location value.
*/
public String location() {
return this.location;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (properties() != null) {
properties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of UpgradeOperationHistoricalStatusInfoInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of UpgradeOperationHistoricalStatusInfoInner 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 UpgradeOperationHistoricalStatusInfoInner.
*/
public static UpgradeOperationHistoricalStatusInfoInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
UpgradeOperationHistoricalStatusInfoInner deserializedUpgradeOperationHistoricalStatusInfoInner
= new UpgradeOperationHistoricalStatusInfoInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("properties".equals(fieldName)) {
deserializedUpgradeOperationHistoricalStatusInfoInner.properties
= UpgradeOperationHistoricalStatusInfoProperties.fromJson(reader);
} else if ("type".equals(fieldName)) {
deserializedUpgradeOperationHistoricalStatusInfoInner.type = reader.getString();
} else if ("location".equals(fieldName)) {
deserializedUpgradeOperationHistoricalStatusInfoInner.location = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedUpgradeOperationHistoricalStatusInfoInner;
});
}
}