Query parameters
-
The period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error. A value of
-1indicates that the request should never time out.Default value is
30s. -
The period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error. A value of
-1indicates that the request should never time out.Default value is
30s.
DELETE
/_ingest/ip_location/database/{id}
Console
DELETE /_ingest/ip_location/database/my-database-id
resp = client.ingest.delete_ip_location_database(
id="my-database-id",
)
const response = await client.ingest.deleteIpLocationDatabase({
id: "my-database-id",
});
response = client.ingest.delete_ip_location_database(
id: "my-database-id"
)
$resp = $client->ingest()->deleteIpLocationDatabase([
"id" => "my-database-id",
]);
curl -X DELETE -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_ingest/ip_location/database/my-database-id"
var response = await client.Ingest.DeleteIpLocationDatabaseAsync(id: new[] { "my-database-id" });
client.ingest().deleteIpLocationDatabase(d -> d
.id("my-database-id")
);