Skip to main contentIBM Video Streaming Developers

Server

An ECDN server.

type Server {
    # ID of ECDN server.
    id: ID!
    # Fully Qualified Domain Name of ECDN server.
    fqdn: FQDN!
    # Location of server.
    location: Location!
    # The last time this server last checked in to the API.
    # Null if server never checked in before.
    lastCheckIn: Time
    # Whether server is online or not (based on it's last check in date).
    online: Boolean!
    # Health indicators of server.
    # Null (unknown) if server hasn't reported activity recently
    # (turned off or cannot reach ECDN API).
    health: ServerHealth
    # Current configuration of server. Null if server never checked in before.
    currentConfiguration: ServerConfiguration
    # Desired configuration of server.
    desiredConfiguration: ServerConfiguration!
    # Update status of server.
    update: Update!
    # Hardware configuration of server. Null if server never checked in before.
    hardware: Hardware
    # Video delivery statistics of server.
    videoDelivery: VideoDelivery!
    # Resource usages of server.
    usages: ServerUsage!
    # What time was this server created and by whom.
    created: RecordedAction!
    # Last time this server was modified and by whom.
    modified: RecordedAction!
}

Fields

id: ID!

ID of ECDN server.

fqdn: FQDN!

Fully Qualified Domain Name of ECDN server.

location: Location!

Location of server.

lastCheckIn: Time

The last time this server last checked in to the API. Null if server never checked in before.

online: Boolean!

Whether server is online or not (based on it’s last check in date).

health: ServerHealth

Health indicators of server. Null (unknown) if server hasn’t reported activity recently (turned off or cannot reach ECDN API).

currentConfiguration: ServerConfiguration

Current configuration of server. Null if server never checked in before.

desiredConfiguration: ServerConfiguration!

Desired configuration of server.

update: Update!

Update status of server.

hardware: Hardware

Hardware configuration of server. Null if server never checked in before.

videoDelivery: VideoDelivery!

Video delivery statistics of server.

usages: ServerUsage!

Resource usages of server.

created: RecordedAction!

What time was this server created and by whom.

modified: RecordedAction!

Last time this server was modified and by whom.