| FRAMES | NO FRAMES | Description | Parameters | Response | Example |
| URL: | http://server:port/arcgis/admin/clusters/<cluster>/services |
|---|---|
| HTTP Method: | GET |
| Parent Resource: | Cluster |
This resource lists all the services that are currently deployed to the cluster (of machines).
A service deployed to a cluster runs on every server machine that is participating in the cluster.
This resource was added at ArcGIS 10.1 Service Pack 1.
| Parameter | Description |
|---|---|
| f | The response format. The default response format is html. Values: html | json |
{
"services": [
{
"folderName": "<folderName>",
"serviceName": "<serviceName>",
"type": "<serviceType>",
"description": "<description>"
},
{
"folderName": "<folderName>",
"serviceName": "<serviceName>",
"type": "<serviceType>",
"description": "<description>"
},
...
]
}
{
"services": [
{
"folderName": "System",
"serviceName": "CachingTools",
"type": "GPServer",
"description": "The CachingTools service is used by ArcGIS Server to create and manage Map, Globe and Image service caches."
},
{
"folderName": "System",
"serviceName": "PublishingTools",
"type": "GPServer",
"description": "The PublishingTools service is used by ArcGIS Server to publish service definition files as services."
},
{
"folderName": "/",
"serviceName": "SampleWorldCities",
"type": "MapServer",
"description": "The SampleWorldCities service is provided so you can quickly and easily
preview the functionality of the GIS server. Click the thumbnail image to open
in a web application. This sample service is optional and can be deleted."
}
]
}