| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Cat/ |
| D | Transforms.php | 30 protected $transform_id; variable in Elasticsearch\\Endpoints\\Cat\\Transforms 34 $transform_id = $this->transform_id ?? null; 36 if (isset($transform_id)) { 37 return "/_cat/transforms/$transform_id"; 62 public function setTransformId($transform_id): Transforms argument 64 if (isset($transform_id) !== true) { 67 $this->transform_id = $transform_id;
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Transform/ |
| D | GetTransform.php | 30 protected $transform_id; variable in Elasticsearch\\Endpoints\\Transform\\GetTransform 34 $transform_id = $this->transform_id ?? null; 36 if (isset($transform_id)) { 37 return "/_transform/$transform_id"; 57 public function setTransformId($transform_id): GetTransform argument 59 if (isset($transform_id) !== true) { 62 $this->transform_id = $transform_id;
|
| D | GetTransformStats.php | 31 protected $transform_id; variable in Elasticsearch\\Endpoints\\Transform\\GetTransformStats 35 $transform_id = $this->transform_id ?? null; 37 if (isset($transform_id)) { 38 return "/_transform/$transform_id/_stats"; 57 public function setTransformId($transform_id): GetTransformStats argument 59 if (isset($transform_id) !== true) { 62 $this->transform_id = $transform_id;
|
| D | DeleteTransform.php | 31 protected $transform_id; variable in Elasticsearch\\Endpoints\\Transform\\DeleteTransform 35 $transform_id = $this->transform_id ?? null; 37 if (isset($transform_id)) { 38 return "/_transform/$transform_id"; 55 public function setTransformId($transform_id): DeleteTransform argument 57 if (isset($transform_id) !== true) { 60 $this->transform_id = $transform_id;
|
| D | StartTransform.php | 31 protected $transform_id; variable in Elasticsearch\\Endpoints\\Transform\\StartTransform 35 $transform_id = $this->transform_id ?? null; 37 if (isset($transform_id)) { 38 return "/_transform/$transform_id/_start"; 55 public function setTransformId($transform_id): StartTransform argument 57 if (isset($transform_id) !== true) { 60 $this->transform_id = $transform_id;
|
| D | StopTransform.php | 31 protected $transform_id; variable in Elasticsearch\\Endpoints\\Transform\\StopTransform 35 $transform_id = $this->transform_id ?? null; 37 if (isset($transform_id)) { 38 return "/_transform/$transform_id/_stop"; 59 public function setTransformId($transform_id): StopTransform argument 61 if (isset($transform_id) !== true) { 64 $this->transform_id = $transform_id;
|
| D | PreviewTransform.php | 30 protected $transform_id; variable in Elasticsearch\\Endpoints\\Transform\\PreviewTransform 34 $transform_id = $this->transform_id ?? null; 36 if (isset($transform_id)) { 37 return "/_transform/$transform_id/_preview"; 62 public function setTransformId($transform_id): PreviewTransform argument 64 if (isset($transform_id) !== true) { 67 $this->transform_id = $transform_id;
|
| D | PutTransform.php | 31 protected $transform_id; variable in Elasticsearch\\Endpoints\\Transform\\PutTransform 35 $transform_id = $this->transform_id ?? null; 37 if (isset($transform_id)) { 38 return "/_transform/$transform_id"; 65 public function setTransformId($transform_id): PutTransform argument 67 if (isset($transform_id) !== true) { 70 $this->transform_id = $transform_id;
|
| D | UpdateTransform.php | 31 protected $transform_id; variable in Elasticsearch\\Endpoints\\Transform\\UpdateTransform 35 $transform_id = $this->transform_id ?? null; 37 if (isset($transform_id)) { 38 return "/_transform/$transform_id/_update"; 65 public function setTransformId($transform_id): UpdateTransform argument 67 if (isset($transform_id) !== true) { 70 $this->transform_id = $transform_id;
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/ |
| D | GetTransform.php | 30 protected $transform_id; variable in Elasticsearch\\Endpoints\\DataFrameTransformDeprecated\\GetTransform 34 $transform_id = $this->transform_id ?? null; 36 if (isset($transform_id)) { 37 return "/_data_frame/transforms/$transform_id"; 57 public function setTransformId($transform_id): GetTransform argument 59 if (isset($transform_id) !== true) { 62 $this->transform_id = $transform_id;
|
| D | DeleteTransform.php | 31 protected $transform_id; variable in Elasticsearch\\Endpoints\\DataFrameTransformDeprecated\\DeleteTransform 35 $transform_id = $this->transform_id ?? null; 37 if (isset($transform_id)) { 38 return "/_data_frame/transforms/$transform_id"; 55 public function setTransformId($transform_id): DeleteTransform argument 57 if (isset($transform_id) !== true) { 60 $this->transform_id = $transform_id;
|
| D | StopTransform.php | 31 protected $transform_id; variable in Elasticsearch\\Endpoints\\DataFrameTransformDeprecated\\StopTransform 35 $transform_id = $this->transform_id ?? null; 37 if (isset($transform_id)) { 38 return "/_data_frame/transforms/$transform_id/_stop"; 57 public function setTransformId($transform_id): StopTransform argument 59 if (isset($transform_id) !== true) { 62 $this->transform_id = $transform_id;
|
| D | StartTransform.php | 31 protected $transform_id; variable in Elasticsearch\\Endpoints\\DataFrameTransformDeprecated\\StartTransform 35 $transform_id = $this->transform_id ?? null; 37 if (isset($transform_id)) { 38 return "/_data_frame/transforms/$transform_id/_start"; 55 public function setTransformId($transform_id): StartTransform argument 57 if (isset($transform_id) !== true) { 60 $this->transform_id = $transform_id;
|
| D | GetTransformStats.php | 31 protected $transform_id; variable in Elasticsearch\\Endpoints\\DataFrameTransformDeprecated\\GetTransformStats 35 $transform_id = $this->transform_id ?? null; 37 if (isset($transform_id)) { 38 return "/_data_frame/transforms/$transform_id/_stats"; 57 public function setTransformId($transform_id): GetTransformStats argument 59 if (isset($transform_id) !== true) { 62 $this->transform_id = $transform_id;
|
| D | UpdateTransform.php | 31 protected $transform_id; variable in Elasticsearch\\Endpoints\\DataFrameTransformDeprecated\\UpdateTransform 35 $transform_id = $this->transform_id ?? null; 37 if (isset($transform_id)) { 38 return "/_data_frame/transforms/$transform_id/_update"; 65 public function setTransformId($transform_id): UpdateTransform argument 67 if (isset($transform_id) !== true) { 70 $this->transform_id = $transform_id;
|
| D | PutTransform.php | 31 protected $transform_id; variable in Elasticsearch\\Endpoints\\DataFrameTransformDeprecated\\PutTransform 35 $transform_id = $this->transform_id ?? null; 37 if (isset($transform_id)) { 38 return "/_data_frame/transforms/$transform_id"; 65 public function setTransformId($transform_id): PutTransform argument 67 if (isset($transform_id) !== true) { 70 $this->transform_id = $transform_id;
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/ |
| D | TransformNamespace.php | 42 $transform_id = $this->extractArgument($params, 'transform_id'); 47 $endpoint->setTransformId($transform_id); 66 $transform_id = $this->extractArgument($params, 'transform_id'); 71 $endpoint->setTransformId($transform_id); 89 $transform_id = $this->extractArgument($params, 'transform_id'); 94 $endpoint->setTransformId($transform_id); 110 $transform_id = $this->extractArgument($params, 'transform_id'); 116 $endpoint->setTransformId($transform_id); 134 $transform_id = $this->extractArgument($params, 'transform_id'); 140 $endpoint->setTransformId($transform_id); [all …]
|
| D | DataFrameTransformDeprecatedNamespace.php | 45 $transform_id = $this->extractArgument($params, 'transform_id'); 50 $endpoint->setTransformId($transform_id); 72 $transform_id = $this->extractArgument($params, 'transform_id'); 77 $endpoint->setTransformId($transform_id); 98 $transform_id = $this->extractArgument($params, 'transform_id'); 103 $endpoint->setTransformId($transform_id); 146 $transform_id = $this->extractArgument($params, 'transform_id'); 152 $endpoint->setTransformId($transform_id); 172 $transform_id = $this->extractArgument($params, 'transform_id'); 177 $endpoint->setTransformId($transform_id); [all …]
|
| D | CatNamespace.php | 691 $transform_id = $this->extractArgument($params, 'transform_id'); 696 $endpoint->setTransformId($transform_id);
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/ |
| D | TransformNamespace.asciidoc | 38 $params['transform_id'] = (string) The id of the transform to delete 52 $params['transform_id'] = (string) The id or comma delimited list of id expressions of the tra… 69 $params['transform_id'] = (string) The id of the transform for which to get stats. '_all' or '*' … 97 $params['transform_id'] = (string) The id of the new transform. 110 $params['transform_id'] = (string) The id of the transform to start 124 $params['transform_id'] = (string) The id of the transform to stop 142 $params['transform_id'] = (string) The id of the transform.
|
| D | DataFrameTransformDeprecatedNamespace.asciidoc | 39 $params['transform_id'] = (string) The id of the transform to delete 54 $params['transform_id'] = (string) The id or comma delimited list of id expressions of the tra… 72 $params['transform_id'] = (string) The id of the transform for which to get stats. '_all' or '*' … 101 $params['transform_id'] = (string) The id of the new transform. 115 $params['transform_id'] = (string) The id of the transform to start 130 $params['transform_id'] = (string) The id of the transform to stop 147 $params['transform_id'] = (string) The id of the transform.
|
| D | CatNamespace.asciidoc | 538 $params['transform_id'] = (string) The id of the transform for which to get stats. '_all' or '*' …
|