клиентский набор python эластичного поиска во время создания индекса

Я могу установить сопоставления создаваемого индекса в команде curl следующим образом:

{  
  "mappings":{  
    "logs_june":{  
      "_timestamp":{  
        "enabled":"true"
      },
      "properties":{  
        "logdate":{  
          "type":"date",
          "format":"dd/MM/yyy HH:mm:ss"
        }
      }
    }
  }
}

Но мне нужно создать этот индекс с помощью клиента Flexiblesearch в Python и установить сопоставления. Каков путь? Я попробовал кое-что ниже, но не работает:

self.elastic_con = Elasticsearch([host], verify_certs=True)
self.elastic_con.indices.create(index="accesslog", ignore=400)
params = "{\"mappings\":{\"logs_june\":{\"_timestamp\": {\"enabled\": \"true\"},\"properties\":{\"logdate\":{\"type\":\"date\",\"format\":\"dd/MM/yyy HH:mm:ss\"}}}}}"
self.elastic_con.indices.put_mapping(index="accesslog",body=params)

Ответы на вопрос(4)

Ваш ответ на вопрос