io.alauda.kubernetes.api.model.ObjectReference Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.alauda.kubernetes.api.model.Doneable;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.Inline;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"apiVersion",
"kind",
"metadata",
"fieldPath",
"name",
"namespace",
"resourceVersion",
"uid"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.alauda.kubernetes.api.builder", inline = @Inline(type = Doneable.class, prefix = "Doneable", value = "done"))
public class ObjectReference implements KubernetesResource
{
/**
*
*
*/
@JsonProperty("apiVersion")
private String apiVersion;
/**
*
*
*/
@JsonProperty("fieldPath")
private String fieldPath;
/**
*
*
*/
@JsonProperty("kind")
private String kind;
/**
*
*
*/
@JsonProperty("name")
private String name;
/**
*
*
*/
@JsonProperty("namespace")
private String namespace;
/**
*
*
*/
@JsonProperty("resourceVersion")
private String resourceVersion;
/**
*
*
*/
@JsonProperty("uid")
private String uid;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public ObjectReference() {
}
/**
*
* @param uid
* @param apiVersion
* @param kind
* @param resourceVersion
* @param fieldPath
* @param name
* @param namespace
*/
public ObjectReference(String apiVersion, String fieldPath, String kind, String name, String namespace, String resourceVersion, String uid) {
this.apiVersion = apiVersion;
this.fieldPath = fieldPath;
this.kind = kind;
this.name = name;
this.namespace = namespace;
this.resourceVersion = resourceVersion;
this.uid = uid;
}
/**
*
*
* @return
* The apiVersion
*/
@JsonProperty("apiVersion")
public String getApiVersion() {
return apiVersion;
}
/**
*
*
* @param apiVersion
* The apiVersion
*/
@JsonProperty("apiVersion")
public void setApiVersion(String apiVersion) {
this.apiVersion = apiVersion;
}
/**
*
*
* @return
* The fieldPath
*/
@JsonProperty("fieldPath")
public String getFieldPath() {
return fieldPath;
}
/**
*
*
* @param fieldPath
* The fieldPath
*/
@JsonProperty("fieldPath")
public void setFieldPath(String fieldPath) {
this.fieldPath = fieldPath;
}
/**
*
*
* @return
* The kind
*/
@JsonProperty("kind")
public String getKind() {
return kind;
}
/**
*
*
* @param kind
* The kind
*/
@JsonProperty("kind")
public void setKind(String kind) {
this.kind = kind;
}
/**
*
*
* @return
* The name
*/
@JsonProperty("name")
public String getName() {
return name;
}
/**
*
*
* @param name
* The name
*/
@JsonProperty("name")
public void setName(String name) {
this.name = name;
}
/**
*
*
* @return
* The namespace
*/
@JsonProperty("namespace")
public String getNamespace() {
return namespace;
}
/**
*
*
* @param namespace
* The namespace
*/
@JsonProperty("namespace")
public void setNamespace(String namespace) {
this.namespace = namespace;
}
/**
*
*
* @return
* The resourceVersion
*/
@JsonProperty("resourceVersion")
public String getResourceVersion() {
return resourceVersion;
}
/**
*
*
* @param resourceVersion
* The resourceVersion
*/
@JsonProperty("resourceVersion")
public void setResourceVersion(String resourceVersion) {
this.resourceVersion = resourceVersion;
}
/**
*
*
* @return
* The uid
*/
@JsonProperty("uid")
public String getUid() {
return uid;
}
/**
*
*
* @param uid
* The uid
*/
@JsonProperty("uid")
public void setUid(String uid) {
this.uid = uid;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}