OBJECT
Image
An image contains the software packages that will be available on newly-provisioned instance. In the case of hardware virtual machines, the image also includes the operating system
link GraphQL Schema definition
- type Image {
- # Unique id for this image
- ID :
- # The "friendly" name for this image'
- String :
- # The underlying operating system for this image'
- ImageOS :
- # The version for this image'
- String :
- # A short prose description of this image
- String :
- # What kind of image this is. The values differ after v8.0.0+
- ImageType :
- # Contains a grouping of various minimum requirements for provisioning an instance
- # with this image. For example "password" indicates that a password must be
- # provided
- ImageRequirements :
- # The URL for a web page with more detailed information for this image
- String :
- # An array of image files that make up each image. Currently only a single file
- # per image is supported
- ImageFile] : [
- # The time this image has been made publicly available
- String :
- # The UUID of the user who owns this image
- ID :
- # Indicates if this image is publicly available
- Boolean :
- # The current state of the image. One of "active", "unactivated", "disabled",
- # "creating", "failed"
- ImageState :
- # An object of key/value pairs that allows clients to categorize images by any
- # given criteria
- KeyValue] : [
- # URL of the End User License Agreement (EULA) for the image
- String :
- # Access Control List. An array of account UUIDs given access to a private image.
- # The field is only relevant to private images
- User] : [
- # If state==FAILED, resulting from CreateImageFromMachine failure, then there may
- # be an error object of the form {"code": "
", "message": - # "
"} - ImageError :
- }