com.azure.resourcemanager.hdinsight.models.ClusterPatchParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hdinsight Show documentation
Show all versions of azure-resourcemanager-hdinsight Show documentation
This package contains Microsoft Azure SDK for HDInsight Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. HDInsight Management Client. Package tag package-2024-08-preview.
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.hdinsight.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;
/**
* The PatchCluster request parameters.
*/
@Fluent
public final class ClusterPatchParameters implements JsonSerializable {
/*
* The resource tags.
*/
private Map tags;
/*
* The identity of the cluster, if configured.
*/
private ClusterIdentity identity;
/**
* Creates an instance of ClusterPatchParameters class.
*/
public ClusterPatchParameters() {
}
/**
* Get the tags property: The resource tags.
*
* @return the tags value.
*/
public Map tags() {
return this.tags;
}
/**
* Set the tags property: The resource tags.
*
* @param tags the tags value to set.
* @return the ClusterPatchParameters object itself.
*/
public ClusterPatchParameters withTags(Map tags) {
this.tags = tags;
return this;
}
/**
* Get the identity property: The identity of the cluster, if configured.
*
* @return the identity value.
*/
public ClusterIdentity identity() {
return this.identity;
}
/**
* Set the identity property: The identity of the cluster, if configured.
*
* @param identity the identity value to set.
* @return the ClusterPatchParameters object itself.
*/
public ClusterPatchParameters withIdentity(ClusterIdentity identity) {
this.identity = identity;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (identity() != null) {
identity().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeMapField("tags", this.tags, (writer, element) -> writer.writeString(element));
jsonWriter.writeJsonField("identity", this.identity);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of ClusterPatchParameters from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of ClusterPatchParameters 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 ClusterPatchParameters.
*/
public static ClusterPatchParameters fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
ClusterPatchParameters deserializedClusterPatchParameters = new ClusterPatchParameters();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("tags".equals(fieldName)) {
Map tags = reader.readMap(reader1 -> reader1.getString());
deserializedClusterPatchParameters.tags = tags;
} else if ("identity".equals(fieldName)) {
deserializedClusterPatchParameters.identity = ClusterIdentity.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedClusterPatchParameters;
});
}
}