The Proxy table contains the connectors that the tenant can use or is currently running.

ColumnTypeDescription
IDStringProxy's UUID (primary key).
PingStringWhether the proxy is pingable; values are Y or N.
OnlineBooleanWhether the proxy is online.
LastPingDateTimeDate/time of the last successful ping of the proxy.
MachineNameStringMachine name hosting the proxy.
LogRedirectedBooleanWhether proxy logs are redirected.
VersionStringProxy version.
LastPingAttemptedDateTimeDate/time the last ping of the proxy was attempted.
BandwidthKbpsDoubleBandwidth in kilobytes — includes the proxy and cloud.
ForestStringPrimary Active Directory forest of the proxy.

Applicable only if proxy is connected to Active Directory.
IwaEnabledBooleanWhether Integrated Windows Authentication (IWA) is enabled on the proxy.
IwaHostnameStringHost for Integrated Windows Authentication (IWA).
IwaPortIntegerPort for Integrated Windows Authentication (IWA).
IwaHttpPortIntegerHttp port for Integrated Windows Authentication (IWA).
AppGatewayLocalized StringStatus of the proxy's App Gateway plug-in.
ADProxyLocalized StringStatus of the proxy's Active Directory plug-in.
LDAPProxyLocalized StringStatus of the proxy's LDAP plug-in.
LDAPServiceInstancesLocalized StringList of LDAP service instances of the proxy.

Example Query

The following query returns all of the entries in the Proxy table, ordered by Machine Name:

{
Script: "Select * from Proxy ORDER BY Machinename COLLATE NOCASE"
}

Proxy table query response:

...
"FullCount": 2,
"Results": [
  {
    "Entities": [
      {
        "Type": "Proxy",
        "Key": "********-****-****-****-************",
        "IsForeignKey": false
      }
    ],
    "Row": {
      "LastPing": "/Date(1444751500721)/",
      "IwaPort": 8443,
       "LastPingAttempted": "/Date(1444751500721)/",
      "ADProxy": "Enabled",
      "AppGateway": "Enabled",
      "AppGatewayDisplay": "Enabled",
      "MachineName": "Kibble-4",
      "LDAPServiceInstances": "",
      "Online": true,
      "Ping": "Y",
      "LDAPProxyDisplay": "Enabled",
      "_MatchFilter": null,
      "LogRedirected": null,
      "IwaEnabled": true,
      "IwaHostname": "Kibble-4",
      "Forest": "idaptive.app",
      "ADProxyDisplay": "Enabled",
      "Version": "15.9.172.0",
      "BandwidthKbps": 617.425384383479,
      "IwaHttpPort": 80,
       "CustomerName": "Cloud Service Portal For Idaptive Employees",
      "ID": "********-****-****-****-************",
       "LDAPProxy": "Enabled"
    }
  },
  {
     "Entities": [
      {
        "Type": "Proxy",
         "Key": "********-****-****-****-************",
        "IsForeignKey": false
      }
    ],
    "Row": {
       "LastPing": "/Date(1444751581309)/",
      "IwaPort": 8443,
      "LastPingAttempted": "/Date(1444751581309)/",
      "ADProxy": "Disabled",
      "AppGateway": "Enabled",
      "AppGatewayDisplay": "Enabled",
      "MachineName": "KIBBLE-AG-1",
      "LDAPServiceInstances": "",
      "Online": true,
      "Ping": "Y",
       "LDAPProxyDisplay": "Enabled",
      "_MatchFilter": null,
      "LogRedirected": null,
      "IwaEnabled": true,
      "IwaHostname": "KIBBLE-AG-1",
      "Forest": null,
      "ADProxyDisplay": "Disabled",
      "Version": "15.9.172.0",
      "BandwidthKbps": 974.7739171822941,
       "IwaHttpPort": 80,
      "CustomerName": "Cloud Service Portal For Idaptive Employees",
      "ID": "********-****-****-****-************",
      "LDAPProxy": "Enabled"
     }
  }
 
]