Examples of DescribeConfigurationOptionsResult


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

  private boolean changedOnly;

  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()) {
      String key = String.format("beanstalk.env.%s.%s", o.getNamespace()
          .replace(":", "."), o.getName());

      for (Map.Entry<String, ConfigurationOptionSetting> entry : COMMON_PARAMETERS
          .entrySet()) {
View Full Code Here

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

  private boolean changedOnly;

  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()) {
      String key = String.format("beanstalk.env.%s.%s", o.getNamespace()
          .replace(":", "."), o.getName());

      for (Map.Entry<String, ConfigurationOptionSetting> entry : COMMON_PARAMETERS
          .entrySet()) {
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.