Skip to main contentIBM Video Streaming Developers

BatchServerInput

Batch input for server creation/modification.

type BatchServerInput {
    # Hostname of server. FQDN = hostname + domain suffix of customer.
    hostname: String!
    # ID of location this server belongs to.
    location: ID!
    # Which hypervisor will this server run on.
    hypervisor: Hypervisor!
    # Network interfaces of ECDN server.
    interfaces: [InterfaceInput!]!
    # DNS servers used for name resolutions. Google resolvers will be used if omitted.
    dnsServers: [ServerAddress!]
    # Address of NTP servers used by ECDN server. Ubuntu NTP pools will be used if omitted.
    ntpServers: [ServerAddress!]
    # Log collector's address. Omit if log forwarding is disabled.
    logCollector: TransportAddress
    # Community string of SNMP v2c. Omit if SNMP polling is disabled.
    snmpCommunityString: String
    # Is remote assistance enabled on server. Enabled by default.
    remoteAssistanceEnabled: Boolean
}

Fields

hostname: String!

Hostname of server. FQDN = hostname + domain suffix of customer.

location: ID!

ID of location this server belongs to.

hypervisor: Hypervisor!

Which hypervisor will this server run on.

interfaces: [InterfaceInput!]!

Network interfaces of ECDN server.

dnsServers: [ServerAddress!]

DNS servers used for name resolutions. Google resolvers will be used if omitted.

ntpServers: [ServerAddress!]

Address of NTP servers used by ECDN server. Ubuntu NTP pools will be used if omitted.

logCollector: TransportAddress

Log collector’s address. Omit if log forwarding is disabled.

snmpCommunityString: String

Community string of SNMP v2c. Omit if SNMP polling is disabled.

remoteAssistanceEnabled: Boolean

Is remote assistance enabled on server. Enabled by default.