├── .codecov.yml ├── .coveragerc ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── check-license.yml │ ├── ci.yml │ └── update-gradle-wrapper.yml ├── .gitignore ├── .licenserc.yaml ├── .python-version ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── ROADMAP.md ├── codegen ├── .gitignore ├── README.md ├── aws │ ├── README.md │ └── core │ │ ├── build.gradle.kts │ │ └── src │ │ ├── it │ │ ├── java │ │ │ └── software │ │ │ │ └── amazon │ │ │ │ └── smithy │ │ │ │ └── python │ │ │ │ └── codegen │ │ │ │ └── test │ │ │ │ └── AwsCodegenTest.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── smithy │ │ │ ├── main.smithy │ │ │ └── manifest │ │ ├── main │ │ ├── java │ │ │ └── software │ │ │ │ └── amazon │ │ │ │ └── smithy │ │ │ │ └── python │ │ │ │ └── aws │ │ │ │ └── codegen │ │ │ │ ├── AwsAuthIntegration.java │ │ │ │ ├── AwsConfiguration.java │ │ │ │ ├── AwsProtocolsIntegration.java │ │ │ │ ├── AwsPythonDependency.java │ │ │ │ ├── AwsRstDocFileGenerator.java │ │ │ │ ├── AwsServiceIdIntegration.java │ │ │ │ ├── AwsStandardRegionalEndpointsIntegration.java │ │ │ │ └── AwsUserAgentIntegration.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── software.amazon.smithy.python.codegen.integrations.PythonIntegration │ │ └── test │ │ └── java │ │ └── software │ │ └── amazon │ │ └── smithy │ │ └── python │ │ └── aws │ │ └── codegen │ │ └── MarkdownToRstDocConverterTest.java ├── build.gradle.kts ├── buildSrc │ ├── build.gradle.kts │ ├── gradle.properties │ ├── settings.gradle │ └── src │ │ └── main │ │ └── kotlin │ │ ├── smithy-python.codegen-plugin-conventions.gradle.kts │ │ ├── smithy-python.integ-test-conventions.gradle.kts │ │ ├── smithy-python.java-conventions.gradle.kts │ │ ├── smithy-python.module-conventions.gradle.kts │ │ ├── smithy-python.publishing-conventions.gradle.kts │ │ └── smithy-python.utilities.gradle.kts ├── config │ ├── logging │ │ └── logging.properties │ ├── spotbugs │ │ └── filter.xml │ └── spotless │ │ ├── formatting.xml │ │ └── license-header.txt ├── core │ ├── build.gradle.kts │ └── src │ │ ├── it │ │ ├── java │ │ │ └── software │ │ │ │ └── amazon │ │ │ │ └── smithy │ │ │ │ └── python │ │ │ │ └── codegen │ │ │ │ └── test │ │ │ │ └── PythonCodegenTest.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── smithy │ │ │ ├── main.smithy │ │ │ ├── manifest │ │ │ ├── more-nesting.smithy │ │ │ └── nested.smithy │ │ └── main │ │ ├── java │ │ └── software │ │ │ └── amazon │ │ │ └── smithy │ │ │ └── python │ │ │ └── codegen │ │ │ ├── ApplicationProtocol.java │ │ │ ├── ClientGenerator.java │ │ │ ├── CodegenUtils.java │ │ │ ├── ConfigProperty.java │ │ │ ├── DerivedProperty.java │ │ │ ├── DirectedPythonClientCodegen.java │ │ │ ├── GenerationContext.java │ │ │ ├── HttpAuthGenerator.java │ │ │ ├── HttpProtocolTestGenerator.java │ │ │ ├── PythonClientCodegenPlugin.java │ │ │ ├── PythonDependency.java │ │ │ ├── PythonFormatter.java │ │ │ ├── PythonSettings.java │ │ │ ├── PythonSymbolProvider.java │ │ │ ├── SmithyPythonDependency.java │ │ │ ├── SymbolProperties.java │ │ │ ├── generators │ │ │ ├── ConfigGenerator.java │ │ │ ├── EnumGenerator.java │ │ │ ├── InitGenerator.java │ │ │ ├── IntEnumGenerator.java │ │ │ ├── ListGenerator.java │ │ │ ├── MapGenerator.java │ │ │ ├── MemberDeserializerGenerator.java │ │ │ ├── MemberSerializerGenerator.java │ │ │ ├── OperationGenerator.java │ │ │ ├── ProtocolGenerator.java │ │ │ ├── SchemaGenerator.java │ │ │ ├── ServiceErrorGenerator.java │ │ │ ├── SetupGenerator.java │ │ │ ├── StructureGenerator.java │ │ │ └── UnionGenerator.java │ │ │ ├── integrations │ │ │ ├── AuthScheme.java │ │ │ ├── HttpApiKeyAuth.java │ │ │ ├── PythonIntegration.java │ │ │ ├── RestJsonIntegration.java │ │ │ ├── RestJsonProtocolGenerator.java │ │ │ ├── RuntimeClientPlugin.java │ │ │ └── UserAgentIntegration.java │ │ │ ├── sections │ │ │ ├── ConfigSection.java │ │ │ ├── ErrorSection.java │ │ │ ├── GenerateHttpAuthSchemeResolverSection.java │ │ │ ├── InitDefaultEndpointResolverSection.java │ │ │ ├── OperationSection.java │ │ │ ├── PyprojectSection.java │ │ │ ├── ReadmeSection.java │ │ │ ├── StructureSection.java │ │ │ ├── UnionMemberSection.java │ │ │ └── UnionSection.java │ │ │ └── writer │ │ │ ├── ImportDeclarations.java │ │ │ ├── MarkdownToRstDocConverter.java │ │ │ ├── PythonDelegator.java │ │ │ └── PythonWriter.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ ├── software.amazon.smithy.build.SmithyBuildPlugin │ │ │ └── software.amazon.smithy.python.codegen.integrations.PythonIntegration │ │ └── software │ │ └── amazon │ │ └── smithy │ │ └── python │ │ └── codegen │ │ ├── reserved-class-names.txt │ │ ├── reserved-error-member-names.txt │ │ └── reserved-member-names.txt ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── plugins │ ├── build.gradle.kts │ └── types │ │ ├── README.md │ │ ├── build.gradle.kts │ │ └── src │ │ ├── it │ │ ├── java │ │ │ └── software │ │ │ │ └── amazon │ │ │ │ └── smithy │ │ │ │ └── python │ │ │ │ └── codegen │ │ │ │ └── types │ │ │ │ └── PythonTypeCodegenTest.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── smithy │ │ │ ├── main.smithy │ │ │ ├── manifest │ │ │ ├── more-nesting.smithy │ │ │ └── nested.smithy │ │ └── main │ │ ├── java │ │ └── software │ │ │ └── amazon │ │ │ └── smithy │ │ │ └── python │ │ │ └── codegen │ │ │ └── types │ │ │ ├── CreateSyntheticService.java │ │ │ ├── DirectedPythonTypeCodegen.java │ │ │ ├── PythonTypeCodegenPlugin.java │ │ │ └── PythonTypeCodegenSettings.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── software.amazon.smithy.build.SmithyBuildPlugin ├── protocol-test │ ├── README.md │ ├── build.gradle.kts │ └── smithy-build.json └── settings.gradle.kts ├── designs ├── auth.md ├── documents.md ├── event-streams.md ├── exceptions.md ├── http-interfaces.md ├── retries.md ├── serialization.md └── shapes.md ├── examples └── weather │ ├── model │ └── weather.smithy │ └── smithy-build.json ├── packages ├── aws-sdk-signers │ ├── .changes │ │ ├── 0.0.1.json │ │ ├── 0.0.2.json │ │ ├── 0.0.3.json │ │ └── 0.1.0.json │ ├── CHANGELOG.md │ ├── MANIFEST.in │ ├── NOTICE │ ├── README.md │ ├── pyproject.toml │ ├── src │ │ └── aws_sdk_signers │ │ │ ├── __init__.py │ │ │ ├── _http.py │ │ │ ├── _identity.py │ │ │ ├── _io.py │ │ │ ├── exceptions.py │ │ │ ├── interfaces │ │ │ ├── __init__.py │ │ │ ├── events.py │ │ │ ├── http.py │ │ │ ├── identity.py │ │ │ └── io.py │ │ │ ├── py.typed │ │ │ └── signers.py │ └── tests │ │ ├── __init__.py │ │ └── unit │ │ ├── __init__.py │ │ ├── auth │ │ ├── __init__.py │ │ ├── aws4_testsuite │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── get-header-key-duplicate │ │ │ │ ├── get-header-key-duplicate.authz │ │ │ │ ├── get-header-key-duplicate.creq │ │ │ │ ├── get-header-key-duplicate.req │ │ │ │ ├── get-header-key-duplicate.sreq │ │ │ │ └── get-header-key-duplicate.sts │ │ │ ├── get-header-value-multiline │ │ │ │ ├── get-header-value-multiline.authz │ │ │ │ ├── get-header-value-multiline.creq │ │ │ │ ├── get-header-value-multiline.req │ │ │ │ ├── get-header-value-multiline.sreq │ │ │ │ └── get-header-value-multiline.sts │ │ │ ├── get-header-value-order │ │ │ │ ├── get-header-value-order.authz │ │ │ │ ├── get-header-value-order.creq │ │ │ │ ├── get-header-value-order.req │ │ │ │ ├── get-header-value-order.sreq │ │ │ │ └── get-header-value-order.sts │ │ │ ├── get-header-value-trim │ │ │ │ ├── get-header-value-trim.authz │ │ │ │ ├── get-header-value-trim.creq │ │ │ │ ├── get-header-value-trim.req │ │ │ │ ├── get-header-value-trim.sreq │ │ │ │ └── get-header-value-trim.sts │ │ │ ├── get-unreserved │ │ │ │ ├── get-unreserved.authz │ │ │ │ ├── get-unreserved.creq │ │ │ │ ├── get-unreserved.req │ │ │ │ ├── get-unreserved.sreq │ │ │ │ └── get-unreserved.sts │ │ │ ├── get-utf8 │ │ │ │ ├── get-utf8.authz │ │ │ │ ├── get-utf8.creq │ │ │ │ ├── get-utf8.req │ │ │ │ ├── get-utf8.sreq │ │ │ │ └── get-utf8.sts │ │ │ ├── get-vanilla-empty-query-key │ │ │ │ ├── get-vanilla-empty-query-key.authz │ │ │ │ ├── get-vanilla-empty-query-key.creq │ │ │ │ ├── get-vanilla-empty-query-key.req │ │ │ │ ├── get-vanilla-empty-query-key.sreq │ │ │ │ └── get-vanilla-empty-query-key.sts │ │ │ ├── get-vanilla-query-order-encoded │ │ │ │ ├── get-vanilla-query-order-encoded.authz │ │ │ │ ├── get-vanilla-query-order-encoded.creq │ │ │ │ ├── get-vanilla-query-order-encoded.req │ │ │ │ ├── get-vanilla-query-order-encoded.sreq │ │ │ │ └── get-vanilla-query-order-encoded.sts │ │ │ ├── get-vanilla-query-order-key-case │ │ │ │ ├── get-vanilla-query-order-key-case.authz │ │ │ │ ├── get-vanilla-query-order-key-case.creq │ │ │ │ ├── get-vanilla-query-order-key-case.req │ │ │ │ ├── get-vanilla-query-order-key-case.sreq │ │ │ │ └── get-vanilla-query-order-key-case.sts │ │ │ ├── get-vanilla-query-order-key │ │ │ │ ├── get-vanilla-query-order-key.authz │ │ │ │ ├── get-vanilla-query-order-key.creq │ │ │ │ ├── get-vanilla-query-order-key.req │ │ │ │ ├── get-vanilla-query-order-key.sreq │ │ │ │ └── get-vanilla-query-order-key.sts │ │ │ ├── get-vanilla-query-order-value │ │ │ │ ├── get-vanilla-query-order-value.authz │ │ │ │ ├── get-vanilla-query-order-value.creq │ │ │ │ ├── get-vanilla-query-order-value.req │ │ │ │ ├── get-vanilla-query-order-value.sreq │ │ │ │ └── get-vanilla-query-order-value.sts │ │ │ ├── get-vanilla-query-unreserved │ │ │ │ ├── get-vanilla-query-unreserved.authz │ │ │ │ ├── get-vanilla-query-unreserved.creq │ │ │ │ ├── get-vanilla-query-unreserved.req │ │ │ │ ├── get-vanilla-query-unreserved.sreq │ │ │ │ └── get-vanilla-query-unreserved.sts │ │ │ ├── get-vanilla-query │ │ │ │ ├── get-vanilla-query.authz │ │ │ │ ├── get-vanilla-query.creq │ │ │ │ ├── get-vanilla-query.req │ │ │ │ ├── get-vanilla-query.sreq │ │ │ │ └── get-vanilla-query.sts │ │ │ ├── get-vanilla-utf8-query │ │ │ │ ├── get-vanilla-utf8-query.authz │ │ │ │ ├── get-vanilla-utf8-query.creq │ │ │ │ ├── get-vanilla-utf8-query.req │ │ │ │ ├── get-vanilla-utf8-query.sreq │ │ │ │ └── get-vanilla-utf8-query.sts │ │ │ ├── get-vanilla-with-session-token │ │ │ │ ├── get-vanilla-with-session-token.authz │ │ │ │ ├── get-vanilla-with-session-token.creq │ │ │ │ ├── get-vanilla-with-session-token.req │ │ │ │ ├── get-vanilla-with-session-token.sreq │ │ │ │ └── get-vanilla-with-session-token.sts │ │ │ ├── get-vanilla │ │ │ │ ├── get-vanilla.authz │ │ │ │ ├── get-vanilla.creq │ │ │ │ ├── get-vanilla.req │ │ │ │ ├── get-vanilla.sreq │ │ │ │ └── get-vanilla.sts │ │ │ ├── normalize-path │ │ │ │ ├── get-relative-relative │ │ │ │ │ ├── get-relative-relative.authz │ │ │ │ │ ├── get-relative-relative.creq │ │ │ │ │ ├── get-relative-relative.req │ │ │ │ │ ├── get-relative-relative.sreq │ │ │ │ │ └── get-relative-relative.sts │ │ │ │ ├── get-relative │ │ │ │ │ ├── get-relative.authz │ │ │ │ │ ├── get-relative.creq │ │ │ │ │ ├── get-relative.req │ │ │ │ │ ├── get-relative.sreq │ │ │ │ │ └── get-relative.sts │ │ │ │ ├── get-slash-dot-slash │ │ │ │ │ ├── get-slash-dot-slash.authz │ │ │ │ │ ├── get-slash-dot-slash.creq │ │ │ │ │ ├── get-slash-dot-slash.req │ │ │ │ │ ├── get-slash-dot-slash.sreq │ │ │ │ │ └── get-slash-dot-slash.sts │ │ │ │ ├── get-slash-pointless-dot │ │ │ │ │ ├── get-slash-pointless-dot.authz │ │ │ │ │ ├── get-slash-pointless-dot.creq │ │ │ │ │ ├── get-slash-pointless-dot.req │ │ │ │ │ ├── get-slash-pointless-dot.sreq │ │ │ │ │ └── get-slash-pointless-dot.sts │ │ │ │ ├── get-slash │ │ │ │ │ ├── get-slash.authz │ │ │ │ │ ├── get-slash.creq │ │ │ │ │ ├── get-slash.req │ │ │ │ │ ├── get-slash.sreq │ │ │ │ │ └── get-slash.sts │ │ │ │ ├── get-slashes │ │ │ │ │ ├── get-slashes.authz │ │ │ │ │ ├── get-slashes.creq │ │ │ │ │ ├── get-slashes.req │ │ │ │ │ ├── get-slashes.sreq │ │ │ │ │ └── get-slashes.sts │ │ │ │ ├── get-space │ │ │ │ │ ├── get-space.authz │ │ │ │ │ ├── get-space.creq │ │ │ │ │ ├── get-space.req │ │ │ │ │ ├── get-space.sreq │ │ │ │ │ └── get-space.sts │ │ │ │ ├── get-special-character │ │ │ │ │ ├── get-special-character.authz │ │ │ │ │ ├── get-special-character.creq │ │ │ │ │ ├── get-special-character.req │ │ │ │ │ ├── get-special-character.sreq │ │ │ │ │ └── get-special-character.sts │ │ │ │ └── normalize-path.txt │ │ │ ├── post-header-key-case │ │ │ │ ├── post-header-key-case.authz │ │ │ │ ├── post-header-key-case.creq │ │ │ │ ├── post-header-key-case.req │ │ │ │ ├── post-header-key-case.sreq │ │ │ │ └── post-header-key-case.sts │ │ │ ├── post-header-key-sort │ │ │ │ ├── post-header-key-sort.authz │ │ │ │ ├── post-header-key-sort.creq │ │ │ │ ├── post-header-key-sort.req │ │ │ │ ├── post-header-key-sort.sreq │ │ │ │ └── post-header-key-sort.sts │ │ │ ├── post-header-value-case │ │ │ │ ├── post-header-value-case.authz │ │ │ │ ├── post-header-value-case.creq │ │ │ │ ├── post-header-value-case.req │ │ │ │ ├── post-header-value-case.sreq │ │ │ │ └── post-header-value-case.sts │ │ │ ├── post-sts-token │ │ │ │ ├── post-sts-header-after │ │ │ │ │ ├── post-sts-header-after.authz │ │ │ │ │ ├── post-sts-header-after.creq │ │ │ │ │ ├── post-sts-header-after.req │ │ │ │ │ ├── post-sts-header-after.sreq │ │ │ │ │ └── post-sts-header-after.sts │ │ │ │ ├── post-sts-header-before │ │ │ │ │ ├── post-sts-header-before.authz │ │ │ │ │ ├── post-sts-header-before.creq │ │ │ │ │ ├── post-sts-header-before.req │ │ │ │ │ ├── post-sts-header-before.sreq │ │ │ │ │ └── post-sts-header-before.sts │ │ │ │ └── readme.txt │ │ │ ├── post-vanilla-empty-query-value │ │ │ │ ├── post-vanilla-empty-query-value.authz │ │ │ │ ├── post-vanilla-empty-query-value.creq │ │ │ │ ├── post-vanilla-empty-query-value.req │ │ │ │ ├── post-vanilla-empty-query-value.sreq │ │ │ │ └── post-vanilla-empty-query-value.sts │ │ │ ├── post-vanilla-query │ │ │ │ ├── post-vanilla-query.authz │ │ │ │ ├── post-vanilla-query.creq │ │ │ │ ├── post-vanilla-query.req │ │ │ │ ├── post-vanilla-query.sreq │ │ │ │ └── post-vanilla-query.sts │ │ │ ├── post-vanilla │ │ │ │ ├── post-vanilla.authz │ │ │ │ ├── post-vanilla.creq │ │ │ │ ├── post-vanilla.req │ │ │ │ ├── post-vanilla.sreq │ │ │ │ └── post-vanilla.sts │ │ │ ├── post-x-www-form-urlencoded-parameters │ │ │ │ ├── post-x-www-form-urlencoded-parameters.authz │ │ │ │ ├── post-x-www-form-urlencoded-parameters.creq │ │ │ │ ├── post-x-www-form-urlencoded-parameters.req │ │ │ │ ├── post-x-www-form-urlencoded-parameters.sreq │ │ │ │ └── post-x-www-form-urlencoded-parameters.sts │ │ │ └── post-x-www-form-urlencoded │ │ │ │ ├── post-x-www-form-urlencoded.authz │ │ │ │ ├── post-x-www-form-urlencoded.creq │ │ │ │ ├── post-x-www-form-urlencoded.req │ │ │ │ ├── post-x-www-form-urlencoded.sreq │ │ │ │ └── post-x-www-form-urlencoded.sts │ │ └── test_sigv4.py │ │ ├── test_fields.py │ │ ├── test_identity.py │ │ └── test_signers.py ├── smithy-aws-core │ ├── .changes │ │ ├── 0.0.1.json │ │ ├── 0.0.2.json │ │ ├── 0.0.3.json │ │ ├── 0.1.0.json │ │ ├── 0.1.1.json │ │ └── 0.2.0.json │ ├── CHANGELOG.md │ ├── NOTICE │ ├── README.md │ ├── pyproject.toml │ ├── src │ │ └── smithy_aws_core │ │ │ ├── __init__.py │ │ │ ├── aio │ │ │ ├── __init__.py │ │ │ └── protocols.py │ │ │ ├── auth │ │ │ ├── __init__.py │ │ │ └── sigv4.py │ │ │ ├── endpoints │ │ │ ├── __init__.py │ │ │ └── standard_regional.py │ │ │ ├── identity │ │ │ ├── __init__.py │ │ │ ├── chain.py │ │ │ ├── components.py │ │ │ ├── container.py │ │ │ ├── environment.py │ │ │ ├── imds.py │ │ │ └── static.py │ │ │ ├── interceptors │ │ │ ├── __init__.py │ │ │ └── user_agent.py │ │ │ ├── interfaces │ │ │ └── __init__.py │ │ │ ├── py.typed │ │ │ ├── traits.py │ │ │ └── utils.py │ └── tests │ │ └── unit │ │ ├── aio │ │ ├── __init__.py │ │ └── test_protocols.py │ │ ├── auth │ │ └── aws4_testsuite │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── get-header-key-duplicate │ │ │ ├── get-header-key-duplicate.authz │ │ │ ├── get-header-key-duplicate.creq │ │ │ ├── get-header-key-duplicate.req │ │ │ ├── get-header-key-duplicate.sreq │ │ │ └── get-header-key-duplicate.sts │ │ │ ├── get-header-value-multiline │ │ │ ├── get-header-value-multiline.authz │ │ │ ├── get-header-value-multiline.creq │ │ │ ├── get-header-value-multiline.req │ │ │ ├── get-header-value-multiline.sreq │ │ │ └── get-header-value-multiline.sts │ │ │ ├── get-header-value-order │ │ │ ├── get-header-value-order.authz │ │ │ ├── get-header-value-order.creq │ │ │ ├── get-header-value-order.req │ │ │ ├── get-header-value-order.sreq │ │ │ └── get-header-value-order.sts │ │ │ ├── get-header-value-trim │ │ │ ├── get-header-value-trim.authz │ │ │ ├── get-header-value-trim.creq │ │ │ ├── get-header-value-trim.req │ │ │ ├── get-header-value-trim.sreq │ │ │ └── get-header-value-trim.sts │ │ │ ├── get-unreserved │ │ │ ├── get-unreserved.authz │ │ │ ├── get-unreserved.creq │ │ │ ├── get-unreserved.req │ │ │ ├── get-unreserved.sreq │ │ │ └── get-unreserved.sts │ │ │ ├── get-utf8 │ │ │ ├── get-utf8.authz │ │ │ ├── get-utf8.creq │ │ │ ├── get-utf8.req │ │ │ ├── get-utf8.sreq │ │ │ └── get-utf8.sts │ │ │ ├── get-vanilla-empty-query-key │ │ │ ├── get-vanilla-empty-query-key.authz │ │ │ ├── get-vanilla-empty-query-key.creq │ │ │ ├── get-vanilla-empty-query-key.req │ │ │ ├── get-vanilla-empty-query-key.sreq │ │ │ └── get-vanilla-empty-query-key.sts │ │ │ ├── get-vanilla-query-order-encoded │ │ │ ├── get-vanilla-query-order-encoded.authz │ │ │ ├── get-vanilla-query-order-encoded.creq │ │ │ ├── get-vanilla-query-order-encoded.req │ │ │ ├── get-vanilla-query-order-encoded.sreq │ │ │ └── get-vanilla-query-order-encoded.sts │ │ │ ├── get-vanilla-query-order-key-case │ │ │ ├── get-vanilla-query-order-key-case.authz │ │ │ ├── get-vanilla-query-order-key-case.creq │ │ │ ├── get-vanilla-query-order-key-case.req │ │ │ ├── get-vanilla-query-order-key-case.sreq │ │ │ └── get-vanilla-query-order-key-case.sts │ │ │ ├── get-vanilla-query-order-key │ │ │ ├── get-vanilla-query-order-key.authz │ │ │ ├── get-vanilla-query-order-key.creq │ │ │ ├── get-vanilla-query-order-key.req │ │ │ ├── get-vanilla-query-order-key.sreq │ │ │ └── get-vanilla-query-order-key.sts │ │ │ ├── get-vanilla-query-order-value │ │ │ ├── get-vanilla-query-order-value.authz │ │ │ ├── get-vanilla-query-order-value.creq │ │ │ ├── get-vanilla-query-order-value.req │ │ │ ├── get-vanilla-query-order-value.sreq │ │ │ └── get-vanilla-query-order-value.sts │ │ │ ├── get-vanilla-query-unreserved │ │ │ ├── get-vanilla-query-unreserved.authz │ │ │ ├── get-vanilla-query-unreserved.creq │ │ │ ├── get-vanilla-query-unreserved.req │ │ │ ├── get-vanilla-query-unreserved.sreq │ │ │ └── get-vanilla-query-unreserved.sts │ │ │ ├── get-vanilla-query │ │ │ ├── get-vanilla-query.authz │ │ │ ├── get-vanilla-query.creq │ │ │ ├── get-vanilla-query.req │ │ │ ├── get-vanilla-query.sreq │ │ │ └── get-vanilla-query.sts │ │ │ ├── get-vanilla-utf8-query │ │ │ ├── get-vanilla-utf8-query.authz │ │ │ ├── get-vanilla-utf8-query.creq │ │ │ ├── get-vanilla-utf8-query.req │ │ │ ├── get-vanilla-utf8-query.sreq │ │ │ └── get-vanilla-utf8-query.sts │ │ │ ├── get-vanilla-with-session-token │ │ │ ├── get-vanilla-with-session-token.authz │ │ │ ├── get-vanilla-with-session-token.creq │ │ │ ├── get-vanilla-with-session-token.req │ │ │ ├── get-vanilla-with-session-token.sreq │ │ │ └── get-vanilla-with-session-token.sts │ │ │ ├── get-vanilla │ │ │ ├── get-vanilla.authz │ │ │ ├── get-vanilla.creq │ │ │ ├── get-vanilla.req │ │ │ ├── get-vanilla.sreq │ │ │ └── get-vanilla.sts │ │ │ ├── normalize-path │ │ │ ├── get-relative-relative │ │ │ │ ├── get-relative-relative.authz │ │ │ │ ├── get-relative-relative.creq │ │ │ │ ├── get-relative-relative.req │ │ │ │ ├── get-relative-relative.sreq │ │ │ │ └── get-relative-relative.sts │ │ │ ├── get-relative │ │ │ │ ├── get-relative.authz │ │ │ │ ├── get-relative.creq │ │ │ │ ├── get-relative.req │ │ │ │ ├── get-relative.sreq │ │ │ │ └── get-relative.sts │ │ │ ├── get-slash-dot-slash │ │ │ │ ├── get-slash-dot-slash.authz │ │ │ │ ├── get-slash-dot-slash.creq │ │ │ │ ├── get-slash-dot-slash.req │ │ │ │ ├── get-slash-dot-slash.sreq │ │ │ │ └── get-slash-dot-slash.sts │ │ │ ├── get-slash-pointless-dot │ │ │ │ ├── get-slash-pointless-dot.authz │ │ │ │ ├── get-slash-pointless-dot.creq │ │ │ │ ├── get-slash-pointless-dot.req │ │ │ │ ├── get-slash-pointless-dot.sreq │ │ │ │ └── get-slash-pointless-dot.sts │ │ │ ├── get-slash │ │ │ │ ├── get-slash.authz │ │ │ │ ├── get-slash.creq │ │ │ │ ├── get-slash.req │ │ │ │ ├── get-slash.sreq │ │ │ │ └── get-slash.sts │ │ │ ├── get-slashes │ │ │ │ ├── get-slashes.authz │ │ │ │ ├── get-slashes.creq │ │ │ │ ├── get-slashes.req │ │ │ │ ├── get-slashes.sreq │ │ │ │ └── get-slashes.sts │ │ │ ├── get-space │ │ │ │ ├── get-space.authz │ │ │ │ ├── get-space.creq │ │ │ │ ├── get-space.req │ │ │ │ ├── get-space.sreq │ │ │ │ └── get-space.sts │ │ │ ├── get-special-character │ │ │ │ ├── get-special-character.authz │ │ │ │ ├── get-special-character.creq │ │ │ │ ├── get-special-character.req │ │ │ │ ├── get-special-character.sreq │ │ │ │ └── get-special-character.sts │ │ │ └── normalize-path.txt │ │ │ ├── post-header-key-case │ │ │ ├── post-header-key-case.authz │ │ │ ├── post-header-key-case.creq │ │ │ ├── post-header-key-case.req │ │ │ ├── post-header-key-case.sreq │ │ │ └── post-header-key-case.sts │ │ │ ├── post-header-key-sort │ │ │ ├── post-header-key-sort.authz │ │ │ ├── post-header-key-sort.creq │ │ │ ├── post-header-key-sort.req │ │ │ ├── post-header-key-sort.sreq │ │ │ └── post-header-key-sort.sts │ │ │ ├── post-header-value-case │ │ │ ├── post-header-value-case.authz │ │ │ ├── post-header-value-case.creq │ │ │ ├── post-header-value-case.req │ │ │ ├── post-header-value-case.sreq │ │ │ └── post-header-value-case.sts │ │ │ ├── post-sts-token │ │ │ ├── post-sts-header-after │ │ │ │ ├── post-sts-header-after.authz │ │ │ │ ├── post-sts-header-after.creq │ │ │ │ ├── post-sts-header-after.req │ │ │ │ ├── post-sts-header-after.sreq │ │ │ │ └── post-sts-header-after.sts │ │ │ ├── post-sts-header-before │ │ │ │ ├── post-sts-header-before.authz │ │ │ │ ├── post-sts-header-before.creq │ │ │ │ ├── post-sts-header-before.req │ │ │ │ ├── post-sts-header-before.sreq │ │ │ │ └── post-sts-header-before.sts │ │ │ └── readme.txt │ │ │ ├── post-vanilla-empty-query-value │ │ │ ├── post-vanilla-empty-query-value.authz │ │ │ ├── post-vanilla-empty-query-value.creq │ │ │ ├── post-vanilla-empty-query-value.req │ │ │ ├── post-vanilla-empty-query-value.sreq │ │ │ └── post-vanilla-empty-query-value.sts │ │ │ ├── post-vanilla-query │ │ │ ├── post-vanilla-query.authz │ │ │ ├── post-vanilla-query.creq │ │ │ ├── post-vanilla-query.req │ │ │ ├── post-vanilla-query.sreq │ │ │ └── post-vanilla-query.sts │ │ │ ├── post-vanilla │ │ │ ├── post-vanilla.authz │ │ │ ├── post-vanilla.creq │ │ │ ├── post-vanilla.req │ │ │ ├── post-vanilla.sreq │ │ │ └── post-vanilla.sts │ │ │ ├── post-x-www-form-urlencoded-parameters │ │ │ ├── post-x-www-form-urlencoded-parameters.authz │ │ │ ├── post-x-www-form-urlencoded-parameters.creq │ │ │ ├── post-x-www-form-urlencoded-parameters.req │ │ │ ├── post-x-www-form-urlencoded-parameters.sreq │ │ │ └── post-x-www-form-urlencoded-parameters.sts │ │ │ └── post-x-www-form-urlencoded │ │ │ ├── post-x-www-form-urlencoded.authz │ │ │ ├── post-x-www-form-urlencoded.creq │ │ │ ├── post-x-www-form-urlencoded.req │ │ │ ├── post-x-www-form-urlencoded.sreq │ │ │ └── post-x-www-form-urlencoded.sts │ │ ├── endpoints │ │ └── test_standard_regional.py │ │ ├── identity │ │ ├── test_container.py │ │ ├── test_environment_credentials_resolver.py │ │ └── test_imds.py │ │ ├── test_traits.py │ │ └── test_utils.py ├── smithy-aws-event-stream │ ├── .changes │ │ ├── 0.0.1.json │ │ ├── 0.1.0.json │ │ └── 0.2.0.json │ ├── CHANGELOG.md │ ├── NOTICE │ ├── README.md │ ├── pyproject.toml │ ├── src │ │ └── smithy_aws_event_stream │ │ │ ├── __init__.py │ │ │ ├── _private │ │ │ ├── __init__.py │ │ │ ├── deserializers.py │ │ │ └── serializers.py │ │ │ ├── aio │ │ │ └── __init__.py │ │ │ ├── events.py │ │ │ ├── exceptions.py │ │ │ └── py.typed │ └── tests │ │ ├── py.typed │ │ └── unit │ │ ├── _private │ │ ├── __init__.py │ │ ├── test_deserializers.py │ │ └── test_serializers.py │ │ └── test_events.py ├── smithy-core │ ├── .changes │ │ ├── 0.0.1.json │ │ ├── 0.0.2.json │ │ ├── 0.1.0.json │ │ ├── 0.1.1.json │ │ ├── 0.2.0.json │ │ └── next-release │ │ │ └── smithy-core-enhancement-20251124183509.json │ ├── CHANGELOG.md │ ├── NOTICE │ ├── README.md │ ├── pyproject.toml │ ├── src │ │ └── smithy_core │ │ │ ├── __init__.py │ │ │ ├── aio │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── endpoints.py │ │ │ ├── eventstream.py │ │ │ ├── identity.py │ │ │ ├── interfaces │ │ │ │ ├── __init__.py │ │ │ │ ├── auth.py │ │ │ │ ├── eventstream.py │ │ │ │ └── identity.py │ │ │ ├── types.py │ │ │ └── utils.py │ │ │ ├── auth.py │ │ │ ├── codecs.py │ │ │ ├── deserializers.py │ │ │ ├── documents.py │ │ │ ├── endpoints.py │ │ │ ├── exceptions.py │ │ │ ├── interceptors.py │ │ │ ├── interfaces │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── exceptions.py │ │ │ ├── identity.py │ │ │ └── retries.py │ │ │ ├── prelude.py │ │ │ ├── py.typed │ │ │ ├── retries.py │ │ │ ├── rfc3986.py │ │ │ ├── schemas.py │ │ │ ├── serializers.py │ │ │ ├── shapes.py │ │ │ ├── traits.py │ │ │ ├── types.py │ │ │ └── utils.py │ └── tests │ │ ├── __init__.py │ │ ├── functional │ │ ├── __init__.py │ │ └── test_retries.py │ │ ├── py.typed │ │ └── unit │ │ ├── __init__.py │ │ ├── aio │ │ ├── __init__.py │ │ ├── test_endpoints.py │ │ ├── test_types.py │ │ └── test_utils.py │ │ ├── test_documents.py │ │ ├── test_identity.py │ │ ├── test_retries.py │ │ ├── test_schemas.py │ │ ├── test_shapes.py │ │ ├── test_traits.py │ │ ├── test_type_registry.py │ │ ├── test_types.py │ │ ├── test_uri.py │ │ └── test_utils.py ├── smithy-http │ ├── .changes │ │ ├── 0.0.1.json │ │ ├── 0.1.0.json │ │ ├── 0.2.0.json │ │ ├── 0.2.1.json │ │ ├── 0.3.0.json │ │ └── next-release │ │ │ └── smithy-http-enhancement-20251122132342.json │ ├── CHANGELOG.md │ ├── NOTICE │ ├── README.md │ ├── pyproject.toml │ ├── src │ │ └── smithy_http │ │ │ ├── __init__.py │ │ │ ├── aio │ │ │ ├── __init__.py │ │ │ ├── aiohttp.py │ │ │ ├── auth │ │ │ │ ├── __init__.py │ │ │ │ └── apikey.py │ │ │ ├── crt.py │ │ │ ├── identity │ │ │ │ ├── __init__.py │ │ │ │ └── apikey.py │ │ │ ├── interfaces │ │ │ │ └── __init__.py │ │ │ ├── protocols.py │ │ │ └── restjson.py │ │ │ ├── bindings.py │ │ │ ├── deserializers.py │ │ │ ├── endpoints.py │ │ │ ├── exceptions.py │ │ │ ├── interceptors │ │ │ ├── __init__.py │ │ │ └── user_agent.py │ │ │ ├── interfaces │ │ │ └── __init__.py │ │ │ ├── plugins │ │ │ └── __init__.py │ │ │ ├── py.typed │ │ │ ├── restjson.py │ │ │ ├── serializers.py │ │ │ ├── testing │ │ │ ├── __init__.py │ │ │ ├── mockhttp.py │ │ │ └── utils.py │ │ │ ├── user_agent.py │ │ │ └── utils.py │ └── tests │ │ ├── integration │ │ └── aio │ │ │ ├── conftest.py │ │ │ ├── test_aiohttp.py │ │ │ └── test_crt.py │ │ ├── py.typed │ │ └── unit │ │ ├── aio │ │ ├── auth │ │ │ └── test_apikey.py │ │ ├── identity │ │ │ └── test_apikey.py │ │ ├── test_crt.py │ │ ├── test_http.py │ │ ├── test_protocols.py │ │ └── test_restjson.py │ │ ├── interceptors │ │ └── test_user_agent.py │ │ ├── test_bindings.py │ │ ├── test_fields.py │ │ ├── test_serializers.py │ │ ├── test_user_agent.py │ │ ├── test_utils.py │ │ └── testing │ │ ├── test_mockhttp.py │ │ └── test_utils.py └── smithy-json │ ├── .changes │ ├── 0.0.1.json │ ├── 0.1.0.json │ └── 0.2.0.json │ ├── CHANGELOG.md │ ├── NOTICE │ ├── README.md │ ├── pyproject.toml │ ├── src │ └── smithy_json │ │ ├── __init__.py │ │ ├── _private │ │ ├── __init__.py │ │ ├── deserializers.py │ │ ├── documents.py │ │ └── serializers.py │ │ ├── py.typed │ │ └── settings.py │ └── tests │ └── unit │ ├── __init__.py │ ├── test_deserializers.py │ └── test_serializers.py ├── pyproject.toml ├── scripts └── changelog │ ├── new-entry.py │ ├── new-release.py │ ├── render.py │ └── templates │ └── PACKAGE └── uv.lock /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/.github/workflows/check-license.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/update-gradle-wrapper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/.github/workflows/update-gradle-wrapper.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/.licenserc.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /codegen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/.gitignore -------------------------------------------------------------------------------- /codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/README.md -------------------------------------------------------------------------------- /codegen/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/README.md -------------------------------------------------------------------------------- /codegen/aws/core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/core/build.gradle.kts -------------------------------------------------------------------------------- /codegen/aws/core/src/it/java/software/amazon/smithy/python/codegen/test/AwsCodegenTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/core/src/it/java/software/amazon/smithy/python/codegen/test/AwsCodegenTest.java -------------------------------------------------------------------------------- /codegen/aws/core/src/it/resources/META-INF/smithy/main.smithy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/core/src/it/resources/META-INF/smithy/main.smithy -------------------------------------------------------------------------------- /codegen/aws/core/src/it/resources/META-INF/smithy/manifest: -------------------------------------------------------------------------------- 1 | main.smithy 2 | -------------------------------------------------------------------------------- /codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsAuthIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsAuthIntegration.java -------------------------------------------------------------------------------- /codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsConfiguration.java -------------------------------------------------------------------------------- /codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsProtocolsIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsProtocolsIntegration.java -------------------------------------------------------------------------------- /codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsPythonDependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsPythonDependency.java -------------------------------------------------------------------------------- /codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsRstDocFileGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsRstDocFileGenerator.java -------------------------------------------------------------------------------- /codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsServiceIdIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsServiceIdIntegration.java -------------------------------------------------------------------------------- /codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsStandardRegionalEndpointsIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsStandardRegionalEndpointsIntegration.java -------------------------------------------------------------------------------- /codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsUserAgentIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsUserAgentIntegration.java -------------------------------------------------------------------------------- /codegen/aws/core/src/test/java/software/amazon/smithy/python/aws/codegen/MarkdownToRstDocConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/aws/core/src/test/java/software/amazon/smithy/python/aws/codegen/MarkdownToRstDocConverterTest.java -------------------------------------------------------------------------------- /codegen/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/build.gradle.kts -------------------------------------------------------------------------------- /codegen/buildSrc/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/buildSrc/build.gradle.kts -------------------------------------------------------------------------------- /codegen/buildSrc/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/buildSrc/gradle.properties -------------------------------------------------------------------------------- /codegen/buildSrc/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/buildSrc/settings.gradle -------------------------------------------------------------------------------- /codegen/buildSrc/src/main/kotlin/smithy-python.codegen-plugin-conventions.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/buildSrc/src/main/kotlin/smithy-python.codegen-plugin-conventions.gradle.kts -------------------------------------------------------------------------------- /codegen/buildSrc/src/main/kotlin/smithy-python.integ-test-conventions.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/buildSrc/src/main/kotlin/smithy-python.integ-test-conventions.gradle.kts -------------------------------------------------------------------------------- /codegen/buildSrc/src/main/kotlin/smithy-python.java-conventions.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/buildSrc/src/main/kotlin/smithy-python.java-conventions.gradle.kts -------------------------------------------------------------------------------- /codegen/buildSrc/src/main/kotlin/smithy-python.module-conventions.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/buildSrc/src/main/kotlin/smithy-python.module-conventions.gradle.kts -------------------------------------------------------------------------------- /codegen/buildSrc/src/main/kotlin/smithy-python.publishing-conventions.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/buildSrc/src/main/kotlin/smithy-python.publishing-conventions.gradle.kts -------------------------------------------------------------------------------- /codegen/buildSrc/src/main/kotlin/smithy-python.utilities.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/buildSrc/src/main/kotlin/smithy-python.utilities.gradle.kts -------------------------------------------------------------------------------- /codegen/config/logging/logging.properties: -------------------------------------------------------------------------------- 1 | .level = WARNING 2 | -------------------------------------------------------------------------------- /codegen/config/spotbugs/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/config/spotbugs/filter.xml -------------------------------------------------------------------------------- /codegen/config/spotless/formatting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/config/spotless/formatting.xml -------------------------------------------------------------------------------- /codegen/config/spotless/license-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/config/spotless/license-header.txt -------------------------------------------------------------------------------- /codegen/core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/build.gradle.kts -------------------------------------------------------------------------------- /codegen/core/src/it/java/software/amazon/smithy/python/codegen/test/PythonCodegenTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/it/java/software/amazon/smithy/python/codegen/test/PythonCodegenTest.java -------------------------------------------------------------------------------- /codegen/core/src/it/resources/META-INF/smithy/main.smithy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/it/resources/META-INF/smithy/main.smithy -------------------------------------------------------------------------------- /codegen/core/src/it/resources/META-INF/smithy/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/it/resources/META-INF/smithy/manifest -------------------------------------------------------------------------------- /codegen/core/src/it/resources/META-INF/smithy/more-nesting.smithy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/it/resources/META-INF/smithy/more-nesting.smithy -------------------------------------------------------------------------------- /codegen/core/src/it/resources/META-INF/smithy/nested.smithy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/it/resources/META-INF/smithy/nested.smithy -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/ApplicationProtocol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/ApplicationProtocol.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/ClientGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/ClientGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/CodegenUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/CodegenUtils.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/ConfigProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/ConfigProperty.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/DerivedProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/DerivedProperty.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/DirectedPythonClientCodegen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/DirectedPythonClientCodegen.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/GenerationContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/GenerationContext.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/HttpAuthGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/HttpAuthGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/HttpProtocolTestGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/HttpProtocolTestGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/PythonClientCodegenPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/PythonClientCodegenPlugin.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/PythonDependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/PythonDependency.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/PythonFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/PythonFormatter.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/PythonSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/PythonSettings.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/PythonSymbolProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/PythonSymbolProvider.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/SmithyPythonDependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/SmithyPythonDependency.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/SymbolProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/SymbolProperties.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/ConfigGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/ConfigGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/EnumGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/EnumGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/InitGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/InitGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/IntEnumGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/IntEnumGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/ListGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/ListGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/MapGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/MapGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/MemberDeserializerGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/MemberDeserializerGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/MemberSerializerGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/MemberSerializerGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/OperationGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/OperationGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/ProtocolGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/ProtocolGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/SchemaGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/SchemaGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/ServiceErrorGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/ServiceErrorGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/SetupGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/SetupGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/StructureGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/StructureGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/UnionGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/UnionGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/AuthScheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/AuthScheme.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/HttpApiKeyAuth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/HttpApiKeyAuth.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/PythonIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/PythonIntegration.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/RestJsonIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/RestJsonIntegration.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/RestJsonProtocolGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/RestJsonProtocolGenerator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/RuntimeClientPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/RuntimeClientPlugin.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/UserAgentIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/integrations/UserAgentIntegration.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/ConfigSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/ConfigSection.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/ErrorSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/ErrorSection.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/GenerateHttpAuthSchemeResolverSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/GenerateHttpAuthSchemeResolverSection.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/InitDefaultEndpointResolverSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/InitDefaultEndpointResolverSection.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/OperationSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/OperationSection.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/PyprojectSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/PyprojectSection.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/ReadmeSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/ReadmeSection.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/StructureSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/StructureSection.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/UnionMemberSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/UnionMemberSection.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/UnionSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/sections/UnionSection.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/writer/ImportDeclarations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/writer/ImportDeclarations.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/writer/MarkdownToRstDocConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/writer/MarkdownToRstDocConverter.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/writer/PythonDelegator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/writer/PythonDelegator.java -------------------------------------------------------------------------------- /codegen/core/src/main/java/software/amazon/smithy/python/codegen/writer/PythonWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/java/software/amazon/smithy/python/codegen/writer/PythonWriter.java -------------------------------------------------------------------------------- /codegen/core/src/main/resources/META-INF/services/software.amazon.smithy.build.SmithyBuildPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/resources/META-INF/services/software.amazon.smithy.build.SmithyBuildPlugin -------------------------------------------------------------------------------- /codegen/core/src/main/resources/META-INF/services/software.amazon.smithy.python.codegen.integrations.PythonIntegration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/resources/META-INF/services/software.amazon.smithy.python.codegen.integrations.PythonIntegration -------------------------------------------------------------------------------- /codegen/core/src/main/resources/software/amazon/smithy/python/codegen/reserved-class-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/resources/software/amazon/smithy/python/codegen/reserved-class-names.txt -------------------------------------------------------------------------------- /codegen/core/src/main/resources/software/amazon/smithy/python/codegen/reserved-error-member-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/resources/software/amazon/smithy/python/codegen/reserved-error-member-names.txt -------------------------------------------------------------------------------- /codegen/core/src/main/resources/software/amazon/smithy/python/codegen/reserved-member-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/core/src/main/resources/software/amazon/smithy/python/codegen/reserved-member-names.txt -------------------------------------------------------------------------------- /codegen/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/gradle/libs.versions.toml -------------------------------------------------------------------------------- /codegen/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /codegen/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /codegen/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/gradlew -------------------------------------------------------------------------------- /codegen/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/gradlew.bat -------------------------------------------------------------------------------- /codegen/plugins/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/plugins/build.gradle.kts -------------------------------------------------------------------------------- /codegen/plugins/types/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codegen/plugins/types/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/plugins/types/build.gradle.kts -------------------------------------------------------------------------------- /codegen/plugins/types/src/it/java/software/amazon/smithy/python/codegen/types/PythonTypeCodegenTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/plugins/types/src/it/java/software/amazon/smithy/python/codegen/types/PythonTypeCodegenTest.java -------------------------------------------------------------------------------- /codegen/plugins/types/src/it/resources/META-INF/smithy/main.smithy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/plugins/types/src/it/resources/META-INF/smithy/main.smithy -------------------------------------------------------------------------------- /codegen/plugins/types/src/it/resources/META-INF/smithy/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/plugins/types/src/it/resources/META-INF/smithy/manifest -------------------------------------------------------------------------------- /codegen/plugins/types/src/it/resources/META-INF/smithy/more-nesting.smithy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/plugins/types/src/it/resources/META-INF/smithy/more-nesting.smithy -------------------------------------------------------------------------------- /codegen/plugins/types/src/it/resources/META-INF/smithy/nested.smithy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/plugins/types/src/it/resources/META-INF/smithy/nested.smithy -------------------------------------------------------------------------------- /codegen/plugins/types/src/main/java/software/amazon/smithy/python/codegen/types/CreateSyntheticService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/plugins/types/src/main/java/software/amazon/smithy/python/codegen/types/CreateSyntheticService.java -------------------------------------------------------------------------------- /codegen/plugins/types/src/main/java/software/amazon/smithy/python/codegen/types/DirectedPythonTypeCodegen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/plugins/types/src/main/java/software/amazon/smithy/python/codegen/types/DirectedPythonTypeCodegen.java -------------------------------------------------------------------------------- /codegen/plugins/types/src/main/java/software/amazon/smithy/python/codegen/types/PythonTypeCodegenPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/plugins/types/src/main/java/software/amazon/smithy/python/codegen/types/PythonTypeCodegenPlugin.java -------------------------------------------------------------------------------- /codegen/plugins/types/src/main/java/software/amazon/smithy/python/codegen/types/PythonTypeCodegenSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/plugins/types/src/main/java/software/amazon/smithy/python/codegen/types/PythonTypeCodegenSettings.java -------------------------------------------------------------------------------- /codegen/plugins/types/src/main/resources/META-INF/services/software.amazon.smithy.build.SmithyBuildPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/plugins/types/src/main/resources/META-INF/services/software.amazon.smithy.build.SmithyBuildPlugin -------------------------------------------------------------------------------- /codegen/protocol-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/protocol-test/README.md -------------------------------------------------------------------------------- /codegen/protocol-test/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/protocol-test/build.gradle.kts -------------------------------------------------------------------------------- /codegen/protocol-test/smithy-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/protocol-test/smithy-build.json -------------------------------------------------------------------------------- /codegen/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/codegen/settings.gradle.kts -------------------------------------------------------------------------------- /designs/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/designs/auth.md -------------------------------------------------------------------------------- /designs/documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/designs/documents.md -------------------------------------------------------------------------------- /designs/event-streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/designs/event-streams.md -------------------------------------------------------------------------------- /designs/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/designs/exceptions.md -------------------------------------------------------------------------------- /designs/http-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/designs/http-interfaces.md -------------------------------------------------------------------------------- /designs/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/designs/retries.md -------------------------------------------------------------------------------- /designs/serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/designs/serialization.md -------------------------------------------------------------------------------- /designs/shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/designs/shapes.md -------------------------------------------------------------------------------- /examples/weather/model/weather.smithy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/examples/weather/model/weather.smithy -------------------------------------------------------------------------------- /examples/weather/smithy-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/examples/weather/smithy-build.json -------------------------------------------------------------------------------- /packages/aws-sdk-signers/.changes/0.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/.changes/0.0.1.json -------------------------------------------------------------------------------- /packages/aws-sdk-signers/.changes/0.0.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/.changes/0.0.2.json -------------------------------------------------------------------------------- /packages/aws-sdk-signers/.changes/0.0.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/.changes/0.0.3.json -------------------------------------------------------------------------------- /packages/aws-sdk-signers/.changes/0.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/.changes/0.1.0.json -------------------------------------------------------------------------------- /packages/aws-sdk-signers/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/CHANGELOG.md -------------------------------------------------------------------------------- /packages/aws-sdk-signers/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include aws_sdk_signers/py.typed 2 | -------------------------------------------------------------------------------- /packages/aws-sdk-signers/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /packages/aws-sdk-signers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/README.md -------------------------------------------------------------------------------- /packages/aws-sdk-signers/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/pyproject.toml -------------------------------------------------------------------------------- /packages/aws-sdk-signers/src/aws_sdk_signers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/src/aws_sdk_signers/__init__.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/src/aws_sdk_signers/_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/src/aws_sdk_signers/_http.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/src/aws_sdk_signers/_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/src/aws_sdk_signers/_identity.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/src/aws_sdk_signers/_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/src/aws_sdk_signers/_io.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/src/aws_sdk_signers/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/src/aws_sdk_signers/exceptions.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/src/aws_sdk_signers/interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/src/aws_sdk_signers/interfaces/__init__.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/src/aws_sdk_signers/interfaces/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/src/aws_sdk_signers/interfaces/events.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/src/aws_sdk_signers/interfaces/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/src/aws_sdk_signers/interfaces/http.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/src/aws_sdk_signers/interfaces/identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/src/aws_sdk_signers/interfaces/identity.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/src/aws_sdk_signers/interfaces/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/src/aws_sdk_signers/interfaces/io.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/src/aws_sdk_signers/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/src/aws_sdk_signers/py.typed -------------------------------------------------------------------------------- /packages/aws-sdk-signers/src/aws_sdk_signers/signers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/src/aws_sdk_signers/signers.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/__init__.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/__init__.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/__init__.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/LICENSE -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/NOTICE -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.req: -------------------------------------------------------------------------------- 1 | GET /-._~0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.req: -------------------------------------------------------------------------------- 1 | GET /ሴ HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.req: -------------------------------------------------------------------------------- 1 | GET /?Param1=value1 HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.req: -------------------------------------------------------------------------------- 1 | GET / HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.req: -------------------------------------------------------------------------------- 1 | GET /?ሴ=bar HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-with-session-token/get-vanilla-with-session-token.req: -------------------------------------------------------------------------------- 1 | GET / HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-with-session-token/get-vanilla-with-session-token.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla-with-session-token/get-vanilla-with-session-token.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.req: -------------------------------------------------------------------------------- 1 | GET / HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.req: -------------------------------------------------------------------------------- 1 | GET /./ HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.req: -------------------------------------------------------------------------------- 1 | GET // HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/normalize-path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/normalize-path/normalize-path.txt -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.req: -------------------------------------------------------------------------------- 1 | POST / HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.req: -------------------------------------------------------------------------------- 1 | POST / HTTP/1.1 2 | Host:example.amazonaws.com 3 | My-Header1:value1 4 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.req: -------------------------------------------------------------------------------- 1 | POST / HTTP/1.1 2 | Host:example.amazonaws.com 3 | My-Header1:VALUE1 4 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-after/post-sts-header-after.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-after/post-sts-header-after.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-after/post-sts-header-after.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-after/post-sts-header-after.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-after/post-sts-header-after.req: -------------------------------------------------------------------------------- 1 | POST / HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-after/post-sts-header-after.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-after/post-sts-header-after.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-after/post-sts-header-after.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-after/post-sts-header-after.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-before/post-sts-header-before.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-before/post-sts-header-before.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-before/post-sts-header-before.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-before/post-sts-header-before.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-before/post-sts-header-before.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-before/post-sts-header-before.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-before/post-sts-header-before.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-before/post-sts-header-before.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-sts-token/readme.txt -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla-empty-query-value/post-vanilla-empty-query-value.req: -------------------------------------------------------------------------------- 1 | POST /?Param1=value1 HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla-empty-query-value/post-vanilla-empty-query-value.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla-empty-query-value/post-vanilla-empty-query-value.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.req: -------------------------------------------------------------------------------- 1 | POST /?Param1=value1 HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.req: -------------------------------------------------------------------------------- 1 | POST / HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.authz -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.creq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.req -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.sreq -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.sts -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/auth/test_sigv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/auth/test_sigv4.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/test_fields.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/test_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/test_identity.py -------------------------------------------------------------------------------- /packages/aws-sdk-signers/tests/unit/test_signers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/aws-sdk-signers/tests/unit/test_signers.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/.changes/0.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/.changes/0.0.1.json -------------------------------------------------------------------------------- /packages/smithy-aws-core/.changes/0.0.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/.changes/0.0.2.json -------------------------------------------------------------------------------- /packages/smithy-aws-core/.changes/0.0.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/.changes/0.0.3.json -------------------------------------------------------------------------------- /packages/smithy-aws-core/.changes/0.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/.changes/0.1.0.json -------------------------------------------------------------------------------- /packages/smithy-aws-core/.changes/0.1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/.changes/0.1.1.json -------------------------------------------------------------------------------- /packages/smithy-aws-core/.changes/0.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/.changes/0.2.0.json -------------------------------------------------------------------------------- /packages/smithy-aws-core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/smithy-aws-core/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /packages/smithy-aws-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/README.md -------------------------------------------------------------------------------- /packages/smithy-aws-core/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/pyproject.toml -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/__init__.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/aio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/aio/__init__.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/aio/protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/aio/protocols.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/auth/__init__.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/auth/sigv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/auth/sigv4.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/endpoints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/endpoints/__init__.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/endpoints/standard_regional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/endpoints/standard_regional.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/identity/__init__.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/identity/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/identity/chain.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/identity/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/identity/components.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/identity/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/identity/container.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/identity/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/identity/environment.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/identity/imds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/identity/imds.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/identity/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/identity/static.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/interceptors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/interceptors/__init__.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/interceptors/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/interceptors/user_agent.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/interfaces/__init__.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/py.typed: -------------------------------------------------------------------------------- 1 | Marker 2 | -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/traits.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/src/smithy_aws_core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/src/smithy_aws_core/utils.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/aio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/aio/__init__.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/aio/test_protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/aio/test_protocols.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/LICENSE -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/NOTICE -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-key-duplicate/get-header-key-duplicate.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-multiline/get-header-value-multiline.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-order/get-header-value-order.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-header-value-trim/get-header-value-trim.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.req: -------------------------------------------------------------------------------- 1 | GET /-._~0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-unreserved/get-unreserved.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.req: -------------------------------------------------------------------------------- 1 | GET /ሴ HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-utf8/get-utf8.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.req: -------------------------------------------------------------------------------- 1 | GET /?Param1=value1 HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-empty-query-key/get-vanilla-empty-query-key.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-key/get-vanilla-query-order-key.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-order-value/get-vanilla-query-order-value.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query-unreserved/get-vanilla-query-unreserved.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.req: -------------------------------------------------------------------------------- 1 | GET / HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-query/get-vanilla-query.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.req: -------------------------------------------------------------------------------- 1 | GET /?ሴ=bar HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-utf8-query/get-vanilla-utf8-query.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-with-session-token/get-vanilla-with-session-token.req: -------------------------------------------------------------------------------- 1 | GET / HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-with-session-token/get-vanilla-with-session-token.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla-with-session-token/get-vanilla-with-session-token.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.req: -------------------------------------------------------------------------------- 1 | GET / HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/get-vanilla/get-vanilla.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative-relative/get-relative-relative.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-relative/get-relative.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.req: -------------------------------------------------------------------------------- 1 | GET /./ HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash-dot-slash/get-slash-dot-slash.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.req: -------------------------------------------------------------------------------- 1 | GET // HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slash/get-slash.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-slashes/get-slashes.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-space/get-space.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/get-special-character/get-special-character.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/normalize-path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/normalize-path/normalize-path.txt -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.req: -------------------------------------------------------------------------------- 1 | POST / HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-case/post-header-key-case.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.req: -------------------------------------------------------------------------------- 1 | POST / HTTP/1.1 2 | Host:example.amazonaws.com 3 | My-Header1:value1 4 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-key-sort/post-header-key-sort.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.req: -------------------------------------------------------------------------------- 1 | POST / HTTP/1.1 2 | Host:example.amazonaws.com 3 | My-Header1:VALUE1 4 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-header-value-case/post-header-value-case.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-after/post-sts-header-after.req: -------------------------------------------------------------------------------- 1 | POST / HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-after/post-sts-header-after.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-sts-token/post-sts-header-after/post-sts-header-after.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-sts-token/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-sts-token/readme.txt -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla-empty-query-value/post-vanilla-empty-query-value.req: -------------------------------------------------------------------------------- 1 | POST /?Param1=value1 HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.req: -------------------------------------------------------------------------------- 1 | POST /?Param1=value1 HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla-query/post-vanilla-query.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.req: -------------------------------------------------------------------------------- 1 | POST / HTTP/1.1 2 | Host:example.amazonaws.com 3 | X-Amz-Date:20150830T123600Z -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-vanilla/post-vanilla.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.authz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.authz -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.creq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.creq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.req -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.sreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.sreq -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/auth/aws4_testsuite/post-x-www-form-urlencoded/post-x-www-form-urlencoded.sts -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/endpoints/test_standard_regional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/endpoints/test_standard_regional.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/identity/test_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/identity/test_container.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/identity/test_environment_credentials_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/identity/test_environment_credentials_resolver.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/identity/test_imds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/identity/test_imds.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/test_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/test_traits.py -------------------------------------------------------------------------------- /packages/smithy-aws-core/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-core/tests/unit/test_utils.py -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/.changes/0.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/.changes/0.0.1.json -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/.changes/0.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/.changes/0.1.0.json -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/.changes/0.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/.changes/0.2.0.json -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/CHANGELOG.md -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/README.md -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/pyproject.toml -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/src/smithy_aws_event_stream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/src/smithy_aws_event_stream/__init__.py -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/src/smithy_aws_event_stream/_private/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/src/smithy_aws_event_stream/_private/__init__.py -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/src/smithy_aws_event_stream/_private/deserializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/src/smithy_aws_event_stream/_private/deserializers.py -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/src/smithy_aws_event_stream/_private/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/src/smithy_aws_event_stream/_private/serializers.py -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/src/smithy_aws_event_stream/aio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/src/smithy_aws_event_stream/aio/__init__.py -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/src/smithy_aws_event_stream/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/src/smithy_aws_event_stream/events.py -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/src/smithy_aws_event_stream/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/src/smithy_aws_event_stream/exceptions.py -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/src/smithy_aws_event_stream/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/tests/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/tests/unit/_private/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/tests/unit/_private/__init__.py -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/tests/unit/_private/test_deserializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/tests/unit/_private/test_deserializers.py -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/tests/unit/_private/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/tests/unit/_private/test_serializers.py -------------------------------------------------------------------------------- /packages/smithy-aws-event-stream/tests/unit/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-aws-event-stream/tests/unit/test_events.py -------------------------------------------------------------------------------- /packages/smithy-core/.changes/0.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/.changes/0.0.1.json -------------------------------------------------------------------------------- /packages/smithy-core/.changes/0.0.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/.changes/0.0.2.json -------------------------------------------------------------------------------- /packages/smithy-core/.changes/0.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/.changes/0.1.0.json -------------------------------------------------------------------------------- /packages/smithy-core/.changes/0.1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/.changes/0.1.1.json -------------------------------------------------------------------------------- /packages/smithy-core/.changes/0.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/.changes/0.2.0.json -------------------------------------------------------------------------------- /packages/smithy-core/.changes/next-release/smithy-core-enhancement-20251124183509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/.changes/next-release/smithy-core-enhancement-20251124183509.json -------------------------------------------------------------------------------- /packages/smithy-core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/smithy-core/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /packages/smithy-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/README.md -------------------------------------------------------------------------------- /packages/smithy-core/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/pyproject.toml -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/__init__.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/aio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/aio/__init__.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/aio/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/aio/client.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/aio/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/aio/endpoints.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/aio/eventstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/aio/eventstream.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/aio/identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/aio/identity.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/aio/interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/aio/interfaces/__init__.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/aio/interfaces/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/aio/interfaces/auth.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/aio/interfaces/eventstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/aio/interfaces/eventstream.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/aio/interfaces/identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/aio/interfaces/identity.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/aio/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/aio/types.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/aio/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/aio/utils.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/auth.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/codecs.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/deserializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/deserializers.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/documents.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/endpoints.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/exceptions.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/interceptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/interceptors.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/interfaces/__init__.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/interfaces/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/interfaces/auth.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/interfaces/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/interfaces/exceptions.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/interfaces/identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/interfaces/identity.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/interfaces/retries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/interfaces/retries.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/prelude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/prelude.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/retries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/retries.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/rfc3986.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/rfc3986.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/schemas.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/serializers.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/shapes.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/traits.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/types.py -------------------------------------------------------------------------------- /packages/smithy-core/src/smithy_core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/src/smithy_core/utils.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/__init__.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/functional/__init__.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/functional/test_retries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/functional/test_retries.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/__init__.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/aio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/aio/__init__.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/aio/test_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/aio/test_endpoints.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/aio/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/aio/test_types.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/aio/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/aio/test_utils.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/test_documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/test_documents.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/test_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/test_identity.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/test_retries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/test_retries.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/test_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/test_schemas.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/test_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/test_shapes.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/test_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/test_traits.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/test_type_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/test_type_registry.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/test_types.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/test_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/test_uri.py -------------------------------------------------------------------------------- /packages/smithy-core/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-core/tests/unit/test_utils.py -------------------------------------------------------------------------------- /packages/smithy-http/.changes/0.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/.changes/0.0.1.json -------------------------------------------------------------------------------- /packages/smithy-http/.changes/0.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/.changes/0.1.0.json -------------------------------------------------------------------------------- /packages/smithy-http/.changes/0.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/.changes/0.2.0.json -------------------------------------------------------------------------------- /packages/smithy-http/.changes/0.2.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/.changes/0.2.1.json -------------------------------------------------------------------------------- /packages/smithy-http/.changes/0.3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/.changes/0.3.0.json -------------------------------------------------------------------------------- /packages/smithy-http/.changes/next-release/smithy-http-enhancement-20251122132342.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/.changes/next-release/smithy-http-enhancement-20251122132342.json -------------------------------------------------------------------------------- /packages/smithy-http/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/CHANGELOG.md -------------------------------------------------------------------------------- /packages/smithy-http/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /packages/smithy-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/README.md -------------------------------------------------------------------------------- /packages/smithy-http/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/pyproject.toml -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/__init__.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/aio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/aio/__init__.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/aio/aiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/aio/aiohttp.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/aio/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/aio/auth/__init__.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/aio/auth/apikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/aio/auth/apikey.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/aio/crt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/aio/crt.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/aio/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/aio/identity/__init__.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/aio/identity/apikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/aio/identity/apikey.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/aio/interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/aio/interfaces/__init__.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/aio/protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/aio/protocols.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/aio/restjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/aio/restjson.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/bindings.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/deserializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/deserializers.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/endpoints.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/exceptions.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/interceptors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/interceptors/__init__.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/interceptors/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/interceptors/user_agent.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/interfaces/__init__.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/plugins/__init__.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/restjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/restjson.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/serializers.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/testing/__init__.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/testing/mockhttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/testing/mockhttp.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/testing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/testing/utils.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/user_agent.py -------------------------------------------------------------------------------- /packages/smithy-http/src/smithy_http/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/src/smithy_http/utils.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/integration/aio/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/integration/aio/conftest.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/integration/aio/test_aiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/integration/aio/test_aiohttp.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/integration/aio/test_crt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/integration/aio/test_crt.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/aio/auth/test_apikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/aio/auth/test_apikey.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/aio/identity/test_apikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/aio/identity/test_apikey.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/aio/test_crt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/aio/test_crt.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/aio/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/aio/test_http.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/aio/test_protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/aio/test_protocols.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/aio/test_restjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/aio/test_restjson.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/interceptors/test_user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/interceptors/test_user_agent.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/test_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/test_bindings.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/test_fields.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/test_serializers.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/test_user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/test_user_agent.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/test_utils.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/testing/test_mockhttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/testing/test_mockhttp.py -------------------------------------------------------------------------------- /packages/smithy-http/tests/unit/testing/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-http/tests/unit/testing/test_utils.py -------------------------------------------------------------------------------- /packages/smithy-json/.changes/0.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/.changes/0.0.1.json -------------------------------------------------------------------------------- /packages/smithy-json/.changes/0.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/.changes/0.1.0.json -------------------------------------------------------------------------------- /packages/smithy-json/.changes/0.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/.changes/0.2.0.json -------------------------------------------------------------------------------- /packages/smithy-json/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/CHANGELOG.md -------------------------------------------------------------------------------- /packages/smithy-json/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /packages/smithy-json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/README.md -------------------------------------------------------------------------------- /packages/smithy-json/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/pyproject.toml -------------------------------------------------------------------------------- /packages/smithy-json/src/smithy_json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/src/smithy_json/__init__.py -------------------------------------------------------------------------------- /packages/smithy-json/src/smithy_json/_private/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/src/smithy_json/_private/__init__.py -------------------------------------------------------------------------------- /packages/smithy-json/src/smithy_json/_private/deserializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/src/smithy_json/_private/deserializers.py -------------------------------------------------------------------------------- /packages/smithy-json/src/smithy_json/_private/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/src/smithy_json/_private/documents.py -------------------------------------------------------------------------------- /packages/smithy-json/src/smithy_json/_private/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/src/smithy_json/_private/serializers.py -------------------------------------------------------------------------------- /packages/smithy-json/src/smithy_json/py.typed: -------------------------------------------------------------------------------- 1 | Marker 2 | -------------------------------------------------------------------------------- /packages/smithy-json/src/smithy_json/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/src/smithy_json/settings.py -------------------------------------------------------------------------------- /packages/smithy-json/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/tests/unit/__init__.py -------------------------------------------------------------------------------- /packages/smithy-json/tests/unit/test_deserializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/tests/unit/test_deserializers.py -------------------------------------------------------------------------------- /packages/smithy-json/tests/unit/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/packages/smithy-json/tests/unit/test_serializers.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/changelog/new-entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/scripts/changelog/new-entry.py -------------------------------------------------------------------------------- /scripts/changelog/new-release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/scripts/changelog/new-release.py -------------------------------------------------------------------------------- /scripts/changelog/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/scripts/changelog/render.py -------------------------------------------------------------------------------- /scripts/changelog/templates/PACKAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/scripts/changelog/templates/PACKAGE -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithy-lang/smithy-python/HEAD/uv.lock --------------------------------------------------------------------------------