Examples of DeleteApplicationVersionRequest


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

  }

  void deleteVersion(ApplicationVersionDescription versionToRemove) {
    getLog().info("Must delete version: " + versionToRemove.getVersionLabel());

    DeleteApplicationVersionRequest req = new DeleteApplicationVersionRequest()
        .withApplicationName(versionToRemove.getApplicationName())//
        .withDeleteSourceBundle(deleteSourceBundle)//
        .withVersionLabel(versionToRemove.getVersionLabel());

    if (!dryRun)
View Full Code Here

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

  private boolean deleteSourceBundle;

  @Override
  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DeleteApplicationVersionRequest req = new DeleteApplicationVersionRequest();

    req.setApplicationName(applicationName);
    req.setDeleteSourceBundle(deleteSourceBundle);
    req.setVersionLabel(versionLabel);

    service.deleteApplicationVersion(req);

    return null;
  }
View Full Code Here

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

  void deleteVersion(ApplicationVersionDescription versionToRemove) {
    getLog().info(
        "Must delete version: " + versionToRemove.getVersionLabel());

    DeleteApplicationVersionRequest req = new DeleteApplicationVersionRequest()
        .withApplicationName(versionToRemove.getApplicationName())//
        .withDeleteSourceBundle(deleteSourceBundle)//
        .withVersionLabel(versionToRemove.getVersionLabel());

    if (!dryRun) {
View Full Code Here

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

  private boolean deleteSourceBundle;

  @Override
  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DeleteApplicationVersionRequest req = new DeleteApplicationVersionRequest();

    req.setApplicationName(applicationName);
    req.setDeleteSourceBundle(deleteSourceBundle);
    req.setVersionLabel(versionLabel);

    service.deleteApplicationVersion(req);

    return null;
  }
View Full Code Here

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

  void deleteVersion(ApplicationVersionDescription versionToRemove) {
    getLog().info(
        "Must delete version: " + versionToRemove.getVersionLabel());

    DeleteApplicationVersionRequest req = new DeleteApplicationVersionRequest()
        .withApplicationName(versionToRemove.getApplicationName())//
        .withDeleteSourceBundle(deleteSourceBundle)//
        .withVersionLabel(versionToRemove.getVersionLabel());

    if (!dryRun) {
View Full Code Here

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

  private boolean deleteSourceBundle;

  @Override
  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DeleteApplicationVersionRequest req = new DeleteApplicationVersionRequest();

    req.setApplicationName(applicationName);
    req.setDeleteSourceBundle(deleteSourceBundle);
    req.setVersionLabel(versionLabel);

    service.deleteApplicationVersion(req);

    return null;
  }
View Full Code Here

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

  }

  void deleteVersion(ApplicationVersionDescription versionToRemove) {
    getLog().info("Must delete version: " + versionToRemove.getVersionLabel());

    DeleteApplicationVersionRequest req = new DeleteApplicationVersionRequest()
        .withApplicationName(versionToRemove.getApplicationName())//
        .withDeleteSourceBundle(deleteSourceBundle)//
        .withVersionLabel(versionToRemove.getVersionLabel());

    if (!dryRun)
View Full Code Here

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

  private boolean deleteSourceBundle;

  @Override
  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DeleteApplicationVersionRequest req = new DeleteApplicationVersionRequest();

    req.setApplicationName(applicationName);
    req.setDeleteSourceBundle(deleteSourceBundle);
    req.setVersionLabel(versionLabel);

    service.deleteApplicationVersion(req);

    return null;
  }
View Full Code Here

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

  void deleteVersion(ApplicationVersionDescription versionToRemove) {
    getLog().info(
        "Must delete version: " + versionToRemove.getVersionLabel());

    DeleteApplicationVersionRequest req = new DeleteApplicationVersionRequest()
        .withApplicationName(versionToRemove.getApplicationName())//
        .withDeleteSourceBundle(deleteSourceBundle)//
        .withVersionLabel(versionToRemove.getVersionLabel());

    if (!dryRun) {
View Full Code Here

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

  private boolean deleteSourceBundle;

  @Override
  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    DeleteApplicationVersionRequest req = new DeleteApplicationVersionRequest();

    req.setApplicationName(applicationName);
    req.setDeleteSourceBundle(deleteSourceBundle);
    req.setVersionLabel(versionLabel);

    getService().deleteApplicationVersion(req);

    return null;
  }
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.