OBJECT

InstanceProperties

Description

InstanceProperties represents common properties across cloud providers.

link GraphQL Schema definition

  • type InstanceProperties {
  • # Storage capacity in TB available on this instance type.
  • capacityTb: Int!
  • # Numeric identifier for the instance type.
  • instanceType: Int!
  • # String identifier for the instance type.
  • instanceTypeString: String!
  • # Amount of memory in GiB available on this instance type.
  • memoryGib: Int!
  • # Type of processor (Intel, AMD) used by this instance type.
  • processorType: ProcessorType!
  • # Number of virtual CPUs (vCPUs) available on this instance type.
  • vcpuCount: Int!
  • # Cloud vendor that offers this instance type.
  • vendor: VendorType!
  • # Virtual machine density, Standard, Dense, or Extra Dense for this instance type.
  • vmType: VmType!
  • }