All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.snowdrop.servicecatalog.api.model.ServiceInstanceStatus Maven / Gradle / Ivy

The newest version!

package me.snowdrop.servicecatalog.api.model;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Generated;
import javax.validation.Valid;
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({
    "asyncOpInProgress",
    "conditions",
    "currentOperation",
    "dashboardURL",
    "deprovisionStatus",
    "externalProperties",
    "inProgressProperties",
    "lastOperation",
    "observedGeneration",
    "operationStartTime",
    "orphanMitigationInProgress",
    "provisionStatus",
    "reconciledGeneration"
})
@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 ServiceInstanceStatus implements KubernetesResource
{

    /**
     * 
     * 
     */
    @JsonProperty("asyncOpInProgress")
    private Boolean asyncOpInProgress;
    /**
     * 
     * 
     */
    @JsonProperty("conditions")
    @Valid
    private List conditions = new ArrayList();
    /**
     * 
     * 
     */
    @JsonProperty("currentOperation")
    private String currentOperation;
    /**
     * 
     * 
     */
    @JsonProperty("dashboardURL")
    private String dashboardURL;
    /**
     * 
     * 
     */
    @JsonProperty("deprovisionStatus")
    private String deprovisionStatus;
    /**
     * 
     * 
     */
    @JsonProperty("externalProperties")
    @Valid
    private ServiceInstancePropertiesState externalProperties;
    /**
     * 
     * 
     */
    @JsonProperty("inProgressProperties")
    @Valid
    private ServiceInstancePropertiesState inProgressProperties;
    /**
     * 
     * 
     */
    @JsonProperty("lastOperation")
    private String lastOperation;
    /**
     * 
     * 
     */
    @JsonProperty("observedGeneration")
    private Long observedGeneration;
    /**
     * 
     * 
     */
    @JsonProperty("operationStartTime")
    @Valid
    private String operationStartTime;
    /**
     * 
     * 
     */
    @JsonProperty("orphanMitigationInProgress")
    private Boolean orphanMitigationInProgress;
    /**
     * 
     * 
     */
    @JsonProperty("provisionStatus")
    private String provisionStatus;
    /**
     * 
     * 
     */
    @JsonProperty("reconciledGeneration")
    private Long reconciledGeneration;
    @JsonIgnore
    private Map additionalProperties = new HashMap();

    /**
     * No args constructor for use in serialization
     * 
     */
    public ServiceInstanceStatus() {
    }

    /**
     * 
     * @param dashboardURL
     * @param orphanMitigationInProgress
     * @param externalProperties
     * @param operationStartTime
     * @param currentOperation
     * @param inProgressProperties
     * @param provisionStatus
     * @param asyncOpInProgress
     * @param reconciledGeneration
     * @param lastOperation
     * @param conditions
     * @param deprovisionStatus
     * @param observedGeneration
     */
    public ServiceInstanceStatus(Boolean asyncOpInProgress, List conditions, String currentOperation, String dashboardURL, String deprovisionStatus, ServiceInstancePropertiesState externalProperties, ServiceInstancePropertiesState inProgressProperties, String lastOperation, Long observedGeneration, String operationStartTime, Boolean orphanMitigationInProgress, String provisionStatus, Long reconciledGeneration) {
        this.asyncOpInProgress = asyncOpInProgress;
        this.conditions = conditions;
        this.currentOperation = currentOperation;
        this.dashboardURL = dashboardURL;
        this.deprovisionStatus = deprovisionStatus;
        this.externalProperties = externalProperties;
        this.inProgressProperties = inProgressProperties;
        this.lastOperation = lastOperation;
        this.observedGeneration = observedGeneration;
        this.operationStartTime = operationStartTime;
        this.orphanMitigationInProgress = orphanMitigationInProgress;
        this.provisionStatus = provisionStatus;
        this.reconciledGeneration = reconciledGeneration;
    }

    /**
     * 
     * 
     * @return
     *     The asyncOpInProgress
     */
    @JsonProperty("asyncOpInProgress")
    public Boolean getAsyncOpInProgress() {
        return asyncOpInProgress;
    }

    /**
     * 
     * 
     * @param asyncOpInProgress
     *     The asyncOpInProgress
     */
    @JsonProperty("asyncOpInProgress")
    public void setAsyncOpInProgress(Boolean asyncOpInProgress) {
        this.asyncOpInProgress = asyncOpInProgress;
    }

    /**
     * 
     * 
     * @return
     *     The conditions
     */
    @JsonProperty("conditions")
    public List getConditions() {
        return conditions;
    }

    /**
     * 
     * 
     * @param conditions
     *     The conditions
     */
    @JsonProperty("conditions")
    public void setConditions(List conditions) {
        this.conditions = conditions;
    }

    /**
     * 
     * 
     * @return
     *     The currentOperation
     */
    @JsonProperty("currentOperation")
    public String getCurrentOperation() {
        return currentOperation;
    }

    /**
     * 
     * 
     * @param currentOperation
     *     The currentOperation
     */
    @JsonProperty("currentOperation")
    public void setCurrentOperation(String currentOperation) {
        this.currentOperation = currentOperation;
    }

    /**
     * 
     * 
     * @return
     *     The dashboardURL
     */
    @JsonProperty("dashboardURL")
    public String getDashboardURL() {
        return dashboardURL;
    }

    /**
     * 
     * 
     * @param dashboardURL
     *     The dashboardURL
     */
    @JsonProperty("dashboardURL")
    public void setDashboardURL(String dashboardURL) {
        this.dashboardURL = dashboardURL;
    }

    /**
     * 
     * 
     * @return
     *     The deprovisionStatus
     */
    @JsonProperty("deprovisionStatus")
    public String getDeprovisionStatus() {
        return deprovisionStatus;
    }

    /**
     * 
     * 
     * @param deprovisionStatus
     *     The deprovisionStatus
     */
    @JsonProperty("deprovisionStatus")
    public void setDeprovisionStatus(String deprovisionStatus) {
        this.deprovisionStatus = deprovisionStatus;
    }

    /**
     * 
     * 
     * @return
     *     The externalProperties
     */
    @JsonProperty("externalProperties")
    public ServiceInstancePropertiesState getExternalProperties() {
        return externalProperties;
    }

    /**
     * 
     * 
     * @param externalProperties
     *     The externalProperties
     */
    @JsonProperty("externalProperties")
    public void setExternalProperties(ServiceInstancePropertiesState externalProperties) {
        this.externalProperties = externalProperties;
    }

    /**
     * 
     * 
     * @return
     *     The inProgressProperties
     */
    @JsonProperty("inProgressProperties")
    public ServiceInstancePropertiesState getInProgressProperties() {
        return inProgressProperties;
    }

    /**
     * 
     * 
     * @param inProgressProperties
     *     The inProgressProperties
     */
    @JsonProperty("inProgressProperties")
    public void setInProgressProperties(ServiceInstancePropertiesState inProgressProperties) {
        this.inProgressProperties = inProgressProperties;
    }

    /**
     * 
     * 
     * @return
     *     The lastOperation
     */
    @JsonProperty("lastOperation")
    public String getLastOperation() {
        return lastOperation;
    }

    /**
     * 
     * 
     * @param lastOperation
     *     The lastOperation
     */
    @JsonProperty("lastOperation")
    public void setLastOperation(String lastOperation) {
        this.lastOperation = lastOperation;
    }

    /**
     * 
     * 
     * @return
     *     The observedGeneration
     */
    @JsonProperty("observedGeneration")
    public Long getObservedGeneration() {
        return observedGeneration;
    }

    /**
     * 
     * 
     * @param observedGeneration
     *     The observedGeneration
     */
    @JsonProperty("observedGeneration")
    public void setObservedGeneration(Long observedGeneration) {
        this.observedGeneration = observedGeneration;
    }

    /**
     * 
     * 
     * @return
     *     The operationStartTime
     */
    @JsonProperty("operationStartTime")
    public String getOperationStartTime() {
        return operationStartTime;
    }

    /**
     * 
     * 
     * @param operationStartTime
     *     The operationStartTime
     */
    @JsonProperty("operationStartTime")
    public void setOperationStartTime(String operationStartTime) {
        this.operationStartTime = operationStartTime;
    }

    /**
     * 
     * 
     * @return
     *     The orphanMitigationInProgress
     */
    @JsonProperty("orphanMitigationInProgress")
    public Boolean getOrphanMitigationInProgress() {
        return orphanMitigationInProgress;
    }

    /**
     * 
     * 
     * @param orphanMitigationInProgress
     *     The orphanMitigationInProgress
     */
    @JsonProperty("orphanMitigationInProgress")
    public void setOrphanMitigationInProgress(Boolean orphanMitigationInProgress) {
        this.orphanMitigationInProgress = orphanMitigationInProgress;
    }

    /**
     * 
     * 
     * @return
     *     The provisionStatus
     */
    @JsonProperty("provisionStatus")
    public String getProvisionStatus() {
        return provisionStatus;
    }

    /**
     * 
     * 
     * @param provisionStatus
     *     The provisionStatus
     */
    @JsonProperty("provisionStatus")
    public void setProvisionStatus(String provisionStatus) {
        this.provisionStatus = provisionStatus;
    }

    /**
     * 
     * 
     * @return
     *     The reconciledGeneration
     */
    @JsonProperty("reconciledGeneration")
    public Long getReconciledGeneration() {
        return reconciledGeneration;
    }

    /**
     * 
     * 
     * @param reconciledGeneration
     *     The reconciledGeneration
     */
    @JsonProperty("reconciledGeneration")
    public void setReconciledGeneration(Long reconciledGeneration) {
        this.reconciledGeneration = reconciledGeneration;
    }

    @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