com.softlayer.api.service.billing.item.gateway.appliance.Cluster 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.billing.item.gateway.appliance;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.billing.Item;
import com.softlayer.api.service.resource.Group;
/**
* The SoftLayer_Billing_Item_Big_Data_Cluster data type contains general information relating to a single SoftLayer billing item for a big data cluster.
*
* @see SoftLayer_Billing_Item_Gateway_Appliance_Cluster
*/
@ApiType("SoftLayer_Billing_Item_Gateway_Appliance_Cluster")
public class Cluster extends Item {
/**
* The resource for a resource group billing item.
*/
@ApiProperty
protected Group resource;
public Group getResource() {
return resource;
}
public void setResource(Group resource) {
this.resource = resource;
}
public static class Mask extends com.softlayer.api.service.billing.Item.Mask {
public com.softlayer.api.service.resource.Group.Mask resource() {
return withSubMask("resource", com.softlayer.api.service.resource.Group.Mask.class);
}
}
}