Skip to main contentIBM Video Streaming Developers

Hardware

ECDN server’s hardware configuration.

type Hardware {
    # Number of CPU cores in server.
    # Nullable in case of errors.
    cpuCores: Int
    # Server's total memory in bytes.
    # Nullable in case of errors.
    memory: Byte
    # Server's total cache memory in bytes.
    # Nullable in case of errors.
    cacheMemory: Byte
    # Server's system disk size in bytes.
    # Nullable in case of errors.
    systemDiskSize: Byte
    # Status of cache disk.
    cacheDiskStatus: CacheDiskStatus!
    # Server's cache disk size in bytes. Null if cache disk isn't attached to server.
    cacheDiskSize: Byte
    # The hypervisor's type running this server. Null if unknown.
    # (never checked in before or its version is too old)
    hypervisor: Hypervisor
}

Fields

cpuCores: Int

Number of CPU cores in server. Nullable in case of errors.

memory: Byte

Server’s total memory in bytes. Nullable in case of errors.

cacheMemory: Byte

Server’s total cache memory in bytes. Nullable in case of errors.

systemDiskSize: Byte

Server’s system disk size in bytes. Nullable in case of errors.

cacheDiskStatus: CacheDiskStatus!

Status of cache disk.

cacheDiskSize: Byte

Server’s cache disk size in bytes. Null if cache disk isn’t attached to server.

hypervisor: Hypervisor

The hypervisor’s type running this server. Null if unknown. (never checked in before or its version is too old)