com.nutanix.dp1.vmm.vmm.v4.ahv.config.AssignVmOwnerResponse Maven / Gradle / Ivy
/*
* Generated file ..
*
* Product version: 4.0.3-alpha-1
*
* Part of the Nutanix Vmm Versioned APIs
*
* (c) 2023 Nutanix Inc. All rights reserved
*
*/
package com.nutanix.dp1.vmm.vmm.v4.ahv.config;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.AccessLevel;
import com.nutanix.devplatform.models.PrettyModeViews.*;
import com.fasterxml.jackson.annotation.JsonView;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.nutanix.dp1.vmm.deserializers.VmmObjectTypeTypedObject;
import javax.validation.constraints.*;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static com.nutanix.dp1.vmm.deserializers.VmmDeserializerUtils.*;
/**
* REST response for all response codes in API path /vmm/v4.0.a1/ahv/config/vms/{extId}/$actions/assign-owner Post operation
*/
@Data
@lombok.extern.slf4j.Slf4j
public class AssignVmOwnerResponse implements java.io.Serializable, VmmObjectTypeTypedObject {
public AssignVmOwnerResponse() {
this.$objectType = this.initialize$objectType();
this.$reserved = new java.util.LinkedHashMap<>();
this.$reserved.put("$fqObjectType", this.initialize$fqObjectType());
this.$unknownFields = new java.util.LinkedHashMap<>();
}
@lombok.Builder(builderMethodName = "AssignVmOwnerResponseBuilder")
public AssignVmOwnerResponse(com.nutanix.dp1.vmm.common.v1.response.ApiResponseMetadata metadata, Object data) {
this.$objectType = this.initialize$objectType();
this.$reserved = new java.util.LinkedHashMap<>();
this.$reserved.put("$fqObjectType", this.initialize$fqObjectType());
this.$unknownFields = new java.util.LinkedHashMap<>();
this.setMetadata(metadata);
this.setDataInWrapper(data);
}
protected String initialize$objectType() {
return "vmm.v4.ahv.config.AssignVmOwnerResponse";
}
protected String initialize$fqObjectType() {
return "vmm.v4.r0.a1.ahv.config.AssignVmOwnerResponse";
}
@JsonAnySetter
private void setUndeserializedFields(String name, String value) {
$unknownFields.put(name, value);
}
/**
*
*/
@JsonProperty("metadata")
public com.nutanix.dp1.vmm.common.v1.response.ApiResponseMetadata metadata = null;
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
@Getter
private String $dataItemDiscriminator = null;
@Data
@com.fasterxml.jackson.databind.annotation.JsonDeserialize(using = OneOfDataWrapper.OneOfDataWrapperJsonDeserializer.class)
public static class OneOfDataWrapper {
public OneOfDataWrapper() {
}
public OneOfDataWrapper(com.nutanix.dp1.vmm.prism.v4.config.TaskReference data) {
this.oneOfType2001 = data;
this.discriminator = data.get$objectType();
this.$objectType = data.get$objectType();
}
public OneOfDataWrapper(com.nutanix.dp1.vmm.vmm.v4.error.ErrorResponse data) {
this.oneOfType400 = data;
this.discriminator = data.get$objectType();
this.$objectType = data.get$objectType();
}
@com.nutanix.dp1.vmm.annotations.VmmJsonDeserializer
@org.springframework.stereotype.Component("com.nutanix.dp1.vmm.vmm.v4.ahv.config.AssignVmOwnerResponseJsonDeserializer")
private static class OneOfDataWrapperJsonDeserializer extends com.nutanix.dp1.vmm.deserializers.VmmOneOfDeserializer {
private static final com.fasterxml.jackson.databind.type.TypeFactory TYPE_FACTORY = com.fasterxml.jackson.databind.type.TypeFactory.defaultInstance();
private static final com.fasterxml.jackson.databind.JavaType ONE_OF_TYPE2001 = TYPE_FACTORY.constructType(com.nutanix.dp1.vmm.prism.v4.config.TaskReference.class);
private static final com.fasterxml.jackson.databind.JavaType ONE_OF_TYPE400 = TYPE_FACTORY.constructType(com.nutanix.dp1.vmm.vmm.v4.error.ErrorResponse.class);
public OneOfDataWrapperJsonDeserializer() {
super(TYPE_FACTORY.constructType(OneOfDataWrapper.class));
}
@Override
protected void setDataObject(OneOfDataWrapper oneOfObject, Object nestedObject) {
if (oneOfObject == null) {
throw new IllegalArgumentException("Instance of OneOfDataWrapper provided is null");
}
if(ONE_OF_TYPE2001.getRawClass().isAssignableFrom(nestedObject.getClass())) {
oneOfObject.setValue(nestedObject);
}
else if(ONE_OF_TYPE400.getRawClass().isAssignableFrom(nestedObject.getClass())) {
oneOfObject.setValue(nestedObject);
}
else {
throw new IllegalArgumentException("Attempting to set unsupported object type in OneOfDataWrapper:" + nestedObject.getClass().getName());
}
}
public String getPackagePrefix() {
return "com.nutanix.dp1.vmm";
}
}
@com.fasterxml.jackson.annotation.JsonIgnore
@lombok.Getter(lombok.AccessLevel.NONE)
@lombok.Setter(lombok.AccessLevel.NONE)
private com.nutanix.dp1.vmm.prism.v4.config.TaskReference oneOfType2001;
@com.fasterxml.jackson.annotation.JsonIgnore
@lombok.Getter(lombok.AccessLevel.NONE)
@lombok.Setter(lombok.AccessLevel.NONE)
private com.nutanix.dp1.vmm.vmm.v4.error.ErrorResponse oneOfType400;
@lombok.Setter(lombok.AccessLevel.NONE)
private String discriminator;
@com.fasterxml.jackson.annotation.JsonIgnore
@lombok.Setter(lombok.AccessLevel.NONE)
private String $objectType;
@com.fasterxml.jackson.annotation.JsonGetter
public Object getValue() {
if(oneOfType2001 != null && oneOfType2001.get$objectType().equals(this.discriminator)) {
return this.oneOfType2001;
}
if(oneOfType400 != null && oneOfType400.get$objectType().equals(this.discriminator)) {
return this.oneOfType400;
}
throw new IllegalArgumentException("Unrecognized discriminator:" + this.discriminator);
}
public void setValue(Object value) {
if(value == null) {
log.warn("null passed to setValue function. OneOf's value will not be set.");
return;
}
if(com.nutanix.dp1.vmm.prism.v4.config.TaskReference.class.getName().equals(value.getClass().getName())) {
this.oneOfType2001 = (com.nutanix.dp1.vmm.prism.v4.config.TaskReference) value;
this.discriminator = this.oneOfType2001.get$objectType();
this.$objectType = this.oneOfType2001.get$objectType();
return;
}
if(com.nutanix.dp1.vmm.vmm.v4.error.ErrorResponse.class.getName().equals(value.getClass().getName())) {
this.oneOfType400 = (com.nutanix.dp1.vmm.vmm.v4.error.ErrorResponse) value;
this.discriminator = this.oneOfType400.get$objectType();
this.$objectType = this.oneOfType400.get$objectType();
return;
}
throw new IllegalArgumentException("Attempting to set unsupported object type in OneOfDataWrapper:" + value.getClass().getName());
}
}
private OneOfDataWrapper data = null;
/**
* @deprecated
* @param value one of wrapper instance
*/
public void setData(OneOfDataWrapper value) {
log.warn("Deprecating this method, please use setDataInWrapper instead");
if (value == null) {
return;
}
this.data = value;
this.$dataItemDiscriminator = this.data.getDiscriminator();
}
/**
* @param value value of one of field data
*/
@com.fasterxml.jackson.annotation.JsonIgnore
public void setDataInWrapper(Object value) {
if (value == null) {
return;
}
if (this.data == null) {
this.data = new OneOfDataWrapper();
}
this.data.setValue(value);
this.$dataItemDiscriminator = this.data.getDiscriminator();
}
/**
* Get data in one of possible types :
*
* - com.nutanix.dp1.vmm.prism.v4.config.TaskReference
* - com.nutanix.dp1.vmm.vmm.v4.error.ErrorResponse
*
* @return Object
*/
@com.fasterxml.jackson.databind.annotation.JsonSerialize(using = com.nutanix.dp1.vmm.serializers.VmmOneOfSerializer.class)
public Object getData() {
if (this.data == null) {
log.debug("OneOf property data was never set. Returning null...");
return null;
}
return handleEtag(this.data.getValue(), this.get$reserved());
}
@Getter
@JsonView({StandardView.class})
protected final Map $reserved;
@Getter
@JsonView({StandardView.class})
protected final String $objectType;
@Getter
@JsonView({StandardView.class})
protected final Map $unknownFields;
}