Package com.amazonaws.services.elasticbeanstalk.model

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


  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    boolean bTemplateNameDefined = isNotBlank(templateName) && !hasWildcards(templateName);

    DescribeConfigurationSettingsRequest req = new DescribeConfigurationSettingsRequest().withApplicationName(applicationName);

    if (bTemplateNameDefined) {
      req.withTemplateName(templateName);
    } else if (null != curEnv) {
      req.withEnvironmentName(curEnv.getEnvironmentName());
    } else {
      getLog().warn("You must supply a templateName or environmentName. Ignoring");
     
      return null;
    }
View Full Code Here


    if (null != this.optionSettings && this.optionSettings.length > 0)
      return;

    DescribeConfigurationSettingsResult configSettings = getService()
        .describeConfigurationSettings(
            new DescribeConfigurationSettingsRequest()
                .withApplicationName(applicationName)
                .withEnvironmentName(
                    curEnv.getEnvironmentName()));

    List<ConfigurationOptionSetting> newOptionSettings = new ArrayList<ConfigurationOptionSetting>(
View Full Code Here

    if (null != this.optionSettings && this.optionSettings.length > 0)
      return;

    DescribeConfigurationSettingsResult configSettings = getService()
        .describeConfigurationSettings(
            new DescribeConfigurationSettingsRequest()
                .withApplicationName(applicationName)
                .withEnvironmentName(
                    curEnv.getEnvironmentName()));

    List<ConfigurationOptionSetting> newOptionSettings = new ArrayList<ConfigurationOptionSetting>(
View Full Code Here

    return null;
  }

  void describeConfigurationTemplate(String configTemplateName) {
    DescribeConfigurationSettingsRequest req = new DescribeConfigurationSettingsRequest()
        .withApplicationName(applicationName).withTemplateName(
            configTemplateName);

    DescribeConfigurationSettingsResult configSettings = service.describeConfigurationSettings(req);
   
View Full Code Here

   */
  String templateName;

  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DescribeConfigurationSettingsRequest req = new DescribeConfigurationSettingsRequest()//
        .withApplicationName(applicationName)//
        .withEnvironmentName(environmentName)//
        .withTemplateName(templateName)//
    ;

View Full Code Here

    if (null != this.optionSettings && this.optionSettings.length > 0)
      return;

    DescribeConfigurationSettingsResult configSettings = getService()
        .describeConfigurationSettings(
            new DescribeConfigurationSettingsRequest()
                .withApplicationName(applicationName)
                .withEnvironmentName(
                    curEnv.getEnvironmentName()));

    List<ConfigurationOptionSetting> newOptionSettings = new ArrayList<ConfigurationOptionSetting>(
View Full Code Here

  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    boolean bTemplateNameDefined = org.apache.commons.lang.StringUtils
        .isNotBlank(templateName);

    DescribeConfigurationSettingsRequest req = new DescribeConfigurationSettingsRequest()//
      .withApplicationName(applicationName);
     
    if (bTemplateNameDefined) {
      req.withTemplateName(templateName);
    } else {
      req.withEnvironmentName(curEnv.getEnvironmentName())//
        .withTemplateName(templateName);
    }

    return getService().describeConfigurationSettings(req);
  }
View Full Code Here

        .isNotBlank(templateName);

    if (bNameDefined ^ bTemplateNameDefined)
      throw new MojoFailureException("You can define either environmentName or templateName, but not both");

    DescribeConfigurationSettingsRequest req = new DescribeConfigurationSettingsRequest()//
        .withApplicationName(applicationName)//
        .withEnvironmentName(environmentName)//
        .withTemplateName(templateName)//
    ;
View Full Code Here

    return null;
  }

  void describeConfigurationTemplate(String configTemplateName) {
    DescribeConfigurationSettingsRequest req = new DescribeConfigurationSettingsRequest()
        .withApplicationName(applicationName).withTemplateName(
            configTemplateName);

    DescribeConfigurationSettingsResult configSettings = service.describeConfigurationSettings(req);
   
View Full Code Here

   */
  String templateName;

  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DescribeConfigurationSettingsRequest req = new DescribeConfigurationSettingsRequest()//
        .withApplicationName(this.applicationName)//
        .withEnvironmentName(environmentName)//
        .withTemplateName(templateName)//
    ;

View Full Code Here

TOP

Related Classes of com.amazonaws.services.elasticbeanstalk.model.DescribeConfigurationSettingsRequest

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.