ENUM

ImageState

The current state of the image

link GraphQL Schema definition

  • enum ImageState {
  • # The image is ready for use, i.e. VMs can be provisioned using this image.
  • ACTIVE
  • # The image has not yet been activated. See ActivateImage.
  • UNACTIVATED
  • # The image is disabled. This will be the state if the image is activated, but
  • # also disabled == true. See EnableImage and DisableImage.
  • DISABLED
  • # A state for a placeholder image while an image is being asynchronously created.
  • # This is used during CreateImageFromVm.
  • CREATING
  • # A state for a placeholder image indicating that asynchronous image creation
  • # failed. See the error field for details.
  • FAILED
  • }