Skip to main content

Change config related classes from v1 to v2

software.amazon.awssdk.v2migration.ChangeConfigTypes

Change config related classes from v1 to v2.

Recipe source

GitHub, Issue Tracker, Maven Central

  • groupId: org.openrewrite.recipe
  • artifactId: rewrite-third-party
  • version: 0.11.1
info

This recipe is composed of more than one recipe. If you want to customize the set of recipes this is composed of, you can find and copy the GitHub source for the recipe from the link above.

Definition

  • Change method name
    • methodPattern: com.amazonaws.ClientConfiguration withRequestTimeout(int)
    • newMethodName: withApiCallAttemptTimeout
  • Change method name
    • methodPattern: com.amazonaws.ClientConfiguration setRequestTimeout(int)
    • newMethodName: withApiCallAttemptTimeout
  • Convert the method parameter from numeric type to duration
    • methodPattern: com.amazonaws.ClientConfiguration withApiCallAttemptTimeout(int)
    • timeUnit: MILLISECONDS
  • Change method name
    • methodPattern: com.amazonaws.ClientConfiguration withClientExecutionTimeout(int)
    • newMethodName: withApiCallTimeout
  • Change method name
    • methodPattern: com.amazonaws.ClientConfiguration setClientExecutionTimeout(int)
    • newMethodName: withApiCallTimeout
  • Convert the method parameter from numeric type to duration
    • methodPattern: com.amazonaws.ClientConfiguration withApiCallTimeout(int)
    • timeUnit: MILLISECONDS
  • Convert the method parameter from numeric type to duration
    • methodPattern: com.amazonaws.ClientConfiguration withConnectionTimeout(int)
    • timeUnit: MILLISECONDS
  • Convert the method parameter from numeric type to duration
    • methodPattern: com.amazonaws.ClientConfiguration withSocketTimeout(int)
    • timeUnit: MILLISECONDS
  • Change method name
    • methodPattern: com.amazonaws.ClientConfiguration withConnectionMaxIdleMillis(long)
    • newMethodName: withConnectionMaxIdleTime
  • Convert the method parameter from numeric type to duration
    • methodPattern: com.amazonaws.ClientConfiguration withConnectionMaxIdleTime(long)
    • timeUnit: MILLISECONDS
  • Change method name
    • methodPattern: com.amazonaws.ClientConfiguration withConnectionTTL(long)
    • newMethodName: withConnectionTimeToLive
  • Convert the method parameter from numeric type to duration
    • methodPattern: com.amazonaws.ClientConfiguration withConnectionTimeToLive(long)
    • timeUnit: MILLISECONDS
  • Change method name
    • methodPattern: com.amazonaws.ClientConfiguration withRetryMode(..)
    • newMethodName: withRetryPolicy
  • Change method name
    • methodPattern: com.amazonaws.ClientConfiguration setRetryMode(..)
    • newMethodName: withRetryPolicy
  • Change method name
    • methodPattern: com.amazonaws.ClientConfiguration withHeader(String, String)
    • newMethodName: withPutHeader
  • Change method name
    • methodPattern: com.amazonaws.ClientConfiguration setHeader(String, String)
    • newMethodName: withPutHeader
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration setMaxConsecutiveRetriesBeforeThrottling(int)
    • comment: maxConsecutiveRetriesBeforeThrottling is deprecated and not supported in v2. Consider removing it or using a custom RetryPolicy.
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration withMaxConsecutiveRetriesBeforeThrottling(int)
    • comment: maxConsecutiveRetriesBeforeThrottling is deprecated and not supported in v2. Consider removing it or using a custom RetryPolicy.
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration setCacheResponseMetadata(boolean)
    • comment: cacheResponseMetadata is deprecated and not supported in v2. Consider removing it.
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration withCacheResponseMetadata(boolean)
    • comment: cacheResponseMetadata is deprecated and not supported in v2. Consider removing it.
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration withDisableHostPrefixInjection(boolean)
    • comment: disableHostPrefixInjection is deprecated and not supported removed in v2. Consider removing it.
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration setDisableHostPrefixInjection(boolean)
    • comment: disableHostPrefixInjection is deprecated and not supported in v2. Consider removing it.
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration setDnsResolver(..)
    • comment: dnsResolver is not supported in v2. Please submit a feature request https://github.com/aws/aws-sdk-java-v2/issues
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration withDnsResolver(..)
    • comment: dnsResolver is not supported in v2. Please submit a feature request https://github.com/aws/aws-sdk-java-v2/issues
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration setGzip(boolean)
    • comment: gzip is not supported in v2 tracking in https://github.com/aws/aws-sdk-java-v2/issues/866. Consider removing it.
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration withGzip(boolean)
    • comment: gzip is not supported in v2 tracking in https://github.com/aws/aws-sdk-java-v2/issues/866. Consider removing it.
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration setLocalAddress(..)
    • comment: localAddress is not supported in v2. Please submit a feature request https://github.com/aws/aws-sdk-java-v2/issues
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration withLocalAddress(..)
    • comment: localAddress is not supported in v2. Please submit a feature request https://github.com/aws/aws-sdk-java-v2/issues
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration setSecureRandom(.*)
    • comment: secureRandom is not supported in v2. Please submit a feature request https://github.com/aws/aws-sdk-java-v2/issues
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration withSecureRandom(.*)
    • comment: secureRandom is supported in v2. Please submit a feature request https://github.com/aws/aws-sdk-java-v2/issues
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration setUseExpectContinue(boolean)
    • comment: useExpectContinue is removed in v2. Please submit a feature request https://github.com/aws/aws-sdk-java-v2/issues
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration withUseExpectContinue(boolean)
    • comment: useExpectContinue is removed in v2. Please submit a feature request https://github.com/aws/aws-sdk-java-v2/issues
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration withProtocol(.*)
    • comment: protocol is deprecated and not supported in v2. Consider using endpointOverride to specify HTTP scheme.
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration setProtocol(.*)
    • comment: protocol is deprecated and not supported in v2. Consider using endpointOverride to specify HTTP scheme.
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration withUserAgent(String)
    • comment: userAgent override is a request-level config in v2. See https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/core/RequestOverrideConfiguration.Builder.html#addApiName(software.amazon.awssdk.core.ApiName).
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration setUserAgent(String)
    • comment: userAgent override is a request-level config in v2. See https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/core/RequestOverrideConfiguration.Builder.html#addApiName(software.amazon.awssdk.core.ApiName).
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration withUserAgentPrefix(String)
    • comment: userAgentPrefix override is a request-level config in v2. See https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/core/RequestOverrideConfiguration.Builder.html#addApiName(software.amazon.awssdk.core.ApiName).
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration setUserAgentPrefix(String)
    • comment: userAgentPrefix override is a request-level config in v2. See https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/core/RequestOverrideConfiguration.Builder.html#addApiName(software.amazon.awssdk.core.ApiName).
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration withUserAgentSuffix(String)
    • comment: userAgentSuffix override is a request-level config in v2. See https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/core/RequestOverrideConfiguration.Builder.html#addApiName(software.amazon.awssdk.core.ApiName).
  • Add a comment to a method
    • methodPattern: com.amazonaws.ClientConfiguration setUserAgentSuffix(String)
    • comment: userAgentSuffix override is a request-level config in v2. See https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/core/RequestOverrideConfiguration.Builder.html#addApiName(software.amazon.awssdk.core.ApiName).
  • Change type
    • oldFullyQualifiedTypeName: com.amazonaws.ClientConfiguration
    • newFullyQualifiedTypeName: software.amazon.awssdk.core.client.config.ClientOverrideConfiguration
  • Change type
    • oldFullyQualifiedTypeName: com.amazonaws.retry.RetryMode
    • newFullyQualifiedTypeName: software.amazon.awssdk.core.retry.RetryMode

Usage

This recipe has no required configuration options. It can be activated by adding a dependency on org.openrewrite.recipe:rewrite-third-party:0.11.1 in your build file or by running a shell command (in which case no build changes are needed):

  1. Add the following to your build.gradle file:
build.gradle
plugins {
id("org.openrewrite.rewrite") version("6.27.1")
}

rewrite {
activeRecipe("software.amazon.awssdk.v2migration.ChangeConfigTypes")
setExportDatatables(true)
}

repositories {
mavenCentral()
}

dependencies {
rewrite("org.openrewrite.recipe:rewrite-third-party:0.11.1")
}
  1. Run gradle rewriteRun to run the recipe.

See how this recipe works across multiple open-source repositories

Run this recipe on OSS repos at scale with the Moderne SaaS.

The community edition of the Moderne platform enables you to easily run recipes across thousands of open-source repositories.

Please contact Moderne for more information about safely running the recipes on your own codebase in a private SaaS.

Data Tables

Source files that had results

org.openrewrite.table.SourcesFileResults

Source files that were modified by the recipe run.

Column NameDescription
Source path before the runThe source path of the file before the run. null when a source file was created during the run.
Source path after the runA recipe may modify the source path. This is the path after the run. null when a source file was deleted during the run.
Parent of the recipe that made changesIn a hierarchical recipe, the parent of the recipe that made a change. Empty if this is the root of a hierarchy or if the recipe is not hierarchical at all.
Recipe that made changesThe specific recipe that made a change.
Estimated time savingAn estimated effort that a developer to fix manually instead of using this recipe, in unit of seconds.
CycleThe recipe cycle in which the change was made.

Source files that errored on a recipe

org.openrewrite.table.SourcesFileErrors

The details of all errors produced by a recipe run.

Column NameDescription
Source pathThe file that failed to parse.
Recipe that made changesThe specific recipe that made a change.
Stack traceThe stack trace of the failure.

Recipe performance

org.openrewrite.table.RecipeRunStats

Statistics used in analyzing the performance of recipes.

Column NameDescription
The recipeThe recipe whose stats are being measured both individually and cumulatively.
Source file countThe number of source files the recipe ran over.
Source file changed countThe number of source files which were changed in the recipe run. Includes files created, deleted, and edited.
Cumulative scanning timeThe total time spent across the scanning phase of this recipe.
99th percentile scanning time99 out of 100 scans completed in this amount of time.
Max scanning timeThe max time scanning any one source file.
Cumulative edit timeThe total time spent across the editing phase of this recipe.
99th percentile edit time99 out of 100 edits completed in this amount of time.
Max edit timeThe max time editing any one source file.