Data-AnyXfer
view release on metacpan or search on metacpan
lib/Search/Elasticsearch/Role/API/2_0.pm view on Meta::CPAN
'cat.repositories' => {
doc => "cat-repositories",
parts => {},
paths => [ [ {}, "_cat", "repositories" ] ],
qs => [ "h", "help", "local", "master_timeout", "v" ],
},
'cat.segments' => {
doc => "cat-segments",
parts => { index => { multi => 1 } },
paths => [
[ { index => 2 }, "_cat", "segments", "{index}" ],
[ {}, "_cat", "segments" ],
],
qs => [ "h", "help", "v" ],
},
'cat.shards' => {
doc => "cat-shards",
parts => { index => { multi => 1 } },
paths => [
[ { index => 2 }, "_cat", "shards", "{index}" ],
[ {}, "_cat", "shards" ],
],
qs => [ "h", "help", "local", "master_timeout", "v" ],
},
'cat.snapshots' => {
doc => "cat-snapshots",
parts => { repository => { multi => 1, required => 1 } },
paths =>
[ [ { repository => 2 }, "_cat", "snapshots", "{repository}" ] ],
qs => [ "h", "help", "ignore_unavailable", "master_timeout", "v" ],
},
'cat.thread_pool' => {
doc => "cat-thread-pool",
parts => {},
paths => [ [ {}, "_cat", "thread_pool" ] ],
qs => [ "full_id", "h", "help", "local", "master_timeout", "v" ],
},
'cluster.get_settings' => {
doc => "cluster-update-settings",
parts => {},
paths => [ [ {}, "_cluster", "settings" ] ],
qs => [ "filter_path", "flat_settings", "master_timeout", "timeout" ],
},
'cluster.health' => {
doc => "cluster-health",
parts => { index => { multi => 1 } },
paths => [
[ { index => 2 }, "_cluster", "health", "{index}" ],
[ {}, "_cluster", "health" ],
],
qs => [
"filter_path", "level",
"local", "master_timeout",
"timeout", "wait_for_active_shards",
"wait_for_nodes", "wait_for_relocating_shards",
"wait_for_status",
],
},
'cluster.pending_tasks' => {
doc => "cluster-pending",
parts => {},
paths => [ [ {}, "_cluster", "pending_tasks" ] ],
qs => [ "filter_path", "local", "master_timeout" ],
},
'cluster.put_settings' => {
body => {},
doc => "cluster-update-settings",
method => "PUT",
parts => {},
paths => [ [ {}, "_cluster", "settings" ] ],
qs => [ "filter_path", "flat_settings", "master_timeout", "timeout" ],
},
'cluster.reroute' => {
body => {},
doc => "cluster-reroute",
method => "POST",
parts => {},
paths => [ [ {}, "_cluster", "reroute" ] ],
qs => [
"dry_run", "explain", "filter_path", "master_timeout",
"metric", "timeout",
],
},
'cluster.state' => {
doc => "cluster-state",
parts => { index => { multi => 1 }, metric => { multi => 1 } },
paths => [
[ { index => 3, metric => 2 }, "_cluster",
"state", "{metric}",
"{index}",
],
[ { index => 3 }, "_cluster", "state", "_all", "{index}" ],
[ { metric => 2 }, "_cluster", "state", "{metric}" ],
[ {}, "_cluster", "state" ],
],
qs => [
"allow_no_indices", "expand_wildcards",
"filter_path", "flat_settings",
"ignore_unavailable", "local",
"master_timeout",
],
},
'cluster.stats' => {
doc => "cluster-stats",
parts => { node_id => { multi => 1 } },
paths => [
[ { node_id => 3 }, "_cluster", "stats", "nodes", "{node_id}" ],
[ {}, "_cluster", "stats" ],
],
qs => [ "filter_path", "flat_settings", "human", "timeout" ],
( run in 0.346 second using v1.01-cache-2.11-cpan-71847e10f99 )