com.softlayer.api.service.network.securitygroup.Request 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
The newest version!
package com.softlayer.api.service.network.securitygroup;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
/**
* The SoftLayer_Network_SecurityGroup_Request data type contains the ID of a specific request sent to the API. This ID is used to identify specific calls to attach and detach network components, as well as add, edit, and remove security group rules.
*
* @see SoftLayer_Network_SecurityGroup_Request
*/
@ApiType("SoftLayer_Network_SecurityGroup_Request")
public class Request extends Entity {
/**
* The unique ID for a request.
*/
@ApiProperty(canBeNullOrNotSet = true)
protected String requestId;
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
requestIdSpecified = true;
this.requestId = requestId;
}
protected boolean requestIdSpecified;
public boolean isRequestIdSpecified() {
return requestIdSpecified;
}
public void unsetRequestId() {
requestId = null;
requestIdSpecified = false;
}
public static class Mask extends com.softlayer.api.service.Entity.Mask {
public Mask requestId() {
withLocalProperty("requestId");
return this;
}
}
}