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

com.azure.resourcemanager.hybridkubernetes.models.ConnectedClusterPatch Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for HybridKubernetes Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Hybrid Kubernetes Client. Package tag package-2021-10-01.

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.hybridkubernetes.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;

/**
 * Object containing updates for patch operations.
 */
@Fluent
public final class ConnectedClusterPatch implements JsonSerializable {
    /*
     * Resource tags.
     */
    private Map tags;

    /*
     * Describes the connected cluster resource properties that can be updated during PATCH operation.
     */
    private Object properties;

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

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

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

    /**
     * Get the properties property: Describes the connected cluster resource properties that can be updated during PATCH
     * operation.
     * 
     * @return the properties value.
     */
    public Object properties() {
        return this.properties;
    }

    /**
     * Set the properties property: Describes the connected cluster resource properties that can be updated during PATCH
     * operation.
     * 
     * @param properties the properties value to set.
     * @return the ConnectedClusterPatch object itself.
     */
    public ConnectedClusterPatch withProperties(Object properties) {
        this.properties = properties;
        return this;
    }

    /**
     * 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();
        jsonWriter.writeMapField("tags", this.tags, (writer, element) -> writer.writeString(element));
        jsonWriter.writeUntypedField("properties", this.properties);
        return jsonWriter.writeEndObject();
    }

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

                if ("tags".equals(fieldName)) {
                    Map tags = reader.readMap(reader1 -> reader1.getString());
                    deserializedConnectedClusterPatch.tags = tags;
                } else if ("properties".equals(fieldName)) {
                    deserializedConnectedClusterPatch.properties = reader.readUntyped();
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedConnectedClusterPatch;
        });
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy