Package org.jclouds.compute.domain.internal

Examples of org.jclouds.compute.domain.internal.VolumeImpl


    * @see InstanceType#M2_XLARGE
    */
   public static EC2HardwareBuilder m2_xlarge() {
      return new EC2HardwareBuilder(InstanceType.M2_XLARGE).ram(17510)
            .processors(ImmutableList.of(new Processor(2.0, 3.25)))
            .volumes(ImmutableList.<Volume> of(new VolumeImpl(420.0f, "/dev/sda1", true, false))).is64Bit(true);
   }
View Full Code Here


   public static EC2HardwareBuilder m2_2xlarge() {
      return new EC2HardwareBuilder(InstanceType.M2_2XLARGE)
            .ram(35020)
            .processors(ImmutableList.of(new Processor(4.0, 3.25)))
            .volumes(
                  ImmutableList.<Volume> of(new VolumeImpl(10.0f, "/dev/sda1", true, false), new VolumeImpl(840.0f,
                        "/dev/sdb", false, false))).is64Bit(true);
   }
View Full Code Here

   public static EC2HardwareBuilder m2_4xlarge() {
      return new EC2HardwareBuilder(InstanceType.M2_4XLARGE)
            .ram(70041)
            .processors(ImmutableList.of(new Processor(8.0, 3.25)))
            .volumes(
                  ImmutableList.<Volume> of(new VolumeImpl(10.0f, "/dev/sda1", true, false), new VolumeImpl(840.0f,
                        "/dev/sdb", false, false), new VolumeImpl(840.0f, "/dev/sdc", false, false))).is64Bit(true);
   }
View Full Code Here

   public static EC2HardwareBuilder c1_medium() {
      return new EC2HardwareBuilder(InstanceType.C1_MEDIUM)
            .ram(1740)
            .processors(ImmutableList.of(new Processor(2.0, 2.5)))
            .volumes(
                  ImmutableList.<Volume> of(new VolumeImpl(10.0f, "/dev/sda1", true, false), new VolumeImpl(340.0f,
                        "/dev/sda2", false, false)));
   }
View Full Code Here

   public static EC2HardwareBuilder c1_xlarge() {
      return new EC2HardwareBuilder(InstanceType.C1_XLARGE)
            .ram(7168)
            .processors(ImmutableList.of(new Processor(8.0, 2.5)))
            .volumes(
                  ImmutableList.<Volume> of(new VolumeImpl(10.0f, "/dev/sda1", true, false), new VolumeImpl(420.0f,
                        "/dev/sdb", false, false), new VolumeImpl(420.0f, "/dev/sdc", false, false), new VolumeImpl(
                        420.0f, "/dev/sdd", false, false), new VolumeImpl(420.0f, "/dev/sde", false, false)))
            .is64Bit(true);
   }
View Full Code Here

   public static EC2HardwareBuilder c3_large() {
      return new EC2HardwareBuilder(InstanceType.C3_LARGE)
              .ram(3750)
              .processors(ImmutableList.of(new Processor(2.0, 3.5)))
              .volumes(
                      ImmutableList.<Volume> of(new VolumeImpl(10.0f, "/dev/sda1", true, false),
                              new VolumeImpl(16.0f, "/dev/sdb", false, false),
                              new VolumeImpl(16.0f, "/dev/sdc", false, false)))
              .is64Bit(true);
   }
View Full Code Here

   public static EC2HardwareBuilder c3_xlarge() {
      return new EC2HardwareBuilder(InstanceType.C3_XLARGE)
              .ram(7168)
              .processors(ImmutableList.of(new Processor(4.0, 3.5)))
              .volumes(
                      ImmutableList.<Volume> of(new VolumeImpl(10.0f, "/dev/sda1", true, false),
                              new VolumeImpl(40.0f, "/dev/sdb", false, false),
                              new VolumeImpl(40.0f, "/dev/sdc", false, false)))
              .is64Bit(true);
   }
View Full Code Here

   public static EC2HardwareBuilder c3_2xlarge() {
      return new EC2HardwareBuilder(InstanceType.C3_2XLARGE)
              .ram(15360)
              .processors(ImmutableList.of(new Processor(8.0, 3.5)))
              .volumes(
                      ImmutableList.<Volume> of(new VolumeImpl(10.0f, "/dev/sda1", true, false),
                              new VolumeImpl(80.0f, "/dev/sdb", false, false),
                              new VolumeImpl(80.0f, "/dev/sdc", false, false)))
              .is64Bit(true);
   }
View Full Code Here

   public static EC2HardwareBuilder c3_4xlarge() {
      return new EC2HardwareBuilder(InstanceType.C3_4XLARGE)
              .ram(30720)
              .processors(ImmutableList.of(new Processor(16.0, 3.4375)))
              .volumes(
                      ImmutableList.<Volume> of(new VolumeImpl(10.0f, "/dev/sda1", true, false),
                              new VolumeImpl(160.0f, "/dev/sdb", false, false),
                              new VolumeImpl(160.0f, "/dev/sdc", false, false)))
              .is64Bit(true);
   }
View Full Code Here

   public static EC2HardwareBuilder c3_8xlarge() {
      return new EC2HardwareBuilder(InstanceType.C3_8XLARGE)
              .ram(61440)
              .processors(ImmutableList.of(new Processor(32.0, 3.375)))
              .volumes(
                      ImmutableList.<Volume> of(new VolumeImpl(10.0f, "/dev/sda1", true, false),
                              new VolumeImpl(320.0f, "/dev/sdb", false, false),
                              new VolumeImpl(320.0f, "/dev/sdc", false, false)))
              .is64Bit(true);
   }
View Full Code Here

TOP

Related Classes of org.jclouds.compute.domain.internal.VolumeImpl

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.