com.softlayer.api.service.container.remotemanagement.PmInfo 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.container.remotemanagement;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
/**
* The SoftLayer_Container_RemoteManagement_PmInfo contains pminfo information retrieved from a server's remote management card.
*
* @see SoftLayer_Container_RemoteManagement_PmInfo
*/
@ApiType("SoftLayer_Container_RemoteManagement_PmInfo")
public class PmInfo extends Entity {
/**
* PmInfo ID
*/
@ApiProperty(canBeNullOrNotSet = true)
protected String pmInfoId;
public String getPmInfoId() {
return pmInfoId;
}
public void setPmInfoId(String pmInfoId) {
pmInfoIdSpecified = true;
this.pmInfoId = pmInfoId;
}
protected boolean pmInfoIdSpecified;
public boolean isPmInfoIdSpecified() {
return pmInfoIdSpecified;
}
public void unsetPmInfoId() {
pmInfoId = null;
pmInfoIdSpecified = false;
}
/**
* PmInfo Reading
*/
@ApiProperty(canBeNullOrNotSet = true)
protected String pmInfoReading;
public String getPmInfoReading() {
return pmInfoReading;
}
public void setPmInfoReading(String pmInfoReading) {
pmInfoReadingSpecified = true;
this.pmInfoReading = pmInfoReading;
}
protected boolean pmInfoReadingSpecified;
public boolean isPmInfoReadingSpecified() {
return pmInfoReadingSpecified;
}
public void unsetPmInfoReading() {
pmInfoReading = null;
pmInfoReadingSpecified = false;
}
public static class Mask extends com.softlayer.api.service.Entity.Mask {
public Mask pmInfoId() {
withLocalProperty("pmInfoId");
return this;
}
public Mask pmInfoReading() {
withLocalProperty("pmInfoReading");
return this;
}
}
}