com.spotinst.sdkjava.model.ElastigroupLaunchSpecification Maven / Gradle / Ivy
package com.spotinst.sdkjava.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
/**
* Created by aharontwizer on 8/24/15.
*/
public class ElastigroupLaunchSpecification {
//region Members
@JsonIgnore
private Set isSet;
private String healthCheckType;
private Integer healthCheckGracePeriod;
private List securityGroupIds;
private Boolean detailedMonitoring;
private Boolean ebsOptimized;
private String imageId;
private String keyPair;
private String userData;
private Integer healthCheckUnhealthyDurationBeforeReplacement;
private IamRole iamRole;
private List networkInterfaces;
private List tags;
private GroupResourceTagSpecification resourceTagSpecification;
private List blockDeviceMappings;
private LoadBalancersConfig loadBalancersConfig;
private ElastigroupItf itf;
//endregion
//region Constructor
private ElastigroupLaunchSpecification() {
isSet = new HashSet<>();
}
//endregion
//region Getters & Setters
public GroupResourceTagSpecification getResourceTagSpecification() {
return resourceTagSpecification;
}
public void setResourceTagSpecification(GroupResourceTagSpecification groupResourceTagSpecification) {
isSet.add("resourceTagSpecification");
this.resourceTagSpecification = groupResourceTagSpecification;
}
public Set getIsSet() {
return isSet;
}
public void setIsSet(Set isSet) {
this.isSet = isSet;
}
public String getHealthCheckType() {
return healthCheckType;
}
public void setHealthCheckType(String healthCheckType) {
isSet.add("healthCheckType");
this.healthCheckType = healthCheckType;
}
public Integer getHealthCheckGracePeriod() {
return healthCheckGracePeriod;
}
public void setHealthCheckGracePeriod(Integer healthCheckGracePeriod) {
isSet.add("healthCheckGracePeriod");
this.healthCheckGracePeriod = healthCheckGracePeriod;
}
public IamRole getIamRole() {
return iamRole;
}
public void setIamRole(IamRole iamRole) {
isSet.add("iamRole");
this.iamRole = iamRole;
}
public List getNetworkInterfaces() {
return networkInterfaces;
}
public void setNetworkInterfaces(List networkInterfaces) {
isSet.add("networkInterfaces");
this.networkInterfaces = networkInterfaces;
}
public List getSecurityGroupIds() {
return securityGroupIds;
}
public void setSecurityGroupIds(List securityGroupIds) {
isSet.add("securityGroupIds");
this.securityGroupIds = securityGroupIds;
}
public Boolean getDetailedMonitoring() {
return detailedMonitoring;
}
public void setDetailedMonitoring(Boolean detailedMonitoring) {
isSet.add("detailedMonitoring");
this.detailedMonitoring = detailedMonitoring;
}
public Boolean getEbsOptimized() {
return ebsOptimized;
}
public void setEbsOptimized(Boolean ebsOptimized) {
isSet.add("ebsOptimized");
this.ebsOptimized = ebsOptimized;
}
public String getImageId() {
return imageId;
}
public void setImageId(String imageId) {
isSet.add("imageId");
this.imageId = imageId;
}
public String getKeyPair() {
return keyPair;
}
public void setKeyPair(String keyPair) {
isSet.add("keyPair");
this.keyPair = keyPair;
}
public String getUserData() {
return userData;
}
public void setUserData(String userData) {
isSet.add("userData");
this.userData = userData;
}
public Integer getHealthCheckUnhealthyDurationBeforeReplacement() { return healthCheckUnhealthyDurationBeforeReplacement; }
public void setHealthCheckUnhealthyDurationBeforeReplacement(Integer healthCheckUnhealthyDurationBeforeReplacement) {
isSet.add("healthCheckUnhealthyDurationBeforeReplacement");
this.healthCheckUnhealthyDurationBeforeReplacement = healthCheckUnhealthyDurationBeforeReplacement;
}
public List getTags() {
return tags;
}
public void setTags(List tags) {
isSet.add("tags");
this.tags = tags;
}
public List getBlockDeviceMappings() {
return blockDeviceMappings;
}
public void setBlockDeviceMappings(List blockDeviceMappings) {
isSet.add("blockDeviceMappings");
this.blockDeviceMappings = blockDeviceMappings;
}
public LoadBalancersConfig getLoadBalancersConfig() {
return loadBalancersConfig;
}
public void setLoadBalancersConfig(LoadBalancersConfig loadBalancersConfig) {
isSet.add("loadBalancersConfig");
this.loadBalancersConfig = loadBalancersConfig;
}
public ElastigroupItf getItf() {
return itf;
}
public void setItf(ElastigroupItf itf) {
isSet.add("itf");
this.itf = itf;
}
//endregion
//region Builder class
public static class Builder {
private ElastigroupLaunchSpecification launchSpecification;
private Builder() {
this.launchSpecification = new ElastigroupLaunchSpecification();
}
public static Builder get() {
return new Builder();
}
public Builder setKeyPair(final String keyPair) {
launchSpecification.setKeyPair(keyPair);
return this;
}
public Builder setImageId(final String imageId) {
launchSpecification.setImageId(imageId);
return this;
}
public Builder setDetailedMonitoring(final Boolean detailedMonitoring) {
launchSpecification.setDetailedMonitoring(detailedMonitoring);
return this;
}
public Builder setEbsOptimized(final Boolean ebsOptimized) {
launchSpecification.setEbsOptimized(ebsOptimized);
return this;
}
public Builder setHealthCheckGracePeriod(final Integer healthCheckGracePeriod) {
launchSpecification.setHealthCheckGracePeriod(healthCheckGracePeriod);
return this;
}
public Builder setHealthCheckType(final String healthCheckType) {
launchSpecification.setHealthCheckType(healthCheckType);
return this;
}
public Builder setUserData(final String userData) {
launchSpecification.setUserData(userData);
return this;
}
public Builder setHealthCheckUnhealthyDurationBeforeReplacement(final Integer healthCheckUnhealthyDurationBeforeReplacement) {
launchSpecification.setHealthCheckUnhealthyDurationBeforeReplacement(healthCheckUnhealthyDurationBeforeReplacement);
return this;
}
public Builder setSecurityGroupIds(final List securityGroupIds) {
launchSpecification.setSecurityGroupIds(securityGroupIds);
return this;
}
public Builder setBlockDeviceMappings(final List blockDeviceMappings) {
launchSpecification.setBlockDeviceMappings(blockDeviceMappings);
return this;
}
public Builder setIamRole(final IamRole iamRole) {
launchSpecification.setIamRole(iamRole);
return this;
}
public Builder setNetworkInterfaces(final List networkInterfaces) {
launchSpecification.setNetworkInterfaces(networkInterfaces);
return this;
}
public Builder setTags(final List tags) {
launchSpecification.setTags(tags);
return this;
}
public Builder setLoadBalancersConfig(final LoadBalancersConfig loadBalancersConfig) {
launchSpecification.setLoadBalancersConfig(loadBalancersConfig);
return this;
}
public Builder setResourceTagSpecification(final GroupResourceTagSpecification resourceTagSpecification) {
launchSpecification.setResourceTagSpecification(resourceTagSpecification);
return this;
}
public Builder setItf(final ElastigroupItf itf) {
launchSpecification.setItf(itf);
return this;
}
public ElastigroupLaunchSpecification build() {
return launchSpecification;
}
}
//endregion
//region isSet methods
// Is healthCheckType Set boolean method
@JsonIgnore
public boolean isHealthCheckTypeSet() {
return isSet.contains("healthCheckType");
}
// Is ResourceTagSpecification Set boolean method
@JsonIgnore
public boolean isResourceTagSpecificationSet() {
return isSet.contains("resourceTagSpecification");
}
// Is healthCheckGracePeriod Set boolean method
@JsonIgnore
public boolean isHealthCheckGracePeriodSet() {
return isSet.contains("healthCheckGracePeriod");
}
// Is securityGroupIds Set boolean method
@JsonIgnore
public boolean isSecurityGroupIdsSet() {
return isSet.contains("securityGroupIds");
}
// Is detailedMonitoring Set boolean method
@JsonIgnore
public boolean isDetailedMonitoringSet() {
return isSet.contains("detailedMonitoring");
}
// Is ebsOptimized Set boolean method
@JsonIgnore
public boolean isEbsOptimizedSet() {
return isSet.contains("ebsOptimized");
}
// Is imageId Set boolean method
@JsonIgnore
public boolean isImageIdSet() {
return isSet.contains("imageId");
}
// Is keyPair Set boolean method
@JsonIgnore
public boolean isKeyPairSet() {
return isSet.contains("keyPair");
}
// Is userData Set boolean method
@JsonIgnore
public boolean isUserDataSet() {
return isSet.contains("userData");
}
// Is iamRole Set boolean method
@JsonIgnore
public boolean isIamRoleSet() {
return isSet.contains("iamRole");
}
// Is networkInterfaces Set boolean method
@JsonIgnore
public boolean isNetworkInterfacesSet() {
return isSet.contains("networkInterfaces");
}
// Is tags Set boolean method
@JsonIgnore
public boolean isTagsSet() {
return isSet.contains("tags");
}
// Is blockDeviceMappings Set boolean method
@JsonIgnore
public boolean isBlockDeviceMappingsSet() {
return isSet.contains("blockDeviceMappings");
}
//endregion
// Is loadBalancers Set boolean method
@JsonIgnore
public boolean isLoadBalancersConfigSet() {
return isSet.contains("loadBalancersConfig");
}
// Is healthCheckUnhealthyDurationBeforeReplacement Set boolean method
@JsonIgnore
public boolean isHealthCheckUnhealthyDurationBeforeReplacementSet() {
return isSet.contains("healthCheckUnhealthyDurationBeforeReplacement");
}
// Is itf Set boolean method
@JsonIgnore
public boolean isItfSet() {
return isSet.contains("itf");
}
//endregion
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy