com.azure.resourcemanager.compute.models.GalleryImageVersionUpdate 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 com.azure.resourcemanager.compute.fluent.models.GalleryImageVersionProperties;
import java.io.IOException;
import java.util.Map;
/**
* Specifies information about the gallery image version that you want to update.
*/
@Fluent
public final class GalleryImageVersionUpdate extends UpdateResourceDefinition {
/*
* Describes the properties of a gallery image version.
*/
private GalleryImageVersionProperties innerProperties;
/*
* Fully qualified resource Id for the resource.
*/
private String id;
/*
* The name of the resource.
*/
private String name;
/*
* The type of the resource.
*/
private String type;
/**
* Creates an instance of GalleryImageVersionUpdate class.
*/
public GalleryImageVersionUpdate() {
}
/**
* Get the innerProperties property: Describes the properties of a gallery image version.
*
* @return the innerProperties value.
*/
private GalleryImageVersionProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
@Override
public String id() {
return this.id;
}
/**
* Get the name property: The name of the resource.
*
* @return the name value.
*/
@Override
public String name() {
return this.name;
}
/**
* Get the type property: The type of the resource.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* {@inheritDoc}
*/
@Override
public GalleryImageVersionUpdate withTags(Map tags) {
super.withTags(tags);
return this;
}
/**
* Get the publishingProfile property: The publishing profile of a gallery image Version.
*
* @return the publishingProfile value.
*/
public GalleryImageVersionPublishingProfile publishingProfile() {
return this.innerProperties() == null ? null : this.innerProperties().publishingProfile();
}
/**
* Set the publishingProfile property: The publishing profile of a gallery image Version.
*
* @param publishingProfile the publishingProfile value to set.
* @return the GalleryImageVersionUpdate object itself.
*/
public GalleryImageVersionUpdate withPublishingProfile(GalleryImageVersionPublishingProfile publishingProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new GalleryImageVersionProperties();
}
this.innerProperties().withPublishingProfile(publishingProfile);
return this;
}
/**
* Get the provisioningState property: The provisioning state, which only appears in the response.
*
* @return the provisioningState value.
*/
public GalleryProvisioningState provisioningState() {
return this.innerProperties() == null ? null : this.innerProperties().provisioningState();
}
/**
* Get the storageProfile property: This is the storage profile of a Gallery Image Version.
*
* @return the storageProfile value.
*/
public GalleryImageVersionStorageProfile storageProfile() {
return this.innerProperties() == null ? null : this.innerProperties().storageProfile();
}
/**
* Set the storageProfile property: This is the storage profile of a Gallery Image Version.
*
* @param storageProfile the storageProfile value to set.
* @return the GalleryImageVersionUpdate object itself.
*/
public GalleryImageVersionUpdate withStorageProfile(GalleryImageVersionStorageProfile storageProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new GalleryImageVersionProperties();
}
this.innerProperties().withStorageProfile(storageProfile);
return this;
}
/**
* Get the safetyProfile property: This is the safety profile of the Gallery Image Version.
*
* @return the safetyProfile value.
*/
public GalleryImageVersionSafetyProfile safetyProfile() {
return this.innerProperties() == null ? null : this.innerProperties().safetyProfile();
}
/**
* Set the safetyProfile property: This is the safety profile of the Gallery Image Version.
*
* @param safetyProfile the safetyProfile value to set.
* @return the GalleryImageVersionUpdate object itself.
*/
public GalleryImageVersionUpdate withSafetyProfile(GalleryImageVersionSafetyProfile safetyProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new GalleryImageVersionProperties();
}
this.innerProperties().withSafetyProfile(safetyProfile);
return this;
}
/**
* Get the replicationStatus property: This is the replication status of the gallery image version.
*
* @return the replicationStatus value.
*/
public ReplicationStatus replicationStatus() {
return this.innerProperties() == null ? null : this.innerProperties().replicationStatus();
}
/**
* Get the securityProfile property: The security profile of a gallery image version.
*
* @return the securityProfile value.
*/
public ImageVersionSecurityProfile securityProfile() {
return this.innerProperties() == null ? null : this.innerProperties().securityProfile();
}
/**
* Set the securityProfile property: The security profile of a gallery image version.
*
* @param securityProfile the securityProfile value to set.
* @return the GalleryImageVersionUpdate object itself.
*/
public GalleryImageVersionUpdate withSecurityProfile(ImageVersionSecurityProfile securityProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new GalleryImageVersionProperties();
}
this.innerProperties().withSecurityProfile(securityProfile);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
super.validate();
if (innerProperties() != null) {
innerProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeMapField("tags", tags(), (writer, element) -> writer.writeString(element));
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of GalleryImageVersionUpdate from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of GalleryImageVersionUpdate if the JsonReader was pointing to an instance of it, or null if
* it was pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the GalleryImageVersionUpdate.
*/
public static GalleryImageVersionUpdate fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
GalleryImageVersionUpdate deserializedGalleryImageVersionUpdate = new GalleryImageVersionUpdate();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedGalleryImageVersionUpdate.id = reader.getString();
} else if ("name".equals(fieldName)) {
deserializedGalleryImageVersionUpdate.name = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedGalleryImageVersionUpdate.type = reader.getString();
} else if ("tags".equals(fieldName)) {
Map tags = reader.readMap(reader1 -> reader1.getString());
deserializedGalleryImageVersionUpdate.withTags(tags);
} else if ("properties".equals(fieldName)) {
deserializedGalleryImageVersionUpdate.innerProperties
= GalleryImageVersionProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedGalleryImageVersionUpdate;
});
}
}