OBJECT

Package

link GraphQL Schema definition

  • type Package {
  • # Unique id for this package
  • id: ID
  • # The "friendly" name for this package
  • name: String
  • # How much memory will by available (in MiB)
  • memory: Int
  • # How much disk space will be available (in MiB)
  • disk: Int
  • # How much swap space will be available (in MiB)
  • swap: Int
  • # Maximum number of light-weight processes (threads) allowed
  • lwps: Int
  • # Number of vCPUs for this package
  • vcpus: Int
  • # The version of this package
  • version: String
  • # The group this package belongs to
  • group: String
  • # A human-friendly description about this package
  • description: String
  • }