Description
The machines resource returns a list of all machines associated with an ArcGIS Video Server site.
Request parameters
| Parameter | Details |
|---|---|
(Required) | The output format for this operation. The default value is Values: |
(Required) | Users interacting programmatically with this endpoint must generate a token that must be included as a request parameter. A token can be obtained using the Generate Token operation. |
Response properties
| Property | Details |
|---|---|
| The primary response provided. All additional properties are nested within this |
| This property shows whether a machine has been set to maintenance mode at the time the request is sent. Maintenance mode will prevent non-administrative users from making any changes to the site. Values: |
| This property indicates whether a machine is currently stopped or started. Values: |
| Indicates the maximum heap size set on the server machine. |
| Outputs the alias of the currently associated domain certificate used by the server machine. |
| This property indicates the administrative URL associated with the server machine for the purpose of federation. |
| The hostname of the machine in question. |
| Indicates whether a machine is set to synchronize with other machines associated with ArcGIS Video Server. Values: |
Example usage
The following is a sample request URL used to access the machines resource:
https://organization.example.com/video/admin/machines?f=pjsonJSON Response syntax
{
"machines": [{
"underMaintenance": "< true | false >",
"configuredState": "< STARTED | STOPPED >",
"webServerMaxHeapSize": "integer",
"webServerCertificateAlias": "domain_certificate",
"adminURL": "https://organization.example.com:21443/arcgis/admin",
"machineName": "organization.example.com",
"synchronize": "< true | false >"
}
]
}JSON Response example
{
"machines": [{
"underMaintenance": false,
"configuredState": "STARTED",
"webServerMaxHeapSize": -1,
"webServerCertificateAlias": "domain_cert",
"adminURL": "https://organization.example.com:21443/arcgis/admin",
"machineName": "organization.example.com",
"synchronize": false
}
]
}