Tabnine Logo
Image.getImageState
Code IndexAdd Tabnine to your IDE (free)

How to use
getImageState
method
in
org.jclouds.ec2.domain.Image

Best Java code snippets using org.jclouds.ec2.domain.Image.getImageState (Showing top 14 results out of 315)

origin: jclouds/legacy-jclouds

public void testDiabloWithIncorrectDisplayNameField() {
 Set<Image> contents = ImmutableSet.of(new Image("us-east-1", Architecture.X86_64, "CentOS 6.2 Server 64-bit 20120125", "", "ami-0000054e",
      "local (CentOS 6.2 Server 64-bit 20120125)", "", ImageState.AVAILABLE, "available",
      ImageType.MACHINE, true, Sets.<String> newHashSet(), "aki-0000054c", null, "ari-0000054d",
      RootDeviceType.INSTANCE_STORE, "/dev/sda1", ImmutableMap.<String, EbsBlockDevice> of(),
      VirtualizationType.PARAVIRTUAL, Hypervisor.XEN));
 
 Set<Image> result = parseImages("/describe_images_nova.xml");
 assertEquals(result.toString(), contents.toString());
 assertEquals(get(result, 0).getImageState(), ImageState.AVAILABLE);
 assertEquals(get(result, 0).getRawState(), "available");
}
origin: apache/jclouds

public void testUNIX() {
 Set<Image> contents = ImmutableSet.of(new Image("us-east-1", Architecture.I386, null, null, "ami-be3adfd7",
      "ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml", "206029621532", ImageState.AVAILABLE, "available",
      ImageType.MACHINE, false, Sets.<String> newHashSet("9961934F"), "aki-4438dd2d", null, "ari-4538dd2c",
      RootDeviceType.INSTANCE_STORE, null, ImmutableMap.<String, EbsBlockDevice> of(),
      ImmutableMap.<String, String> of(), VirtualizationType.PARAVIRTUAL, Hypervisor.XEN));
 Set<Image> result = parseImages("/describe_images.xml");
 assertEquals(result.toString(), contents.toString());
 assertEquals(get(result, 0).getImageState(), ImageState.AVAILABLE);
 assertEquals(get(result, 0).getRawState(), "available");
}
origin: jclouds/legacy-jclouds

public void testWindows() {
 Set<Image> contents = ImmutableSet.of(new Image("us-east-1", Architecture.X86_64, null, null, "ami-02eb086b",
      "aws-solutions-amis/SqlSvrStd2003r2-x86_64-Win_SFWBasic5.1-v1.0.manifest.xml", "771350841976",
      ImageState.AVAILABLE, "available", ImageType.MACHINE, true, Sets.<String> newHashSet("5771E9A6"), null, "windows",
      null, RootDeviceType.INSTANCE_STORE, null, ImmutableMap.<String, EbsBlockDevice> of(),
      VirtualizationType.PARAVIRTUAL, Hypervisor.XEN));
 Set<Image> result = parseImages("/describe_images_windows.xml");
 assertEquals(result.toString(), contents.toString());
 assertEquals(get(result, 0).getImageState(), ImageState.AVAILABLE);
 assertEquals(get(result, 0).getRawState(), "available");
}
origin: apache/jclouds

public void testWindows() {
 Set<Image> contents = ImmutableSet.of(new Image("us-east-1", Architecture.X86_64, null, null, "ami-02eb086b",
      "aws-solutions-amis/SqlSvrStd2003r2-x86_64-Win_SFWBasic5.1-v1.0.manifest.xml", "771350841976",
      ImageState.AVAILABLE, "available", ImageType.MACHINE, true, Sets.<String> newHashSet("5771E9A6"), null, "windows",
      null, RootDeviceType.INSTANCE_STORE, null, ImmutableMap.<String, EbsBlockDevice> of(),
      ImmutableMap.<String, String> of(), VirtualizationType.PARAVIRTUAL, Hypervisor.XEN));
 Set<Image> result = parseImages("/describe_images_windows.xml");
 assertEquals(result.toString(), contents.toString());
 assertEquals(get(result, 0).getImageState(), ImageState.AVAILABLE);
 assertEquals(get(result, 0).getRawState(), "available");
}
origin: jclouds/legacy-jclouds

public void testUNIX() {
 Set<Image> contents = ImmutableSet.of(new Image("us-east-1", Architecture.I386, null, null, "ami-be3adfd7",
      "ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml", "206029621532", ImageState.AVAILABLE, "available",
      ImageType.MACHINE, false, Sets.<String> newHashSet("9961934F"), "aki-4438dd2d", null, "ari-4538dd2c",
      RootDeviceType.INSTANCE_STORE, null, ImmutableMap.<String, EbsBlockDevice> of(),
      VirtualizationType.PARAVIRTUAL, Hypervisor.XEN));
 Set<Image> result = parseImages("/describe_images.xml");
 assertEquals(result.toString(), contents.toString());
 assertEquals(get(result, 0).getImageState(), ImageState.AVAILABLE);
 assertEquals(get(result, 0).getRawState(), "available");
}
origin: apache/jclouds

public void testDiabloWithIncorrectDisplayNameField() {
 Set<Image> contents = ImmutableSet.of(new Image("us-east-1", Architecture.X86_64, "CentOS 6.2 Server 64-bit 20120125", "", "ami-0000054e",
      "local (CentOS 6.2 Server 64-bit 20120125)", "", ImageState.AVAILABLE, "available",
      ImageType.MACHINE, true, Sets.<String> newHashSet(), "aki-0000054c", null, "ari-0000054d",
      RootDeviceType.INSTANCE_STORE, "/dev/sda1", ImmutableMap.<String, EbsBlockDevice> of(),
      ImmutableMap.<String, String> of(), VirtualizationType.PARAVIRTUAL, Hypervisor.XEN));
 
 Set<Image> result = parseImages("/describe_images_nova.xml");
 assertEquals(result.toString(), contents.toString());
 assertEquals(get(result, 0).getImageState(), ImageState.AVAILABLE);
 assertEquals(get(result, 0).getRawState(), "available");
}
origin: apache/jclouds

public void testTags() {
 Set<Image> contents = ImmutableSet.of(new Image("us-east-1", Architecture.I386, null, null, "ami-be3adfd7",
    "ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml", "206029621532", ImageState.AVAILABLE, "available",
    ImageType.MACHINE, false, Sets.<String> newHashSet("9961934F"), "aki-4438dd2d", null, "ari-4538dd2c",
    RootDeviceType.INSTANCE_STORE, null, ImmutableMap.<String, EbsBlockDevice> of(),
    ImmutableMap.<String, String> of("Name", "Some machine name", "Second", "Second value"),
    VirtualizationType.PARAVIRTUAL, Hypervisor.XEN));
 Set<Image> result = parseImages("/describe_images_tags.xml");
 assertEquals(result.toString(), contents.toString());
 assertEquals(get(result, 0).getImageState(), ImageState.AVAILABLE);
 assertEquals(get(result, 0).getRawState(), "available");
 assertEquals(get(result, 0).getTags().get("Name"), "Some machine name");
 assertEquals(get(result, 0).getTags().get("Second"), "Second value");
}
origin: jclouds/legacy-jclouds

public void testEBS() {
 Set<Image> contents = ImmutableSet.of(new Image("us-east-1", Architecture.I386, "websrv_2009-12-10",
      "Web Server AMI", "ami-246f8d4d", "706093390852/websrv_2009-12-10", "706093390852",
      ImageState.AVAILABLE, "available", ImageType.MACHINE, true, Sets.<String> newHashSet(), null, "windows", null,
      RootDeviceType.EBS, "/dev/sda1", ImmutableMap.<String, EbsBlockDevice> of("/dev/sda1",
          new EbsBlockDevice("snap-d01272b9", 30, true), "xvdf", new EbsBlockDevice("snap-d31272ba", 250,
               false)), VirtualizationType.HVM, Hypervisor.XEN));
 Set<Image> result = parseImages("/describe_images_ebs.xml");
 assertEquals(result.toString(), contents.toString());
 assertEquals(get(result, 0).getImageState(), ImageState.AVAILABLE);
 assertEquals(get(result, 0).getRawState(), "available");
}
origin: apache/jclouds

public void testEBS() {
 Set<Image> contents = ImmutableSet.of(new Image("us-east-1", Architecture.I386, "websrv_2009-12-10",
     "Web Server AMI", "ami-246f8d4d", "706093390852/websrv_2009-12-10", "706093390852",
     ImageState.AVAILABLE, "available", ImageType.MACHINE, true, Sets.<String> newHashSet(), null, "windows", null,
     RootDeviceType.EBS, "/dev/sda1",
     ImmutableMap.<String, EbsBlockDevice> of("/dev/sda1",
         new EbsBlockDevice("snap-d01272b9", 30, true, "standard", null, false),
         "xvdf", new EbsBlockDevice("snap-d31272ba", 250, false, "standard", null, false)),
     ImmutableMap.<String, String> of(), VirtualizationType.HVM, Hypervisor.XEN));
 Set<Image> result = parseImages("/describe_images_ebs.xml");
 assertEquals(result.toString(), contents.toString());
 assertEquals(get(result, 0).getImageState(), ImageState.AVAILABLE);
 assertEquals(get(result, 0).getRawState(), "available");
 assertEquals(get(result, 0).getEbsBlockDevices().get("/dev/sda1").getVolumeType(), "standard");
 assertEquals(get(result, 0).getEbsBlockDevices().get("/dev/sda1").isEncrypted(), false);
 assertNull(get(result, 0).getEbsBlockDevices().get("/dev/sda1").getIops());
}
origin: jclouds/legacy-jclouds

builder.status(toPortableImageStatus.get(from.getImageState()));
builder.backendStatus(from.getRawState());
return builder.build();
origin: com.amysta.jclouds.api/ec2

builder.status(toPortableImageStatus.get(from.getImageState()));
builder.backendStatus(from.getRawState());
return builder.build();
origin: org.jclouds.api/ec2

builder.status(toPortableImageStatus.get(from.getImageState()));
builder.backendStatus(from.getRawState());
return builder.build();
origin: org.apache.jclouds.api/ec2

builder.status(toPortableImageStatus.get(from.getImageState()));
builder.backendStatus(from.getRawState());
return builder.build();
origin: apache/jclouds

builder.status(toPortableImageStatus.get(from.getImageState()));
builder.backendStatus(from.getRawState());
return builder.build();
org.jclouds.ec2.domainImagegetImageState

Javadoc

Current state of the AMI. If the operation returns available, the image is successfully registered and avail able for launching. If the operation returns deregistered, the image is deregistered and no longer available for launching.

Popular methods of Image

  • getId
    The ID of the AMI.
  • getImageType
    The type of image (machine, kernel, or ramdisk).
  • getName
  • <init>
  • getImageLocation
    The location of the AMI.
  • getDescription
  • getRawState
    raw form of #getImageState() as taken directly from the api response xml document/
  • getRegion
    To be removed in jclouds 1.6 WARNING Especially on EC2 clones that may not support regions, this val
  • getRootDeviceType
  • getArchitecture
    The architecture of the image (i386 or x86_64).
  • getHypervisor
  • getImageOwnerId
    AWS Access Key ID of the image owner.
  • getHypervisor,
  • getImageOwnerId,
  • getPlatform,
  • getVirtualizationType,
  • getEbsBlockDevices,
  • getKernelId,
  • getRamdiskId,
  • getRootDeviceName,
  • getTags

Popular in Java

  • Reading from database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • onRequestPermissionsResult (Fragment)
  • compareTo (BigDecimal)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Collectors (java.util.stream)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now