com.softlayer.api.service.network.lbaas.LoadBalancerHealthMonitorConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
package com.softlayer.api.service.network.lbaas;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
/**
* SoftLayer_Network_LBaaS_LoadBalancerHealthMonitorConfiguration specifies the check method to be used for health monitoring backend members.
*
* @see SoftLayer_Network_LBaaS_LoadBalancerHealthMonitorConfiguration
*/
@ApiType("SoftLayer_Network_LBaaS_LoadBalancerHealthMonitorConfiguration")
public class LoadBalancerHealthMonitorConfiguration extends Entity {
/**
* Backends port
*/
@ApiProperty(canBeNullOrNotSet = true)
protected Long backendPort;
public Long getBackendPort() {
return backendPort;
}
public void setBackendPort(Long backendPort) {
backendPortSpecified = true;
this.backendPort = backendPort;
}
protected boolean backendPortSpecified;
public boolean isBackendPortSpecified() {
return backendPortSpecified;
}
public void unsetBackendPort() {
backendPort = null;
backendPortSpecified = false;
}
/**
* <