Package com.woorea.openstack.heat.model

Examples of com.woorea.openstack.heat.model.CreateStackParam


        Heat heat = new Heat(endpointURL);
        heat.setTokenProvider(keystone
                .getProviderByTenant(ExamplesConfiguration.TENANT_NAME));

        CreateStackParam param = new CreateStackParam();
        param.setStackName("helloWorld");
        param.setTimeoutMinutes(1);
        param.setParameters(Collections.<String, String>emptyMap());
        param.setTemplate(TEMPLATE);

        System.out.printf("Create: " + heat.getStacks().create(param).execute());
        Thread.sleep(3000);

        for (Stack s : heat.getStacks().list().execute()) {
View Full Code Here

TOP

Related Classes of com.woorea.openstack.heat.model.CreateStackParam

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.