com.azure.resourcemanager.compute.models.CommunityGalleryImageIdentifier 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.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;
/**
* This is the community gallery image definition identifier.
*/
@Fluent
public final class CommunityGalleryImageIdentifier implements JsonSerializable {
/*
* The name of the gallery image definition publisher.
*/
private String publisher;
/*
* The name of the gallery image definition offer.
*/
private String offer;
/*
* The name of the gallery image definition SKU.
*/
private String sku;
/**
* Creates an instance of CommunityGalleryImageIdentifier class.
*/
public CommunityGalleryImageIdentifier() {
}
/**
* Get the publisher property: The name of the gallery image definition publisher.
*
* @return the publisher value.
*/
public String publisher() {
return this.publisher;
}
/**
* Set the publisher property: The name of the gallery image definition publisher.
*
* @param publisher the publisher value to set.
* @return the CommunityGalleryImageIdentifier object itself.
*/
public CommunityGalleryImageIdentifier withPublisher(String publisher) {
this.publisher = publisher;
return this;
}
/**
* Get the offer property: The name of the gallery image definition offer.
*
* @return the offer value.
*/
public String offer() {
return this.offer;
}
/**
* Set the offer property: The name of the gallery image definition offer.
*
* @param offer the offer value to set.
* @return the CommunityGalleryImageIdentifier object itself.
*/
public CommunityGalleryImageIdentifier withOffer(String offer) {
this.offer = offer;
return this;
}
/**
* Get the sku property: The name of the gallery image definition SKU.
*
* @return the sku value.
*/
public String sku() {
return this.sku;
}
/**
* Set the sku property: The name of the gallery image definition SKU.
*
* @param sku the sku value to set.
* @return the CommunityGalleryImageIdentifier object itself.
*/
public CommunityGalleryImageIdentifier withSku(String sku) {
this.sku = sku;
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.writeStringField("publisher", this.publisher);
jsonWriter.writeStringField("offer", this.offer);
jsonWriter.writeStringField("sku", this.sku);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of CommunityGalleryImageIdentifier from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of CommunityGalleryImageIdentifier 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 CommunityGalleryImageIdentifier.
*/
public static CommunityGalleryImageIdentifier fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
CommunityGalleryImageIdentifier deserializedCommunityGalleryImageIdentifier
= new CommunityGalleryImageIdentifier();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("publisher".equals(fieldName)) {
deserializedCommunityGalleryImageIdentifier.publisher = reader.getString();
} else if ("offer".equals(fieldName)) {
deserializedCommunityGalleryImageIdentifier.offer = reader.getString();
} else if ("sku".equals(fieldName)) {
deserializedCommunityGalleryImageIdentifier.sku = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedCommunityGalleryImageIdentifier;
});
}
}