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

com.spotinst.sdkjava.model.api.azure.elastiGroup.V3.Deployment.ApiGroupDeploymentDetailsAzure Maven / Gradle / Ivy

There is a newer version: 1.0.121
Show newest version
package com.spotinst.sdkjava.model.api.azure.elastiGroup.V3.Deployment;

import com.fasterxml.jackson.annotation.JsonFilter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.spotinst.sdkjava.client.rest.IPartialUpdateEntity;

import java.util.HashSet;
import java.util.List;
import java.util.Set;

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonFilter("PartialUpdateEntityFilter")
public class ApiGroupDeploymentDetailsAzure implements IPartialUpdateEntity {
    //region members
    @JsonIgnore
    private Set                          isSet;
    private ApiDeploymentDetailsOverviewAzure    detailsOverview;
    private List batches;
    private List events;
    //endregion

    //region constructor
    public ApiGroupDeploymentDetailsAzure() {
        isSet = new HashSet<>();
    }
    //endregion

    //region getters & setters
    @Override
    public Set getIsSet() {
        return isSet;
    }

    public ApiDeploymentDetailsOverviewAzure getDetailsOverview() {
        return detailsOverview;
    }

    public void setDetailsOverview(ApiDeploymentDetailsOverviewAzure detailsOverview) {
        this.detailsOverview = detailsOverview;
        touch("detailsOverview");
    }

    public List getBatches() {
        return batches;
    }

    public void setBatches(List batches) {
        this.batches = batches;
        touch("batches");
    }

    public List getEvents() {
        return events;
    }

    public void setEvents(List events) {
        this.events = events;
        touch("events");
    }
    //endregion

    //region isSet boolean methods
    @JsonIgnore
    public Boolean isDetailsOverviewSet() {
        return this.isSet.contains("detailsOverview");
    }
    @JsonIgnore
    public Boolean isBatchesSet() {
        return this.isSet.contains("batches");
    }
    @JsonIgnore
    public Boolean isEventsSet() {
        return this.isSet.contains("events");
    }
    //endregion

    //region private methods - touch helper
    private void touch(String fieldName) {
        this.isSet.add(fieldName);
    }
    //endregion

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy