Package com.axemblr.provisionr.amazon.core

Examples of com.axemblr.provisionr.amazon.core.ImageTableQuery


            final String region = provider.getOptionOr(ProviderOptions.REGION, ProviderOptions.DEFAULT_REGION);
            final String version = provider.getOptionOr(SoftwareOptions.BASE_OPERATING_SYSTEM_VERSION,
                SoftwareOptions.DEFAULT_BASE_OPERATING_SYSTEM_VERSION);

            ImageTableQuery query = imageTable.query()
                .filterBy("region", region)
                .filterBy("version", version)
                .filterBy("arch", DEFAULT_ARCH);

            if (instanceType.equals("t1.micro")) {
                query.filterBy("type", "ebs");
            } else {
                query.filterBy("type", DEFAULT_TYPE);
            }

            return query.singleResult();
        }
View Full Code Here

TOP

Related Classes of com.axemblr.provisionr.amazon.core.ImageTableQuery

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.