Lines Matching defs:mapping
14 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html
38 * Sets the mapping properties.
50 * Gets the mapping properties.
60 * Sets the mapping _meta.
66 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-meta.html
83 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-source-field.html
146 * Converts the mapping to an array.
158 * Submits the mapping and sends it to the server.
161 * @param array $query Query string parameters to send with mapping
176 * Creates a mapping object.
178 * @param array|Mapping $mapping Mapping object or properties array
184 public static function create($mapping): Mapping
186 if (\is_array($mapping)) {
188 $mappingObject->setProperties($mapping);
193 if ($mapping instanceof self) {
194 return $mapping;