elasticsearch\Command $indexStatus

$indexStatus public read-only property public mixed getIndexStatus ( $index = '_all' )

elasticsearch\Command $index

$index public property The indexes to execute the query on. Defaults to null meaning all indexes See also http://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html#search-multi-index-type. public string|array $index = null

elasticsearch\Command $db

$db public property public yii\elasticsearch\Connection $db = null

elasticsearch\BulkCommand execute()

execute() public method Executes the bulk command. public mixed execute ( )throws \yii\elasticsearch\yii\base\InvalidCallException

elasticsearch\BulkCommand addDeleteAction()

addDeleteAction() public method Adds a delete action to the command. public void addDeleteAction ( $id, $index = null, $type = null )$id string Document ID $index string Index that the document belogs to. Can be set to null if the command has a default index (yii\elasticsearch\BulkCommand::$index) assigned. $type string Type that the document belogs to. Can be set to null if the command has a default type (yii\elasticsearch\BulkCommand::$type) assigned.

elasticsearch\BulkCommand addAction()

addAction() public method Adds an action to the command. Will overwrite existing actions if they are specified as a string. public void addAction ( $line1, $line2 = null )$line1 $line2

elasticsearch\BulkCommand $type

$type public property Default type to execute the queries on. Defaults to null meaning that type needs to be specified in every action. public string $type = null

elasticsearch\BulkCommand $options

$options public property Options to be appended to the query URL. public array $options = []

elasticsearch\BulkCommand $index

$index public property Default index to execute the queries on. Defaults to null meaning that index needs to be specified in every action. public string $index = null

elasticsearch\BulkCommand $db

$db public property public yii\elasticsearch\Connection $db = null