Server service Data Type

A service installed on a server.

Properties
Name Type Description
name string Name of service.
type string Type of service. One of
  • AFFINITY (BlackBerry Affinity Manager)
  • BCC (BlackBerry Cloud Connector)
  • BCS (BlackBerry Collaboration Service)
  • BGS (BlackBerry Gatekeeping Service)
  • BSCP (BlackBerry Secure Connect Plus)
  • BSG (BlackBerry Secure Gateway)
  • CORE (UEM Core)
  • PROXY (BlackBerry Proxy Service)
  • UI (Management console)
status string Status of service. One of:
  • PAUSED
  • RUNNING
  • STANDBY
  • STOPPED
  • UNAVAILABLE
version string Service version.
connections array of Service connection List of service connections.
proxyClusterGuid string BlackBerry Proxy cluster guid (only applies when type=PROXY).
proxyClusterName string BlackBerry Proxy cluster name (only applies when type=PROXY).
directConnection Direct Connection Direct connection settings (only applies when type=PROXY).

Example

{
  "name" : "BlackBerry UEM - UEM Core",
  "type" : "CORE",
  "status" : "RUNNING",
  "version" : "5.33.37",
  "connections" : [ {
    "type" : "DB",
    "status" : "CONNECTED"
  }, {
    "type" : "BCP",
    "status" : "DISCONNECTED"
  } ],
  "directConnection" : {
    "proxyServerName" : "proxyServerName1",
    "directConnect" : true,
    "proxyHostName" : "proxyHostName1",
    "webProxy" : true,
    "webProxyHostName" : "webProxyHostName1",
    "webProxyPort" : 9888
  }
}