Rename Elasticsearch valueBody() methods
Recipe ID
io.moderne.elastic.elastic9.RenameApiFieldArtifact
io.moderne.recipe:rewrite-elasticIn 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.
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.2Options
| Name | Type | Description |
|---|---|---|
fullyQualifiedNamerequired | String | The fully qualified name of the class containing the field to rename. e.g. co.elastic.clients.elasticsearch.snapshot.RepositoryVerifyIntegrityResponse |
fieldrequired | String | The name of the field/method to rename. e.g. valueBody |
newFieldrequired | String | The 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