All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softlayer.api.service.billing.item.network.Tunnel Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show 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;
import com.softlayer.api.service.network.tunnel.module.Context;

/**
 * The SoftLayer_Billing_Item_Network_Storage data type describes the billing items related to StorageLayer accounts. 
 *
 * @see SoftLayer_Billing_Item_Network_Tunnel
 */
@ApiType("SoftLayer_Billing_Item_Network_Tunnel")
public class Tunnel extends Item {

    /**
     * The IPsec VPN that a network tunnel billing item is associated with.
     */
    @ApiProperty
    protected Context resource;

    public Context getResource() {
        return resource;
    }

    public void setResource(Context resource) {
        this.resource = resource;
    }

    public static class Mask extends com.softlayer.api.service.billing.Item.Mask {

        public com.softlayer.api.service.network.tunnel.module.Context.Mask resource() {
            return withSubMask("resource", com.softlayer.api.service.network.tunnel.module.Context.Mask.class);
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy