summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Index.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Index.php')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Index.php142
1 files changed, 0 insertions, 142 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Index.php b/vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Index.php
deleted file mode 100644
index c39e94c3..00000000
--- a/vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Index.php
+++ /dev/null
@@ -1,142 +0,0 @@
-<?php
-
-namespace Elastica\Cluster\Health;
-
-/**
- * Wraps status information for an index.
- *
- * @package Elastica
- * @author Ray Ward <ray.ward@bigcommerce.com>
- * @link http://www.elasticsearch.org/guide/reference/api/admin-cluster-health.html
- */
-class Index
-{
- /**
- * The name of the index.
- *
- * @var string
- */
- protected $_name;
-
- /**
- * The index health data.
- *
- * @var array
- */
- protected $_data;
-
- /**
- * @param string $name The name of the index.
- * @param array $data The index health data.
- */
- public function __construct($name, $data)
- {
- $this->_name = $name;
- $this->_data = $data;
- }
-
- /**
- * Gets the name of the index.
- *
- * @return string
- */
- public function getName()
- {
- return $this->_name;
- }
-
- /**
- * Gets the status of the index.
- *
- * @return string green, yellow or red.
- */
- public function getStatus()
- {
- return $this->_data['status'];
- }
-
- /**
- * Gets the number of nodes in the index.
- *
- * @return int
- */
- public function getNumberOfShards()
- {
- return $this->_data['number_of_shards'];
- }
-
- /**
- * Gets the number of data nodes in the index.
- *
- * @return int
- */
- public function getNumberOfReplicas()
- {
- return $this->_data['number_of_replicas'];
- }
-
- /**
- * Gets the number of active primary shards.
- *
- * @return int
- */
- public function getActivePrimaryShards()
- {
- return $this->_data['active_primary_shards'];
- }
-
- /**
- * Gets the number of active shards.
- *
- * @return int
- */
- public function getActiveShards()
- {
- return $this->_data['active_shards'];
- }
-
- /**
- * Gets the number of relocating shards.
- *
- * @return int
- */
- public function getRelocatingShards()
- {
- return $this->_data['relocating_shards'];
- }
-
- /**
- * Gets the number of initializing shards.
- *
- * @return int
- */
- public function getInitializingShards()
- {
- return $this->_data['initializing_shards'];
- }
-
- /**
- * Gets the number of unassigned shards.
- *
- * @return int
- */
- public function getUnassignedShards()
- {
- return $this->_data['unassigned_shards'];
- }
-
- /**
- * Gets the health of the shards in this index.
- *
- * @return \Elastica\Cluster\Health\Shard[]
- */
- public function getShards()
- {
- $shards = array();
- foreach ($this->_data['shards'] as $shardNumber => $shard) {
- $shards[] = new Shard($shardNumber, $shard);
- }
-
- return $shards;
- }
-}