Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3088,7 +3088,7 @@
'shutdown.get_node.ShardMigrationStatus': 'shutdown/get_node/ShutdownGetNodeResponse.ts#L52-L54',
'shutdown.get_node.ShutdownStatus': 'shutdown/get_node/ShutdownGetNodeResponse.ts#L45-L50',
'shutdown.get_node.ShutdownType': 'shutdown/get_node/ShutdownGetNodeResponse.ts#L40-L43',
'shutdown.put_node.Request': 'shutdown/put_node/ShutdownPutNodeRequest.ts#L25-L110',
'shutdown.put_node.Request': 'shutdown/put_node/ShutdownPutNodeRequest.ts#L25-L112',
'shutdown.put_node.Response': 'shutdown/put_node/ShutdownPutNodeResponse.ts#L22-L25',
'simulate.ingest.IngestDocumentSimulation': 'simulate/ingest/SimulateIngestResponse.ts#L36-L80',
'simulate.ingest.MergeType': 'simulate/ingest/SimulateIngestRequest.ts#L113-L116',
Expand Down Expand Up @@ -3507,10 +3507,10 @@
if (hash.length > 1) {
hash = hash.substring(1);
}
window.location = "https://github.com/elastic/elasticsearch-specification/tree/928c63cb55207b6063e98c17f7f98de72ddda161/specification/" + (paths[hash] || "");
window.location = "https://github.com/elastic/elasticsearch-specification/tree/4724cc124143ef991caae844146e207e64d017fd/specification/" + (paths[hash] || "");
</script>
</head>
<body>
Please see the <a href="https://github.com/elastic/elasticsearch-specification/tree/928c63cb55207b6063e98c17f7f98de72ddda161/specification/">Elasticsearch API specification</a>.
Please see the <a href="https://github.com/elastic/elasticsearch-specification/tree/4724cc124143ef991caae844146e207e64d017fd/specification/">Elasticsearch API specification</a>.
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,10 @@ public static PutNodeRequest of(Function<Builder, ObjectBuilder<PutNodeRequest>>
* Only valid if type is restart. Controls how long Elasticsearch will wait for
* the node to restart and join the cluster before reassigning its shards to
* other nodes. This works the same as delaying allocation with the
* index.unassigned.node_left.delayed_timeout setting. If you specify both a
* restart allocation delay and an index-level allocation delay, the longer of
* the two is used.
* index.unassigned.node_left.delayed_timeout setting. If you don't specify a
* restart allocation delay, a default value of 5 minutes will be used. If both
* a restart allocation delay and an index-level allocation delay are
* configured, the longer of the two is used.
* <p>
* API name: {@code allocation_delay}
*/
Expand Down Expand Up @@ -285,9 +286,10 @@ private Builder(PutNodeRequest instance) {
* Only valid if type is restart. Controls how long Elasticsearch will wait for
* the node to restart and join the cluster before reassigning its shards to
* other nodes. This works the same as delaying allocation with the
* index.unassigned.node_left.delayed_timeout setting. If you specify both a
* restart allocation delay and an index-level allocation delay, the longer of
* the two is used.
* index.unassigned.node_left.delayed_timeout setting. If you don't specify a
* restart allocation delay, a default value of 5 minutes will be used. If both
* a restart allocation delay and an index-level allocation delay are
* configured, the longer of the two is used.
* <p>
* API name: {@code allocation_delay}
*/
Expand Down
Loading