Class Image.RawDisk
- java.lang.Object
-
- org.jclouds.googlecomputeengine.domain.Image.RawDisk
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract String
containerType()
The format used to encode and transmit the block device.static Image.RawDisk
create(URI source, String containerType, String sha1Checksum)
abstract String
sha1Checksum()
SHA1 checksum of the disk image before unpacking; provided by the client when the disk image is created.abstract URI
source()
The full Google Cloud Storage URL where the disk image is stored; provided by the client when the disk image is created.
-
-
-
Method Detail
-
source
public abstract URI source()
The full Google Cloud Storage URL where the disk image is stored; provided by the client when the disk image is created.
-
containerType
public abstract String containerType()
The format used to encode and transmit the block device.
-
sha1Checksum
@Nullable public abstract String sha1Checksum()
SHA1 checksum of the disk image before unpacking; provided by the client when the disk image is created.
-
create
public static Image.RawDisk create(URI source, String containerType, String sha1Checksum)
-
-