com.nutanix.dp1.net.common.v1.config.EntityReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of networking-java-client Show documentation
Show all versions of networking-java-client Show documentation
Manage networking configuration on Nutanix clusters, including AHV and advanced networking.
/*
* Generated file ..
*
* Product version: 4.0.1-alpha-1
*
* Part of the Nutanix Networking Versioned APIs
*
* (c) 2023 Nutanix Inc. All rights reserved
*
*/
package com.nutanix.dp1.net.common.v1.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.net.deserializers.NetObjectTypeTypedObject;
import javax.validation.constraints.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static com.nutanix.dp1.net.deserializers.NetDeserializerUtils.*;
@Data
@lombok.extern.slf4j.Slf4j
public class EntityReference implements java.io.Serializable, NetObjectTypeTypedObject {
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 name, java.util.List uris, com.nutanix.dp1.net.common.v1.config.EntityType entityType) {
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.setName(name);
this.setUris(uris);
this.setEntityType(entityType);
}
protected String initialize$objectType() {
return "common.v1.config.EntityReference";
}
protected String initialize$fqObjectType() {
return "common.v1.r0.a3.config.EntityReference";
}
@JsonAnySetter
private void setUndeserializedFields(String name, String value) {
$unknownFields.put(name, value);
}
/**
*
*/
@javax.validation.constraints.Pattern(regexp="^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$")
@JsonProperty("extId")
public String extId = null;
/**
*
*/
@JsonProperty("name")
public String name = null;
/**
*
*/
@JsonProperty("uris")
public List uris = null;
/**
*
*/
@JsonProperty("entityType")
public com.nutanix.dp1.net.common.v1.config.EntityType entityType = null;
@Getter
@JsonView({StandardView.class})
@JsonProperty("$reserved")
protected final Map $reserved;
@Getter
@JsonView({StandardView.class})
@JsonProperty("$objectType")
protected final String $objectType;
@Getter
@JsonView({StandardView.class})
@JsonProperty("$unknownFields")
protected final Map $unknownFields;
}