![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.compute.models.VirtualMachineSoftwarePatchProperties 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.Immutable;
import com.azure.core.util.CoreUtils;
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.time.OffsetDateTime;
import java.util.List;
/**
* Describes the properties of a Virtual Machine software patch.
*/
@Immutable
public final class VirtualMachineSoftwarePatchProperties
implements JsonSerializable {
/*
* A unique identifier for the patch.
*/
private String patchId;
/*
* The friendly name of the patch.
*/
private String name;
/*
* The version number of the patch. This property applies only to Linux patches.
*/
private String version;
/*
* The KBID of the patch. Only applies to Windows patches.
*/
private String kbId;
/*
* The classification(s) of the patch as provided by the patch publisher.
*/
private List classifications;
/*
* Describes the reboot requirements of the patch.
*/
private VMGuestPatchRebootBehavior rebootBehavior;
/*
* The activity ID of the operation that produced this result. It is used to correlate across CRP and extension
* logs.
*/
private String activityId;
/*
* The UTC timestamp when the repository published this patch.
*/
private OffsetDateTime publishedDate;
/*
* The UTC timestamp of the last update to this patch record.
*/
private OffsetDateTime lastModifiedDateTime;
/*
* Describes the availability of a given patch.
*/
private PatchAssessmentState assessmentState;
/**
* Creates an instance of VirtualMachineSoftwarePatchProperties class.
*/
public VirtualMachineSoftwarePatchProperties() {
}
/**
* Get the patchId property: A unique identifier for the patch.
*
* @return the patchId value.
*/
public String patchId() {
return this.patchId;
}
/**
* Get the name property: The friendly name of the patch.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Get the version property: The version number of the patch. This property applies only to Linux patches.
*
* @return the version value.
*/
public String version() {
return this.version;
}
/**
* Get the kbId property: The KBID of the patch. Only applies to Windows patches.
*
* @return the kbId value.
*/
public String kbId() {
return this.kbId;
}
/**
* Get the classifications property: The classification(s) of the patch as provided by the patch publisher.
*
* @return the classifications value.
*/
public List classifications() {
return this.classifications;
}
/**
* Get the rebootBehavior property: Describes the reboot requirements of the patch.
*
* @return the rebootBehavior value.
*/
public VMGuestPatchRebootBehavior rebootBehavior() {
return this.rebootBehavior;
}
/**
* Get the activityId property: The activity ID of the operation that produced this result. It is used to correlate
* across CRP and extension logs.
*
* @return the activityId value.
*/
public String activityId() {
return this.activityId;
}
/**
* Get the publishedDate property: The UTC timestamp when the repository published this patch.
*
* @return the publishedDate value.
*/
public OffsetDateTime publishedDate() {
return this.publishedDate;
}
/**
* Get the lastModifiedDateTime property: The UTC timestamp of the last update to this patch record.
*
* @return the lastModifiedDateTime value.
*/
public OffsetDateTime lastModifiedDateTime() {
return this.lastModifiedDateTime;
}
/**
* Get the assessmentState property: Describes the availability of a given patch.
*
* @return the assessmentState value.
*/
public PatchAssessmentState assessmentState() {
return this.assessmentState;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of VirtualMachineSoftwarePatchProperties from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of VirtualMachineSoftwarePatchProperties 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 VirtualMachineSoftwarePatchProperties.
*/
public static VirtualMachineSoftwarePatchProperties fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
VirtualMachineSoftwarePatchProperties deserializedVirtualMachineSoftwarePatchProperties
= new VirtualMachineSoftwarePatchProperties();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("patchId".equals(fieldName)) {
deserializedVirtualMachineSoftwarePatchProperties.patchId = reader.getString();
} else if ("name".equals(fieldName)) {
deserializedVirtualMachineSoftwarePatchProperties.name = reader.getString();
} else if ("version".equals(fieldName)) {
deserializedVirtualMachineSoftwarePatchProperties.version = reader.getString();
} else if ("kbId".equals(fieldName)) {
deserializedVirtualMachineSoftwarePatchProperties.kbId = reader.getString();
} else if ("classifications".equals(fieldName)) {
List classifications = reader.readArray(reader1 -> reader1.getString());
deserializedVirtualMachineSoftwarePatchProperties.classifications = classifications;
} else if ("rebootBehavior".equals(fieldName)) {
deserializedVirtualMachineSoftwarePatchProperties.rebootBehavior
= VMGuestPatchRebootBehavior.fromString(reader.getString());
} else if ("activityId".equals(fieldName)) {
deserializedVirtualMachineSoftwarePatchProperties.activityId = reader.getString();
} else if ("publishedDate".equals(fieldName)) {
deserializedVirtualMachineSoftwarePatchProperties.publishedDate = reader
.getNullable(nonNullReader -> CoreUtils.parseBestOffsetDateTime(nonNullReader.getString()));
} else if ("lastModifiedDateTime".equals(fieldName)) {
deserializedVirtualMachineSoftwarePatchProperties.lastModifiedDateTime = reader
.getNullable(nonNullReader -> CoreUtils.parseBestOffsetDateTime(nonNullReader.getString()));
} else if ("assessmentState".equals(fieldName)) {
deserializedVirtualMachineSoftwarePatchProperties.assessmentState
= PatchAssessmentState.fromString(reader.getString());
} else {
reader.skipChildren();
}
}
return deserializedVirtualMachineSoftwarePatchProperties;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy