com.softlayer.api.service.scale.network.Vlan 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.scale.network;
import com.softlayer.api.ApiClient;
import com.softlayer.api.ResponseHandler;
import com.softlayer.api.annotation.ApiMethod;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
import com.softlayer.api.service.scale.Group;
import java.util.GregorianCalendar;
import java.util.concurrent.Future;
/**
* A scale network VLAN is a VLAN that scaled members will be placed on.
*
* @see SoftLayer_Scale_Network_Vlan
*/
@ApiType("SoftLayer_Scale_Network_Vlan")
public class Vlan extends Entity {
/**
* The network VLAN to scale with.
*/
@ApiProperty
protected com.softlayer.api.service.network.Vlan networkVlan;
public com.softlayer.api.service.network.Vlan getNetworkVlan() {
return networkVlan;
}
public void setNetworkVlan(com.softlayer.api.service.network.Vlan networkVlan) {
this.networkVlan = networkVlan;
}
/**
* The group this network VLAN is for.
*/
@ApiProperty
protected Group scaleGroup;
public Group getScaleGroup() {
return scaleGroup;
}
public void setScaleGroup(Group scaleGroup) {
this.scaleGroup = scaleGroup;
}
/**
* When this network VLAN reference was created.
*/
@ApiProperty(canBeNullOrNotSet = true)
protected GregorianCalendar createDate;
public GregorianCalendar getCreateDate() {
return createDate;
}
public void setCreateDate(GregorianCalendar createDate) {
createDateSpecified = true;
this.createDate = createDate;
}
protected boolean createDateSpecified;
public boolean isCreateDateSpecified() {
return createDateSpecified;
}
public void unsetCreateDate() {
createDate = null;
createDateSpecified = false;
}
/**
* When set and true any edit that happens on this object, be it calling edit on this directly or setting as a child while editing a parent object, will end up being a deletion.
*/
@ApiProperty(canBeNullOrNotSet = true)
protected Boolean deleteFlag;
public Boolean getDeleteFlag() {
return deleteFlag;
}
public void setDeleteFlag(Boolean deleteFlag) {
deleteFlagSpecified = true;
this.deleteFlag = deleteFlag;
}
protected boolean deleteFlagSpecified;
public boolean isDeleteFlagSpecified() {
return deleteFlagSpecified;
}
public void unsetDeleteFlag() {
deleteFlag = null;
deleteFlagSpecified = false;
}
/**
* The network VLAN reference's internal identifier.
*/
@ApiProperty(canBeNullOrNotSet = true)
protected Long id;
public Long getId() {
return id;
}
public void setId(Long id) {
idSpecified = true;
this.id = id;
}
protected boolean idSpecified;
public boolean isIdSpecified() {
return idSpecified;
}
public void unsetId() {
id = null;
idSpecified = false;
}
/**
* The identifier for the VLAN to scale with.
*/
@ApiProperty(canBeNullOrNotSet = true)
protected Long networkVlanId;
public Long getNetworkVlanId() {
return networkVlanId;
}
public void setNetworkVlanId(Long networkVlanId) {
networkVlanIdSpecified = true;
this.networkVlanId = networkVlanId;
}
protected boolean networkVlanIdSpecified;
public boolean isNetworkVlanIdSpecified() {
return networkVlanIdSpecified;
}
public void unsetNetworkVlanId() {
networkVlanId = null;
networkVlanIdSpecified = false;
}
/**
* The identifier of the group this network VLAN reference applies to.
*/
@ApiProperty(canBeNullOrNotSet = true)
protected Long scaleGroupId;
public Long getScaleGroupId() {
return scaleGroupId;
}
public void setScaleGroupId(Long scaleGroupId) {
scaleGroupIdSpecified = true;
this.scaleGroupId = scaleGroupId;
}
protected boolean scaleGroupIdSpecified;
public boolean isScaleGroupIdSpecified() {
return scaleGroupIdSpecified;
}
public void unsetScaleGroupId() {
scaleGroupId = null;
scaleGroupIdSpecified = false;
}
public Service asService(ApiClient client) {
return service(client, id);
}
public static Service service(ApiClient client) {
return client.createService(Service.class, null);
}
public static Service service(ApiClient client, Long id) {
return client.createService(Service.class, id == null ? null : id.toString());
}
/**
* A scale network VLAN is a VLAN that scaled members will be placed on.
*
* @see SoftLayer_Scale_Network_Vlan
*/
@com.softlayer.api.annotation.ApiService("SoftLayer_Scale_Network_Vlan")
public static interface Service extends com.softlayer.api.Service {
public ServiceAsync asAsync();
public Mask withNewMask();
public Mask withMask();
public void setMask(Mask mask);
/**
* @see SoftLayer_Scale_Network_Vlan::createObject
*/
@ApiMethod
public Vlan createObject(Vlan templateObject);
/**
* @see SoftLayer_Scale_Network_Vlan::deleteObject
*/
@ApiMethod(instanceRequired = true)
public Boolean deleteObject();
/**
* @see SoftLayer_Scale_Network_Vlan::getObject
*/
@ApiMethod(instanceRequired = true)
public Vlan getObject();
/**
* The network VLAN to scale with.
*
* @see SoftLayer_Scale_Network_Vlan::getNetworkVlan
*/
@ApiMethod(instanceRequired = true)
public com.softlayer.api.service.network.Vlan getNetworkVlan();
/**
* The group this network VLAN is for.
*
* @see SoftLayer_Scale_Network_Vlan::getScaleGroup
*/
@ApiMethod(instanceRequired = true)
public Group getScaleGroup();
}
public static interface ServiceAsync extends com.softlayer.api.ServiceAsync {
public Mask withNewMask();
public Mask withMask();
public void setMask(Mask mask);
/**
* Async version of {@link Service#createObject}
*/
public Future createObject(Vlan templateObject);
public Future> createObject(Vlan templateObject, ResponseHandler callback);
/**
* Async version of {@link Service#deleteObject}
*/
public Future deleteObject();
public Future> deleteObject(ResponseHandler callback);
/**
* Async version of {@link Service#getObject}
*/
public Future getObject();
public Future> getObject(ResponseHandler callback);
/**
* Async version of {@link Service#getNetworkVlan}
*/
public Future getNetworkVlan();
/**
* Async callback version of {@link Service#getNetworkVlan}
*/
public Future> getNetworkVlan(ResponseHandler callback);
/**
* Async version of {@link Service#getScaleGroup}
*/
public Future getScaleGroup();
/**
* Async callback version of {@link Service#getScaleGroup}
*/
public Future> getScaleGroup(ResponseHandler callback);
}
public static class Mask extends com.softlayer.api.service.Entity.Mask {
public com.softlayer.api.service.network.Vlan.Mask networkVlan() {
return withSubMask("networkVlan", com.softlayer.api.service.network.Vlan.Mask.class);
}
public com.softlayer.api.service.scale.Group.Mask scaleGroup() {
return withSubMask("scaleGroup", com.softlayer.api.service.scale.Group.Mask.class);
}
public Mask createDate() {
withLocalProperty("createDate");
return this;
}
public Mask deleteFlag() {
withLocalProperty("deleteFlag");
return this;
}
public Mask id() {
withLocalProperty("id");
return this;
}
public Mask networkVlanId() {
withLocalProperty("networkVlanId");
return this;
}
public Mask scaleGroupId() {
withLocalProperty("scaleGroupId");
return this;
}
}
}