me.snowdrop.servicecatalog.api.model.AddKeyTransform Maven / Gradle / Ivy
The newest version!
package me.snowdrop.servicecatalog.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.fabric8.kubernetes.api.model.Doneable;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import io.sundr.builder.annotations.Inline;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"jsonPathExpression",
"key",
"stringValue",
"value"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = true, generateBuilderPackage = false, builderPackage = "io.fabric8.kubernetes.api.builder", inline = {
@Inline(type = Doneable.class, prefix = "Doneable", value = "done")
}, refs = {
@BuildableReference(ObjectMeta.class)
})
public class AddKeyTransform implements KubernetesResource
{
/**
*
*
*/
@JsonProperty("jsonPathExpression")
private String jsonPathExpression;
/**
*
*
*/
@JsonProperty("key")
private String key;
/**
*
*
*/
@JsonProperty("stringValue")
private String stringValue;
/**
*
*
*/
@JsonProperty("value")
private String value;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public AddKeyTransform() {
}
/**
*
* @param stringValue
* @param jsonPathExpression
* @param value
* @param key
*/
public AddKeyTransform(String jsonPathExpression, String key, String stringValue, String value) {
this.jsonPathExpression = jsonPathExpression;
this.key = key;
this.stringValue = stringValue;
this.value = value;
}
/**
*
*
* @return
* The jsonPathExpression
*/
@JsonProperty("jsonPathExpression")
public String getJsonPathExpression() {
return jsonPathExpression;
}
/**
*
*
* @param jsonPathExpression
* The jsonPathExpression
*/
@JsonProperty("jsonPathExpression")
public void setJsonPathExpression(String jsonPathExpression) {
this.jsonPathExpression = jsonPathExpression;
}
/**
*
*
* @return
* The key
*/
@JsonProperty("key")
public String getKey() {
return key;
}
/**
*
*
* @param key
* The key
*/
@JsonProperty("key")
public void setKey(String key) {
this.key = key;
}
/**
*
*
* @return
* The stringValue
*/
@JsonProperty("stringValue")
public String getStringValue() {
return stringValue;
}
/**
*
*
* @param stringValue
* The stringValue
*/
@JsonProperty("stringValue")
public void setStringValue(String stringValue) {
this.stringValue = stringValue;
}
/**
*
*
* @return
* The value
*/
@JsonProperty("value")
public String getValue() {
return value;
}
/**
*
*
* @param value
* The value
*/
@JsonProperty("value")
public void setValue(String value) {
this.value = value;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy