Examples of DescribeConfigurationOptionsRequest


Examples of com.amazonaws.services.elasticbeanstalk.model.DescribeConfigurationOptionsRequest

   */
  OptionSpecification[] optionSpecifications;

  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DescribeConfigurationOptionsRequest req = new DescribeConfigurationOptionsRequest()//
        .withApplicationName(this.applicationName)//
        .withEnvironmentName(environmentName)//
        .withOptions(optionSpecifications)//
        .withSolutionStackName(solutionStack)//
        .withTemplateName(templateName)//
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.DescribeConfigurationOptionsRequest

  @MojoParameter
  OptionSpecification[] optionSpecifications;

  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DescribeConfigurationOptionsRequest req = new DescribeConfigurationOptionsRequest()//
        .withApplicationName(this.applicationName)//
        .withEnvironmentName(curEnv.getEnvironmentName())//
        .withOptions(optionSpecifications)//
        .withSolutionStackName(solutionStack)//
        .withTemplateName(templateName)//
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.DescribeConfigurationOptionsRequest

   */
  OptionSpecification[] optionSpecifications;

  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DescribeConfigurationOptionsRequest req = new DescribeConfigurationOptionsRequest()//
        .withApplicationName(this.applicationName)//
        .withEnvironmentName(environmentName)//
        .withOptions(optionSpecifications)//
        .withSolutionStackName(solutionStack)//
        .withTemplateName(templateName)//
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.DescribeConfigurationOptionsRequest

   */
  OptionSpecification[] optionSpecifications;

  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DescribeConfigurationOptionsRequest req = new DescribeConfigurationOptionsRequest()//
        .withApplicationName(this.applicationName)//
        .withEnvironmentName(environmentName)//
        .withOptions(optionSpecifications)//
        .withSolutionStackName(solutionStack)//
        .withTemplateName(templateName)//
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.DescribeConfigurationOptionsRequest

  @MojoParameter
  OptionSpecification[] optionSpecifications;

  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DescribeConfigurationOptionsRequest req = new DescribeConfigurationOptionsRequest()//
        .withApplicationName(this.applicationName)//
        .withEnvironmentName(environmentName)//
        .withOptions(optionSpecifications)//
        .withSolutionStackName(solutionStack)//
        .withTemplateName(templateName)//
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.DescribeConfigurationOptionsRequest

* @goal describe-configuration-options
*/
public class DescribeConfigurationOptionsMojo extends AbstractBeanstalkMojo {
  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DescribeConfigurationOptionsRequest req = new DescribeConfigurationOptionsRequest()
        .withApplicationName(this.applicationName).withEnvironmentName(environmentName).withTemplateName(templateName);

    return service.describeConfigurationOptions(req);
  }
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.DescribeConfigurationOptionsRequest

  @Parameter
  OptionSpecification[] optionSpecifications;

  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DescribeConfigurationOptionsRequest req = new DescribeConfigurationOptionsRequest()//
        .withApplicationName(this.applicationName)//
        .withEnvironmentName(curEnv.getEnvironmentName())//
        .withOptions(optionSpecifications)//
        .withSolutionStackName(solutionStack)//
        .withTemplateName(templateName)//
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.DescribeConfigurationOptionsRequest

  private Map<String, ConfigurationOptionDescription> defaultSettings = new TreeMap<String, ConfigurationOptionDescription>();

  protected Object executeInternal() throws Exception {
    DescribeConfigurationOptionsResult configOptions = getService()
        .describeConfigurationOptions(
            new DescribeConfigurationOptionsRequest()
                .withApplicationName(applicationName)
                .withEnvironmentName(
                    curEnv.getEnvironmentName()));

    for (ConfigurationOptionDescription o : configOptions.getOptions()) {
View Full Code Here

Examples of com.amazonaws.services.elasticbeanstalk.model.DescribeConfigurationOptionsRequest

  private Map<String, ConfigurationOptionDescription> defaultSettings = new TreeMap<String, ConfigurationOptionDescription>();

  protected Object executeInternal() throws Exception {
    DescribeConfigurationOptionsResult configOptions = getService()
        .describeConfigurationOptions(
            new DescribeConfigurationOptionsRequest()
                .withApplicationName(applicationName)
                .withEnvironmentName(
                    curEnv.getEnvironmentName()));

    for (ConfigurationOptionDescription o : configOptions.getOptions()) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.