com.azure.resourcemanager.compute.fluent.models.SharedGalleryProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-compute Show documentation
Show all versions of azure-resourcemanager-compute Show documentation
This package contains Microsoft Azure Compute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.compute.fluent.models;
import com.azure.core.annotation.Immutable;
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;
/**
* Specifies the properties of a shared gallery.
*/
@Immutable
public final class SharedGalleryProperties implements JsonSerializable {
/*
* The artifact tags of a shared gallery resource.
*/
private Map artifactTags;
/**
* Creates an instance of SharedGalleryProperties class.
*/
public SharedGalleryProperties() {
}
/**
* Get the artifactTags property: The artifact tags of a shared gallery resource.
*
* @return the artifactTags value.
*/
public Map artifactTags() {
return this.artifactTags;
}
/**
* 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();
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of SharedGalleryProperties from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of SharedGalleryProperties 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 SharedGalleryProperties.
*/
public static SharedGalleryProperties fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
SharedGalleryProperties deserializedSharedGalleryProperties = new SharedGalleryProperties();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("artifactTags".equals(fieldName)) {
Map artifactTags = reader.readMap(reader1 -> reader1.getString());
deserializedSharedGalleryProperties.artifactTags = artifactTags;
} else {
reader.skipChildren();
}
}
return deserializedSharedGalleryProperties;
});
}
}