com.azure.resourcemanager.compute.models.VirtualMachineInstallPatchesParameters 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.core.util.logging.ClientLogger;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* Input for InstallPatches as directly received by the API.
*/
@Fluent
public final class VirtualMachineInstallPatchesParameters
implements JsonSerializable {
/*
* Specifies the maximum amount of time that the operation will run. It must be an ISO 8601-compliant duration
* string such as PT4H (4 hours)
*/
private String maximumDuration;
/*
* Defines when it is acceptable to reboot a VM during a software update operation.
*/
private VMGuestPatchRebootSetting rebootSetting;
/*
* Input for InstallPatches on a Windows VM, as directly received by the API
*/
private WindowsParameters windowsParameters;
/*
* Input for InstallPatches on a Linux VM, as directly received by the API
*/
private LinuxParameters linuxParameters;
/**
* Creates an instance of VirtualMachineInstallPatchesParameters class.
*/
public VirtualMachineInstallPatchesParameters() {
}
/**
* Get the maximumDuration property: Specifies the maximum amount of time that the operation will run. It must be an
* ISO 8601-compliant duration string such as PT4H (4 hours).
*
* @return the maximumDuration value.
*/
public String maximumDuration() {
return this.maximumDuration;
}
/**
* Set the maximumDuration property: Specifies the maximum amount of time that the operation will run. It must be an
* ISO 8601-compliant duration string such as PT4H (4 hours).
*
* @param maximumDuration the maximumDuration value to set.
* @return the VirtualMachineInstallPatchesParameters object itself.
*/
public VirtualMachineInstallPatchesParameters withMaximumDuration(String maximumDuration) {
this.maximumDuration = maximumDuration;
return this;
}
/**
* Get the rebootSetting property: Defines when it is acceptable to reboot a VM during a software update operation.
*
* @return the rebootSetting value.
*/
public VMGuestPatchRebootSetting rebootSetting() {
return this.rebootSetting;
}
/**
* Set the rebootSetting property: Defines when it is acceptable to reboot a VM during a software update operation.
*
* @param rebootSetting the rebootSetting value to set.
* @return the VirtualMachineInstallPatchesParameters object itself.
*/
public VirtualMachineInstallPatchesParameters withRebootSetting(VMGuestPatchRebootSetting rebootSetting) {
this.rebootSetting = rebootSetting;
return this;
}
/**
* Get the windowsParameters property: Input for InstallPatches on a Windows VM, as directly received by the API.
*
* @return the windowsParameters value.
*/
public WindowsParameters windowsParameters() {
return this.windowsParameters;
}
/**
* Set the windowsParameters property: Input for InstallPatches on a Windows VM, as directly received by the API.
*
* @param windowsParameters the windowsParameters value to set.
* @return the VirtualMachineInstallPatchesParameters object itself.
*/
public VirtualMachineInstallPatchesParameters withWindowsParameters(WindowsParameters windowsParameters) {
this.windowsParameters = windowsParameters;
return this;
}
/**
* Get the linuxParameters property: Input for InstallPatches on a Linux VM, as directly received by the API.
*
* @return the linuxParameters value.
*/
public LinuxParameters linuxParameters() {
return this.linuxParameters;
}
/**
* Set the linuxParameters property: Input for InstallPatches on a Linux VM, as directly received by the API.
*
* @param linuxParameters the linuxParameters value to set.
* @return the VirtualMachineInstallPatchesParameters object itself.
*/
public VirtualMachineInstallPatchesParameters withLinuxParameters(LinuxParameters linuxParameters) {
this.linuxParameters = linuxParameters;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (rebootSetting() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException(
"Missing required property rebootSetting in model VirtualMachineInstallPatchesParameters"));
}
if (windowsParameters() != null) {
windowsParameters().validate();
}
if (linuxParameters() != null) {
linuxParameters().validate();
}
}
private static final ClientLogger LOGGER = new ClientLogger(VirtualMachineInstallPatchesParameters.class);
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("rebootSetting", this.rebootSetting == null ? null : this.rebootSetting.toString());
jsonWriter.writeStringField("maximumDuration", this.maximumDuration);
jsonWriter.writeJsonField("windowsParameters", this.windowsParameters);
jsonWriter.writeJsonField("linuxParameters", this.linuxParameters);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of VirtualMachineInstallPatchesParameters from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of VirtualMachineInstallPatchesParameters if the JsonReader was pointing to an instance of
* it, or null if it was pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the VirtualMachineInstallPatchesParameters.
*/
public static VirtualMachineInstallPatchesParameters fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
VirtualMachineInstallPatchesParameters deserializedVirtualMachineInstallPatchesParameters
= new VirtualMachineInstallPatchesParameters();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("rebootSetting".equals(fieldName)) {
deserializedVirtualMachineInstallPatchesParameters.rebootSetting
= VMGuestPatchRebootSetting.fromString(reader.getString());
} else if ("maximumDuration".equals(fieldName)) {
deserializedVirtualMachineInstallPatchesParameters.maximumDuration = reader.getString();
} else if ("windowsParameters".equals(fieldName)) {
deserializedVirtualMachineInstallPatchesParameters.windowsParameters
= WindowsParameters.fromJson(reader);
} else if ("linuxParameters".equals(fieldName)) {
deserializedVirtualMachineInstallPatchesParameters.linuxParameters
= LinuxParameters.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedVirtualMachineInstallPatchesParameters;
});
}
}