ClusterCrudResponseedit

The response to an Elasticsearch or Kibana CRUD (create/update-plan) request

Propertiesedit

credentials (ClusterCredentials)
The username/password of the newly created cluster (returned from Elasticsearch cluster creates)
diagnostics (object)
If the endpoint is called with URL param 'validate_only=true', then this contains advanced debug info (the internal plan representation)
elasticsearch_cluster_id (string)
For an operation creating or updating an Elasticsearch cluster, the Id of that cluster
kibana (ClusterCrudResponse)
If the endpoint is called with URL param 'validate_only=true', then this contains advanced debug info (the internal plan representation) for the Kibana that was created along with the submitted ES plan.
kibana_cluster_id (string)
For an operation creating or updating a Kibana cluster, the Id of that cluster

Exampleedit

{
   "credentials" : {
      "password" : "string",
      "username" : "string"
   },
   "diagnostics" : {},
   "elasticsearch_cluster_id" : "string",
   "kibana" : null,
   "kibana_cluster_id" : "string"
}