- URL:
- https://<cluster-url>/services
- Methods:
GET
- Version Introduced:
- 10.1.1
Description
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.
Request parameters
Parameter | Details |
---|---|
| The response format. The default response format is Values: |
Example usage
Below is a sample request URL for the services
resource:
https://machine.domain.com/webadaptor/admin/clusters/MapsCluster/services?f=json
JSON Response syntax
{
"services": [
{
"folderName": "<folderName>",
"serviceName": "<serviceName>",
"type": "<serviceType>",
"description": "<description>"
},
{
"folderName": "<folderName>",
"serviceName": "<serviceName>",
"type": "<serviceType>",
"description": "<description>"
},
]
}
JSON Response example
{
"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."
}
]
}