Skip to content

Commit 90e7778

Browse files
authored
chore: reorganize codegen customizations by service (#3042)
1 parent a5686f5 commit 90e7778

40 files changed

+101
-84
lines changed

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/EndpointGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import java.util.function.Function;
2828
import java.util.stream.Collectors;
2929
import java.util.stream.Stream;
30-
import software.amazon.smithy.aws.go.codegen.customization.S3ModelUtils;
30+
import software.amazon.smithy.aws.go.codegen.customization.service.s3.S3ModelUtils;
3131
import software.amazon.smithy.aws.traits.ServiceTrait;
3232
import software.amazon.smithy.codegen.core.CodegenException;
3333
import software.amazon.smithy.codegen.core.Symbol;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/DisableEndpointHostPrefix.java

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
import java.util.List;
2121
import software.amazon.smithy.aws.go.codegen.SdkGoTypes;
22+
import software.amazon.smithy.aws.go.codegen.customization.service.s3.S3ModelUtils;
2223
import software.amazon.smithy.go.codegen.integration.GoIntegration;
2324
import software.amazon.smithy.go.codegen.integration.MiddlewareRegistrar;
2425
import software.amazon.smithy.go.codegen.integration.RuntimeClientPlugin;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/auth/S3ExpressAuthScheme.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
package software.amazon.smithy.aws.go.codegen.customization.auth;
1717

1818
import software.amazon.smithy.aws.go.codegen.SdkGoTypes;
19-
import software.amazon.smithy.aws.go.codegen.customization.S3ModelUtils;
19+
import software.amazon.smithy.aws.go.codegen.customization.service.s3.S3ModelUtils;
2020
import software.amazon.smithy.codegen.core.SymbolProvider;
2121
import software.amazon.smithy.go.codegen.GoDelegator;
2222
import software.amazon.smithy.go.codegen.GoSettings;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/APIGatewayAcceptHeader.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/apigateway/APIGatewayAcceptHeader.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@
1515
*
1616
*/
1717

18-
package software.amazon.smithy.aws.go.codegen.customization;
18+
package software.amazon.smithy.aws.go.codegen.customization.service.apigateway;
1919

2020
import java.util.List;
21+
22+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
2123
import software.amazon.smithy.aws.traits.ServiceTrait;
2224
import software.amazon.smithy.codegen.core.SymbolProvider;
2325
import software.amazon.smithy.go.codegen.GoDelegator;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/CloudFrontKVSSigV4a.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/cloudfrontkeyvaluestore/CloudFrontKVSSigV4a.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
*/
1717

18-
package software.amazon.smithy.aws.go.codegen.customization;
18+
package software.amazon.smithy.aws.go.codegen.customization.service.cloudfrontkeyvaluestore;
1919

2020
import software.amazon.smithy.aws.traits.ServiceTrait;
2121
import software.amazon.smithy.aws.traits.auth.SigV4ATrait;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/DynamoDBValidateResponseChecksum.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/dynamodb/DynamoDBValidateResponseChecksum.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@
1515
*
1616
*/
1717

18-
package software.amazon.smithy.aws.go.codegen.customization;
18+
package software.amazon.smithy.aws.go.codegen.customization.service.dynamodb;
1919

2020
import java.util.List;
21+
22+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
2123
import software.amazon.smithy.aws.traits.ServiceTrait;
2224
import software.amazon.smithy.codegen.core.SymbolProvider;
2325
import software.amazon.smithy.go.codegen.GoDelegator;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/BackfillEc2UnboxedToBoxedShapes.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/ec2/BackfillEc2UnboxedToBoxedShapes.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.ec2;
22

33
import java.util.ArrayList;
44
import java.util.List;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/EventBridgeMultiRegionEndpoint.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/eventbridge/EventBridgeMultiRegionEndpoint.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.eventbridge;
22

33
import java.util.ArrayList;
44
import java.util.List;
55
import java.util.Map;
66
import software.amazon.smithy.aws.go.codegen.AwsEndpointGenerator;
7+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
78
import software.amazon.smithy.aws.traits.ServiceTrait;
89
import software.amazon.smithy.codegen.core.CodegenException;
910
import software.amazon.smithy.codegen.core.SymbolProvider;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/GlacierCustomizations.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/glacier/GlacierCustomizations.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.glacier;
22

33
import java.util.List;
4-
import java.util.stream.Collectors;
4+
5+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
56
import software.amazon.smithy.aws.traits.ServiceTrait;
67
import software.amazon.smithy.codegen.core.SymbolProvider;
78
import software.amazon.smithy.go.codegen.GoDelegator;
@@ -17,7 +18,6 @@
1718
import software.amazon.smithy.model.shapes.MemberShape;
1819
import software.amazon.smithy.model.shapes.OperationShape;
1920
import software.amazon.smithy.model.shapes.ServiceShape;
20-
import software.amazon.smithy.model.shapes.ShapeId;
2121
import software.amazon.smithy.model.shapes.StructureShape;
2222
import software.amazon.smithy.utils.ListUtils;
2323

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/KinesisCustomizations.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/kinesis/KinesisCustomizations.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.kinesis;
22

33
import java.util.List;
44
import software.amazon.smithy.aws.go.codegen.AwsGoDependency;
5+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
56
import software.amazon.smithy.aws.traits.ServiceTrait;
67
import software.amazon.smithy.go.codegen.SymbolUtils;
78
import software.amazon.smithy.go.codegen.integration.GoIntegration;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/MachineLearningCustomizations.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/machinelearning/MachineLearningCustomizations.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.machinelearning;
22

33
import java.util.List;
4+
5+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
46
import software.amazon.smithy.aws.traits.ServiceTrait;
57
import software.amazon.smithy.codegen.core.SymbolProvider;
68
import software.amazon.smithy.go.codegen.GoDelegator;
@@ -16,7 +18,6 @@
1618
import software.amazon.smithy.model.knowledge.TopDownIndex;
1719
import software.amazon.smithy.model.shapes.OperationShape;
1820
import software.amazon.smithy.model.shapes.ServiceShape;
19-
import software.amazon.smithy.model.shapes.Shape;
2021
import software.amazon.smithy.model.shapes.StructureShape;
2122
import software.amazon.smithy.utils.ListUtils;
2223

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/Route53Customizations.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/route53/Route53Customizations.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.route53;
22

33
import java.util.List;
44
import java.util.stream.Collectors;
5+
6+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
57
import software.amazon.smithy.aws.traits.ServiceTrait;
68
import software.amazon.smithy.codegen.core.CodegenException;
79
import software.amazon.smithy.codegen.core.SymbolProvider;
+1-4
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,16 @@
1515
*
1616
*/
1717

18-
package software.amazon.smithy.aws.go.codegen.customization;
18+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
1919

2020
import java.util.Map;
2121
import java.util.Set;
2222
import java.util.logging.Logger;
2323
import software.amazon.smithy.go.codegen.GoSettings;
2424
import software.amazon.smithy.go.codegen.integration.GoIntegration;
2525
import software.amazon.smithy.model.Model;
26-
import software.amazon.smithy.model.shapes.IntegerShape;
2726
import software.amazon.smithy.model.shapes.LongShape;
28-
import software.amazon.smithy.model.shapes.Shape;
2927
import software.amazon.smithy.model.shapes.ShapeId;
30-
import software.amazon.smithy.model.shapes.ShapeType;
3128
import software.amazon.smithy.utils.MapUtils;
3229
import software.amazon.smithy.utils.OptionalUtils;
3330
import software.amazon.smithy.utils.SetUtils;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/s3/ExpressDefaultChecksum.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/ExpressDefaultChecksum.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
package software.amazon.smithy.aws.go.codegen.customization.s3;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import software.amazon.smithy.aws.go.codegen.SdkGoTypes;
4-
import software.amazon.smithy.aws.go.codegen.customization.S3ModelUtils;
54
import software.amazon.smithy.aws.traits.HttpChecksumTrait;
65
import software.amazon.smithy.go.codegen.GoSettings;
76
import software.amazon.smithy.go.codegen.GoWriter;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/s3/ExpressUserAgent.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/ExpressUserAgent.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
* permissions and limitations under the License.
1414
*/
1515

16-
package software.amazon.smithy.aws.go.codegen.customization.s3;
16+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
1717

1818
import java.util.List;
19-
import software.amazon.smithy.aws.go.codegen.customization.S3ModelUtils;
19+
2020
import software.amazon.smithy.go.codegen.integration.GoIntegration;
2121
import software.amazon.smithy.go.codegen.integration.MiddlewareRegistrar;
2222
import software.amazon.smithy.go.codegen.integration.RuntimeClientPlugin;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3100Continue.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3100Continue.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

3+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
34
import software.amazon.smithy.codegen.core.SymbolProvider;
45
import software.amazon.smithy.go.codegen.GoDelegator;
56
import software.amazon.smithy.go.codegen.GoSettings;
@@ -11,7 +12,6 @@
1112
import software.amazon.smithy.go.codegen.integration.RuntimeClientPlugin;
1213
import software.amazon.smithy.model.Model;
1314
import software.amazon.smithy.model.shapes.ServiceShape;
14-
import software.amazon.smithy.model.traits.HttpTrait;
1515
import software.amazon.smithy.utils.ListUtils;
1616

1717
import java.util.Arrays;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3AcceptEncodingGzip.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3AcceptEncodingGzip.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import java.util.List;
44
import java.util.logging.Logger;
55
import software.amazon.smithy.aws.go.codegen.AddAwsConfigFields;
6+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
67
import software.amazon.smithy.codegen.core.SymbolProvider;
78
import software.amazon.smithy.go.codegen.GoDelegator;
89
import software.amazon.smithy.go.codegen.GoSettings;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3AddPutObjectUnseekableBodyDoc.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3AddPutObjectUnseekableBodyDoc.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import java.util.Map;
44
import java.util.Optional;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3BucketContext.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3BucketContext.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import software.amazon.smithy.go.codegen.SymbolUtils;
44
import software.amazon.smithy.go.codegen.integration.GoIntegration;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3Bucketer.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3Bucketer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import software.amazon.smithy.codegen.core.CodegenException;
44
import software.amazon.smithy.codegen.core.SymbolProvider;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3ContentSHA256Header.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3ContentSHA256Header.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import java.util.List;
44
import java.util.Optional;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3ControlEndpointResolver.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3ControlEndpointResolver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import java.util.function.Consumer;
44
import software.amazon.smithy.aws.go.codegen.EndpointGenerator;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3ErrorWith200Status.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3ErrorWith200Status.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import java.util.List;
44
import java.util.Set;
5+
6+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
57
import software.amazon.smithy.go.codegen.SymbolUtils;
68
import software.amazon.smithy.go.codegen.integration.GoIntegration;
79
import software.amazon.smithy.go.codegen.integration.MiddlewareRegistrar;
+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
* permissions and limitations under the License.
1414
*/
1515

16-
package software.amazon.smithy.aws.go.codegen.customization.s3;
16+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
1717

18-
import static software.amazon.smithy.aws.go.codegen.customization.S3ModelUtils.isServiceS3;
18+
import static software.amazon.smithy.aws.go.codegen.customization.service.s3.S3ModelUtils.isServiceS3;
1919
import static software.amazon.smithy.go.codegen.GoWriter.goTemplate;
2020
import static software.amazon.smithy.go.codegen.SymbolUtils.buildPackageSymbol;
2121

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3ExportInternalFeatures.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3ExportInternalFeatures.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
* permissions and limitations under the License.
1414
*/
1515

16-
package software.amazon.smithy.aws.go.codegen.customization;
16+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
1717

18+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
1819
import software.amazon.smithy.codegen.core.Symbol;
1920
import software.amazon.smithy.codegen.core.SymbolProvider;
2021
import software.amazon.smithy.go.codegen.GoDelegator;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3GetBucketLocation.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3GetBucketLocation.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import java.util.List;
44
import software.amazon.smithy.aws.go.codegen.XmlProtocolUtils;
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import software.amazon.smithy.go.codegen.GoSettings;
44
import software.amazon.smithy.go.codegen.integration.GoIntegration;
+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* permissions and limitations under the License.
1414
*/
1515

16-
package software.amazon.smithy.aws.go.codegen.customization;
16+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
1717

1818
import java.util.logging.Logger;
1919
import java.util.regex.Pattern;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3MetadataRetriever.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3MetadataRetriever.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import java.util.List;
4+
5+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
46
import software.amazon.smithy.codegen.core.SymbolProvider;
57
import software.amazon.smithy.go.codegen.GoDelegator;
68
import software.amazon.smithy.go.codegen.GoSettings;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3ModelUtils.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3ModelUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* permissions and limitations under the License.
1414
*/
1515

16-
package software.amazon.smithy.aws.go.codegen.customization;
16+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
1717

1818
import software.amazon.smithy.aws.traits.ServiceTrait;
1919
import software.amazon.smithy.model.Model;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3PaginationExtensions.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3PaginationExtensions.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
* permissions and limitations under the License.
1414
*/
1515

16-
package software.amazon.smithy.aws.go.codegen.customization;
16+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
1717

1818
import java.util.Optional;
19-
import software.amazon.smithy.aws.traits.ServiceTrait;
19+
2020
import software.amazon.smithy.codegen.core.CodegenException;
2121
import software.amazon.smithy.go.codegen.GoSettings;
2222
import software.amazon.smithy.go.codegen.integration.GoIntegration;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3ResponseErrorWrapper.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3ResponseErrorWrapper.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import java.util.List;
4+
5+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
46
import software.amazon.smithy.codegen.core.SymbolProvider;
57
import software.amazon.smithy.go.codegen.GoDelegator;
68
import software.amazon.smithy.go.codegen.GoSettings;
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import software.amazon.smithy.go.codegen.SymbolUtils;
44
import software.amazon.smithy.go.codegen.integration.GoIntegration;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3UpdateEndpoint.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3UpdateEndpoint.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@
1515
*
1616
*/
1717

18-
package software.amazon.smithy.aws.go.codegen.customization;
18+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
1919

2020
import java.util.ArrayList;
2121
import java.util.List;
2222
import java.util.Set;
2323
import java.util.TreeSet;
2424
import java.util.stream.Collectors;
25+
26+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
2527
import software.amazon.smithy.codegen.core.CodegenException;
2628
import software.amazon.smithy.codegen.core.Symbol;
2729
import software.amazon.smithy.codegen.core.SymbolProvider;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/S3UpdateOutpostArn.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/S3UpdateOutpostArn.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
22

33
import java.util.List;
44
import java.util.Set;
55
import java.util.stream.Collectors;
66

7+
import software.amazon.smithy.aws.go.codegen.customization.AwsCustomGoDependency;
78
import software.amazon.smithy.codegen.core.CodegenException;
89
import software.amazon.smithy.codegen.core.SymbolProvider;
910
import software.amazon.smithy.go.codegen.GoDelegator;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/s3/StoreResolvedUri.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/s3/StoreResolvedUri.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@
1313
* permissions and limitations under the License.
1414
*/
1515

16-
package software.amazon.smithy.aws.go.codegen.customization.s3;
16+
package software.amazon.smithy.aws.go.codegen.customization.service.s3;
1717

18-
import software.amazon.smithy.aws.go.codegen.AwsGoDependency;
19-
import software.amazon.smithy.aws.go.codegen.customization.S3ModelUtils;
2018
import software.amazon.smithy.go.codegen.GoSettings;
2119
import software.amazon.smithy.go.codegen.GoWriter;
2220
import software.amazon.smithy.go.codegen.integration.GoIntegration;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/SQSCustomizations.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/sqs/SQSCustomizations.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* permissions and limitations under the License.
1414
*/
1515

16-
package software.amazon.smithy.aws.go.codegen.customization;
16+
package software.amazon.smithy.aws.go.codegen.customization.service.sqs;
1717

1818
import java.util.ArrayList;
1919
import java.util.List;

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/SQSValidateMessageChecksum.java codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/service/sqs/SQSValidateMessageChecksum.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package software.amazon.smithy.aws.go.codegen.customization;
1+
package software.amazon.smithy.aws.go.codegen.customization.service.sqs;
22

33
import java.util.ArrayList;
44
import java.util.List;

0 commit comments

Comments
 (0)