com.azure.resourcemanager.compute.models.DedicatedHostInstanceView 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.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;
import java.util.List;
/**
* The instance view of a dedicated host.
*/
@Fluent
public class DedicatedHostInstanceView implements JsonSerializable {
/*
* Specifies the unique id of the dedicated physical machine on which the dedicated host resides.
*/
private String assetId;
/*
* Unutilized capacity of the dedicated host.
*/
private DedicatedHostAvailableCapacity availableCapacity;
/*
* The resource status information.
*/
private List statuses;
/**
* Creates an instance of DedicatedHostInstanceView class.
*/
public DedicatedHostInstanceView() {
}
/**
* Get the assetId property: Specifies the unique id of the dedicated physical machine on which the dedicated host
* resides.
*
* @return the assetId value.
*/
public String assetId() {
return this.assetId;
}
/**
* Set the assetId property: Specifies the unique id of the dedicated physical machine on which the dedicated host
* resides.
*
* @param assetId the assetId value to set.
* @return the DedicatedHostInstanceView object itself.
*/
DedicatedHostInstanceView withAssetId(String assetId) {
this.assetId = assetId;
return this;
}
/**
* Get the availableCapacity property: Unutilized capacity of the dedicated host.
*
* @return the availableCapacity value.
*/
public DedicatedHostAvailableCapacity availableCapacity() {
return this.availableCapacity;
}
/**
* Set the availableCapacity property: Unutilized capacity of the dedicated host.
*
* @param availableCapacity the availableCapacity value to set.
* @return the DedicatedHostInstanceView object itself.
*/
public DedicatedHostInstanceView withAvailableCapacity(DedicatedHostAvailableCapacity availableCapacity) {
this.availableCapacity = availableCapacity;
return this;
}
/**
* Get the statuses property: The resource status information.
*
* @return the statuses value.
*/
public List statuses() {
return this.statuses;
}
/**
* Set the statuses property: The resource status information.
*
* @param statuses the statuses value to set.
* @return the DedicatedHostInstanceView object itself.
*/
public DedicatedHostInstanceView withStatuses(List statuses) {
this.statuses = statuses;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (availableCapacity() != null) {
availableCapacity().validate();
}
if (statuses() != null) {
statuses().forEach(e -> e.validate());
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeJsonField("availableCapacity", this.availableCapacity);
jsonWriter.writeArrayField("statuses", this.statuses, (writer, element) -> writer.writeJson(element));
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of DedicatedHostInstanceView from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of DedicatedHostInstanceView 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 DedicatedHostInstanceView.
*/
public static DedicatedHostInstanceView fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
DedicatedHostInstanceView deserializedDedicatedHostInstanceView = new DedicatedHostInstanceView();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("assetId".equals(fieldName)) {
deserializedDedicatedHostInstanceView.assetId = reader.getString();
} else if ("availableCapacity".equals(fieldName)) {
deserializedDedicatedHostInstanceView.availableCapacity
= DedicatedHostAvailableCapacity.fromJson(reader);
} else if ("statuses".equals(fieldName)) {
List statuses
= reader.readArray(reader1 -> InstanceViewStatus.fromJson(reader1));
deserializedDedicatedHostInstanceView.statuses = statuses;
} else {
reader.skipChildren();
}
}
return deserializedDedicatedHostInstanceView;
});
}
}