{
    "swagger": "2.0",
    "host": "localhost",
    "info": {
        "description": "",
        "version": "",
        "title": "",
        "termsOfService": ""
    },
    "basePath": "/api/v1/",
    "paths": {
        "/clusters/elasticsearch/{cluster_id}/instances/{instance_ids}/_start": {
            "post": {
                "operationId": "start-es-cluster-instances",
                "parameters": [
                    {
                        "name": "cluster_id",
                        "in": "path",
                        "description": "Identifier for the Elasticsearch cluster",
                        "required": true,
                        "type": "string"
                    },
                    {
                        "name": "instance_ids",
                        "in": "path",
                        "description": "Optional comma-delimited list of instance identifiers of the Elasticsearch cluster, otherwise will apply to all instances",
                        "required": true,
                        "type": "array",
                        "items": {
                            "type": "string"
                        },
                        "collectionFormat": "csv"
                    }
                ],
                "responses": {
                    "202": {
                        "description": "The start command was issued successfully, use the \"GET\" command on the /{cluster_id} resource to monitor progress"
                    }
                }
            }
        }
    }
}
