com.softlayer.api.service.billing.item.network.Firewall 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.network;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.billing.Item;
/**
* The SoftLayer_Billing_Item_Network_Firewall data type contains general information relating to a single SoftLayer billing item whose item category code is 'firewall'
*
* @see SoftLayer_Billing_Item_Network_Firewall
*/
@ApiType("SoftLayer_Billing_Item_Network_Firewall")
public class Firewall extends Item {
/**
* The VLAN firewall that a VLAN firewall billing item is associated with.
*/
@ApiProperty
protected com.softlayer.api.service.network.component.Firewall resource;
public com.softlayer.api.service.network.component.Firewall getResource() {
return resource;
}
public void setResource(com.softlayer.api.service.network.component.Firewall resource) {
this.resource = resource;
}
public static class Mask extends com.softlayer.api.service.billing.Item.Mask {
public com.softlayer.api.service.network.component.Firewall.Mask resource() {
return withSubMask("resource", com.softlayer.api.service.network.component.Firewall.Mask.class);
}
}
}