com.azure.resourcemanager.hybridcompute.models.OSProfile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hybridcompute Show documentation
Show all versions of azure-resourcemanager-hybridcompute Show documentation
This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-05.
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.hybridcompute.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;
/**
* Specifies the operating system settings for the hybrid machine.
*/
@Fluent
public final class OSProfile implements JsonSerializable {
/*
* Specifies the host OS name of the hybrid machine.
*/
private String computerName;
/*
* Specifies the windows configuration for update management.
*/
private OSProfileWindowsConfiguration windowsConfiguration;
/*
* Specifies the linux configuration for update management.
*/
private OSProfileLinuxConfiguration linuxConfiguration;
/**
* Creates an instance of OSProfile class.
*/
public OSProfile() {
}
/**
* Get the computerName property: Specifies the host OS name of the hybrid machine.
*
* @return the computerName value.
*/
public String computerName() {
return this.computerName;
}
/**
* Get the windowsConfiguration property: Specifies the windows configuration for update management.
*
* @return the windowsConfiguration value.
*/
public OSProfileWindowsConfiguration windowsConfiguration() {
return this.windowsConfiguration;
}
/**
* Set the windowsConfiguration property: Specifies the windows configuration for update management.
*
* @param windowsConfiguration the windowsConfiguration value to set.
* @return the OSProfile object itself.
*/
public OSProfile withWindowsConfiguration(OSProfileWindowsConfiguration windowsConfiguration) {
this.windowsConfiguration = windowsConfiguration;
return this;
}
/**
* Get the linuxConfiguration property: Specifies the linux configuration for update management.
*
* @return the linuxConfiguration value.
*/
public OSProfileLinuxConfiguration linuxConfiguration() {
return this.linuxConfiguration;
}
/**
* Set the linuxConfiguration property: Specifies the linux configuration for update management.
*
* @param linuxConfiguration the linuxConfiguration value to set.
* @return the OSProfile object itself.
*/
public OSProfile withLinuxConfiguration(OSProfileLinuxConfiguration linuxConfiguration) {
this.linuxConfiguration = linuxConfiguration;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (windowsConfiguration() != null) {
windowsConfiguration().validate();
}
if (linuxConfiguration() != null) {
linuxConfiguration().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeJsonField("windowsConfiguration", this.windowsConfiguration);
jsonWriter.writeJsonField("linuxConfiguration", this.linuxConfiguration);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of OSProfile from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of OSProfile 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 OSProfile.
*/
public static OSProfile fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
OSProfile deserializedOSProfile = new OSProfile();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("computerName".equals(fieldName)) {
deserializedOSProfile.computerName = reader.getString();
} else if ("windowsConfiguration".equals(fieldName)) {
deserializedOSProfile.windowsConfiguration = OSProfileWindowsConfiguration.fromJson(reader);
} else if ("linuxConfiguration".equals(fieldName)) {
deserializedOSProfile.linuxConfiguration = OSProfileLinuxConfiguration.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedOSProfile;
});
}
}