diff --git a/jest.config.js b/jest.config.js index a94b37b7c9fdb..b1e618b5efa09 100644 --- a/jest.config.js +++ b/jest.config.js @@ -4,7 +4,7 @@ module.exports = { ...base, projects: [ "/lib/*/jest.config.js", - "/protocol_tests/*/jest.config.js", + "/private/*/jest.config.js", "/packages/*/jest.config.js", "/clients/*/jest.config.js", ], diff --git a/package.json b/package.json index 78b6048926592..2041674261ee6 100644 --- a/package.json +++ b/package.json @@ -10,8 +10,8 @@ "generate-clients": "node ./scripts/generate-clients", "bootstrap": "yarn", "clean": "yarn clear-build-cache && yarn clear-build-info && lerna clean", - "clear-build-cache": "rimraf ./packages/*/dist ./clients/*/dist ./lib/*/dist ./protocol_tests/*/dist", - "clear-build-info": "rimraf ./packages/**/*.tsbuildinfo ./clients/**/*.tsbuildinfo ./lib/**/*.tsbuildinfo ./protocol_tests/**/*.tsbuildinfo", + "clear-build-cache": "rimraf ./packages/*/dist ./clients/*/dist ./lib/*/dist ./private/*/dist", + "clear-build-info": "rimraf ./packages/**/*.tsbuildinfo ./clients/**/*.tsbuildinfo ./lib/**/*.tsbuildinfo ./private/**/*.tsbuildinfo", "remove-documentation": "rimraf ./docs", "build:crypto-dependencies": "lerna run --scope '@aws-sdk/{types,util-utf8-browser,util-locate-window,hash-node}' --include-dependencies build", "build:protocols": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/aws-protocoltests-*' --include-dependencies build", @@ -107,7 +107,7 @@ "clients/*", "lib/*", "packages/*", - "protocol_tests/*" + "private/*" ], "nohoist": [ "**/karma*", diff --git a/protocol_tests/aws-protocoltests-json/.gitignore b/private/aws-protocoltests-ec2/.gitignore similarity index 100% rename from protocol_tests/aws-protocoltests-json/.gitignore rename to private/aws-protocoltests-ec2/.gitignore diff --git a/protocol_tests/aws-protocoltests-ec2/CHANGELOG.md b/private/aws-protocoltests-ec2/CHANGELOG.md similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/CHANGELOG.md rename to private/aws-protocoltests-ec2/CHANGELOG.md diff --git a/protocol_tests/aws-protocoltests-ec2/LICENSE b/private/aws-protocoltests-ec2/LICENSE similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/LICENSE rename to private/aws-protocoltests-ec2/LICENSE diff --git a/protocol_tests/aws-protocoltests-ec2/README.md b/private/aws-protocoltests-ec2/README.md similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/README.md rename to private/aws-protocoltests-ec2/README.md diff --git a/protocol_tests/aws-protocoltests-ec2/jest.config.js b/private/aws-protocoltests-ec2/jest.config.js similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/jest.config.js rename to private/aws-protocoltests-ec2/jest.config.js diff --git a/protocol_tests/aws-protocoltests-ec2/package.json b/private/aws-protocoltests-ec2/package.json similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/package.json rename to private/aws-protocoltests-ec2/package.json diff --git a/protocol_tests/aws-protocoltests-ec2/src/EC2Protocol.ts b/private/aws-protocoltests-ec2/src/EC2Protocol.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/EC2Protocol.ts rename to private/aws-protocoltests-ec2/src/EC2Protocol.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/EC2ProtocolClient.ts b/private/aws-protocoltests-ec2/src/EC2ProtocolClient.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/EC2ProtocolClient.ts rename to private/aws-protocoltests-ec2/src/EC2ProtocolClient.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts rename to private/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-ec2/src/commands/EndpointOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/EndpointOperationCommand.ts rename to private/aws-protocoltests-ec2/src/commands/EndpointOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-ec2/src/commands/EndpointWithHostLabelOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/EndpointWithHostLabelOperationCommand.ts rename to private/aws-protocoltests-ec2/src/commands/EndpointWithHostLabelOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts rename to private/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-ec2/src/commands/HostWithPathOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/HostWithPathOperationCommand.ts rename to private/aws-protocoltests-ec2/src/commands/HostWithPathOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts b/private/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts rename to private/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts b/private/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts rename to private/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts rename to private/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts rename to private/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts b/private/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts rename to private/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts b/private/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts rename to private/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts b/private/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts rename to private/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts b/private/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts rename to private/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/SimpleScalarXmlPropertiesCommand.ts b/private/aws-protocoltests-ec2/src/commands/SimpleScalarXmlPropertiesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/SimpleScalarXmlPropertiesCommand.ts rename to private/aws-protocoltests-ec2/src/commands/SimpleScalarXmlPropertiesCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts rename to private/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/XmlEmptyBlobsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlEmptyBlobsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/XmlEmptyBlobsCommand.ts rename to private/aws-protocoltests-ec2/src/commands/XmlEmptyBlobsCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/XmlEmptyListsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlEmptyListsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/XmlEmptyListsCommand.ts rename to private/aws-protocoltests-ec2/src/commands/XmlEmptyListsCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts rename to private/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts rename to private/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/XmlNamespacesCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlNamespacesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/XmlNamespacesCommand.ts rename to private/aws-protocoltests-ec2/src/commands/XmlNamespacesCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts rename to private/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/commands/index.ts b/private/aws-protocoltests-ec2/src/commands/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/commands/index.ts rename to private/aws-protocoltests-ec2/src/commands/index.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/endpoints.ts b/private/aws-protocoltests-ec2/src/endpoints.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/endpoints.ts rename to private/aws-protocoltests-ec2/src/endpoints.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/index.ts b/private/aws-protocoltests-ec2/src/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/index.ts rename to private/aws-protocoltests-ec2/src/index.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/models/index.ts b/private/aws-protocoltests-ec2/src/models/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/models/index.ts rename to private/aws-protocoltests-ec2/src/models/index.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/models/models_0.ts b/private/aws-protocoltests-ec2/src/models/models_0.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/models/models_0.ts rename to private/aws-protocoltests-ec2/src/models/models_0.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/protocols/Aws_ec2.ts b/private/aws-protocoltests-ec2/src/protocols/Aws_ec2.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/protocols/Aws_ec2.ts rename to private/aws-protocoltests-ec2/src/protocols/Aws_ec2.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/runtimeConfig.browser.ts b/private/aws-protocoltests-ec2/src/runtimeConfig.browser.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/runtimeConfig.browser.ts rename to private/aws-protocoltests-ec2/src/runtimeConfig.browser.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/runtimeConfig.native.ts b/private/aws-protocoltests-ec2/src/runtimeConfig.native.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/runtimeConfig.native.ts rename to private/aws-protocoltests-ec2/src/runtimeConfig.native.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/runtimeConfig.shared.ts b/private/aws-protocoltests-ec2/src/runtimeConfig.shared.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/runtimeConfig.shared.ts rename to private/aws-protocoltests-ec2/src/runtimeConfig.shared.ts diff --git a/protocol_tests/aws-protocoltests-ec2/src/runtimeConfig.ts b/private/aws-protocoltests-ec2/src/runtimeConfig.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/src/runtimeConfig.ts rename to private/aws-protocoltests-ec2/src/runtimeConfig.ts diff --git a/protocol_tests/aws-protocoltests-ec2/test/functional/ec2query.spec.ts b/private/aws-protocoltests-ec2/test/functional/ec2query.spec.ts similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/test/functional/ec2query.spec.ts rename to private/aws-protocoltests-ec2/test/functional/ec2query.spec.ts diff --git a/protocol_tests/aws-protocoltests-ec2/tsconfig.es.json b/private/aws-protocoltests-ec2/tsconfig.es.json similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/tsconfig.es.json rename to private/aws-protocoltests-ec2/tsconfig.es.json diff --git a/protocol_tests/aws-protocoltests-ec2/tsconfig.json b/private/aws-protocoltests-ec2/tsconfig.json similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/tsconfig.json rename to private/aws-protocoltests-ec2/tsconfig.json diff --git a/protocol_tests/aws-protocoltests-ec2/tsconfig.types.json b/private/aws-protocoltests-ec2/tsconfig.types.json similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/tsconfig.types.json rename to private/aws-protocoltests-ec2/tsconfig.types.json diff --git a/protocol_tests/aws-protocoltests-ec2/.gitignore b/private/aws-protocoltests-json-10/.gitignore similarity index 100% rename from protocol_tests/aws-protocoltests-ec2/.gitignore rename to private/aws-protocoltests-json-10/.gitignore diff --git a/protocol_tests/aws-protocoltests-json-10/CHANGELOG.md b/private/aws-protocoltests-json-10/CHANGELOG.md similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/CHANGELOG.md rename to private/aws-protocoltests-json-10/CHANGELOG.md diff --git a/protocol_tests/aws-protocoltests-json-10/LICENSE b/private/aws-protocoltests-json-10/LICENSE similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/LICENSE rename to private/aws-protocoltests-json-10/LICENSE diff --git a/protocol_tests/aws-protocoltests-json-10/README.md b/private/aws-protocoltests-json-10/README.md similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/README.md rename to private/aws-protocoltests-json-10/README.md diff --git a/protocol_tests/aws-protocoltests-json-10/jest.config.js b/private/aws-protocoltests-json-10/jest.config.js similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/jest.config.js rename to private/aws-protocoltests-json-10/jest.config.js diff --git a/protocol_tests/aws-protocoltests-json-10/package.json b/private/aws-protocoltests-json-10/package.json similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/package.json rename to private/aws-protocoltests-json-10/package.json diff --git a/protocol_tests/aws-protocoltests-json-10/src/JSONRPC10.ts b/private/aws-protocoltests-json-10/src/JSONRPC10.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/JSONRPC10.ts rename to private/aws-protocoltests-json-10/src/JSONRPC10.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/JSONRPC10Client.ts b/private/aws-protocoltests-json-10/src/JSONRPC10Client.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/JSONRPC10Client.ts rename to private/aws-protocoltests-json-10/src/JSONRPC10Client.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-json-10/src/commands/EmptyInputAndEmptyOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/commands/EmptyInputAndEmptyOutputCommand.ts rename to private/aws-protocoltests-json-10/src/commands/EmptyInputAndEmptyOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-json-10/src/commands/EndpointOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/commands/EndpointOperationCommand.ts rename to private/aws-protocoltests-json-10/src/commands/EndpointOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-json-10/src/commands/EndpointWithHostLabelOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/commands/EndpointWithHostLabelOperationCommand.ts rename to private/aws-protocoltests-json-10/src/commands/EndpointWithHostLabelOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-json-10/src/commands/GreetingWithErrorsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/commands/GreetingWithErrorsCommand.ts rename to private/aws-protocoltests-json-10/src/commands/GreetingWithErrorsCommand.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-json-10/src/commands/HostWithPathOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/commands/HostWithPathOperationCommand.ts rename to private/aws-protocoltests-json-10/src/commands/HostWithPathOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/commands/JsonUnionsCommand.ts b/private/aws-protocoltests-json-10/src/commands/JsonUnionsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/commands/JsonUnionsCommand.ts rename to private/aws-protocoltests-json-10/src/commands/JsonUnionsCommand.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-json-10/src/commands/NoInputAndNoOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/commands/NoInputAndNoOutputCommand.ts rename to private/aws-protocoltests-json-10/src/commands/NoInputAndNoOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-json-10/src/commands/NoInputAndOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/commands/NoInputAndOutputCommand.ts rename to private/aws-protocoltests-json-10/src/commands/NoInputAndOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-json-10/src/commands/SimpleScalarPropertiesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/commands/SimpleScalarPropertiesCommand.ts rename to private/aws-protocoltests-json-10/src/commands/SimpleScalarPropertiesCommand.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/commands/index.ts b/private/aws-protocoltests-json-10/src/commands/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/commands/index.ts rename to private/aws-protocoltests-json-10/src/commands/index.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/endpoints.ts b/private/aws-protocoltests-json-10/src/endpoints.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/endpoints.ts rename to private/aws-protocoltests-json-10/src/endpoints.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/index.ts b/private/aws-protocoltests-json-10/src/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/index.ts rename to private/aws-protocoltests-json-10/src/index.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/models/index.ts b/private/aws-protocoltests-json-10/src/models/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/models/index.ts rename to private/aws-protocoltests-json-10/src/models/index.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/models/models_0.ts b/private/aws-protocoltests-json-10/src/models/models_0.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/models/models_0.ts rename to private/aws-protocoltests-json-10/src/models/models_0.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/protocols/Aws_json1_0.ts b/private/aws-protocoltests-json-10/src/protocols/Aws_json1_0.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/protocols/Aws_json1_0.ts rename to private/aws-protocoltests-json-10/src/protocols/Aws_json1_0.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/runtimeConfig.browser.ts b/private/aws-protocoltests-json-10/src/runtimeConfig.browser.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/runtimeConfig.browser.ts rename to private/aws-protocoltests-json-10/src/runtimeConfig.browser.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/runtimeConfig.native.ts b/private/aws-protocoltests-json-10/src/runtimeConfig.native.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/runtimeConfig.native.ts rename to private/aws-protocoltests-json-10/src/runtimeConfig.native.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/runtimeConfig.shared.ts b/private/aws-protocoltests-json-10/src/runtimeConfig.shared.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/runtimeConfig.shared.ts rename to private/aws-protocoltests-json-10/src/runtimeConfig.shared.ts diff --git a/protocol_tests/aws-protocoltests-json-10/src/runtimeConfig.ts b/private/aws-protocoltests-json-10/src/runtimeConfig.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/src/runtimeConfig.ts rename to private/aws-protocoltests-json-10/src/runtimeConfig.ts diff --git a/protocol_tests/aws-protocoltests-json-10/test/functional/awsjson1_0.spec.ts b/private/aws-protocoltests-json-10/test/functional/awsjson1_0.spec.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/test/functional/awsjson1_0.spec.ts rename to private/aws-protocoltests-json-10/test/functional/awsjson1_0.spec.ts diff --git a/protocol_tests/aws-protocoltests-json-10/tsconfig.es.json b/private/aws-protocoltests-json-10/tsconfig.es.json similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/tsconfig.es.json rename to private/aws-protocoltests-json-10/tsconfig.es.json diff --git a/protocol_tests/aws-protocoltests-json-10/tsconfig.json b/private/aws-protocoltests-json-10/tsconfig.json similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/tsconfig.json rename to private/aws-protocoltests-json-10/tsconfig.json diff --git a/protocol_tests/aws-protocoltests-json-10/tsconfig.types.json b/private/aws-protocoltests-json-10/tsconfig.types.json similarity index 100% rename from protocol_tests/aws-protocoltests-json-10/tsconfig.types.json rename to private/aws-protocoltests-json-10/tsconfig.types.json diff --git a/protocol_tests/aws-protocoltests-query/.gitignore b/private/aws-protocoltests-json/.gitignore similarity index 100% rename from protocol_tests/aws-protocoltests-query/.gitignore rename to private/aws-protocoltests-json/.gitignore diff --git a/protocol_tests/aws-protocoltests-json/CHANGELOG.md b/private/aws-protocoltests-json/CHANGELOG.md similarity index 100% rename from protocol_tests/aws-protocoltests-json/CHANGELOG.md rename to private/aws-protocoltests-json/CHANGELOG.md diff --git a/protocol_tests/aws-protocoltests-json/LICENSE b/private/aws-protocoltests-json/LICENSE similarity index 100% rename from protocol_tests/aws-protocoltests-json/LICENSE rename to private/aws-protocoltests-json/LICENSE diff --git a/protocol_tests/aws-protocoltests-json/README.md b/private/aws-protocoltests-json/README.md similarity index 100% rename from protocol_tests/aws-protocoltests-json/README.md rename to private/aws-protocoltests-json/README.md diff --git a/protocol_tests/aws-protocoltests-json/jest.config.js b/private/aws-protocoltests-json/jest.config.js similarity index 100% rename from protocol_tests/aws-protocoltests-json/jest.config.js rename to private/aws-protocoltests-json/jest.config.js diff --git a/protocol_tests/aws-protocoltests-json/package.json b/private/aws-protocoltests-json/package.json similarity index 100% rename from protocol_tests/aws-protocoltests-json/package.json rename to private/aws-protocoltests-json/package.json diff --git a/protocol_tests/aws-protocoltests-json/src/JsonProtocol.ts b/private/aws-protocoltests-json/src/JsonProtocol.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/JsonProtocol.ts rename to private/aws-protocoltests-json/src/JsonProtocol.ts diff --git a/protocol_tests/aws-protocoltests-json/src/JsonProtocolClient.ts b/private/aws-protocoltests-json/src/JsonProtocolClient.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/JsonProtocolClient.ts rename to private/aws-protocoltests-json/src/JsonProtocolClient.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/EmptyOperationCommand.ts b/private/aws-protocoltests-json/src/commands/EmptyOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/EmptyOperationCommand.ts rename to private/aws-protocoltests-json/src/commands/EmptyOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-json/src/commands/EndpointOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/EndpointOperationCommand.ts rename to private/aws-protocoltests-json/src/commands/EndpointOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-json/src/commands/EndpointWithHostLabelOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/EndpointWithHostLabelOperationCommand.ts rename to private/aws-protocoltests-json/src/commands/EndpointWithHostLabelOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-json/src/commands/GreetingWithErrorsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/GreetingWithErrorsCommand.ts rename to private/aws-protocoltests-json/src/commands/GreetingWithErrorsCommand.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-json/src/commands/HostWithPathOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/HostWithPathOperationCommand.ts rename to private/aws-protocoltests-json/src/commands/HostWithPathOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/JsonEnumsCommand.ts b/private/aws-protocoltests-json/src/commands/JsonEnumsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/JsonEnumsCommand.ts rename to private/aws-protocoltests-json/src/commands/JsonEnumsCommand.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/JsonUnionsCommand.ts b/private/aws-protocoltests-json/src/commands/JsonUnionsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/JsonUnionsCommand.ts rename to private/aws-protocoltests-json/src/commands/JsonUnionsCommand.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/KitchenSinkOperationCommand.ts b/private/aws-protocoltests-json/src/commands/KitchenSinkOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/KitchenSinkOperationCommand.ts rename to private/aws-protocoltests-json/src/commands/KitchenSinkOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/NullOperationCommand.ts b/private/aws-protocoltests-json/src/commands/NullOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/NullOperationCommand.ts rename to private/aws-protocoltests-json/src/commands/NullOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/OperationWithOptionalInputOutputCommand.ts b/private/aws-protocoltests-json/src/commands/OperationWithOptionalInputOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/OperationWithOptionalInputOutputCommand.ts rename to private/aws-protocoltests-json/src/commands/OperationWithOptionalInputOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/PutAndGetInlineDocumentsCommand.ts b/private/aws-protocoltests-json/src/commands/PutAndGetInlineDocumentsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/PutAndGetInlineDocumentsCommand.ts rename to private/aws-protocoltests-json/src/commands/PutAndGetInlineDocumentsCommand.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-json/src/commands/SimpleScalarPropertiesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/SimpleScalarPropertiesCommand.ts rename to private/aws-protocoltests-json/src/commands/SimpleScalarPropertiesCommand.ts diff --git a/protocol_tests/aws-protocoltests-json/src/commands/index.ts b/private/aws-protocoltests-json/src/commands/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/commands/index.ts rename to private/aws-protocoltests-json/src/commands/index.ts diff --git a/protocol_tests/aws-protocoltests-json/src/endpoints.ts b/private/aws-protocoltests-json/src/endpoints.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/endpoints.ts rename to private/aws-protocoltests-json/src/endpoints.ts diff --git a/protocol_tests/aws-protocoltests-json/src/index.ts b/private/aws-protocoltests-json/src/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/index.ts rename to private/aws-protocoltests-json/src/index.ts diff --git a/protocol_tests/aws-protocoltests-json/src/models/index.ts b/private/aws-protocoltests-json/src/models/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/models/index.ts rename to private/aws-protocoltests-json/src/models/index.ts diff --git a/protocol_tests/aws-protocoltests-json/src/models/models_0.ts b/private/aws-protocoltests-json/src/models/models_0.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/models/models_0.ts rename to private/aws-protocoltests-json/src/models/models_0.ts diff --git a/protocol_tests/aws-protocoltests-json/src/protocols/Aws_json1_1.ts b/private/aws-protocoltests-json/src/protocols/Aws_json1_1.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/protocols/Aws_json1_1.ts rename to private/aws-protocoltests-json/src/protocols/Aws_json1_1.ts diff --git a/protocol_tests/aws-protocoltests-json/src/runtimeConfig.browser.ts b/private/aws-protocoltests-json/src/runtimeConfig.browser.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/runtimeConfig.browser.ts rename to private/aws-protocoltests-json/src/runtimeConfig.browser.ts diff --git a/protocol_tests/aws-protocoltests-json/src/runtimeConfig.native.ts b/private/aws-protocoltests-json/src/runtimeConfig.native.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/runtimeConfig.native.ts rename to private/aws-protocoltests-json/src/runtimeConfig.native.ts diff --git a/protocol_tests/aws-protocoltests-json/src/runtimeConfig.shared.ts b/private/aws-protocoltests-json/src/runtimeConfig.shared.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/runtimeConfig.shared.ts rename to private/aws-protocoltests-json/src/runtimeConfig.shared.ts diff --git a/protocol_tests/aws-protocoltests-json/src/runtimeConfig.ts b/private/aws-protocoltests-json/src/runtimeConfig.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/src/runtimeConfig.ts rename to private/aws-protocoltests-json/src/runtimeConfig.ts diff --git a/protocol_tests/aws-protocoltests-json/test/functional/awsjson1_1.spec.ts b/private/aws-protocoltests-json/test/functional/awsjson1_1.spec.ts similarity index 100% rename from protocol_tests/aws-protocoltests-json/test/functional/awsjson1_1.spec.ts rename to private/aws-protocoltests-json/test/functional/awsjson1_1.spec.ts diff --git a/protocol_tests/aws-protocoltests-json/tsconfig.es.json b/private/aws-protocoltests-json/tsconfig.es.json similarity index 100% rename from protocol_tests/aws-protocoltests-json/tsconfig.es.json rename to private/aws-protocoltests-json/tsconfig.es.json diff --git a/protocol_tests/aws-protocoltests-json/tsconfig.json b/private/aws-protocoltests-json/tsconfig.json similarity index 100% rename from protocol_tests/aws-protocoltests-json/tsconfig.json rename to private/aws-protocoltests-json/tsconfig.json diff --git a/protocol_tests/aws-protocoltests-json/tsconfig.types.json b/private/aws-protocoltests-json/tsconfig.types.json similarity index 100% rename from protocol_tests/aws-protocoltests-json/tsconfig.types.json rename to private/aws-protocoltests-json/tsconfig.types.json diff --git a/protocol_tests/aws-protocoltests-restjson/.gitignore b/private/aws-protocoltests-query/.gitignore similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/.gitignore rename to private/aws-protocoltests-query/.gitignore diff --git a/protocol_tests/aws-protocoltests-query/CHANGELOG.md b/private/aws-protocoltests-query/CHANGELOG.md similarity index 100% rename from protocol_tests/aws-protocoltests-query/CHANGELOG.md rename to private/aws-protocoltests-query/CHANGELOG.md diff --git a/protocol_tests/aws-protocoltests-query/LICENSE b/private/aws-protocoltests-query/LICENSE similarity index 100% rename from protocol_tests/aws-protocoltests-query/LICENSE rename to private/aws-protocoltests-query/LICENSE diff --git a/protocol_tests/aws-protocoltests-query/README.md b/private/aws-protocoltests-query/README.md similarity index 100% rename from protocol_tests/aws-protocoltests-query/README.md rename to private/aws-protocoltests-query/README.md diff --git a/protocol_tests/aws-protocoltests-query/jest.config.js b/private/aws-protocoltests-query/jest.config.js similarity index 100% rename from protocol_tests/aws-protocoltests-query/jest.config.js rename to private/aws-protocoltests-query/jest.config.js diff --git a/protocol_tests/aws-protocoltests-query/package.json b/private/aws-protocoltests-query/package.json similarity index 100% rename from protocol_tests/aws-protocoltests-query/package.json rename to private/aws-protocoltests-query/package.json diff --git a/protocol_tests/aws-protocoltests-query/src/QueryProtocol.ts b/private/aws-protocoltests-query/src/QueryProtocol.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/QueryProtocol.ts rename to private/aws-protocoltests-query/src/QueryProtocol.ts diff --git a/protocol_tests/aws-protocoltests-query/src/QueryProtocolClient.ts b/private/aws-protocoltests-query/src/QueryProtocolClient.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/QueryProtocolClient.ts rename to private/aws-protocoltests-query/src/QueryProtocolClient.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-query/src/commands/EmptyInputAndEmptyOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/EmptyInputAndEmptyOutputCommand.ts rename to private/aws-protocoltests-query/src/commands/EmptyInputAndEmptyOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-query/src/commands/EndpointOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/EndpointOperationCommand.ts rename to private/aws-protocoltests-query/src/commands/EndpointOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-query/src/commands/EndpointWithHostLabelOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/EndpointWithHostLabelOperationCommand.ts rename to private/aws-protocoltests-query/src/commands/EndpointWithHostLabelOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/FlattenedXmlMapCommand.ts b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/FlattenedXmlMapCommand.ts rename to private/aws-protocoltests-query/src/commands/FlattenedXmlMapCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNameCommand.ts b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNameCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNameCommand.ts rename to private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNameCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts rename to private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-query/src/commands/GreetingWithErrorsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/GreetingWithErrorsCommand.ts rename to private/aws-protocoltests-query/src/commands/GreetingWithErrorsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-query/src/commands/HostWithPathOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/HostWithPathOperationCommand.ts rename to private/aws-protocoltests-query/src/commands/HostWithPathOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/IgnoresWrappingXmlNameCommand.ts b/private/aws-protocoltests-query/src/commands/IgnoresWrappingXmlNameCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/IgnoresWrappingXmlNameCommand.ts rename to private/aws-protocoltests-query/src/commands/IgnoresWrappingXmlNameCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/NestedStructuresCommand.ts b/private/aws-protocoltests-query/src/commands/NestedStructuresCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/NestedStructuresCommand.ts rename to private/aws-protocoltests-query/src/commands/NestedStructuresCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-query/src/commands/NoInputAndNoOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/NoInputAndNoOutputCommand.ts rename to private/aws-protocoltests-query/src/commands/NoInputAndNoOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-query/src/commands/NoInputAndOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/NoInputAndOutputCommand.ts rename to private/aws-protocoltests-query/src/commands/NoInputAndOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-query/src/commands/QueryIdempotencyTokenAutoFillCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/QueryIdempotencyTokenAutoFillCommand.ts rename to private/aws-protocoltests-query/src/commands/QueryIdempotencyTokenAutoFillCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/QueryListsCommand.ts b/private/aws-protocoltests-query/src/commands/QueryListsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/QueryListsCommand.ts rename to private/aws-protocoltests-query/src/commands/QueryListsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/QueryMapsCommand.ts b/private/aws-protocoltests-query/src/commands/QueryMapsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/QueryMapsCommand.ts rename to private/aws-protocoltests-query/src/commands/QueryMapsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/QueryTimestampsCommand.ts b/private/aws-protocoltests-query/src/commands/QueryTimestampsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/QueryTimestampsCommand.ts rename to private/aws-protocoltests-query/src/commands/QueryTimestampsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/RecursiveXmlShapesCommand.ts b/private/aws-protocoltests-query/src/commands/RecursiveXmlShapesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/RecursiveXmlShapesCommand.ts rename to private/aws-protocoltests-query/src/commands/RecursiveXmlShapesCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/SimpleInputParamsCommand.ts b/private/aws-protocoltests-query/src/commands/SimpleInputParamsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/SimpleInputParamsCommand.ts rename to private/aws-protocoltests-query/src/commands/SimpleInputParamsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/SimpleScalarXmlPropertiesCommand.ts b/private/aws-protocoltests-query/src/commands/SimpleScalarXmlPropertiesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/SimpleScalarXmlPropertiesCommand.ts rename to private/aws-protocoltests-query/src/commands/SimpleScalarXmlPropertiesCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/XmlBlobsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlBlobsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/XmlBlobsCommand.ts rename to private/aws-protocoltests-query/src/commands/XmlBlobsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/XmlEmptyBlobsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlEmptyBlobsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/XmlEmptyBlobsCommand.ts rename to private/aws-protocoltests-query/src/commands/XmlEmptyBlobsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/XmlEmptyListsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlEmptyListsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/XmlEmptyListsCommand.ts rename to private/aws-protocoltests-query/src/commands/XmlEmptyListsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/XmlEmptyMapsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlEmptyMapsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/XmlEmptyMapsCommand.ts rename to private/aws-protocoltests-query/src/commands/XmlEmptyMapsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/XmlEnumsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlEnumsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/XmlEnumsCommand.ts rename to private/aws-protocoltests-query/src/commands/XmlEnumsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/XmlListsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlListsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/XmlListsCommand.ts rename to private/aws-protocoltests-query/src/commands/XmlListsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/XmlMapsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlMapsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/XmlMapsCommand.ts rename to private/aws-protocoltests-query/src/commands/XmlMapsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/XmlMapsXmlNameCommand.ts b/private/aws-protocoltests-query/src/commands/XmlMapsXmlNameCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/XmlMapsXmlNameCommand.ts rename to private/aws-protocoltests-query/src/commands/XmlMapsXmlNameCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/XmlNamespacesCommand.ts b/private/aws-protocoltests-query/src/commands/XmlNamespacesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/XmlNamespacesCommand.ts rename to private/aws-protocoltests-query/src/commands/XmlNamespacesCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/XmlTimestampsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlTimestampsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/XmlTimestampsCommand.ts rename to private/aws-protocoltests-query/src/commands/XmlTimestampsCommand.ts diff --git a/protocol_tests/aws-protocoltests-query/src/commands/index.ts b/private/aws-protocoltests-query/src/commands/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/commands/index.ts rename to private/aws-protocoltests-query/src/commands/index.ts diff --git a/protocol_tests/aws-protocoltests-query/src/endpoints.ts b/private/aws-protocoltests-query/src/endpoints.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/endpoints.ts rename to private/aws-protocoltests-query/src/endpoints.ts diff --git a/protocol_tests/aws-protocoltests-query/src/index.ts b/private/aws-protocoltests-query/src/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/index.ts rename to private/aws-protocoltests-query/src/index.ts diff --git a/protocol_tests/aws-protocoltests-query/src/models/index.ts b/private/aws-protocoltests-query/src/models/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/models/index.ts rename to private/aws-protocoltests-query/src/models/index.ts diff --git a/protocol_tests/aws-protocoltests-query/src/models/models_0.ts b/private/aws-protocoltests-query/src/models/models_0.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/models/models_0.ts rename to private/aws-protocoltests-query/src/models/models_0.ts diff --git a/protocol_tests/aws-protocoltests-query/src/protocols/Aws_query.ts b/private/aws-protocoltests-query/src/protocols/Aws_query.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/protocols/Aws_query.ts rename to private/aws-protocoltests-query/src/protocols/Aws_query.ts diff --git a/protocol_tests/aws-protocoltests-query/src/runtimeConfig.browser.ts b/private/aws-protocoltests-query/src/runtimeConfig.browser.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/runtimeConfig.browser.ts rename to private/aws-protocoltests-query/src/runtimeConfig.browser.ts diff --git a/protocol_tests/aws-protocoltests-query/src/runtimeConfig.native.ts b/private/aws-protocoltests-query/src/runtimeConfig.native.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/runtimeConfig.native.ts rename to private/aws-protocoltests-query/src/runtimeConfig.native.ts diff --git a/protocol_tests/aws-protocoltests-query/src/runtimeConfig.shared.ts b/private/aws-protocoltests-query/src/runtimeConfig.shared.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/runtimeConfig.shared.ts rename to private/aws-protocoltests-query/src/runtimeConfig.shared.ts diff --git a/protocol_tests/aws-protocoltests-query/src/runtimeConfig.ts b/private/aws-protocoltests-query/src/runtimeConfig.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/src/runtimeConfig.ts rename to private/aws-protocoltests-query/src/runtimeConfig.ts diff --git a/protocol_tests/aws-protocoltests-query/test/functional/awsquery.spec.ts b/private/aws-protocoltests-query/test/functional/awsquery.spec.ts similarity index 100% rename from protocol_tests/aws-protocoltests-query/test/functional/awsquery.spec.ts rename to private/aws-protocoltests-query/test/functional/awsquery.spec.ts diff --git a/protocol_tests/aws-protocoltests-query/tsconfig.es.json b/private/aws-protocoltests-query/tsconfig.es.json similarity index 100% rename from protocol_tests/aws-protocoltests-query/tsconfig.es.json rename to private/aws-protocoltests-query/tsconfig.es.json diff --git a/protocol_tests/aws-protocoltests-query/tsconfig.json b/private/aws-protocoltests-query/tsconfig.json similarity index 100% rename from protocol_tests/aws-protocoltests-query/tsconfig.json rename to private/aws-protocoltests-query/tsconfig.json diff --git a/protocol_tests/aws-protocoltests-query/tsconfig.types.json b/private/aws-protocoltests-query/tsconfig.types.json similarity index 100% rename from protocol_tests/aws-protocoltests-query/tsconfig.types.json rename to private/aws-protocoltests-query/tsconfig.types.json diff --git a/protocol_tests/aws-protocoltests-restxml/.gitignore b/private/aws-protocoltests-restjson/.gitignore similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/.gitignore rename to private/aws-protocoltests-restjson/.gitignore diff --git a/protocol_tests/aws-protocoltests-restjson/CHANGELOG.md b/private/aws-protocoltests-restjson/CHANGELOG.md similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/CHANGELOG.md rename to private/aws-protocoltests-restjson/CHANGELOG.md diff --git a/protocol_tests/aws-protocoltests-restjson/LICENSE b/private/aws-protocoltests-restjson/LICENSE similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/LICENSE rename to private/aws-protocoltests-restjson/LICENSE diff --git a/protocol_tests/aws-protocoltests-restjson/README.md b/private/aws-protocoltests-restjson/README.md similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/README.md rename to private/aws-protocoltests-restjson/README.md diff --git a/protocol_tests/aws-protocoltests-restjson/jest.config.js b/private/aws-protocoltests-restjson/jest.config.js similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/jest.config.js rename to private/aws-protocoltests-restjson/jest.config.js diff --git a/protocol_tests/aws-protocoltests-restjson/package.json b/private/aws-protocoltests-restjson/package.json similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/package.json rename to private/aws-protocoltests-restjson/package.json diff --git a/protocol_tests/aws-protocoltests-restjson/src/RestJsonProtocol.ts b/private/aws-protocoltests-restjson/src/RestJsonProtocol.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/RestJsonProtocol.ts rename to private/aws-protocoltests-restjson/src/RestJsonProtocol.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/RestJsonProtocolClient.ts b/private/aws-protocoltests-restjson/src/RestJsonProtocolClient.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/RestJsonProtocolClient.ts rename to private/aws-protocoltests-restjson/src/RestJsonProtocolClient.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/AllQueryStringTypesCommand.ts b/private/aws-protocoltests-restjson/src/commands/AllQueryStringTypesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/AllQueryStringTypesCommand.ts rename to private/aws-protocoltests-restjson/src/commands/AllQueryStringTypesCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/ConstantAndVariableQueryStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/ConstantAndVariableQueryStringCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/ConstantAndVariableQueryStringCommand.ts rename to private/aws-protocoltests-restjson/src/commands/ConstantAndVariableQueryStringCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/ConstantQueryStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/ConstantQueryStringCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/ConstantQueryStringCommand.ts rename to private/aws-protocoltests-restjson/src/commands/ConstantQueryStringCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/DocumentTypeAsPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsPayloadCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/DocumentTypeAsPayloadCommand.ts rename to private/aws-protocoltests-restjson/src/commands/DocumentTypeAsPayloadCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/DocumentTypeCommand.ts b/private/aws-protocoltests-restjson/src/commands/DocumentTypeCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/DocumentTypeCommand.ts rename to private/aws-protocoltests-restjson/src/commands/DocumentTypeCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-restjson/src/commands/EmptyInputAndEmptyOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/EmptyInputAndEmptyOutputCommand.ts rename to private/aws-protocoltests-restjson/src/commands/EmptyInputAndEmptyOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-restjson/src/commands/EndpointOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/EndpointOperationCommand.ts rename to private/aws-protocoltests-restjson/src/commands/EndpointOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-restjson/src/commands/EndpointWithHostLabelOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/EndpointWithHostLabelOperationCommand.ts rename to private/aws-protocoltests-restjson/src/commands/EndpointWithHostLabelOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-restjson/src/commands/GreetingWithErrorsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/GreetingWithErrorsCommand.ts rename to private/aws-protocoltests-restjson/src/commands/GreetingWithErrorsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-restjson/src/commands/HostWithPathOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HostWithPathOperationCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HostWithPathOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpChecksumRequiredCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpChecksumRequiredCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpChecksumRequiredCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpChecksumRequiredCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpEnumPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpEnumPayloadCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpEnumPayloadCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpEnumPayloadCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpPayloadWithStructureCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithStructureCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpPayloadWithStructureCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpPayloadWithStructureCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersResponseCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersResponseCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersResponseCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersResponseCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpRequestWithFloatLabelsCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithFloatLabelsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpRequestWithFloatLabelsCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpRequestWithFloatLabelsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpResponseCodeCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpResponseCodeCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpResponseCodeCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpResponseCodeCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/HttpStringPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpStringPayloadCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/HttpStringPayloadCommand.ts rename to private/aws-protocoltests-restjson/src/commands/HttpStringPayloadCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/IgnoreQueryParamsInResponseCommand.ts b/private/aws-protocoltests-restjson/src/commands/IgnoreQueryParamsInResponseCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/IgnoreQueryParamsInResponseCommand.ts rename to private/aws-protocoltests-restjson/src/commands/IgnoreQueryParamsInResponseCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/InputAndOutputWithHeadersCommand.ts b/private/aws-protocoltests-restjson/src/commands/InputAndOutputWithHeadersCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/InputAndOutputWithHeadersCommand.ts rename to private/aws-protocoltests-restjson/src/commands/InputAndOutputWithHeadersCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/JsonBlobsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonBlobsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/JsonBlobsCommand.ts rename to private/aws-protocoltests-restjson/src/commands/JsonBlobsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/JsonEnumsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonEnumsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/JsonEnumsCommand.ts rename to private/aws-protocoltests-restjson/src/commands/JsonEnumsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/JsonListsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonListsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/JsonListsCommand.ts rename to private/aws-protocoltests-restjson/src/commands/JsonListsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/JsonMapsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonMapsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/JsonMapsCommand.ts rename to private/aws-protocoltests-restjson/src/commands/JsonMapsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/JsonTimestampsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonTimestampsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/JsonTimestampsCommand.ts rename to private/aws-protocoltests-restjson/src/commands/JsonTimestampsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/JsonUnionsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonUnionsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/JsonUnionsCommand.ts rename to private/aws-protocoltests-restjson/src/commands/JsonUnionsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedAcceptWithBodyCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithBodyCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedAcceptWithBodyCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithBodyCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedAcceptWithGenericStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithGenericStringCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedAcceptWithGenericStringCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithGenericStringCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedAcceptWithPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithPayloadCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedAcceptWithPayloadCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithPayloadCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedBlobCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedBlobCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedBlobCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedBlobCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedBooleanCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedBooleanCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedBooleanCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedBooleanCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedByteCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedByteCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedByteCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedByteCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithBodyCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithBodyCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithBodyCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithBodyCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithGenericStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithGenericStringCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithGenericStringCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithGenericStringCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithPayloadCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithPayloadCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithPayloadCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedDoubleCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedDoubleCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedDoubleCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedDoubleCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedFloatCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedFloatCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedFloatCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedFloatCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedIntegerCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedIntegerCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedIntegerCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedIntegerCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedListCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedListCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedListCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedListCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedLongCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedLongCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedLongCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedLongCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedMapCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedMapCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedMapCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedMapCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedRequestBodyCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedRequestBodyCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedRequestBodyCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedRequestBodyCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedSetCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedSetCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedSetCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedSetCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedShortCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedShortCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedShortCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedShortCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedStringCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedStringCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedStringCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDateTimeCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDateTimeCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDateTimeCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDateTimeCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDefaultCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDefaultCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDefaultCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDefaultCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyHttpDateCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyHttpDateCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyHttpDateCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyHttpDateCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDateTimeCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDateTimeCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDateTimeCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDateTimeCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDefaultCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDefaultCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDefaultCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDefaultCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderEpochCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderEpochCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderEpochCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderEpochCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampPathDefaultCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathDefaultCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampPathDefaultCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathDefaultCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampPathEpochCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathEpochCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampPathEpochCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathEpochCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampPathHttpDateCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathHttpDateCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampPathHttpDateCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathHttpDateCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryDefaultCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryDefaultCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryDefaultCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryDefaultCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryEpochCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryEpochCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryEpochCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryEpochCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryHttpDateCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryHttpDateCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryHttpDateCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryHttpDateCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MalformedUnionCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedUnionCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MalformedUnionCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MalformedUnionCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/MediaTypeHeaderCommand.ts b/private/aws-protocoltests-restjson/src/commands/MediaTypeHeaderCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/MediaTypeHeaderCommand.ts rename to private/aws-protocoltests-restjson/src/commands/MediaTypeHeaderCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-restjson/src/commands/NoInputAndNoOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/NoInputAndNoOutputCommand.ts rename to private/aws-protocoltests-restjson/src/commands/NoInputAndNoOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-restjson/src/commands/NoInputAndOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/NoInputAndOutputCommand.ts rename to private/aws-protocoltests-restjson/src/commands/NoInputAndOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersClientCommand.ts b/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersClientCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersClientCommand.ts rename to private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersClientCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersServerCommand.ts b/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersServerCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersServerCommand.ts rename to private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersServerCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/OmitsNullSerializesEmptyStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/OmitsNullSerializesEmptyStringCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/OmitsNullSerializesEmptyStringCommand.ts rename to private/aws-protocoltests-restjson/src/commands/OmitsNullSerializesEmptyStringCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-restjson/src/commands/QueryIdempotencyTokenAutoFillCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/QueryIdempotencyTokenAutoFillCommand.ts rename to private/aws-protocoltests-restjson/src/commands/QueryIdempotencyTokenAutoFillCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/QueryParamsAsStringListMapCommand.ts b/private/aws-protocoltests-restjson/src/commands/QueryParamsAsStringListMapCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/QueryParamsAsStringListMapCommand.ts rename to private/aws-protocoltests-restjson/src/commands/QueryParamsAsStringListMapCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/QueryPrecedenceCommand.ts b/private/aws-protocoltests-restjson/src/commands/QueryPrecedenceCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/QueryPrecedenceCommand.ts rename to private/aws-protocoltests-restjson/src/commands/QueryPrecedenceCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/RecursiveShapesCommand.ts b/private/aws-protocoltests-restjson/src/commands/RecursiveShapesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/RecursiveShapesCommand.ts rename to private/aws-protocoltests-restjson/src/commands/RecursiveShapesCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-restjson/src/commands/SimpleScalarPropertiesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/SimpleScalarPropertiesCommand.ts rename to private/aws-protocoltests-restjson/src/commands/SimpleScalarPropertiesCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/StreamingTraitsCommand.ts b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/StreamingTraitsCommand.ts rename to private/aws-protocoltests-restjson/src/commands/StreamingTraitsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/StreamingTraitsRequireLengthCommand.ts b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsRequireLengthCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/StreamingTraitsRequireLengthCommand.ts rename to private/aws-protocoltests-restjson/src/commands/StreamingTraitsRequireLengthCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/StreamingTraitsWithMediaTypeCommand.ts b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsWithMediaTypeCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/StreamingTraitsWithMediaTypeCommand.ts rename to private/aws-protocoltests-restjson/src/commands/StreamingTraitsWithMediaTypeCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/TimestampFormatHeadersCommand.ts b/private/aws-protocoltests-restjson/src/commands/TimestampFormatHeadersCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/TimestampFormatHeadersCommand.ts rename to private/aws-protocoltests-restjson/src/commands/TimestampFormatHeadersCommand.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/commands/index.ts b/private/aws-protocoltests-restjson/src/commands/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/commands/index.ts rename to private/aws-protocoltests-restjson/src/commands/index.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/endpoints.ts b/private/aws-protocoltests-restjson/src/endpoints.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/endpoints.ts rename to private/aws-protocoltests-restjson/src/endpoints.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/index.ts b/private/aws-protocoltests-restjson/src/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/index.ts rename to private/aws-protocoltests-restjson/src/index.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/models/index.ts b/private/aws-protocoltests-restjson/src/models/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/models/index.ts rename to private/aws-protocoltests-restjson/src/models/index.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/models/models_0.ts b/private/aws-protocoltests-restjson/src/models/models_0.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/models/models_0.ts rename to private/aws-protocoltests-restjson/src/models/models_0.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/protocols/Aws_restJson1.ts b/private/aws-protocoltests-restjson/src/protocols/Aws_restJson1.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/protocols/Aws_restJson1.ts rename to private/aws-protocoltests-restjson/src/protocols/Aws_restJson1.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/runtimeConfig.browser.ts b/private/aws-protocoltests-restjson/src/runtimeConfig.browser.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/runtimeConfig.browser.ts rename to private/aws-protocoltests-restjson/src/runtimeConfig.browser.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/runtimeConfig.native.ts b/private/aws-protocoltests-restjson/src/runtimeConfig.native.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/runtimeConfig.native.ts rename to private/aws-protocoltests-restjson/src/runtimeConfig.native.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/runtimeConfig.shared.ts b/private/aws-protocoltests-restjson/src/runtimeConfig.shared.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/runtimeConfig.shared.ts rename to private/aws-protocoltests-restjson/src/runtimeConfig.shared.ts diff --git a/protocol_tests/aws-protocoltests-restjson/src/runtimeConfig.ts b/private/aws-protocoltests-restjson/src/runtimeConfig.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/src/runtimeConfig.ts rename to private/aws-protocoltests-restjson/src/runtimeConfig.ts diff --git a/protocol_tests/aws-protocoltests-restjson/test/functional/restjson1.spec.ts b/private/aws-protocoltests-restjson/test/functional/restjson1.spec.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/test/functional/restjson1.spec.ts rename to private/aws-protocoltests-restjson/test/functional/restjson1.spec.ts diff --git a/protocol_tests/aws-protocoltests-restjson/tsconfig.es.json b/private/aws-protocoltests-restjson/tsconfig.es.json similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/tsconfig.es.json rename to private/aws-protocoltests-restjson/tsconfig.es.json diff --git a/protocol_tests/aws-protocoltests-restjson/tsconfig.json b/private/aws-protocoltests-restjson/tsconfig.json similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/tsconfig.json rename to private/aws-protocoltests-restjson/tsconfig.json diff --git a/protocol_tests/aws-protocoltests-restjson/tsconfig.types.json b/private/aws-protocoltests-restjson/tsconfig.types.json similarity index 100% rename from protocol_tests/aws-protocoltests-restjson/tsconfig.types.json rename to private/aws-protocoltests-restjson/tsconfig.types.json diff --git a/protocol_tests/aws-protocoltests-json-10/.gitignore b/private/aws-protocoltests-restxml/.gitignore similarity index 80% rename from protocol_tests/aws-protocoltests-json-10/.gitignore rename to private/aws-protocoltests-restxml/.gitignore index 54f14c9aef253..bff6121c007d3 100644 --- a/protocol_tests/aws-protocoltests-json-10/.gitignore +++ b/private/aws-protocoltests-restxml/.gitignore @@ -6,4 +6,4 @@ *.tsbuildinfo *.tgz *.log -package-lock.json +package-lock.json \ No newline at end of file diff --git a/protocol_tests/aws-protocoltests-restxml/CHANGELOG.md b/private/aws-protocoltests-restxml/CHANGELOG.md similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/CHANGELOG.md rename to private/aws-protocoltests-restxml/CHANGELOG.md diff --git a/protocol_tests/aws-protocoltests-restxml/LICENSE b/private/aws-protocoltests-restxml/LICENSE similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/LICENSE rename to private/aws-protocoltests-restxml/LICENSE diff --git a/protocol_tests/aws-protocoltests-restxml/README.md b/private/aws-protocoltests-restxml/README.md similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/README.md rename to private/aws-protocoltests-restxml/README.md diff --git a/protocol_tests/aws-protocoltests-restxml/jest.config.js b/private/aws-protocoltests-restxml/jest.config.js similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/jest.config.js rename to private/aws-protocoltests-restxml/jest.config.js diff --git a/protocol_tests/aws-protocoltests-restxml/package.json b/private/aws-protocoltests-restxml/package.json similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/package.json rename to private/aws-protocoltests-restxml/package.json diff --git a/protocol_tests/aws-protocoltests-restxml/src/RestXmlProtocol.ts b/private/aws-protocoltests-restxml/src/RestXmlProtocol.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/RestXmlProtocol.ts rename to private/aws-protocoltests-restxml/src/RestXmlProtocol.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/RestXmlProtocolClient.ts b/private/aws-protocoltests-restxml/src/RestXmlProtocolClient.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/RestXmlProtocolClient.ts rename to private/aws-protocoltests-restxml/src/RestXmlProtocolClient.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/AllQueryStringTypesCommand.ts b/private/aws-protocoltests-restxml/src/commands/AllQueryStringTypesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/AllQueryStringTypesCommand.ts rename to private/aws-protocoltests-restxml/src/commands/AllQueryStringTypesCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/BodyWithXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/BodyWithXmlNameCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/BodyWithXmlNameCommand.ts rename to private/aws-protocoltests-restxml/src/commands/BodyWithXmlNameCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/ConstantAndVariableQueryStringCommand.ts b/private/aws-protocoltests-restxml/src/commands/ConstantAndVariableQueryStringCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/ConstantAndVariableQueryStringCommand.ts rename to private/aws-protocoltests-restxml/src/commands/ConstantAndVariableQueryStringCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/ConstantQueryStringCommand.ts b/private/aws-protocoltests-restxml/src/commands/ConstantQueryStringCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/ConstantQueryStringCommand.ts rename to private/aws-protocoltests-restxml/src/commands/ConstantQueryStringCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-restxml/src/commands/EmptyInputAndEmptyOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/EmptyInputAndEmptyOutputCommand.ts rename to private/aws-protocoltests-restxml/src/commands/EmptyInputAndEmptyOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-restxml/src/commands/EndpointOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/EndpointOperationCommand.ts rename to private/aws-protocoltests-restxml/src/commands/EndpointOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts b/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts rename to private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelOperationCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelOperationCommand.ts rename to private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelOperationCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/FlattenedXmlMapCommand.ts b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/FlattenedXmlMapCommand.ts rename to private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNameCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNameCommand.ts rename to private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNameCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts rename to private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-restxml/src/commands/GreetingWithErrorsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/GreetingWithErrorsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/GreetingWithErrorsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadWithMemberXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithMemberXmlNameCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadWithMemberXmlNameCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpPayloadWithMemberXmlNameCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadWithStructureCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithStructureCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadWithStructureCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpPayloadWithStructureCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNameCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNameCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNameCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpPrefixHeadersCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPrefixHeadersCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpPrefixHeadersCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpPrefixHeadersCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpRequestWithFloatLabelsCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithFloatLabelsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpRequestWithFloatLabelsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpRequestWithFloatLabelsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/HttpResponseCodeCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpResponseCodeCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/HttpResponseCodeCommand.ts rename to private/aws-protocoltests-restxml/src/commands/HttpResponseCodeCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/IgnoreQueryParamsInResponseCommand.ts b/private/aws-protocoltests-restxml/src/commands/IgnoreQueryParamsInResponseCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/IgnoreQueryParamsInResponseCommand.ts rename to private/aws-protocoltests-restxml/src/commands/IgnoreQueryParamsInResponseCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/InputAndOutputWithHeadersCommand.ts b/private/aws-protocoltests-restxml/src/commands/InputAndOutputWithHeadersCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/InputAndOutputWithHeadersCommand.ts rename to private/aws-protocoltests-restxml/src/commands/InputAndOutputWithHeadersCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/NestedXmlMapsCommand.ts b/private/aws-protocoltests-restxml/src/commands/NestedXmlMapsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/NestedXmlMapsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/NestedXmlMapsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-restxml/src/commands/NoInputAndNoOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/NoInputAndNoOutputCommand.ts rename to private/aws-protocoltests-restxml/src/commands/NoInputAndNoOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-restxml/src/commands/NoInputAndOutputCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/NoInputAndOutputCommand.ts rename to private/aws-protocoltests-restxml/src/commands/NoInputAndOutputCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersClientCommand.ts b/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersClientCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersClientCommand.ts rename to private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersClientCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersServerCommand.ts b/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersServerCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersServerCommand.ts rename to private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersServerCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/OmitsNullSerializesEmptyStringCommand.ts b/private/aws-protocoltests-restxml/src/commands/OmitsNullSerializesEmptyStringCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/OmitsNullSerializesEmptyStringCommand.ts rename to private/aws-protocoltests-restxml/src/commands/OmitsNullSerializesEmptyStringCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-restxml/src/commands/QueryIdempotencyTokenAutoFillCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/QueryIdempotencyTokenAutoFillCommand.ts rename to private/aws-protocoltests-restxml/src/commands/QueryIdempotencyTokenAutoFillCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/QueryParamsAsStringListMapCommand.ts b/private/aws-protocoltests-restxml/src/commands/QueryParamsAsStringListMapCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/QueryParamsAsStringListMapCommand.ts rename to private/aws-protocoltests-restxml/src/commands/QueryParamsAsStringListMapCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/QueryPrecedenceCommand.ts b/private/aws-protocoltests-restxml/src/commands/QueryPrecedenceCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/QueryPrecedenceCommand.ts rename to private/aws-protocoltests-restxml/src/commands/QueryPrecedenceCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/RecursiveShapesCommand.ts b/private/aws-protocoltests-restxml/src/commands/RecursiveShapesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/RecursiveShapesCommand.ts rename to private/aws-protocoltests-restxml/src/commands/RecursiveShapesCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-restxml/src/commands/SimpleScalarPropertiesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/SimpleScalarPropertiesCommand.ts rename to private/aws-protocoltests-restxml/src/commands/SimpleScalarPropertiesCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/TimestampFormatHeadersCommand.ts b/private/aws-protocoltests-restxml/src/commands/TimestampFormatHeadersCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/TimestampFormatHeadersCommand.ts rename to private/aws-protocoltests-restxml/src/commands/TimestampFormatHeadersCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlAttributesCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlAttributesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlAttributesCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlAttributesCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlAttributesOnPayloadCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlAttributesOnPayloadCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlAttributesOnPayloadCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlAttributesOnPayloadCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlBlobsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlBlobsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlBlobsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlBlobsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlEmptyBlobsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEmptyBlobsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlEmptyBlobsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlEmptyBlobsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlEmptyListsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEmptyListsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlEmptyListsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlEmptyListsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlEmptyMapsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEmptyMapsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlEmptyMapsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlEmptyMapsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlEmptyStringsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEmptyStringsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlEmptyStringsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlEmptyStringsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlEnumsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEnumsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlEnumsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlEnumsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlListsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlListsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlListsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlListsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlMapsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlMapsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlMapsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlMapsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlMapsXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlMapsXmlNameCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlMapsXmlNameCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlMapsXmlNameCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlNamespacesCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlNamespacesCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlNamespacesCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlNamespacesCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlTimestampsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlTimestampsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlTimestampsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlTimestampsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/XmlUnionsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlUnionsCommand.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/XmlUnionsCommand.ts rename to private/aws-protocoltests-restxml/src/commands/XmlUnionsCommand.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/commands/index.ts b/private/aws-protocoltests-restxml/src/commands/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/commands/index.ts rename to private/aws-protocoltests-restxml/src/commands/index.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/endpoints.ts b/private/aws-protocoltests-restxml/src/endpoints.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/endpoints.ts rename to private/aws-protocoltests-restxml/src/endpoints.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/index.ts b/private/aws-protocoltests-restxml/src/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/index.ts rename to private/aws-protocoltests-restxml/src/index.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/models/index.ts b/private/aws-protocoltests-restxml/src/models/index.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/models/index.ts rename to private/aws-protocoltests-restxml/src/models/index.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/models/models_0.ts b/private/aws-protocoltests-restxml/src/models/models_0.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/models/models_0.ts rename to private/aws-protocoltests-restxml/src/models/models_0.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/protocols/Aws_restXml.ts b/private/aws-protocoltests-restxml/src/protocols/Aws_restXml.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/protocols/Aws_restXml.ts rename to private/aws-protocoltests-restxml/src/protocols/Aws_restXml.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/runtimeConfig.browser.ts b/private/aws-protocoltests-restxml/src/runtimeConfig.browser.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/runtimeConfig.browser.ts rename to private/aws-protocoltests-restxml/src/runtimeConfig.browser.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/runtimeConfig.native.ts b/private/aws-protocoltests-restxml/src/runtimeConfig.native.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/runtimeConfig.native.ts rename to private/aws-protocoltests-restxml/src/runtimeConfig.native.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/runtimeConfig.shared.ts b/private/aws-protocoltests-restxml/src/runtimeConfig.shared.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/runtimeConfig.shared.ts rename to private/aws-protocoltests-restxml/src/runtimeConfig.shared.ts diff --git a/protocol_tests/aws-protocoltests-restxml/src/runtimeConfig.ts b/private/aws-protocoltests-restxml/src/runtimeConfig.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/src/runtimeConfig.ts rename to private/aws-protocoltests-restxml/src/runtimeConfig.ts diff --git a/protocol_tests/aws-protocoltests-restxml/test/functional/restxml.spec.ts b/private/aws-protocoltests-restxml/test/functional/restxml.spec.ts similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/test/functional/restxml.spec.ts rename to private/aws-protocoltests-restxml/test/functional/restxml.spec.ts diff --git a/protocol_tests/aws-protocoltests-restxml/tsconfig.es.json b/private/aws-protocoltests-restxml/tsconfig.es.json similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/tsconfig.es.json rename to private/aws-protocoltests-restxml/tsconfig.es.json diff --git a/protocol_tests/aws-protocoltests-restxml/tsconfig.json b/private/aws-protocoltests-restxml/tsconfig.json similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/tsconfig.json rename to private/aws-protocoltests-restxml/tsconfig.json diff --git a/protocol_tests/aws-protocoltests-restxml/tsconfig.types.json b/private/aws-protocoltests-restxml/tsconfig.types.json similarity index 100% rename from protocol_tests/aws-protocoltests-restxml/tsconfig.types.json rename to private/aws-protocoltests-restxml/tsconfig.types.json diff --git a/scripts/generate-clients/copy-to-clients.js b/scripts/generate-clients/copy-to-clients.js index 3f78a72f9a555..d5ca68eef3382 100644 --- a/scripts/generate-clients/copy-to-clients.js +++ b/scripts/generate-clients/copy-to-clients.js @@ -168,11 +168,11 @@ const copyServerTests = async (sourceDir, destinationDir) => { const destManifest = existsSync(destSubPath) ? JSON.parse(readFileSync(destSubPath).toString()) : {}; const mergedManifest = { ...mergeManifest(packageManifest, destManifest), - homepage: `https://github.com/aws/aws-sdk-js-v3/tree/main/protocol_tests/${testName}`, + homepage: `https://github.com/aws/aws-sdk-js-v3/tree/main/private/${testName}`, repository: { type: "git", url: "https://github.com/aws/aws-sdk-js-v3.git", - directory: `protocol_tests/${testName}`, + directory: `private/${testName}`, }, }; writeFileSync(destSubPath, JSON.stringify(mergedManifest, null, 2).concat(`\n`)); diff --git a/scripts/generate-clients/index.js b/scripts/generate-clients/index.js index aa45704e9dd9f..1d9086d65c298 100644 --- a/scripts/generate-clients/index.js +++ b/scripts/generate-clients/index.js @@ -13,7 +13,7 @@ const { prettifyCode } = require("./code-prettify"); const { eslintFixCode } = require("./code-eslint-fix"); const SDK_CLIENTS_DIR = path.normalize(path.join(__dirname, "..", "..", "clients")); -const PROTOCOL_TESTS_CLIENTS_DIR = path.normalize(path.join(__dirname, "..", "..", "protocol_tests")); +const PROTOCOL_TESTS_CLIENTS_DIR = path.normalize(path.join(__dirname, "..", "..", "private")); const { models, diff --git a/scripts/verdaccio-publish/index.js b/scripts/verdaccio-publish/index.js index 1c3f561b098d6..5e11bbb6b4b08 100644 --- a/scripts/verdaccio-publish/index.js +++ b/scripts/verdaccio-publish/index.js @@ -41,7 +41,7 @@ spawn("npx", args, pipeStdIo).on("close", (code) => { // Rollback the changes caused by the version bumping execSync("git checkout -- clients/*/package.json"); execSync("git checkout -- packages/*/package.json"); - execSync("git checkout -- protocol_tests/*/package.json"); + execSync("git checkout -- private/*/package.json"); // Kill the background verdaccio server verdaccio.kill(); diff --git a/tsconfig.json b/tsconfig.json index b799dc2fb58fe..86c6787052c4a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,7 +11,7 @@ "paths": { "@aws-sdk/*": ["packages/*/src"], "@aws-sdk/client-*": ["clients/client-*/"], - "@aws-sdk/aws-*": ["protocol_tests/aws-*/"], + "@aws-sdk/aws-*": ["private/aws-*/"], "@aws-sdk/lib-*": ["lib/*"] }, "preserveConstEnums": true,