com.nutanix.dp1.pri.prism.v4.config.EntityReference Maven / Gradle / Ivy
/*
* Generated file ..
*
* Product version: 4.0.3-alpha-2
*
* Part of the Nutanix Prism Versioned APIs
*
* (c) 2023 Nutanix Inc. All rights reserved
*
*/
package com.nutanix.dp1.pri.prism.v4.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.pri.deserializers.PriObjectTypeTypedObject;
import javax.validation.constraints.*;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static com.nutanix.dp1.pri.deserializers.PriDeserializerUtils.*;
/**
* Details of the entity.
*/
@Data
@lombok.extern.slf4j.Slf4j
public class EntityReference implements java.io.Serializable, PriObjectTypeTypedObject {
public EntityReference() {
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 = "EntityReferenceBuilder")
public EntityReference(String extId, String rel) {
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.setExtId(extId);
this.setRel(rel);
}
protected String initialize$objectType() {
return "prism.v4.config.EntityReference";
}
protected String initialize$fqObjectType() {
return "prism.v4.r0.a2.config.EntityReference";
}
@JsonAnySetter
private void setUndeserializedFields(String name, String value) {
$unknownFields.put(name, value);
}
private String extId = null;
/**
* A globally unique identifier of the entity.
*/
public void setExtId(String extId) {
if (this.extId == null) {
this.extId = extId;
}
else {
log.warn("Read-only property extId already contains a non-null value and cannot be set again");
}
}
private String rel = null;
/**
* Entity type identified as 'namespace:module[:submodule]:entityType'. For example - vmm:ahv:vm, where vmm is the namepsace, ahv is the module and vm is the entitytype.
*/
public void setRel(String rel) {
if (this.rel == null) {
this.rel = rel;
}
else {
log.warn("Read-only property rel already contains a non-null value and cannot be set again");
}
}
@Getter
@JsonView({StandardView.class})
protected final Map $reserved;
@Getter
@JsonView({StandardView.class})
protected final String $objectType;
@Getter
@JsonView({StandardView.class})
protected final Map $unknownFields;
}