All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.hybridcompute.models.MachineExtensionUpgrade Maven / Gradle / Ivy

Go to download

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;
import java.util.Map;

/**
 * Describes the Machine Extension Upgrade Properties.
 */
@Fluent
public final class MachineExtensionUpgrade implements JsonSerializable {
    /*
     * Describes the Extension Target Properties.
     */
    private Map extensionTargets;

    /**
     * Creates an instance of MachineExtensionUpgrade class.
     */
    public MachineExtensionUpgrade() {
    }

    /**
     * Get the extensionTargets property: Describes the Extension Target Properties.
     * 
     * @return the extensionTargets value.
     */
    public Map extensionTargets() {
        return this.extensionTargets;
    }

    /**
     * Set the extensionTargets property: Describes the Extension Target Properties.
     * 
     * @param extensionTargets the extensionTargets value to set.
     * @return the MachineExtensionUpgrade object itself.
     */
    public MachineExtensionUpgrade withExtensionTargets(Map extensionTargets) {
        this.extensionTargets = extensionTargets;
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (extensionTargets() != null) {
            extensionTargets().values().forEach(e -> {
                if (e != null) {
                    e.validate();
                }
            });
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        jsonWriter.writeMapField("extensionTargets", this.extensionTargets,
            (writer, element) -> writer.writeJson(element));
        return jsonWriter.writeEndObject();
    }

    /**
     * Reads an instance of MachineExtensionUpgrade from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of MachineExtensionUpgrade 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 MachineExtensionUpgrade.
     */
    public static MachineExtensionUpgrade fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            MachineExtensionUpgrade deserializedMachineExtensionUpgrade = new MachineExtensionUpgrade();
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("extensionTargets".equals(fieldName)) {
                    Map extensionTargets
                        = reader.readMap(reader1 -> ExtensionTargetProperties.fromJson(reader1));
                    deserializedMachineExtensionUpgrade.extensionTargets = extensionTargets;
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedMachineExtensionUpgrade;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy