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

com.azure.resourcemanager.automation.models.DscNodeUpdateParametersProperties Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for Automation Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Automation Client. Package tag package-2022-02-22.

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.automation.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 com.azure.resourcemanager.automation.fluent.models.DscNodeConfigurationAssociationProperty;
import java.io.IOException;

/**
 * The DscNodeUpdateParametersProperties model.
 */
@Fluent
public final class DscNodeUpdateParametersProperties implements JsonSerializable {
    /*
     * Gets or sets the configuration of the node.
     */
    private DscNodeConfigurationAssociationProperty innerNodeConfiguration;

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

    /**
     * Get the innerNodeConfiguration property: Gets or sets the configuration of the node.
     * 
     * @return the innerNodeConfiguration value.
     */
    private DscNodeConfigurationAssociationProperty innerNodeConfiguration() {
        return this.innerNodeConfiguration;
    }

    /**
     * Get the name property: Gets or sets the name of the dsc node configuration.
     * 
     * @return the name value.
     */
    public String name() {
        return this.innerNodeConfiguration() == null ? null : this.innerNodeConfiguration().name();
    }

    /**
     * Set the name property: Gets or sets the name of the dsc node configuration.
     * 
     * @param name the name value to set.
     * @return the DscNodeUpdateParametersProperties object itself.
     */
    public DscNodeUpdateParametersProperties withName(String name) {
        if (this.innerNodeConfiguration() == null) {
            this.innerNodeConfiguration = new DscNodeConfigurationAssociationProperty();
        }
        this.innerNodeConfiguration().withName(name);
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (innerNodeConfiguration() != null) {
            innerNodeConfiguration().validate();
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        jsonWriter.writeJsonField("nodeConfiguration", this.innerNodeConfiguration);
        return jsonWriter.writeEndObject();
    }

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

                if ("nodeConfiguration".equals(fieldName)) {
                    deserializedDscNodeUpdateParametersProperties.innerNodeConfiguration
                        = DscNodeConfigurationAssociationProperty.fromJson(reader);
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedDscNodeUpdateParametersProperties;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy