![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.compute.models.GalleryArtifactVersionFullSource 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.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* The source of the gallery artifact version.
*/
@Fluent
public final class GalleryArtifactVersionFullSource extends GalleryArtifactVersionSource {
/*
* The resource Id of the source Community Gallery Image. Only required when using Community Gallery Image as a
* source.
*/
private String communityGalleryImageId;
/*
* The resource Id of the source virtual machine. Only required when capturing a virtual machine to source this
* Gallery Image Version.
*/
private String virtualMachineId;
/**
* Creates an instance of GalleryArtifactVersionFullSource class.
*/
public GalleryArtifactVersionFullSource() {
}
/**
* Get the communityGalleryImageId property: The resource Id of the source Community Gallery Image. Only required
* when using Community Gallery Image as a source.
*
* @return the communityGalleryImageId value.
*/
public String communityGalleryImageId() {
return this.communityGalleryImageId;
}
/**
* Set the communityGalleryImageId property: The resource Id of the source Community Gallery Image. Only required
* when using Community Gallery Image as a source.
*
* @param communityGalleryImageId the communityGalleryImageId value to set.
* @return the GalleryArtifactVersionFullSource object itself.
*/
public GalleryArtifactVersionFullSource withCommunityGalleryImageId(String communityGalleryImageId) {
this.communityGalleryImageId = communityGalleryImageId;
return this;
}
/**
* Get the virtualMachineId property: The resource Id of the source virtual machine. Only required when capturing a
* virtual machine to source this Gallery Image Version.
*
* @return the virtualMachineId value.
*/
public String virtualMachineId() {
return this.virtualMachineId;
}
/**
* Set the virtualMachineId property: The resource Id of the source virtual machine. Only required when capturing a
* virtual machine to source this Gallery Image Version.
*
* @param virtualMachineId the virtualMachineId value to set.
* @return the GalleryArtifactVersionFullSource object itself.
*/
public GalleryArtifactVersionFullSource withVirtualMachineId(String virtualMachineId) {
this.virtualMachineId = virtualMachineId;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public GalleryArtifactVersionFullSource withId(String id) {
super.withId(id);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
super.validate();
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("id", id());
jsonWriter.writeStringField("communityGalleryImageId", this.communityGalleryImageId);
jsonWriter.writeStringField("virtualMachineId", this.virtualMachineId);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of GalleryArtifactVersionFullSource from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of GalleryArtifactVersionFullSource 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 GalleryArtifactVersionFullSource.
*/
public static GalleryArtifactVersionFullSource fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
GalleryArtifactVersionFullSource deserializedGalleryArtifactVersionFullSource
= new GalleryArtifactVersionFullSource();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedGalleryArtifactVersionFullSource.withId(reader.getString());
} else if ("communityGalleryImageId".equals(fieldName)) {
deserializedGalleryArtifactVersionFullSource.communityGalleryImageId = reader.getString();
} else if ("virtualMachineId".equals(fieldName)) {
deserializedGalleryArtifactVersionFullSource.virtualMachineId = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedGalleryArtifactVersionFullSource;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy