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

com.azure.resourcemanager.billing.models.SavingsPlanUpdateRequest Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.billing.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;

/**
 * Savings plan patch request.
 */
@Fluent
public final class SavingsPlanUpdateRequest implements JsonSerializable {
    /*
     * Savings plan patch request
     */
    private SavingsPlanUpdateRequestProperties properties;

    /*
     * The SKU to be applied for this resource
     */
    private Sku sku;

    /*
     * Tags for this reservation
     */
    private Map tags;

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

    /**
     * Get the properties property: Savings plan patch request.
     * 
     * @return the properties value.
     */
    public SavingsPlanUpdateRequestProperties properties() {
        return this.properties;
    }

    /**
     * Set the properties property: Savings plan patch request.
     * 
     * @param properties the properties value to set.
     * @return the SavingsPlanUpdateRequest object itself.
     */
    public SavingsPlanUpdateRequest withProperties(SavingsPlanUpdateRequestProperties properties) {
        this.properties = properties;
        return this;
    }

    /**
     * Get the sku property: The SKU to be applied for this resource.
     * 
     * @return the sku value.
     */
    public Sku sku() {
        return this.sku;
    }

    /**
     * Set the sku property: The SKU to be applied for this resource.
     * 
     * @param sku the sku value to set.
     * @return the SavingsPlanUpdateRequest object itself.
     */
    public SavingsPlanUpdateRequest withSku(Sku sku) {
        this.sku = sku;
        return this;
    }

    /**
     * Get the tags property: Tags for this reservation.
     * 
     * @return the tags value.
     */
    public Map tags() {
        return this.tags;
    }

    /**
     * Set the tags property: Tags for this reservation.
     * 
     * @param tags the tags value to set.
     * @return the SavingsPlanUpdateRequest object itself.
     */
    public SavingsPlanUpdateRequest withTags(Map tags) {
        this.tags = tags;
        return this;
    }

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

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

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

                if ("properties".equals(fieldName)) {
                    deserializedSavingsPlanUpdateRequest.properties
                        = SavingsPlanUpdateRequestProperties.fromJson(reader);
                } else if ("sku".equals(fieldName)) {
                    deserializedSavingsPlanUpdateRequest.sku = Sku.fromJson(reader);
                } else if ("tags".equals(fieldName)) {
                    Map tags = reader.readMap(reader1 -> reader1.getString());
                    deserializedSavingsPlanUpdateRequest.tags = tags;
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedSavingsPlanUpdateRequest;
        });
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy