Package com.heroku.api.request.addon

Examples of com.heroku.api.request.addon.AddonRemove


     * @param appName App name. See {@link #listApps} for a list of apps that can be used.
     * @param addonName Addon name. See {@link #listAppAddons} for a list of addons that can be used.
     * @return
     */
    public AddonChange removeAddon(String appName, String addonName) {
        return connection.execute(new AddonRemove(appName, addonName), apiKey);
    }
View Full Code Here

TOP

Related Classes of com.heroku.api.request.addon.AddonRemove

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.