← All recipes
Moderne licensed

Rename Elasticsearch valueBody() methods

Recipe IDio.moderne.elastic.elastic9.RenameApiField
Artifactio.moderne.recipe:rewrite-elastic

In Elasticsearch Java Client 9.0, the generic valueBody() method and valueBody(...) builder methods have been replaced with specific getter and setter methods that better reflect the type of data being returned. Similarly, for GetRepositoryResponse, the result field also got altered to repositories.

Single recipeelasticsearchmigrationProprietary

Usage

You’ll need the Moderne CLI configured before running the command below.

mod run . --recipe io.moderne.elastic.elastic9.RenameApiField --recipe-option "fullyQualifiedName=co.elastic.clients.elasticsearch.snapshot.RepositoryVerifyIntegrityResponse" --recipe-option "field=valueBody" --recipe-option "newField=result"

If the recipe isn’t available locally, install it with:

mod config recipes jar install io.moderne.recipe:rewrite-elastic:0.8.2

Options

NameTypeDescription
fullyQualifiedNamerequiredStringThe fully qualified name of the class containing the field to rename.
e.g. co.elastic.clients.elasticsearch.snapshot.RepositoryVerifyIntegrityResponse
fieldrequiredStringThe name of the field/method to rename.
e.g. valueBody
newFieldrequiredStringThe new name for the field/method.
e.g. result

Data tables

Structured output this recipe can produce.

  • Source files that had resultsSource files that were modified by the recipe run.org.openrewrite.table.SourcesFileResults
  • Source files that had search resultsSearch results that were found during the recipe run.org.openrewrite.table.SearchResults
  • Source files that errored on a recipeThe details of all errors produced by a recipe run.org.openrewrite.table.SourcesFileErrors
  • Recipe performanceStatistics used in analyzing the performance of recipes.org.openrewrite.table.RecipeRunStats