@aws/lsp-codewhisperer 0.0.84 → 0.0.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/node_modules/@amzn/codewhisperer/LICENSE +201 -0
- package/node_modules/@amzn/codewhisperer/README.md +1032 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/CodeWhisperer.js +49 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/CodeWhispererClient.js +47 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/AllowVendedLogDeliveryForResourceCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/AssociateCustomizationPermissionCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/CreateCustomizationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/CreateProfileCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/DeleteCustomizationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/DeleteProfileCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/DisassociateCustomizationPermissionCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/GenerateRecommendationsCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/GetCustomizationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListCustomizationPermissionsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListCustomizationVersionsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListCustomizationsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListProfilesCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListTagsForResourceCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/TagResourceCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/UntagResourceCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/UpdateCustomizationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/UpdateProfileCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/VendKeyGrantCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/index.js +22 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/endpoints.js +211 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/extensionConfiguration.js +2 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/index.js +11 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/models/CodeWhispererServiceException.js +12 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/models/index.js +4 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/models/models_0.js +316 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/Interfaces.js +2 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/ListCustomizationPermissionsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/ListCustomizationVersionsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/ListCustomizationsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/ListProfilesPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/index.js +8 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/protocols/Aws_restJson1.js +791 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeConfig.browser.js +38 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeConfig.js +46 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeConfig.shared.js +32 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeExtensions.js +25 -0
- package/node_modules/@amzn/codewhisperer/dist-es/CodeWhisperer.js +45 -0
- package/node_modules/@amzn/codewhisperer/dist-es/CodeWhispererClient.js +43 -0
- package/node_modules/@amzn/codewhisperer/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@amzn/codewhisperer/dist-es/auth/httpAuthSchemeProvider.js +44 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/AllowVendedLogDeliveryForResourceCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/AssociateCustomizationPermissionCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/CreateCustomizationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/CreateProfileCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/DeleteCustomizationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/DeleteProfileCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/DisassociateCustomizationPermissionCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/GenerateRecommendationsCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/GetCustomizationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/ListCustomizationPermissionsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/ListCustomizationVersionsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/ListCustomizationsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/ListProfilesCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/ListTagsForResourceCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/TagResourceCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/UntagResourceCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/UpdateCustomizationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/UpdateProfileCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/VendKeyGrantCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/index.js +19 -0
- package/node_modules/@amzn/codewhisperer/dist-es/endpoints.js +207 -0
- package/node_modules/@amzn/codewhisperer/dist-es/index.js +6 -0
- package/node_modules/@amzn/codewhisperer/dist-es/models/CodeWhispererServiceException.js +8 -0
- package/node_modules/@amzn/codewhisperer/dist-es/models/index.js +1 -0
- package/node_modules/@amzn/codewhisperer/dist-es/models/models_0.js +298 -0
- package/node_modules/@amzn/codewhisperer/dist-es/pagination/ListCustomizationPermissionsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer/dist-es/pagination/ListCustomizationVersionsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer/dist-es/pagination/ListCustomizationsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer/dist-es/pagination/ListProfilesPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer/dist-es/pagination/index.js +5 -0
- package/node_modules/@amzn/codewhisperer/dist-es/protocols/Aws_restJson1.js +750 -0
- package/node_modules/@amzn/codewhisperer/dist-es/runtimeConfig.browser.js +33 -0
- package/node_modules/@amzn/codewhisperer/dist-es/runtimeConfig.js +41 -0
- package/node_modules/@amzn/codewhisperer/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@amzn/codewhisperer/dist-es/runtimeConfig.shared.js +28 -0
- package/node_modules/@amzn/codewhisperer/dist-es/runtimeExtensions.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-types/CodeWhisperer.d.ts +144 -0
- package/node_modules/@amzn/codewhisperer/dist-types/CodeWhispererClient.d.ts +208 -0
- package/node_modules/@amzn/codewhisperer/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@amzn/codewhisperer/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/AllowVendedLogDeliveryForResourceCommand.d.ts +87 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/AssociateCustomizationPermissionCommand.d.ts +91 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/CreateCustomizationCommand.d.ts +106 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/CreateProfileCommand.d.ts +146 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/DeleteCustomizationCommand.d.ts +88 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/DeleteProfileCommand.d.ts +88 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/DisassociateCustomizationPermissionCommand.d.ts +91 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/GenerateRecommendationsCommand.d.ts +130 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/GetCustomizationCommand.d.ts +107 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/ListCustomizationPermissionsCommand.d.ts +94 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/ListCustomizationVersionsCommand.d.ts +107 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/ListCustomizationsCommand.d.ts +94 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/ListProfilesCommand.d.ts +155 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/ListTagsForResourceCommand.d.ts +92 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/TagResourceCommand.d.ts +91 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/UntagResourceCommand.d.ts +88 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/UpdateCustomizationCommand.d.ts +101 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/UpdateProfileCommand.d.ts +141 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/VendKeyGrantCommand.d.ts +91 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/index.d.ts +19 -0
- package/node_modules/@amzn/codewhisperer/dist-types/endpoints.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@amzn/codewhisperer/dist-types/index.d.ts +8 -0
- package/node_modules/@amzn/codewhisperer/dist-types/models/CodeWhispererServiceException.d.ts +14 -0
- package/node_modules/@amzn/codewhisperer/dist-types/models/index.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/dist-types/models/models_0.d.ts +1174 -0
- package/node_modules/@amzn/codewhisperer/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@amzn/codewhisperer/dist-types/pagination/ListCustomizationPermissionsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/dist-types/pagination/ListCustomizationVersionsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/dist-types/pagination/ListCustomizationsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/dist-types/pagination/ListProfilesPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/dist-types/pagination/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer/dist-types/protocols/Aws_restJson1.d.ts +173 -0
- package/node_modules/@amzn/codewhisperer/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/node_modules/@amzn/codewhisperer/dist-types/runtimeConfig.d.ts +46 -0
- package/node_modules/@amzn/codewhisperer/dist-types/runtimeConfig.native.d.ts +45 -0
- package/node_modules/@amzn/codewhisperer/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@amzn/codewhisperer/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-cjs/index.js +294 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/index.js +33 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +50 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +59 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +47 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/index.d.ts +33 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +13 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +54 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +25 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +33 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/package.json +56 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/CHANGELOG.md +274 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/README.md +466 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/native.js +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/rng.js +18 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v35.js +66 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v4.js +29 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/native.js +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/stringify.js +33 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v35.js +66 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v4.js +29 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/native-browser.js +11 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/native.js +15 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/rng-browser.js +25 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/stringify.js +44 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v35.js +80 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v4.js +43 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/package.json +135 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/@amzn/codewhisperer/package.json +85 -0
- package/node_modules/@amzn/codewhisperer-runtime/LICENSE +201 -0
- package/node_modules/@amzn/codewhisperer-runtime/README.md +1032 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/CodeWhispererRuntime.js +89 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/CodeWhispererRuntimeClient.js +47 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateArtifactUploadUrlCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateSubscriptionTokenCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateTaskAssistConversationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateUploadUrlCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateUserMemoryEntryCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateWorkspaceCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/DeleteTaskAssistConversationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/DeleteUserMemoryEntryCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/DeleteWorkspaceCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GenerateCompletionsCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetCodeAnalysisCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetCodeFixJobCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetProfileCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetRetrievalsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTaskAssistCodeGenerationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTestGenerationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTransformationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTransformationPlanCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetUsageLimitsCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableCustomizationsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableModelsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableProfilesCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableSubscriptionsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListCodeAnalysisFindingsCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListEventsCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListFeatureEvaluationsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListUserMemoryEntriesCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListWorkspaceMetadataCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/PushTelemetryEventCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ResumeTransformationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/SendTelemetryEventCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/SetUserPreferenceCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartCodeAnalysisCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartCodeFixJobCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartTaskAssistCodeGenerationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartTestGenerationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartTransformationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StopTransformationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/UpdateUsageLimitsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/index.js +42 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/endpoints.js +211 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/extensionConfiguration.js +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/index.js +11 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/CodeWhispererRuntimeServiceException.js +12 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/index.js +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/models_0.js +1519 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/models_1.js +52 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/GenerateCompletionsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/Interfaces.js +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListAvailableCustomizationsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListAvailableModelsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListAvailableProfilesPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListCodeAnalysisFindingsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListEventsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListUserMemoryEntriesPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListWorkspaceMetadataPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/index.js +12 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/protocols/Aws_restJson1.js +2089 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.browser.js +37 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.js +51 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.shared.js +32 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeExtensions.js +25 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/CodeWhispererRuntime.js +85 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/CodeWhispererRuntimeClient.js +43 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateArtifactUploadUrlCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateSubscriptionTokenCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateTaskAssistConversationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateUploadUrlCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateUserMemoryEntryCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateWorkspaceCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/DeleteTaskAssistConversationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/DeleteUserMemoryEntryCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/DeleteWorkspaceCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GenerateCompletionsCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetCodeAnalysisCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetCodeFixJobCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetProfileCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetRetrievalsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTaskAssistCodeGenerationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTestGenerationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTransformationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTransformationPlanCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetUsageLimitsCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableCustomizationsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableModelsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableProfilesCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableSubscriptionsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListCodeAnalysisFindingsCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListEventsCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListFeatureEvaluationsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListUserMemoryEntriesCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListWorkspaceMetadataCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/PushTelemetryEventCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ResumeTransformationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/SendTelemetryEventCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/SetUserPreferenceCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartCodeAnalysisCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartCodeFixJobCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartTaskAssistCodeGenerationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartTestGenerationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartTransformationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StopTransformationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/UpdateUsageLimitsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/index.js +39 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/endpoints.js +207 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/index.js +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/CodeWhispererRuntimeServiceException.js +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/index.js +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/models_0.js +1429 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/models_1.js +43 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/GenerateCompletionsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListAvailableCustomizationsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListAvailableModelsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListAvailableProfilesPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListCodeAnalysisFindingsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListEventsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListUserMemoryEntriesPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListWorkspaceMetadataPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/index.js +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/protocols/Aws_restJson1.js +2007 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.browser.js +32 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.js +46 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.shared.js +28 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeExtensions.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/CodeWhispererRuntime.d.ts +293 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/CodeWhispererRuntimeClient.d.ts +222 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/auth/httpAuthSchemeProvider.d.ts +67 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateArtifactUploadUrlCommand.d.ts +117 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateSubscriptionTokenCommand.d.ts +91 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateTaskAssistConversationCommand.d.ts +86 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateUploadUrlCommand.d.ts +126 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateUserMemoryEntryCommand.d.ts +106 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateWorkspaceCommand.d.ts +95 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/DeleteTaskAssistConversationCommand.d.ts +87 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/DeleteUserMemoryEntryCommand.d.ts +85 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/DeleteWorkspaceCommand.d.ts +82 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GenerateCompletionsCommand.d.ts +236 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetCodeAnalysisCommand.d.ts +88 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetCodeFixJobCommand.d.ts +102 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetProfileCommand.d.ts +121 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetRetrievalsCommand.d.ts +100 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTaskAssistCodeGenerationCommand.d.ts +98 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTestGenerationCommand.d.ts +126 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTransformationCommand.d.ts +143 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTransformationPlanCommand.d.ts +113 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetUsageLimitsCommand.d.ts +163 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableCustomizationsCommand.d.ts +93 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableModelsCommand.d.ts +115 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableProfilesCommand.d.ts +153 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableSubscriptionsCommand.d.ts +101 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListCodeAnalysisFindingsCommand.d.ts +90 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListEventsCommand.d.ts +95 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListFeatureEvaluationsCommand.d.ts +104 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListUserMemoryEntriesCommand.d.ts +105 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListWorkspaceMetadataCommand.d.ts +94 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/PushTelemetryEventCommand.d.ts +83 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ResumeTransformationCommand.d.ts +88 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/SendTelemetryEventCommand.d.ts +403 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/SetUserPreferenceCommand.d.ts +84 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartCodeAnalysisCommand.d.ts +105 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartCodeFixJobCommand.d.ts +101 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartTaskAssistCodeGenerationCommand.d.ts +577 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartTestGenerationCommand.d.ts +151 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartTransformationCommand.d.ts +142 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StopTransformationCommand.d.ts +87 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/UpdateUsageLimitsCommand.d.ts +94 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/index.d.ts +39 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/endpoints.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/index.d.ts +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/CodeWhispererRuntimeServiceException.d.ts +14 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/index.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/models_0.d.ts +5940 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/models_1.d.ts +136 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/GenerateCompletionsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListAvailableCustomizationsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListAvailableModelsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListAvailableProfilesPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListCodeAnalysisFindingsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListEventsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListUserMemoryEntriesPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListWorkspaceMetadataPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/index.d.ts +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/protocols/Aws_restJson1.d.ts +353 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.browser.d.ts +44 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.d.ts +46 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.native.d.ts +43 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.shared.d.ts +25 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-cjs/index.js +294 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/index.js +33 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +50 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +59 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +47 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/index.d.ts +33 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +13 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +54 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +25 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +33 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/package.json +56 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/CHANGELOG.md +274 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/README.md +466 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/native.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/rng.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v35.js +66 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v4.js +29 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/native.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/stringify.js +33 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v35.js +66 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v4.js +29 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/native-browser.js +11 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/native.js +15 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/rng-browser.js +25 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/stringify.js +44 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v35.js +80 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v4.js +43 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/package.json +135 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/@amzn/codewhisperer-runtime/package.json +85 -0
- package/node_modules/@smithy/abort-controller/dist-cjs/index.js +82 -0
- package/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +13 -0
- package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +18 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +13 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +18 -0
- package/node_modules/@smithy/abort-controller/package.json +62 -0
- package/node_modules/@smithy/node-http-handler/README.md +4 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +687 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +184 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +86 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +159 -0
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +81 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +8 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +6 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +14 -0
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +52 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +37 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +22 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +57 -0
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +14 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +7 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +14 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +36 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +22 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +57 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/package.json +67 -0
- package/out/client/sigv4/codewhisperer.d.ts +4 -4
- package/out/client/sigv4/codewhisperer.js +39 -8
- package/out/client/sigv4/codewhisperer.js.map +1 -1
- package/out/client/token/codewhisperer.d.ts +5 -14
- package/out/client/token/codewhisperer.js +33 -17
- package/out/client/token/codewhisperer.js.map +1 -1
- package/out/language-server/agenticChat/agenticChatController.d.ts +1 -1
- package/out/language-server/agenticChat/agenticChatController.js +17 -59
- package/out/language-server/agenticChat/agenticChatController.js.map +1 -1
- package/out/language-server/agenticChat/constants/constants.d.ts +0 -1
- package/out/language-server/agenticChat/constants/constants.js +1 -4
- package/out/language-server/agenticChat/constants/constants.js.map +1 -1
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.d.ts +1 -2
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.js +1 -3
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.js.map +1 -1
- package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReview.js +3 -0
- package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReview.js.map +1 -1
- package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReviewTypes.d.ts +1 -1
- package/out/language-server/chat/chatController.js +8 -7
- package/out/language-server/chat/chatController.js.map +1 -1
- package/out/language-server/chat/chatSessionService.d.ts +0 -1
- package/out/language-server/chat/chatSessionService.js +0 -1
- package/out/language-server/chat/chatSessionService.js.map +1 -1
- package/out/language-server/chat/telemetry/chatTelemetryController.d.ts +0 -1
- package/out/language-server/chat/telemetry/chatTelemetryController.js +0 -11
- package/out/language-server/chat/telemetry/chatTelemetryController.js.map +1 -1
- package/out/language-server/configuration/qConfigurationServer.d.ts +3 -3
- package/out/language-server/configuration/qConfigurationServer.js +4 -4
- package/out/language-server/configuration/qConfigurationServer.js.map +1 -1
- package/out/language-server/inline-completion/handler/editCompletionHandler.js +3 -3
- package/out/language-server/inline-completion/handler/editCompletionHandler.js.map +1 -1
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.js +7 -5
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.js.map +1 -1
- package/out/language-server/inline-completion/handler/sessionResultsHandler.js +8 -3
- package/out/language-server/inline-completion/handler/sessionResultsHandler.js.map +1 -1
- package/out/language-server/inline-completion/telemetry/telemetry.d.ts +5 -4
- package/out/language-server/inline-completion/telemetry/telemetry.js +3 -3
- package/out/language-server/inline-completion/telemetry/telemetry.js.map +1 -1
- package/out/language-server/inline-completion/utils/mergeRightUtils.js +1 -1
- package/out/language-server/inline-completion/utils/mergeRightUtils.js.map +1 -1
- package/out/language-server/netTransform/converter.d.ts +3 -6
- package/out/language-server/netTransform/converter.js +6 -15
- package/out/language-server/netTransform/converter.js.map +1 -1
- package/out/language-server/netTransform/metrics.js.map +1 -1
- package/out/language-server/netTransform/models.d.ts +3 -3
- package/out/language-server/netTransform/transformHandler.d.ts +4 -4
- package/out/language-server/netTransform/transformHandler.js +3 -4
- package/out/language-server/netTransform/transformHandler.js.map +1 -1
- package/out/language-server/netTransform/validation.d.ts +1 -1
- package/out/language-server/netTransform/validation.js.map +1 -1
- package/out/language-server/securityScan/codeWhispererSecurityScanServer.js.map +1 -1
- package/out/language-server/securityScan/securityScanHandler.d.ts +6 -6
- package/out/language-server/securityScan/securityScanHandler.js +8 -5
- package/out/language-server/securityScan/securityScanHandler.js.map +1 -1
- package/out/language-server/securityScan/types.d.ts +3 -0
- package/out/language-server/workspaceContext/util.d.ts +1 -1
- package/out/language-server/workspaceContext/util.js +1 -1
- package/out/language-server/workspaceContext/util.js.map +1 -1
- package/out/language-server/workspaceContext/workspaceFolderManager.d.ts +1 -1
- package/out/language-server/workspaceContext/workspaceFolderManager.js +18 -11
- package/out/language-server/workspaceContext/workspaceFolderManager.js.map +1 -1
- package/out/shared/amazonQServiceManager/AmazonQTokenServiceManager.js +1 -4
- package/out/shared/amazonQServiceManager/AmazonQTokenServiceManager.js.map +1 -1
- package/out/shared/amazonQServiceManager/BaseAmazonQServiceManager.js.map +1 -1
- package/out/shared/amazonQServiceManager/qDeveloperProfiles.d.ts +2 -2
- package/out/shared/amazonQServiceManager/qDeveloperProfiles.js +2 -2
- package/out/shared/amazonQServiceManager/qDeveloperProfiles.js.map +1 -1
- package/out/shared/codeWhispererService.d.ts +37 -51
- package/out/shared/codeWhispererService.js +62 -131
- package/out/shared/codeWhispererService.js.map +1 -1
- package/out/shared/streamingClientService.js.map +1 -1
- package/out/shared/telemetry/telemetryService.d.ts +1 -1
- package/out/shared/telemetry/telemetryService.js +12 -7
- package/out/shared/telemetry/telemetryService.js.map +1 -1
- package/out/shared/telemetry/types.d.ts +4 -12
- package/out/shared/telemetry/types.js +0 -1
- package/out/shared/telemetry/types.js.map +1 -1
- package/out/shared/telemetryUtils.d.ts +2 -2
- package/out/shared/telemetryUtils.js +11 -10
- package/out/shared/telemetryUtils.js.map +1 -1
- package/out/shared/testUtils.d.ts +7 -7
- package/out/shared/utils.d.ts +6 -3
- package/out/shared/utils.js +10 -30
- package/out/shared/utils.js.map +1 -1
- package/package.json +7 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -84
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -21
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -21
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/package.json +0 -62
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/README.md +0 -9
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-cjs/index.js +0 -806
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-cjs/timing.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +0 -209
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +0 -86
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +0 -167
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +0 -36
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +0 -22
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +0 -24
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/timing.js +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +0 -56
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +0 -45
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +0 -24
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +0 -62
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +0 -2
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +0 -2
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +0 -8
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -45
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -24
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -62
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +0 -8
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -11
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +0 -11
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/package.json +0 -67
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/LICENSE +0 -201
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/README.md +0 -115
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/abort-handler.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/client.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/command.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/feature-ids.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/http.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/index.js +0 -144
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/response.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/schema/schema.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/schema/sentinels.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/schema/traits.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/mutable.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/util.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -38
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/http.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/index.js +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/middleware.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/profile.js +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transfer.js +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/mutable.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/abort-handler.d.ts +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/abort.d.ts +0 -50
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/client.d.ts +0 -57
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/command.d.ts +0 -28
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -10
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -34
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -32
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/encode.d.ts +0 -31
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -55
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -137
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -58
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/feature-ids.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/http.d.ts +0 -112
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/index.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -534
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -33
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/schema/schema.d.ts +0 -261
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +0 -65
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/schema/traits.d.ts +0 -46
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/serde.d.ts +0 -114
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -82
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/signature.d.ts +0 -155
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -77
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -68
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -276
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/package.json +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/README.md +0 -53
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +0 -217
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/constants.js +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +0 -88
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +0 -18
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/package.json +0 -67
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/README.md +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -84
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/AbortController.js +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +0 -20
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/index.js +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -21
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/index.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -21
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/package.json +0 -62
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/LICENSE +0 -201
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/README.md +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/index.js +0 -806
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/timing.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/constants.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/index.js +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +0 -209
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +0 -86
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +0 -167
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -19
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +0 -36
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +0 -24
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -19
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/timing.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +0 -56
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +0 -45
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +0 -24
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +0 -62
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -45
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -24
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -62
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/package.json +0 -67
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/LICENSE +0 -201
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/README.md +0 -115
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/abort-handler.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/client.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/command.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/feature-ids.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/http.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/index.js +0 -144
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/response.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/schema.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/sentinels.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/traits.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/mutable.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/util.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/abort-handler.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/config.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/manager.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/pool.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/shared.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -38
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/http.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/identity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/index.js +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/middleware.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/profile.js +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/retry.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/schema.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/sentinels.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/traits.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transfer.js +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/exact.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/mutable.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/abort-handler.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/abort.d.ts +0 -50
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/client.d.ts +0 -57
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/command.d.ts +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -34
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/encode.d.ts +0 -31
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -55
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -137
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -58
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/feature-ids.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/http.d.ts +0 -112
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/index.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -534
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/schema.d.ts +0 -261
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +0 -65
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/traits.d.ts +0 -46
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/serde.d.ts +0 -114
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -82
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/signature.d.ts +0 -155
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -77
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -68
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -276
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/package.json +0 -60
- package/out/client/sigv4/service.json +0 -2145
- package/out/client/token/bearer-token-service.json +0 -6690
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js → codewhisperer/dist-es/extensionConfiguration.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js → codewhisperer/dist-es/pagination/Interfaces.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler → codewhisperer/node_modules/@aws-sdk/types}/LICENSE +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/abort.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/checksum.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/client.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/command.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/connection.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/identity.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/credentials.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/crypto.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/encode.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/eventStream.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/extensions/index.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/feature-ids.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/retry.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/http.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/schema/schema.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/schema/sentinels.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/schema/traits.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/Identity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/logger.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/middleware.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/pagination.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/profile.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/request.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/response.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions → codewhisperer/node_modules/@aws-sdk/types/dist-es}/retry.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/serde.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/shapes.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/signature.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/stream.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/exact.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/token.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/uri.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/util.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/waiter.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/abort-handler.js → codewhisperer-runtime/dist-es/extensionConfiguration.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/abort.js → codewhisperer-runtime/dist-es/pagination/Interfaces.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller → codewhisperer-runtime/node_modules/@aws-sdk/types}/LICENSE +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/abort.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/checksum.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/client.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/command.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/connection.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpSigner.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/credentials.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/crypto.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/encode.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/eventStream.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/extensions/index.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/feature-ids.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/http.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/config.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/manager.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/pool.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/Identity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/logger.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/middleware.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/pagination.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/profile.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/request.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/response.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es}/retry.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/serde.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/shapes.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/signature.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/stream.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/shared.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/token.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/uri.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/util.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/waiter.js +0 -0
- /package/node_modules/{@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers → @smithy/abort-controller}/LICENSE +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/README.md +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-cjs/AbortController.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-cjs/AbortSignal.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-es/AbortController.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-es/AbortSignal.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-es/index.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-types/index.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-types/ts3.4/index.d.ts +0 -0
- /package/node_modules/{@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller → @smithy/node-http-handler}/LICENSE +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/constants.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/get-transformed-headers.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http-handler.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http2-handler.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/readable.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/server.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/set-connection-timeout.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/set-socket-timeout.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/stream-collector/collector.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/stream-collector/index.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/write-request-body.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/constants.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/get-transformed-headers.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/index.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/node-http2-connection-pool.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/readable.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/stream-collector/collector.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/constants.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/get-transformed-headers.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/index.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/server.mock.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/ts3.4/index.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -0
|
@@ -1,2145 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "2.0",
|
|
3
|
-
"metadata": {
|
|
4
|
-
"apiVersion": "2024-10-25",
|
|
5
|
-
"auth": ["aws.auth#sigv4"],
|
|
6
|
-
"endpointPrefix": "codewhisperer",
|
|
7
|
-
"jsonVersion": "1.0",
|
|
8
|
-
"protocol": "json",
|
|
9
|
-
"protocols": ["json"],
|
|
10
|
-
"serviceFullName": "AWS CodeWhisperer",
|
|
11
|
-
"serviceId": "CodeWhisperer",
|
|
12
|
-
"signatureVersion": "v4",
|
|
13
|
-
"signingName": "codewhisperer",
|
|
14
|
-
"targetPrefix": "AWSCodeWhispererService",
|
|
15
|
-
"uid": "codewhisperer-2024-10-25"
|
|
16
|
-
},
|
|
17
|
-
"operations": {
|
|
18
|
-
"AllowVendedLogDeliveryForResource": {
|
|
19
|
-
"name": "AllowVendedLogDeliveryForResource",
|
|
20
|
-
"http": {
|
|
21
|
-
"method": "POST",
|
|
22
|
-
"requestUri": "/"
|
|
23
|
-
},
|
|
24
|
-
"input": {
|
|
25
|
-
"shape": "AllowVendedLogDeliveryForResourceRequest"
|
|
26
|
-
},
|
|
27
|
-
"output": {
|
|
28
|
-
"shape": "AllowVendedLogDeliveryForResourceResponse"
|
|
29
|
-
},
|
|
30
|
-
"errors": [
|
|
31
|
-
{
|
|
32
|
-
"shape": "ThrottlingException"
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"shape": "ResourceNotFoundException"
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"shape": "InternalServerException"
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"shape": "ValidationException"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"shape": "AccessDeniedException"
|
|
45
|
-
}
|
|
46
|
-
],
|
|
47
|
-
"documentation": "<p>Internal API to authorize a CodeWhisperer resource for vended log delivery.</p>"
|
|
48
|
-
},
|
|
49
|
-
"AssociateCustomizationPermission": {
|
|
50
|
-
"name": "AssociateCustomizationPermission",
|
|
51
|
-
"http": {
|
|
52
|
-
"method": "POST",
|
|
53
|
-
"requestUri": "/"
|
|
54
|
-
},
|
|
55
|
-
"input": {
|
|
56
|
-
"shape": "AssociateCustomizationPermissionRequest"
|
|
57
|
-
},
|
|
58
|
-
"output": {
|
|
59
|
-
"shape": "AssociateCustomizationPermissionResponse"
|
|
60
|
-
},
|
|
61
|
-
"errors": [
|
|
62
|
-
{
|
|
63
|
-
"shape": "ThrottlingException"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"shape": "ConflictException"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"shape": "ResourceNotFoundException"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"shape": "InternalServerException"
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"shape": "ValidationException"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"shape": "AccessDeniedException"
|
|
79
|
-
}
|
|
80
|
-
],
|
|
81
|
-
"documentation": "<p>Add permission for an Identity Center User/Group to use the Customization.</p>"
|
|
82
|
-
},
|
|
83
|
-
"CreateCustomization": {
|
|
84
|
-
"name": "CreateCustomization",
|
|
85
|
-
"http": {
|
|
86
|
-
"method": "POST",
|
|
87
|
-
"requestUri": "/"
|
|
88
|
-
},
|
|
89
|
-
"input": {
|
|
90
|
-
"shape": "CreateCustomizationRequest"
|
|
91
|
-
},
|
|
92
|
-
"output": {
|
|
93
|
-
"shape": "CreateCustomizationResponse"
|
|
94
|
-
},
|
|
95
|
-
"errors": [
|
|
96
|
-
{
|
|
97
|
-
"shape": "ThrottlingException"
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
"shape": "ConflictException"
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
"shape": "InternalServerException"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"shape": "ValidationException"
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
"shape": "AccessDeniedException"
|
|
110
|
-
}
|
|
111
|
-
]
|
|
112
|
-
},
|
|
113
|
-
"CreateProfile": {
|
|
114
|
-
"name": "CreateProfile",
|
|
115
|
-
"http": {
|
|
116
|
-
"method": "POST",
|
|
117
|
-
"requestUri": "/"
|
|
118
|
-
},
|
|
119
|
-
"input": {
|
|
120
|
-
"shape": "CreateProfileRequest"
|
|
121
|
-
},
|
|
122
|
-
"output": {
|
|
123
|
-
"shape": "CreateProfileResponse"
|
|
124
|
-
},
|
|
125
|
-
"errors": [
|
|
126
|
-
{
|
|
127
|
-
"shape": "ThrottlingException"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"shape": "ConflictException"
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"shape": "ResourceNotFoundException"
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"shape": "InternalServerException"
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
"shape": "ValidationException"
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"shape": "AccessDeniedException"
|
|
143
|
-
}
|
|
144
|
-
],
|
|
145
|
-
"documentation": "<p>Creates a CodeWhisperer profile which can then be associated to users/groups of an identity source</p>"
|
|
146
|
-
},
|
|
147
|
-
"DeleteCustomization": {
|
|
148
|
-
"name": "DeleteCustomization",
|
|
149
|
-
"http": {
|
|
150
|
-
"method": "POST",
|
|
151
|
-
"requestUri": "/"
|
|
152
|
-
},
|
|
153
|
-
"input": {
|
|
154
|
-
"shape": "DeleteCustomizationRequest"
|
|
155
|
-
},
|
|
156
|
-
"output": {
|
|
157
|
-
"shape": "DeleteCustomizationResponse"
|
|
158
|
-
},
|
|
159
|
-
"errors": [
|
|
160
|
-
{
|
|
161
|
-
"shape": "ThrottlingException"
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"shape": "ConflictException"
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"shape": "ResourceNotFoundException"
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
"shape": "InternalServerException"
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"shape": "ValidationException"
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
"shape": "AccessDeniedException"
|
|
177
|
-
}
|
|
178
|
-
],
|
|
179
|
-
"documentation": "<p>Deletes CodeWhisperer Customization and associated resources</p>"
|
|
180
|
-
},
|
|
181
|
-
"DeleteProfile": {
|
|
182
|
-
"name": "DeleteProfile",
|
|
183
|
-
"http": {
|
|
184
|
-
"method": "POST",
|
|
185
|
-
"requestUri": "/"
|
|
186
|
-
},
|
|
187
|
-
"input": {
|
|
188
|
-
"shape": "DeleteProfileRequest"
|
|
189
|
-
},
|
|
190
|
-
"output": {
|
|
191
|
-
"shape": "DeleteProfileResponse"
|
|
192
|
-
},
|
|
193
|
-
"errors": [
|
|
194
|
-
{
|
|
195
|
-
"shape": "ThrottlingException"
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
"shape": "ConflictException"
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
"shape": "ResourceNotFoundException"
|
|
202
|
-
},
|
|
203
|
-
{
|
|
204
|
-
"shape": "InternalServerException"
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
"shape": "ValidationException"
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"shape": "AccessDeniedException"
|
|
211
|
-
}
|
|
212
|
-
],
|
|
213
|
-
"documentation": "<p>Deletes CodeWhisperer profile and associated resources</p>"
|
|
214
|
-
},
|
|
215
|
-
"DisassociateCustomizationPermission": {
|
|
216
|
-
"name": "DisassociateCustomizationPermission",
|
|
217
|
-
"http": {
|
|
218
|
-
"method": "POST",
|
|
219
|
-
"requestUri": "/"
|
|
220
|
-
},
|
|
221
|
-
"input": {
|
|
222
|
-
"shape": "DisassociateCustomizationPermissionRequest"
|
|
223
|
-
},
|
|
224
|
-
"output": {
|
|
225
|
-
"shape": "DisassociateCustomizationPermissionResponse"
|
|
226
|
-
},
|
|
227
|
-
"errors": [
|
|
228
|
-
{
|
|
229
|
-
"shape": "ThrottlingException"
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
"shape": "ConflictException"
|
|
233
|
-
},
|
|
234
|
-
{
|
|
235
|
-
"shape": "ResourceNotFoundException"
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"shape": "InternalServerException"
|
|
239
|
-
},
|
|
240
|
-
{
|
|
241
|
-
"shape": "ValidationException"
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
"shape": "AccessDeniedException"
|
|
245
|
-
}
|
|
246
|
-
],
|
|
247
|
-
"documentation": "<p>Disassociate the permission for a Customization from an Identity Center User/Group.</p>"
|
|
248
|
-
},
|
|
249
|
-
"GenerateRecommendations": {
|
|
250
|
-
"name": "GenerateRecommendations",
|
|
251
|
-
"http": {
|
|
252
|
-
"method": "POST",
|
|
253
|
-
"requestUri": "/"
|
|
254
|
-
},
|
|
255
|
-
"input": {
|
|
256
|
-
"shape": "GenerateRecommendationsRequest"
|
|
257
|
-
},
|
|
258
|
-
"output": {
|
|
259
|
-
"shape": "GenerateRecommendationsResponse"
|
|
260
|
-
},
|
|
261
|
-
"errors": [
|
|
262
|
-
{
|
|
263
|
-
"shape": "ThrottlingException"
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
"shape": "InternalServerException"
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
"shape": "ValidationException"
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"shape": "AccessDeniedException"
|
|
273
|
-
}
|
|
274
|
-
],
|
|
275
|
-
"documentation": "<p>Generates recommendations based on the provided file context.</p>"
|
|
276
|
-
},
|
|
277
|
-
"GetCustomization": {
|
|
278
|
-
"name": "GetCustomization",
|
|
279
|
-
"http": {
|
|
280
|
-
"method": "POST",
|
|
281
|
-
"requestUri": "/"
|
|
282
|
-
},
|
|
283
|
-
"input": {
|
|
284
|
-
"shape": "GetCustomizationRequest"
|
|
285
|
-
},
|
|
286
|
-
"output": {
|
|
287
|
-
"shape": "GetCustomizationResponse"
|
|
288
|
-
},
|
|
289
|
-
"errors": [
|
|
290
|
-
{
|
|
291
|
-
"shape": "ThrottlingException"
|
|
292
|
-
},
|
|
293
|
-
{
|
|
294
|
-
"shape": "ResourceNotFoundException"
|
|
295
|
-
},
|
|
296
|
-
{
|
|
297
|
-
"shape": "InternalServerException"
|
|
298
|
-
},
|
|
299
|
-
{
|
|
300
|
-
"shape": "ValidationException"
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
"shape": "AccessDeniedException"
|
|
304
|
-
}
|
|
305
|
-
]
|
|
306
|
-
},
|
|
307
|
-
"ListCustomizationPermissions": {
|
|
308
|
-
"name": "ListCustomizationPermissions",
|
|
309
|
-
"http": {
|
|
310
|
-
"method": "POST",
|
|
311
|
-
"requestUri": "/"
|
|
312
|
-
},
|
|
313
|
-
"input": {
|
|
314
|
-
"shape": "ListCustomizationPermissionsRequest"
|
|
315
|
-
},
|
|
316
|
-
"output": {
|
|
317
|
-
"shape": "ListCustomizationPermissionsResponse"
|
|
318
|
-
},
|
|
319
|
-
"errors": [
|
|
320
|
-
{
|
|
321
|
-
"shape": "ThrottlingException"
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"shape": "ResourceNotFoundException"
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
"shape": "InternalServerException"
|
|
328
|
-
},
|
|
329
|
-
{
|
|
330
|
-
"shape": "ValidationException"
|
|
331
|
-
},
|
|
332
|
-
{
|
|
333
|
-
"shape": "AccessDeniedException"
|
|
334
|
-
}
|
|
335
|
-
],
|
|
336
|
-
"documentation": "<p>List User(s)/Group(s) who have permissions to use a Customization.</p>"
|
|
337
|
-
},
|
|
338
|
-
"ListCustomizationVersions": {
|
|
339
|
-
"name": "ListCustomizationVersions",
|
|
340
|
-
"http": {
|
|
341
|
-
"method": "POST",
|
|
342
|
-
"requestUri": "/"
|
|
343
|
-
},
|
|
344
|
-
"input": {
|
|
345
|
-
"shape": "ListCustomizationVersionsRequest"
|
|
346
|
-
},
|
|
347
|
-
"output": {
|
|
348
|
-
"shape": "ListCustomizationVersionsResponse"
|
|
349
|
-
},
|
|
350
|
-
"errors": [
|
|
351
|
-
{
|
|
352
|
-
"shape": "ThrottlingException"
|
|
353
|
-
},
|
|
354
|
-
{
|
|
355
|
-
"shape": "ResourceNotFoundException"
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"shape": "InternalServerException"
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
"shape": "ValidationException"
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
"shape": "AccessDeniedException"
|
|
365
|
-
}
|
|
366
|
-
],
|
|
367
|
-
"documentation": "<p>List actionable versions associated with a Customization.</p>"
|
|
368
|
-
},
|
|
369
|
-
"ListCustomizations": {
|
|
370
|
-
"name": "ListCustomizations",
|
|
371
|
-
"http": {
|
|
372
|
-
"method": "POST",
|
|
373
|
-
"requestUri": "/"
|
|
374
|
-
},
|
|
375
|
-
"input": {
|
|
376
|
-
"shape": "ListCustomizationsRequest"
|
|
377
|
-
},
|
|
378
|
-
"output": {
|
|
379
|
-
"shape": "ListCustomizationsResponse"
|
|
380
|
-
},
|
|
381
|
-
"errors": [
|
|
382
|
-
{
|
|
383
|
-
"shape": "ThrottlingException"
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
"shape": "InternalServerException"
|
|
387
|
-
},
|
|
388
|
-
{
|
|
389
|
-
"shape": "ValidationException"
|
|
390
|
-
},
|
|
391
|
-
{
|
|
392
|
-
"shape": "AccessDeniedException"
|
|
393
|
-
}
|
|
394
|
-
]
|
|
395
|
-
},
|
|
396
|
-
"ListProfiles": {
|
|
397
|
-
"name": "ListProfiles",
|
|
398
|
-
"http": {
|
|
399
|
-
"method": "POST",
|
|
400
|
-
"requestUri": "/"
|
|
401
|
-
},
|
|
402
|
-
"input": {
|
|
403
|
-
"shape": "ListProfilesRequest"
|
|
404
|
-
},
|
|
405
|
-
"output": {
|
|
406
|
-
"shape": "ListProfilesResponse"
|
|
407
|
-
},
|
|
408
|
-
"errors": [
|
|
409
|
-
{
|
|
410
|
-
"shape": "ThrottlingException"
|
|
411
|
-
},
|
|
412
|
-
{
|
|
413
|
-
"shape": "InternalServerException"
|
|
414
|
-
},
|
|
415
|
-
{
|
|
416
|
-
"shape": "ValidationException"
|
|
417
|
-
},
|
|
418
|
-
{
|
|
419
|
-
"shape": "AccessDeniedException"
|
|
420
|
-
}
|
|
421
|
-
],
|
|
422
|
-
"documentation": "<p>Lists one or more CodeWhisperer profiles that you have created.</p>"
|
|
423
|
-
},
|
|
424
|
-
"ListTagsForResource": {
|
|
425
|
-
"name": "ListTagsForResource",
|
|
426
|
-
"http": {
|
|
427
|
-
"method": "POST",
|
|
428
|
-
"requestUri": "/"
|
|
429
|
-
},
|
|
430
|
-
"input": {
|
|
431
|
-
"shape": "ListTagsForResourceRequest"
|
|
432
|
-
},
|
|
433
|
-
"output": {
|
|
434
|
-
"shape": "ListTagsForResourceResponse"
|
|
435
|
-
},
|
|
436
|
-
"errors": [
|
|
437
|
-
{
|
|
438
|
-
"shape": "ThrottlingException"
|
|
439
|
-
},
|
|
440
|
-
{
|
|
441
|
-
"shape": "ResourceNotFoundException"
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
"shape": "InternalServerException"
|
|
445
|
-
},
|
|
446
|
-
{
|
|
447
|
-
"shape": "ValidationException"
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
"shape": "AccessDeniedException"
|
|
451
|
-
}
|
|
452
|
-
],
|
|
453
|
-
"documentation": "<p>List tags of an existing CodeWhisperer profile.</p>"
|
|
454
|
-
},
|
|
455
|
-
"TagResource": {
|
|
456
|
-
"name": "TagResource",
|
|
457
|
-
"http": {
|
|
458
|
-
"method": "POST",
|
|
459
|
-
"requestUri": "/"
|
|
460
|
-
},
|
|
461
|
-
"input": {
|
|
462
|
-
"shape": "TagResourceRequest"
|
|
463
|
-
},
|
|
464
|
-
"output": {
|
|
465
|
-
"shape": "TagResourceResponse"
|
|
466
|
-
},
|
|
467
|
-
"errors": [
|
|
468
|
-
{
|
|
469
|
-
"shape": "ThrottlingException"
|
|
470
|
-
},
|
|
471
|
-
{
|
|
472
|
-
"shape": "ResourceNotFoundException"
|
|
473
|
-
},
|
|
474
|
-
{
|
|
475
|
-
"shape": "InternalServerException"
|
|
476
|
-
},
|
|
477
|
-
{
|
|
478
|
-
"shape": "ValidationException"
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
"shape": "AccessDeniedException"
|
|
482
|
-
}
|
|
483
|
-
],
|
|
484
|
-
"documentation": "<p>Add tags to an existing CodeWhisperer profile.</p>"
|
|
485
|
-
},
|
|
486
|
-
"UntagResource": {
|
|
487
|
-
"name": "UntagResource",
|
|
488
|
-
"http": {
|
|
489
|
-
"method": "POST",
|
|
490
|
-
"requestUri": "/"
|
|
491
|
-
},
|
|
492
|
-
"input": {
|
|
493
|
-
"shape": "UntagResourceRequest"
|
|
494
|
-
},
|
|
495
|
-
"output": {
|
|
496
|
-
"shape": "UntagResourceResponse"
|
|
497
|
-
},
|
|
498
|
-
"errors": [
|
|
499
|
-
{
|
|
500
|
-
"shape": "ThrottlingException"
|
|
501
|
-
},
|
|
502
|
-
{
|
|
503
|
-
"shape": "ResourceNotFoundException"
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
"shape": "InternalServerException"
|
|
507
|
-
},
|
|
508
|
-
{
|
|
509
|
-
"shape": "ValidationException"
|
|
510
|
-
},
|
|
511
|
-
{
|
|
512
|
-
"shape": "AccessDeniedException"
|
|
513
|
-
}
|
|
514
|
-
],
|
|
515
|
-
"documentation": "<p>Remove tags from an existing CodeWhisperer profile.</p>"
|
|
516
|
-
},
|
|
517
|
-
"UpdateCustomization": {
|
|
518
|
-
"name": "UpdateCustomization",
|
|
519
|
-
"http": {
|
|
520
|
-
"method": "POST",
|
|
521
|
-
"requestUri": "/"
|
|
522
|
-
},
|
|
523
|
-
"input": {
|
|
524
|
-
"shape": "UpdateCustomizationRequest"
|
|
525
|
-
},
|
|
526
|
-
"output": {
|
|
527
|
-
"shape": "UpdateCustomizationResponse"
|
|
528
|
-
},
|
|
529
|
-
"errors": [
|
|
530
|
-
{
|
|
531
|
-
"shape": "ThrottlingException"
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
"shape": "ConflictException"
|
|
535
|
-
},
|
|
536
|
-
{
|
|
537
|
-
"shape": "ResourceNotFoundException"
|
|
538
|
-
},
|
|
539
|
-
{
|
|
540
|
-
"shape": "InternalServerException"
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
"shape": "ValidationException"
|
|
544
|
-
},
|
|
545
|
-
{
|
|
546
|
-
"shape": "AccessDeniedException"
|
|
547
|
-
}
|
|
548
|
-
]
|
|
549
|
-
},
|
|
550
|
-
"UpdateProfile": {
|
|
551
|
-
"name": "UpdateProfile",
|
|
552
|
-
"http": {
|
|
553
|
-
"method": "POST",
|
|
554
|
-
"requestUri": "/"
|
|
555
|
-
},
|
|
556
|
-
"input": {
|
|
557
|
-
"shape": "UpdateProfileRequest"
|
|
558
|
-
},
|
|
559
|
-
"output": {
|
|
560
|
-
"shape": "UpdateProfileResponse"
|
|
561
|
-
},
|
|
562
|
-
"errors": [
|
|
563
|
-
{
|
|
564
|
-
"shape": "ThrottlingException"
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
"shape": "ConflictException"
|
|
568
|
-
},
|
|
569
|
-
{
|
|
570
|
-
"shape": "ResourceNotFoundException"
|
|
571
|
-
},
|
|
572
|
-
{
|
|
573
|
-
"shape": "InternalServerException"
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
"shape": "ValidationException"
|
|
577
|
-
},
|
|
578
|
-
{
|
|
579
|
-
"shape": "AccessDeniedException"
|
|
580
|
-
}
|
|
581
|
-
],
|
|
582
|
-
"documentation": "<p>Updates an existing CodeWhisperer profile.</p>"
|
|
583
|
-
},
|
|
584
|
-
"VendKeyGrant": {
|
|
585
|
-
"name": "VendKeyGrant",
|
|
586
|
-
"http": {
|
|
587
|
-
"method": "POST",
|
|
588
|
-
"requestUri": "/"
|
|
589
|
-
},
|
|
590
|
-
"input": {
|
|
591
|
-
"shape": "VendKeyGrantRequest"
|
|
592
|
-
},
|
|
593
|
-
"output": {
|
|
594
|
-
"shape": "VendKeyGrantResponse"
|
|
595
|
-
},
|
|
596
|
-
"errors": [
|
|
597
|
-
{
|
|
598
|
-
"shape": "ThrottlingException"
|
|
599
|
-
},
|
|
600
|
-
{
|
|
601
|
-
"shape": "ResourceNotFoundException"
|
|
602
|
-
},
|
|
603
|
-
{
|
|
604
|
-
"shape": "InternalServerException"
|
|
605
|
-
},
|
|
606
|
-
{
|
|
607
|
-
"shape": "ValidationException"
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
"shape": "AccessDeniedException"
|
|
611
|
-
}
|
|
612
|
-
],
|
|
613
|
-
"documentation": "<p>Returns grant details associated with the profile under the input account Id Output includes cmk arn, grant token, and grant id</p>"
|
|
614
|
-
}
|
|
615
|
-
},
|
|
616
|
-
"shapes": {
|
|
617
|
-
"AWSAccountId": {
|
|
618
|
-
"type": "string",
|
|
619
|
-
"documentation": "<p>Represents the AWS account ID of the customer</p>",
|
|
620
|
-
"pattern": "[0-9]{12}"
|
|
621
|
-
},
|
|
622
|
-
"AccessDeniedException": {
|
|
623
|
-
"type": "structure",
|
|
624
|
-
"required": ["message"],
|
|
625
|
-
"members": {
|
|
626
|
-
"message": {
|
|
627
|
-
"shape": "String"
|
|
628
|
-
},
|
|
629
|
-
"reason": {
|
|
630
|
-
"shape": "AccessDeniedExceptionReason"
|
|
631
|
-
}
|
|
632
|
-
},
|
|
633
|
-
"documentation": "<p>This exception is thrown when the user does not have sufficient access to perform this action.</p>",
|
|
634
|
-
"exception": true
|
|
635
|
-
},
|
|
636
|
-
"AccessDeniedExceptionReason": {
|
|
637
|
-
"type": "string",
|
|
638
|
-
"documentation": "<p>Reason for AccessDeniedException</p>",
|
|
639
|
-
"enum": ["UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS", "UNAUTHORIZED_WORKSPACE_CONTEXT_FEATURE_ACCESS"]
|
|
640
|
-
},
|
|
641
|
-
"ActiveFunctionalityList": {
|
|
642
|
-
"type": "list",
|
|
643
|
-
"member": {
|
|
644
|
-
"shape": "FunctionalityName"
|
|
645
|
-
},
|
|
646
|
-
"max": 10,
|
|
647
|
-
"min": 0
|
|
648
|
-
},
|
|
649
|
-
"AllowVendedLogDeliveryForResourceRequest": {
|
|
650
|
-
"type": "structure",
|
|
651
|
-
"required": ["resourceArnBeingAuthorized", "deliverySourceArn"],
|
|
652
|
-
"members": {
|
|
653
|
-
"resourceArnBeingAuthorized": {
|
|
654
|
-
"shape": "ResourceArn"
|
|
655
|
-
},
|
|
656
|
-
"deliverySourceArn": {
|
|
657
|
-
"shape": "ResourceArn"
|
|
658
|
-
}
|
|
659
|
-
}
|
|
660
|
-
},
|
|
661
|
-
"AllowVendedLogDeliveryForResourceResponse": {
|
|
662
|
-
"type": "structure",
|
|
663
|
-
"members": {
|
|
664
|
-
"message": {
|
|
665
|
-
"shape": "String"
|
|
666
|
-
}
|
|
667
|
-
}
|
|
668
|
-
},
|
|
669
|
-
"ApplicationProperties": {
|
|
670
|
-
"type": "structure",
|
|
671
|
-
"required": ["tenantId", "applicationArn", "tenantUrl", "applicationType"],
|
|
672
|
-
"members": {
|
|
673
|
-
"tenantId": {
|
|
674
|
-
"shape": "TenantId"
|
|
675
|
-
},
|
|
676
|
-
"applicationArn": {
|
|
677
|
-
"shape": "ResourceArn"
|
|
678
|
-
},
|
|
679
|
-
"tenantUrl": {
|
|
680
|
-
"shape": "Url"
|
|
681
|
-
},
|
|
682
|
-
"applicationType": {
|
|
683
|
-
"shape": "FunctionalityName"
|
|
684
|
-
}
|
|
685
|
-
}
|
|
686
|
-
},
|
|
687
|
-
"ApplicationPropertiesList": {
|
|
688
|
-
"type": "list",
|
|
689
|
-
"member": {
|
|
690
|
-
"shape": "ApplicationProperties"
|
|
691
|
-
}
|
|
692
|
-
},
|
|
693
|
-
"AssociateCustomizationPermissionRequest": {
|
|
694
|
-
"type": "structure",
|
|
695
|
-
"required": ["identifier", "permission"],
|
|
696
|
-
"members": {
|
|
697
|
-
"identifier": {
|
|
698
|
-
"shape": "CustomizationIdentifier"
|
|
699
|
-
},
|
|
700
|
-
"permission": {
|
|
701
|
-
"shape": "CustomizationPermission"
|
|
702
|
-
}
|
|
703
|
-
}
|
|
704
|
-
},
|
|
705
|
-
"AssociateCustomizationPermissionResponse": {
|
|
706
|
-
"type": "structure",
|
|
707
|
-
"members": {}
|
|
708
|
-
},
|
|
709
|
-
"Base64EncodedPaginationToken": {
|
|
710
|
-
"type": "string",
|
|
711
|
-
"max": 2048,
|
|
712
|
-
"min": 1,
|
|
713
|
-
"pattern": "(?:[A-Za-z0-9\\+/]{4})*(?:[A-Za-z0-9\\+/]{2}\\=\\=|[A-Za-z0-9\\+/]{3}\\=)?"
|
|
714
|
-
},
|
|
715
|
-
"Boolean": {
|
|
716
|
-
"type": "boolean",
|
|
717
|
-
"box": true
|
|
718
|
-
},
|
|
719
|
-
"ByUserAnalytics": {
|
|
720
|
-
"type": "structure",
|
|
721
|
-
"required": ["toggle"],
|
|
722
|
-
"members": {
|
|
723
|
-
"s3Uri": {
|
|
724
|
-
"shape": "S3Uri"
|
|
725
|
-
},
|
|
726
|
-
"toggle": {
|
|
727
|
-
"shape": "OptInFeatureToggle"
|
|
728
|
-
}
|
|
729
|
-
}
|
|
730
|
-
},
|
|
731
|
-
"ClientId": {
|
|
732
|
-
"type": "string",
|
|
733
|
-
"max": 255,
|
|
734
|
-
"min": 1
|
|
735
|
-
},
|
|
736
|
-
"CodeStarReference": {
|
|
737
|
-
"type": "structure",
|
|
738
|
-
"required": ["connectionArn"],
|
|
739
|
-
"members": {
|
|
740
|
-
"connectionArn": {
|
|
741
|
-
"shape": "ResourceArn"
|
|
742
|
-
}
|
|
743
|
-
}
|
|
744
|
-
},
|
|
745
|
-
"ConflictException": {
|
|
746
|
-
"type": "structure",
|
|
747
|
-
"required": ["message"],
|
|
748
|
-
"members": {
|
|
749
|
-
"message": {
|
|
750
|
-
"shape": "String"
|
|
751
|
-
},
|
|
752
|
-
"reason": {
|
|
753
|
-
"shape": "ConflictExceptionReason"
|
|
754
|
-
}
|
|
755
|
-
},
|
|
756
|
-
"documentation": "<p>This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state.</p>",
|
|
757
|
-
"exception": true
|
|
758
|
-
},
|
|
759
|
-
"ConflictExceptionReason": {
|
|
760
|
-
"type": "string",
|
|
761
|
-
"documentation": "<p>Reason for ConflictException</p>",
|
|
762
|
-
"enum": ["CUSTOMER_KMS_KEY_INVALID_KEY_POLICY", "CUSTOMER_KMS_KEY_DISABLED", "MISMATCHED_KMS_KEY"]
|
|
763
|
-
},
|
|
764
|
-
"CreateCustomizationRequest": {
|
|
765
|
-
"type": "structure",
|
|
766
|
-
"required": ["dataReference", "customizationName", "profileArn"],
|
|
767
|
-
"members": {
|
|
768
|
-
"dataReference": {
|
|
769
|
-
"shape": "DataReference"
|
|
770
|
-
},
|
|
771
|
-
"customizationName": {
|
|
772
|
-
"shape": "CustomizationName"
|
|
773
|
-
},
|
|
774
|
-
"description": {
|
|
775
|
-
"shape": "Description"
|
|
776
|
-
},
|
|
777
|
-
"profileArn": {
|
|
778
|
-
"shape": "ProfileArn"
|
|
779
|
-
},
|
|
780
|
-
"tags": {
|
|
781
|
-
"shape": "TagList"
|
|
782
|
-
},
|
|
783
|
-
"clientToken": {
|
|
784
|
-
"shape": "IdempotencyToken"
|
|
785
|
-
},
|
|
786
|
-
"includeRepos": {
|
|
787
|
-
"shape": "RepositoryList"
|
|
788
|
-
}
|
|
789
|
-
}
|
|
790
|
-
},
|
|
791
|
-
"CreateCustomizationResponse": {
|
|
792
|
-
"type": "structure",
|
|
793
|
-
"required": ["customizationArn"],
|
|
794
|
-
"members": {
|
|
795
|
-
"customizationArn": {
|
|
796
|
-
"shape": "CustomizationArn"
|
|
797
|
-
}
|
|
798
|
-
}
|
|
799
|
-
},
|
|
800
|
-
"CreateProfileRequest": {
|
|
801
|
-
"type": "structure",
|
|
802
|
-
"required": ["profileName", "referenceTrackerConfiguration"],
|
|
803
|
-
"members": {
|
|
804
|
-
"identitySource": {
|
|
805
|
-
"shape": "IdentitySource"
|
|
806
|
-
},
|
|
807
|
-
"profileName": {
|
|
808
|
-
"shape": "ProfileName"
|
|
809
|
-
},
|
|
810
|
-
"description": {
|
|
811
|
-
"shape": "ProfileDescription"
|
|
812
|
-
},
|
|
813
|
-
"referenceTrackerConfiguration": {
|
|
814
|
-
"shape": "ReferenceTrackerConfiguration"
|
|
815
|
-
},
|
|
816
|
-
"activeFunctionalities": {
|
|
817
|
-
"shape": "ActiveFunctionalityList"
|
|
818
|
-
},
|
|
819
|
-
"clientToken": {
|
|
820
|
-
"shape": "IdempotencyToken",
|
|
821
|
-
"idempotencyToken": true
|
|
822
|
-
},
|
|
823
|
-
"kmsKeyArn": {
|
|
824
|
-
"shape": "ResourceArn"
|
|
825
|
-
},
|
|
826
|
-
"tags": {
|
|
827
|
-
"shape": "TagList"
|
|
828
|
-
},
|
|
829
|
-
"resourcePolicy": {
|
|
830
|
-
"shape": "ResourcePolicy"
|
|
831
|
-
},
|
|
832
|
-
"optInFeatures": {
|
|
833
|
-
"shape": "OptInFeatures"
|
|
834
|
-
}
|
|
835
|
-
}
|
|
836
|
-
},
|
|
837
|
-
"CreateProfileResponse": {
|
|
838
|
-
"type": "structure",
|
|
839
|
-
"required": ["profileArn"],
|
|
840
|
-
"members": {
|
|
841
|
-
"profileArn": {
|
|
842
|
-
"shape": "ProfileArn"
|
|
843
|
-
}
|
|
844
|
-
}
|
|
845
|
-
},
|
|
846
|
-
"CustomizationArn": {
|
|
847
|
-
"type": "string",
|
|
848
|
-
"max": 950,
|
|
849
|
-
"min": 0,
|
|
850
|
-
"pattern": "arn:[-.a-z0-9]{1,63}:codewhisperer:([-.a-z0-9]{0,63}:){2}([a-zA-Z0-9-_:/]){1,1023}"
|
|
851
|
-
},
|
|
852
|
-
"CustomizationIdentifier": {
|
|
853
|
-
"type": "string",
|
|
854
|
-
"max": 950,
|
|
855
|
-
"min": 1,
|
|
856
|
-
"pattern": ".*[a-zA-Z0-9-:/]*.*"
|
|
857
|
-
},
|
|
858
|
-
"CustomizationName": {
|
|
859
|
-
"type": "string",
|
|
860
|
-
"max": 100,
|
|
861
|
-
"min": 1,
|
|
862
|
-
"pattern": "[a-zA-Z][a-zA-Z0-9_-]*"
|
|
863
|
-
},
|
|
864
|
-
"CustomizationPermission": {
|
|
865
|
-
"type": "structure",
|
|
866
|
-
"members": {
|
|
867
|
-
"user": {
|
|
868
|
-
"shape": "IdentityCenterIdentifier"
|
|
869
|
-
},
|
|
870
|
-
"group": {
|
|
871
|
-
"shape": "IdentityCenterIdentifier"
|
|
872
|
-
}
|
|
873
|
-
},
|
|
874
|
-
"union": true
|
|
875
|
-
},
|
|
876
|
-
"CustomizationStatus": {
|
|
877
|
-
"type": "string",
|
|
878
|
-
"enum": [
|
|
879
|
-
"CREATED",
|
|
880
|
-
"UPDATED",
|
|
881
|
-
"CREATING",
|
|
882
|
-
"UPDATING",
|
|
883
|
-
"DELETING",
|
|
884
|
-
"ACTIVATING",
|
|
885
|
-
"DEACTIVATING",
|
|
886
|
-
"ACTIVATED",
|
|
887
|
-
"CREATION_FAILED",
|
|
888
|
-
"UPDATE_FAILED",
|
|
889
|
-
"DELETION_FAILED",
|
|
890
|
-
"ACTIVATION_FAILED",
|
|
891
|
-
"DEACTIVATION_FAILED"
|
|
892
|
-
]
|
|
893
|
-
},
|
|
894
|
-
"CustomizationSummary": {
|
|
895
|
-
"type": "structure",
|
|
896
|
-
"required": ["arn", "customizationName", "status", "updatedAt"],
|
|
897
|
-
"members": {
|
|
898
|
-
"arn": {
|
|
899
|
-
"shape": "CustomizationArn"
|
|
900
|
-
},
|
|
901
|
-
"version": {
|
|
902
|
-
"shape": "Version"
|
|
903
|
-
},
|
|
904
|
-
"customizationName": {
|
|
905
|
-
"shape": "CustomizationName"
|
|
906
|
-
},
|
|
907
|
-
"description": {
|
|
908
|
-
"shape": "Description"
|
|
909
|
-
},
|
|
910
|
-
"status": {
|
|
911
|
-
"shape": "CustomizationStatus"
|
|
912
|
-
},
|
|
913
|
-
"updatedAt": {
|
|
914
|
-
"shape": "Timestamp"
|
|
915
|
-
}
|
|
916
|
-
}
|
|
917
|
-
},
|
|
918
|
-
"CustomizationSummaryList": {
|
|
919
|
-
"type": "list",
|
|
920
|
-
"member": {
|
|
921
|
-
"shape": "CustomizationSummary"
|
|
922
|
-
}
|
|
923
|
-
},
|
|
924
|
-
"CustomizationVersionSummary": {
|
|
925
|
-
"type": "structure",
|
|
926
|
-
"required": ["version", "status", "dataReference", "updatedAt"],
|
|
927
|
-
"members": {
|
|
928
|
-
"version": {
|
|
929
|
-
"shape": "Version"
|
|
930
|
-
},
|
|
931
|
-
"baseVersion": {
|
|
932
|
-
"shape": "Version"
|
|
933
|
-
},
|
|
934
|
-
"status": {
|
|
935
|
-
"shape": "CustomizationStatus"
|
|
936
|
-
},
|
|
937
|
-
"dataReference": {
|
|
938
|
-
"shape": "DataReference"
|
|
939
|
-
},
|
|
940
|
-
"updatedAt": {
|
|
941
|
-
"shape": "Timestamp"
|
|
942
|
-
},
|
|
943
|
-
"evaluationMetrics": {
|
|
944
|
-
"shape": "EvaluationMetrics"
|
|
945
|
-
}
|
|
946
|
-
}
|
|
947
|
-
},
|
|
948
|
-
"CustomizationVersionSummaryList": {
|
|
949
|
-
"type": "list",
|
|
950
|
-
"member": {
|
|
951
|
-
"shape": "CustomizationVersionSummary"
|
|
952
|
-
}
|
|
953
|
-
},
|
|
954
|
-
"DashboardAnalytics": {
|
|
955
|
-
"type": "structure",
|
|
956
|
-
"required": ["toggle"],
|
|
957
|
-
"members": {
|
|
958
|
-
"toggle": {
|
|
959
|
-
"shape": "OptInFeatureToggle"
|
|
960
|
-
}
|
|
961
|
-
}
|
|
962
|
-
},
|
|
963
|
-
"DataReference": {
|
|
964
|
-
"type": "structure",
|
|
965
|
-
"members": {
|
|
966
|
-
"codeStarReference": {
|
|
967
|
-
"shape": "CodeStarReference"
|
|
968
|
-
},
|
|
969
|
-
"s3Reference": {
|
|
970
|
-
"shape": "S3Reference"
|
|
971
|
-
}
|
|
972
|
-
},
|
|
973
|
-
"union": true
|
|
974
|
-
},
|
|
975
|
-
"DeleteCustomizationRequest": {
|
|
976
|
-
"type": "structure",
|
|
977
|
-
"required": ["identifier"],
|
|
978
|
-
"members": {
|
|
979
|
-
"identifier": {
|
|
980
|
-
"shape": "CustomizationIdentifier"
|
|
981
|
-
},
|
|
982
|
-
"clientToken": {
|
|
983
|
-
"shape": "IdempotencyToken"
|
|
984
|
-
}
|
|
985
|
-
}
|
|
986
|
-
},
|
|
987
|
-
"DeleteCustomizationResponse": {
|
|
988
|
-
"type": "structure",
|
|
989
|
-
"members": {}
|
|
990
|
-
},
|
|
991
|
-
"DeleteProfileRequest": {
|
|
992
|
-
"type": "structure",
|
|
993
|
-
"required": ["profileArn"],
|
|
994
|
-
"members": {
|
|
995
|
-
"profileArn": {
|
|
996
|
-
"shape": "ProfileArn"
|
|
997
|
-
}
|
|
998
|
-
}
|
|
999
|
-
},
|
|
1000
|
-
"DeleteProfileResponse": {
|
|
1001
|
-
"type": "structure",
|
|
1002
|
-
"members": {}
|
|
1003
|
-
},
|
|
1004
|
-
"Description": {
|
|
1005
|
-
"type": "string",
|
|
1006
|
-
"max": 256,
|
|
1007
|
-
"min": 0,
|
|
1008
|
-
"pattern": "[\\sa-zA-Z0-9_-]*"
|
|
1009
|
-
},
|
|
1010
|
-
"DisassociateCustomizationPermissionRequest": {
|
|
1011
|
-
"type": "structure",
|
|
1012
|
-
"required": ["identifier", "permission"],
|
|
1013
|
-
"members": {
|
|
1014
|
-
"identifier": {
|
|
1015
|
-
"shape": "CustomizationIdentifier"
|
|
1016
|
-
},
|
|
1017
|
-
"permission": {
|
|
1018
|
-
"shape": "CustomizationPermission"
|
|
1019
|
-
}
|
|
1020
|
-
}
|
|
1021
|
-
},
|
|
1022
|
-
"DisassociateCustomizationPermissionResponse": {
|
|
1023
|
-
"type": "structure",
|
|
1024
|
-
"members": {}
|
|
1025
|
-
},
|
|
1026
|
-
"ErrorDetails": {
|
|
1027
|
-
"type": "string",
|
|
1028
|
-
"max": 2048,
|
|
1029
|
-
"min": 0
|
|
1030
|
-
},
|
|
1031
|
-
"EvaluationMetrics": {
|
|
1032
|
-
"type": "structure",
|
|
1033
|
-
"required": ["compositeScore"],
|
|
1034
|
-
"members": {
|
|
1035
|
-
"compositeScore": {
|
|
1036
|
-
"shape": "Integer"
|
|
1037
|
-
}
|
|
1038
|
-
}
|
|
1039
|
-
},
|
|
1040
|
-
"ExternalIdentityDetails": {
|
|
1041
|
-
"type": "structure",
|
|
1042
|
-
"members": {
|
|
1043
|
-
"issuerUrl": {
|
|
1044
|
-
"shape": "IssuerUrl"
|
|
1045
|
-
},
|
|
1046
|
-
"clientId": {
|
|
1047
|
-
"shape": "ClientId"
|
|
1048
|
-
},
|
|
1049
|
-
"scimEndpoint": {
|
|
1050
|
-
"shape": "String"
|
|
1051
|
-
}
|
|
1052
|
-
}
|
|
1053
|
-
},
|
|
1054
|
-
"ExternalIdentitySource": {
|
|
1055
|
-
"type": "structure",
|
|
1056
|
-
"required": ["issuerUrl", "clientId"],
|
|
1057
|
-
"members": {
|
|
1058
|
-
"issuerUrl": {
|
|
1059
|
-
"shape": "IssuerUrl"
|
|
1060
|
-
},
|
|
1061
|
-
"clientId": {
|
|
1062
|
-
"shape": "ClientId"
|
|
1063
|
-
}
|
|
1064
|
-
}
|
|
1065
|
-
},
|
|
1066
|
-
"FeatureName": {
|
|
1067
|
-
"type": "string",
|
|
1068
|
-
"max": 128,
|
|
1069
|
-
"min": 1,
|
|
1070
|
-
"pattern": "[-a-zA-Z0-9._]*"
|
|
1071
|
-
},
|
|
1072
|
-
"FileContext": {
|
|
1073
|
-
"type": "structure",
|
|
1074
|
-
"required": ["leftFileContent", "rightFileContent", "filename", "programmingLanguage"],
|
|
1075
|
-
"members": {
|
|
1076
|
-
"leftFileContent": {
|
|
1077
|
-
"shape": "FileContextLeftFileContentString"
|
|
1078
|
-
},
|
|
1079
|
-
"rightFileContent": {
|
|
1080
|
-
"shape": "FileContextRightFileContentString"
|
|
1081
|
-
},
|
|
1082
|
-
"filename": {
|
|
1083
|
-
"shape": "FileContextFilenameString"
|
|
1084
|
-
},
|
|
1085
|
-
"fileUri": {
|
|
1086
|
-
"shape": "FileContextFileUriString"
|
|
1087
|
-
},
|
|
1088
|
-
"programmingLanguage": {
|
|
1089
|
-
"shape": "ProgrammingLanguage"
|
|
1090
|
-
}
|
|
1091
|
-
}
|
|
1092
|
-
},
|
|
1093
|
-
"FileContextFileUriString": {
|
|
1094
|
-
"type": "string",
|
|
1095
|
-
"max": 1024,
|
|
1096
|
-
"min": 1,
|
|
1097
|
-
"sensitive": true
|
|
1098
|
-
},
|
|
1099
|
-
"FileContextFilenameString": {
|
|
1100
|
-
"type": "string",
|
|
1101
|
-
"max": 1024,
|
|
1102
|
-
"min": 1,
|
|
1103
|
-
"sensitive": true
|
|
1104
|
-
},
|
|
1105
|
-
"FileContextLeftFileContentString": {
|
|
1106
|
-
"type": "string",
|
|
1107
|
-
"max": 10240,
|
|
1108
|
-
"min": 0,
|
|
1109
|
-
"sensitive": true
|
|
1110
|
-
},
|
|
1111
|
-
"FileContextRightFileContentString": {
|
|
1112
|
-
"type": "string",
|
|
1113
|
-
"max": 10240,
|
|
1114
|
-
"min": 0,
|
|
1115
|
-
"sensitive": true
|
|
1116
|
-
},
|
|
1117
|
-
"FunctionalityName": {
|
|
1118
|
-
"type": "string",
|
|
1119
|
-
"enum": [
|
|
1120
|
-
"COMPLETIONS",
|
|
1121
|
-
"ANALYSIS",
|
|
1122
|
-
"CONVERSATIONS",
|
|
1123
|
-
"TASK_ASSIST",
|
|
1124
|
-
"TRANSFORMATIONS",
|
|
1125
|
-
"CHAT_CUSTOMIZATION",
|
|
1126
|
-
"TRANSFORMATIONS_WEBAPP",
|
|
1127
|
-
"FEATURE_DEVELOPMENT"
|
|
1128
|
-
],
|
|
1129
|
-
"max": 64,
|
|
1130
|
-
"min": 1
|
|
1131
|
-
},
|
|
1132
|
-
"GenerateRecommendationsRequest": {
|
|
1133
|
-
"type": "structure",
|
|
1134
|
-
"required": ["fileContext"],
|
|
1135
|
-
"members": {
|
|
1136
|
-
"fileContext": {
|
|
1137
|
-
"shape": "FileContext"
|
|
1138
|
-
},
|
|
1139
|
-
"maxResults": {
|
|
1140
|
-
"shape": "GenerateRecommendationsRequestMaxResultsInteger"
|
|
1141
|
-
},
|
|
1142
|
-
"nextToken": {
|
|
1143
|
-
"shape": "GenerateRecommendationsRequestNextTokenString"
|
|
1144
|
-
},
|
|
1145
|
-
"referenceTrackerConfiguration": {
|
|
1146
|
-
"shape": "ReferenceTrackerConfiguration"
|
|
1147
|
-
},
|
|
1148
|
-
"supplementalContexts": {
|
|
1149
|
-
"shape": "SupplementalContextList"
|
|
1150
|
-
}
|
|
1151
|
-
}
|
|
1152
|
-
},
|
|
1153
|
-
"GenerateRecommendationsRequestMaxResultsInteger": {
|
|
1154
|
-
"type": "integer",
|
|
1155
|
-
"box": true,
|
|
1156
|
-
"max": 10,
|
|
1157
|
-
"min": 1
|
|
1158
|
-
},
|
|
1159
|
-
"GenerateRecommendationsRequestNextTokenString": {
|
|
1160
|
-
"type": "string",
|
|
1161
|
-
"max": 2048,
|
|
1162
|
-
"min": 0,
|
|
1163
|
-
"pattern": "(?:[A-Za-z0-9\\+/]{4})*(?:[A-Za-z0-9\\+/]{2}\\=\\=|[A-Za-z0-9\\+/]{3}\\=)?"
|
|
1164
|
-
},
|
|
1165
|
-
"GenerateRecommendationsResponse": {
|
|
1166
|
-
"type": "structure",
|
|
1167
|
-
"members": {
|
|
1168
|
-
"recommendations": {
|
|
1169
|
-
"shape": "RecommendationsList"
|
|
1170
|
-
},
|
|
1171
|
-
"nextToken": {
|
|
1172
|
-
"shape": "String"
|
|
1173
|
-
}
|
|
1174
|
-
}
|
|
1175
|
-
},
|
|
1176
|
-
"GetCustomizationRequest": {
|
|
1177
|
-
"type": "structure",
|
|
1178
|
-
"required": ["identifier"],
|
|
1179
|
-
"members": {
|
|
1180
|
-
"identifier": {
|
|
1181
|
-
"shape": "CustomizationIdentifier"
|
|
1182
|
-
}
|
|
1183
|
-
}
|
|
1184
|
-
},
|
|
1185
|
-
"GetCustomizationResponse": {
|
|
1186
|
-
"type": "structure",
|
|
1187
|
-
"required": ["arn", "status", "dataReference", "customizationName", "profileArn", "updatedAt"],
|
|
1188
|
-
"members": {
|
|
1189
|
-
"arn": {
|
|
1190
|
-
"shape": "CustomizationArn"
|
|
1191
|
-
},
|
|
1192
|
-
"version": {
|
|
1193
|
-
"shape": "Version"
|
|
1194
|
-
},
|
|
1195
|
-
"status": {
|
|
1196
|
-
"shape": "CustomizationStatus"
|
|
1197
|
-
},
|
|
1198
|
-
"errorDetails": {
|
|
1199
|
-
"shape": "ErrorDetails"
|
|
1200
|
-
},
|
|
1201
|
-
"dataReference": {
|
|
1202
|
-
"shape": "DataReference"
|
|
1203
|
-
},
|
|
1204
|
-
"customizationName": {
|
|
1205
|
-
"shape": "CustomizationName"
|
|
1206
|
-
},
|
|
1207
|
-
"description": {
|
|
1208
|
-
"shape": "Description"
|
|
1209
|
-
},
|
|
1210
|
-
"profileArn": {
|
|
1211
|
-
"shape": "ProfileArn"
|
|
1212
|
-
},
|
|
1213
|
-
"updatedAt": {
|
|
1214
|
-
"shape": "Timestamp"
|
|
1215
|
-
},
|
|
1216
|
-
"evaluationMetrics": {
|
|
1217
|
-
"shape": "EvaluationMetrics"
|
|
1218
|
-
},
|
|
1219
|
-
"includeRepos": {
|
|
1220
|
-
"shape": "RepositoryList"
|
|
1221
|
-
}
|
|
1222
|
-
}
|
|
1223
|
-
},
|
|
1224
|
-
"GrantId": {
|
|
1225
|
-
"type": "string",
|
|
1226
|
-
"max": 128,
|
|
1227
|
-
"min": 1
|
|
1228
|
-
},
|
|
1229
|
-
"GrantToken": {
|
|
1230
|
-
"type": "string",
|
|
1231
|
-
"max": 8192,
|
|
1232
|
-
"min": 1
|
|
1233
|
-
},
|
|
1234
|
-
"IdempotencyToken": {
|
|
1235
|
-
"type": "string",
|
|
1236
|
-
"max": 256,
|
|
1237
|
-
"min": 1
|
|
1238
|
-
},
|
|
1239
|
-
"IdentityCenterIdentifier": {
|
|
1240
|
-
"type": "string",
|
|
1241
|
-
"max": 64,
|
|
1242
|
-
"min": 1,
|
|
1243
|
-
"pattern": "([0-9a-f]{10}-|)[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}"
|
|
1244
|
-
},
|
|
1245
|
-
"IdentityCenterPermissions": {
|
|
1246
|
-
"type": "list",
|
|
1247
|
-
"member": {
|
|
1248
|
-
"shape": "CustomizationPermission"
|
|
1249
|
-
}
|
|
1250
|
-
},
|
|
1251
|
-
"IdentityDetails": {
|
|
1252
|
-
"type": "structure",
|
|
1253
|
-
"members": {
|
|
1254
|
-
"ssoIdentityDetails": {
|
|
1255
|
-
"shape": "SSOIdentityDetails"
|
|
1256
|
-
},
|
|
1257
|
-
"externalIdentityDetails": {
|
|
1258
|
-
"shape": "ExternalIdentityDetails"
|
|
1259
|
-
}
|
|
1260
|
-
},
|
|
1261
|
-
"union": true
|
|
1262
|
-
},
|
|
1263
|
-
"IdentitySource": {
|
|
1264
|
-
"type": "structure",
|
|
1265
|
-
"members": {
|
|
1266
|
-
"ssoIdentitySource": {
|
|
1267
|
-
"shape": "SSOIdentitySource"
|
|
1268
|
-
},
|
|
1269
|
-
"externalIdentitySource": {
|
|
1270
|
-
"shape": "ExternalIdentitySource"
|
|
1271
|
-
}
|
|
1272
|
-
},
|
|
1273
|
-
"union": true
|
|
1274
|
-
},
|
|
1275
|
-
"Import": {
|
|
1276
|
-
"type": "structure",
|
|
1277
|
-
"members": {
|
|
1278
|
-
"statement": {
|
|
1279
|
-
"shape": "ImportStatementString"
|
|
1280
|
-
}
|
|
1281
|
-
}
|
|
1282
|
-
},
|
|
1283
|
-
"ImportStatementString": {
|
|
1284
|
-
"type": "string",
|
|
1285
|
-
"max": 1024,
|
|
1286
|
-
"min": 1,
|
|
1287
|
-
"sensitive": true
|
|
1288
|
-
},
|
|
1289
|
-
"Imports": {
|
|
1290
|
-
"type": "list",
|
|
1291
|
-
"member": {
|
|
1292
|
-
"shape": "Import"
|
|
1293
|
-
},
|
|
1294
|
-
"max": 10,
|
|
1295
|
-
"min": 0
|
|
1296
|
-
},
|
|
1297
|
-
"Integer": {
|
|
1298
|
-
"type": "integer",
|
|
1299
|
-
"box": true
|
|
1300
|
-
},
|
|
1301
|
-
"InternalServerException": {
|
|
1302
|
-
"type": "structure",
|
|
1303
|
-
"required": ["message"],
|
|
1304
|
-
"members": {
|
|
1305
|
-
"message": {
|
|
1306
|
-
"shape": "String"
|
|
1307
|
-
},
|
|
1308
|
-
"reason": {
|
|
1309
|
-
"shape": "InternalServerExceptionReason"
|
|
1310
|
-
}
|
|
1311
|
-
},
|
|
1312
|
-
"documentation": "<p>This exception is thrown when an unexpected error occurred during the processing of a request.</p>",
|
|
1313
|
-
"exception": true,
|
|
1314
|
-
"fault": true,
|
|
1315
|
-
"retryable": {
|
|
1316
|
-
"throttling": false
|
|
1317
|
-
}
|
|
1318
|
-
},
|
|
1319
|
-
"InternalServerExceptionReason": {
|
|
1320
|
-
"type": "string",
|
|
1321
|
-
"documentation": "<p>Reason for InternalServerException</p>",
|
|
1322
|
-
"enum": ["MODEL_TEMPORARILY_UNAVAILABLE"]
|
|
1323
|
-
},
|
|
1324
|
-
"IssuerUrl": {
|
|
1325
|
-
"type": "string",
|
|
1326
|
-
"max": 255,
|
|
1327
|
-
"min": 1
|
|
1328
|
-
},
|
|
1329
|
-
"ListCustomizationPermissionsRequest": {
|
|
1330
|
-
"type": "structure",
|
|
1331
|
-
"required": ["identifier"],
|
|
1332
|
-
"members": {
|
|
1333
|
-
"identifier": {
|
|
1334
|
-
"shape": "CustomizationIdentifier"
|
|
1335
|
-
},
|
|
1336
|
-
"maxResults": {
|
|
1337
|
-
"shape": "ListCustomizationPermissionsRequestMaxResultsInteger"
|
|
1338
|
-
},
|
|
1339
|
-
"nextToken": {
|
|
1340
|
-
"shape": "Base64EncodedPaginationToken"
|
|
1341
|
-
}
|
|
1342
|
-
}
|
|
1343
|
-
},
|
|
1344
|
-
"ListCustomizationPermissionsRequestMaxResultsInteger": {
|
|
1345
|
-
"type": "integer",
|
|
1346
|
-
"box": true,
|
|
1347
|
-
"max": 50,
|
|
1348
|
-
"min": 1
|
|
1349
|
-
},
|
|
1350
|
-
"ListCustomizationPermissionsResponse": {
|
|
1351
|
-
"type": "structure",
|
|
1352
|
-
"required": ["permissions"],
|
|
1353
|
-
"members": {
|
|
1354
|
-
"permissions": {
|
|
1355
|
-
"shape": "IdentityCenterPermissions"
|
|
1356
|
-
},
|
|
1357
|
-
"nextToken": {
|
|
1358
|
-
"shape": "Base64EncodedPaginationToken"
|
|
1359
|
-
}
|
|
1360
|
-
}
|
|
1361
|
-
},
|
|
1362
|
-
"ListCustomizationVersionsRequest": {
|
|
1363
|
-
"type": "structure",
|
|
1364
|
-
"required": ["identifier"],
|
|
1365
|
-
"members": {
|
|
1366
|
-
"identifier": {
|
|
1367
|
-
"shape": "CustomizationIdentifier"
|
|
1368
|
-
},
|
|
1369
|
-
"maxResults": {
|
|
1370
|
-
"shape": "ListCustomizationVersionsRequestMaxResultsInteger"
|
|
1371
|
-
},
|
|
1372
|
-
"nextToken": {
|
|
1373
|
-
"shape": "Base64EncodedPaginationToken"
|
|
1374
|
-
}
|
|
1375
|
-
}
|
|
1376
|
-
},
|
|
1377
|
-
"ListCustomizationVersionsRequestMaxResultsInteger": {
|
|
1378
|
-
"type": "integer",
|
|
1379
|
-
"box": true,
|
|
1380
|
-
"max": 100,
|
|
1381
|
-
"min": 1
|
|
1382
|
-
},
|
|
1383
|
-
"ListCustomizationVersionsResponse": {
|
|
1384
|
-
"type": "structure",
|
|
1385
|
-
"required": ["versions"],
|
|
1386
|
-
"members": {
|
|
1387
|
-
"versions": {
|
|
1388
|
-
"shape": "CustomizationVersionSummaryList"
|
|
1389
|
-
},
|
|
1390
|
-
"nextToken": {
|
|
1391
|
-
"shape": "Base64EncodedPaginationToken"
|
|
1392
|
-
}
|
|
1393
|
-
}
|
|
1394
|
-
},
|
|
1395
|
-
"ListCustomizationsRequest": {
|
|
1396
|
-
"type": "structure",
|
|
1397
|
-
"members": {
|
|
1398
|
-
"maxResults": {
|
|
1399
|
-
"shape": "ListCustomizationsRequestMaxResultsInteger"
|
|
1400
|
-
},
|
|
1401
|
-
"nextToken": {
|
|
1402
|
-
"shape": "Base64EncodedPaginationToken"
|
|
1403
|
-
}
|
|
1404
|
-
}
|
|
1405
|
-
},
|
|
1406
|
-
"ListCustomizationsRequestMaxResultsInteger": {
|
|
1407
|
-
"type": "integer",
|
|
1408
|
-
"box": true,
|
|
1409
|
-
"max": 100,
|
|
1410
|
-
"min": 1
|
|
1411
|
-
},
|
|
1412
|
-
"ListCustomizationsResponse": {
|
|
1413
|
-
"type": "structure",
|
|
1414
|
-
"required": ["customizations"],
|
|
1415
|
-
"members": {
|
|
1416
|
-
"customizations": {
|
|
1417
|
-
"shape": "CustomizationSummaryList"
|
|
1418
|
-
},
|
|
1419
|
-
"nextToken": {
|
|
1420
|
-
"shape": "Base64EncodedPaginationToken"
|
|
1421
|
-
}
|
|
1422
|
-
}
|
|
1423
|
-
},
|
|
1424
|
-
"ListProfilesRequest": {
|
|
1425
|
-
"type": "structure",
|
|
1426
|
-
"members": {
|
|
1427
|
-
"maxResults": {
|
|
1428
|
-
"shape": "ListProfilesRequestMaxResultsInteger"
|
|
1429
|
-
},
|
|
1430
|
-
"includeManagementAccount": {
|
|
1431
|
-
"shape": "Boolean"
|
|
1432
|
-
},
|
|
1433
|
-
"nextToken": {
|
|
1434
|
-
"shape": "Base64EncodedPaginationToken"
|
|
1435
|
-
}
|
|
1436
|
-
}
|
|
1437
|
-
},
|
|
1438
|
-
"ListProfilesRequestMaxResultsInteger": {
|
|
1439
|
-
"type": "integer",
|
|
1440
|
-
"box": true,
|
|
1441
|
-
"max": 100,
|
|
1442
|
-
"min": 1
|
|
1443
|
-
},
|
|
1444
|
-
"ListProfilesResponse": {
|
|
1445
|
-
"type": "structure",
|
|
1446
|
-
"required": ["profiles"],
|
|
1447
|
-
"members": {
|
|
1448
|
-
"profiles": {
|
|
1449
|
-
"shape": "ProfileList"
|
|
1450
|
-
},
|
|
1451
|
-
"nextToken": {
|
|
1452
|
-
"shape": "Base64EncodedPaginationToken"
|
|
1453
|
-
}
|
|
1454
|
-
}
|
|
1455
|
-
},
|
|
1456
|
-
"ListTagsForResourceRequest": {
|
|
1457
|
-
"type": "structure",
|
|
1458
|
-
"required": ["resourceArn"],
|
|
1459
|
-
"members": {
|
|
1460
|
-
"resourceArn": {
|
|
1461
|
-
"shape": "ResourceArn"
|
|
1462
|
-
}
|
|
1463
|
-
}
|
|
1464
|
-
},
|
|
1465
|
-
"ListTagsForResourceResponse": {
|
|
1466
|
-
"type": "structure",
|
|
1467
|
-
"members": {
|
|
1468
|
-
"tags": {
|
|
1469
|
-
"shape": "TagList"
|
|
1470
|
-
}
|
|
1471
|
-
}
|
|
1472
|
-
},
|
|
1473
|
-
"Notifications": {
|
|
1474
|
-
"type": "list",
|
|
1475
|
-
"member": {
|
|
1476
|
-
"shape": "NotificationsFeature"
|
|
1477
|
-
},
|
|
1478
|
-
"max": 10,
|
|
1479
|
-
"min": 0
|
|
1480
|
-
},
|
|
1481
|
-
"NotificationsFeature": {
|
|
1482
|
-
"type": "structure",
|
|
1483
|
-
"required": ["feature", "toggle"],
|
|
1484
|
-
"members": {
|
|
1485
|
-
"feature": {
|
|
1486
|
-
"shape": "FeatureName"
|
|
1487
|
-
},
|
|
1488
|
-
"toggle": {
|
|
1489
|
-
"shape": "OptInFeatureToggle"
|
|
1490
|
-
}
|
|
1491
|
-
}
|
|
1492
|
-
},
|
|
1493
|
-
"OptInFeatureToggle": {
|
|
1494
|
-
"type": "string",
|
|
1495
|
-
"enum": ["ON", "OFF"]
|
|
1496
|
-
},
|
|
1497
|
-
"OptInFeatures": {
|
|
1498
|
-
"type": "structure",
|
|
1499
|
-
"members": {
|
|
1500
|
-
"promptLogging": {
|
|
1501
|
-
"shape": "PromptLogging"
|
|
1502
|
-
},
|
|
1503
|
-
"byUserAnalytics": {
|
|
1504
|
-
"shape": "ByUserAnalytics"
|
|
1505
|
-
},
|
|
1506
|
-
"dashboardAnalytics": {
|
|
1507
|
-
"shape": "DashboardAnalytics"
|
|
1508
|
-
},
|
|
1509
|
-
"notifications": {
|
|
1510
|
-
"shape": "Notifications"
|
|
1511
|
-
},
|
|
1512
|
-
"workspaceContext": {
|
|
1513
|
-
"shape": "WorkspaceContext"
|
|
1514
|
-
}
|
|
1515
|
-
}
|
|
1516
|
-
},
|
|
1517
|
-
"PreviousEditorStateMetadata": {
|
|
1518
|
-
"type": "structure",
|
|
1519
|
-
"required": ["timeOffset"],
|
|
1520
|
-
"members": {
|
|
1521
|
-
"timeOffset": {
|
|
1522
|
-
"shape": "Integer"
|
|
1523
|
-
}
|
|
1524
|
-
}
|
|
1525
|
-
},
|
|
1526
|
-
"Profile": {
|
|
1527
|
-
"type": "structure",
|
|
1528
|
-
"required": ["arn", "profileName"],
|
|
1529
|
-
"members": {
|
|
1530
|
-
"arn": {
|
|
1531
|
-
"shape": "ProfileArn"
|
|
1532
|
-
},
|
|
1533
|
-
"identityDetails": {
|
|
1534
|
-
"shape": "IdentityDetails"
|
|
1535
|
-
},
|
|
1536
|
-
"profileName": {
|
|
1537
|
-
"shape": "ProfileName"
|
|
1538
|
-
},
|
|
1539
|
-
"description": {
|
|
1540
|
-
"shape": "ProfileDescription"
|
|
1541
|
-
},
|
|
1542
|
-
"referenceTrackerConfiguration": {
|
|
1543
|
-
"shape": "ReferenceTrackerConfiguration"
|
|
1544
|
-
},
|
|
1545
|
-
"kmsKeyArn": {
|
|
1546
|
-
"shape": "ResourceArn"
|
|
1547
|
-
},
|
|
1548
|
-
"activeFunctionalities": {
|
|
1549
|
-
"shape": "ActiveFunctionalityList"
|
|
1550
|
-
},
|
|
1551
|
-
"status": {
|
|
1552
|
-
"shape": "ProfileStatus"
|
|
1553
|
-
},
|
|
1554
|
-
"errorDetails": {
|
|
1555
|
-
"shape": "ErrorDetails"
|
|
1556
|
-
},
|
|
1557
|
-
"resourcePolicy": {
|
|
1558
|
-
"shape": "ResourcePolicy"
|
|
1559
|
-
},
|
|
1560
|
-
"profileType": {
|
|
1561
|
-
"shape": "ProfileType"
|
|
1562
|
-
},
|
|
1563
|
-
"optInFeatures": {
|
|
1564
|
-
"shape": "OptInFeatures"
|
|
1565
|
-
},
|
|
1566
|
-
"permissionUpdateRequired": {
|
|
1567
|
-
"shape": "Boolean"
|
|
1568
|
-
},
|
|
1569
|
-
"applicationProperties": {
|
|
1570
|
-
"shape": "ApplicationPropertiesList"
|
|
1571
|
-
}
|
|
1572
|
-
}
|
|
1573
|
-
},
|
|
1574
|
-
"ProfileArn": {
|
|
1575
|
-
"type": "string",
|
|
1576
|
-
"max": 950,
|
|
1577
|
-
"min": 0,
|
|
1578
|
-
"pattern": "arn:aws:(codewhisperer|transform):[-.a-z0-9]{1,63}:\\d{12}:profile/([a-zA-Z0-9]){12}"
|
|
1579
|
-
},
|
|
1580
|
-
"ProfileDescription": {
|
|
1581
|
-
"type": "string",
|
|
1582
|
-
"max": 256,
|
|
1583
|
-
"min": 1,
|
|
1584
|
-
"pattern": "[\\sa-zA-Z0-9_-]*"
|
|
1585
|
-
},
|
|
1586
|
-
"ProfileList": {
|
|
1587
|
-
"type": "list",
|
|
1588
|
-
"member": {
|
|
1589
|
-
"shape": "Profile"
|
|
1590
|
-
}
|
|
1591
|
-
},
|
|
1592
|
-
"ProfileName": {
|
|
1593
|
-
"type": "string",
|
|
1594
|
-
"max": 100,
|
|
1595
|
-
"min": 1,
|
|
1596
|
-
"pattern": "[a-zA-Z][a-zA-Z0-9_-]*"
|
|
1597
|
-
},
|
|
1598
|
-
"ProfileStatus": {
|
|
1599
|
-
"type": "string",
|
|
1600
|
-
"enum": ["ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"]
|
|
1601
|
-
},
|
|
1602
|
-
"ProfileType": {
|
|
1603
|
-
"type": "string",
|
|
1604
|
-
"enum": ["Q_DEVELOPER", "CODEWHISPERER"]
|
|
1605
|
-
},
|
|
1606
|
-
"ProgrammingLanguage": {
|
|
1607
|
-
"type": "structure",
|
|
1608
|
-
"required": ["languageName"],
|
|
1609
|
-
"members": {
|
|
1610
|
-
"languageName": {
|
|
1611
|
-
"shape": "ProgrammingLanguageLanguageNameString"
|
|
1612
|
-
}
|
|
1613
|
-
},
|
|
1614
|
-
"documentation": "<p>Programming Languages supported by CodeWhisperer</p>"
|
|
1615
|
-
},
|
|
1616
|
-
"ProgrammingLanguageLanguageNameString": {
|
|
1617
|
-
"type": "string",
|
|
1618
|
-
"max": 128,
|
|
1619
|
-
"min": 1,
|
|
1620
|
-
"pattern": "(python|javascript|java|csharp|typescript|c|cpp|go|kotlin|php|ruby|rust|scala|shell|sql|json|yaml|vue|tf|tsx|jsx|plaintext|systemverilog|dart|lua|swift|hcl|powershell|r|abap)"
|
|
1621
|
-
},
|
|
1622
|
-
"PromptLogging": {
|
|
1623
|
-
"type": "structure",
|
|
1624
|
-
"required": ["s3Uri", "toggle"],
|
|
1625
|
-
"members": {
|
|
1626
|
-
"s3Uri": {
|
|
1627
|
-
"shape": "S3Uri"
|
|
1628
|
-
},
|
|
1629
|
-
"toggle": {
|
|
1630
|
-
"shape": "OptInFeatureToggle"
|
|
1631
|
-
}
|
|
1632
|
-
}
|
|
1633
|
-
},
|
|
1634
|
-
"Recommendation": {
|
|
1635
|
-
"type": "structure",
|
|
1636
|
-
"required": ["content"],
|
|
1637
|
-
"members": {
|
|
1638
|
-
"content": {
|
|
1639
|
-
"shape": "RecommendationContentString"
|
|
1640
|
-
},
|
|
1641
|
-
"references": {
|
|
1642
|
-
"shape": "References"
|
|
1643
|
-
},
|
|
1644
|
-
"mostRelevantMissingImports": {
|
|
1645
|
-
"shape": "Imports"
|
|
1646
|
-
}
|
|
1647
|
-
}
|
|
1648
|
-
},
|
|
1649
|
-
"RecommendationContentString": {
|
|
1650
|
-
"type": "string",
|
|
1651
|
-
"max": 5120,
|
|
1652
|
-
"min": 1,
|
|
1653
|
-
"sensitive": true
|
|
1654
|
-
},
|
|
1655
|
-
"RecommendationsList": {
|
|
1656
|
-
"type": "list",
|
|
1657
|
-
"member": {
|
|
1658
|
-
"shape": "Recommendation"
|
|
1659
|
-
},
|
|
1660
|
-
"max": 10,
|
|
1661
|
-
"min": 0
|
|
1662
|
-
},
|
|
1663
|
-
"RecommendationsWithReferencesPreference": {
|
|
1664
|
-
"type": "string",
|
|
1665
|
-
"documentation": "<p>Recommendations with references setting for CodeWhisperer</p>",
|
|
1666
|
-
"enum": ["BLOCK", "ALLOW"]
|
|
1667
|
-
},
|
|
1668
|
-
"Reference": {
|
|
1669
|
-
"type": "structure",
|
|
1670
|
-
"members": {
|
|
1671
|
-
"licenseName": {
|
|
1672
|
-
"shape": "ReferenceLicenseNameString",
|
|
1673
|
-
"documentation": "<p>License name</p>"
|
|
1674
|
-
},
|
|
1675
|
-
"repository": {
|
|
1676
|
-
"shape": "ReferenceRepositoryString",
|
|
1677
|
-
"documentation": "<p>Code Repsitory for the associated reference</p>"
|
|
1678
|
-
},
|
|
1679
|
-
"url": {
|
|
1680
|
-
"shape": "ReferenceUrlString",
|
|
1681
|
-
"documentation": "<p>Respository URL</p>"
|
|
1682
|
-
},
|
|
1683
|
-
"recommendationContentSpan": {
|
|
1684
|
-
"shape": "Span",
|
|
1685
|
-
"documentation": "<p>Span / Range for the Reference</p>"
|
|
1686
|
-
}
|
|
1687
|
-
},
|
|
1688
|
-
"documentation": "<p>Code Reference / Repository details</p>"
|
|
1689
|
-
},
|
|
1690
|
-
"ReferenceLicenseNameString": {
|
|
1691
|
-
"type": "string",
|
|
1692
|
-
"max": 1024,
|
|
1693
|
-
"min": 1
|
|
1694
|
-
},
|
|
1695
|
-
"ReferenceRepositoryString": {
|
|
1696
|
-
"type": "string",
|
|
1697
|
-
"max": 1024,
|
|
1698
|
-
"min": 1
|
|
1699
|
-
},
|
|
1700
|
-
"ReferenceTrackerConfiguration": {
|
|
1701
|
-
"type": "structure",
|
|
1702
|
-
"required": ["recommendationsWithReferences"],
|
|
1703
|
-
"members": {
|
|
1704
|
-
"recommendationsWithReferences": {
|
|
1705
|
-
"shape": "RecommendationsWithReferencesPreference"
|
|
1706
|
-
}
|
|
1707
|
-
}
|
|
1708
|
-
},
|
|
1709
|
-
"ReferenceUrlString": {
|
|
1710
|
-
"type": "string",
|
|
1711
|
-
"max": 1024,
|
|
1712
|
-
"min": 1
|
|
1713
|
-
},
|
|
1714
|
-
"References": {
|
|
1715
|
-
"type": "list",
|
|
1716
|
-
"member": {
|
|
1717
|
-
"shape": "Reference"
|
|
1718
|
-
},
|
|
1719
|
-
"max": 10,
|
|
1720
|
-
"min": 0
|
|
1721
|
-
},
|
|
1722
|
-
"RepositoryId": {
|
|
1723
|
-
"type": "string",
|
|
1724
|
-
"max": 255,
|
|
1725
|
-
"min": 1,
|
|
1726
|
-
"pattern": ".*(?x)^([a-zA-Z0-9-_\\.\\s()]+/)+[\\w-\\.\\+_\\s]+",
|
|
1727
|
-
"sensitive": true
|
|
1728
|
-
},
|
|
1729
|
-
"RepositoryList": {
|
|
1730
|
-
"type": "list",
|
|
1731
|
-
"member": {
|
|
1732
|
-
"shape": "RepositoryId"
|
|
1733
|
-
},
|
|
1734
|
-
"max": 100,
|
|
1735
|
-
"min": 1,
|
|
1736
|
-
"sensitive": true
|
|
1737
|
-
},
|
|
1738
|
-
"ResourceArn": {
|
|
1739
|
-
"type": "string",
|
|
1740
|
-
"max": 1224,
|
|
1741
|
-
"min": 0,
|
|
1742
|
-
"pattern": "arn:([-.a-z0-9]{1,63}:){2}([-.a-z0-9]{0,63}:){2}([a-zA-Z0-9-_:/]){1,1023}"
|
|
1743
|
-
},
|
|
1744
|
-
"ResourceNotFoundException": {
|
|
1745
|
-
"type": "structure",
|
|
1746
|
-
"required": ["message"],
|
|
1747
|
-
"members": {
|
|
1748
|
-
"message": {
|
|
1749
|
-
"shape": "String"
|
|
1750
|
-
}
|
|
1751
|
-
},
|
|
1752
|
-
"documentation": "<p>This exception is thrown when describing a resource that does not exist.</p>",
|
|
1753
|
-
"exception": true
|
|
1754
|
-
},
|
|
1755
|
-
"ResourcePolicy": {
|
|
1756
|
-
"type": "structure",
|
|
1757
|
-
"required": ["effect"],
|
|
1758
|
-
"members": {
|
|
1759
|
-
"effect": {
|
|
1760
|
-
"shape": "ResourcePolicyEffect"
|
|
1761
|
-
}
|
|
1762
|
-
}
|
|
1763
|
-
},
|
|
1764
|
-
"ResourcePolicyEffect": {
|
|
1765
|
-
"type": "string",
|
|
1766
|
-
"enum": ["ALLOW", "DENY"]
|
|
1767
|
-
},
|
|
1768
|
-
"S3Reference": {
|
|
1769
|
-
"type": "structure",
|
|
1770
|
-
"required": ["uri"],
|
|
1771
|
-
"members": {
|
|
1772
|
-
"uri": {
|
|
1773
|
-
"shape": "S3Uri"
|
|
1774
|
-
}
|
|
1775
|
-
}
|
|
1776
|
-
},
|
|
1777
|
-
"S3Uri": {
|
|
1778
|
-
"type": "string",
|
|
1779
|
-
"max": 1024,
|
|
1780
|
-
"min": 1,
|
|
1781
|
-
"pattern": "s3://((?!xn--)[a-z0-9](?![^/]*[.]{2})[a-z0-9-.]{1,61}[a-z0-9](?<!-s3alias)(?<!--ol-s3)(?<!([0-9]{1,3}\\.)([0-9]{1,3}\\.)([0-9]{1,3}\\.)([0-9]{1,3})))/(.{0,1024})"
|
|
1782
|
-
},
|
|
1783
|
-
"SSOIdentityDetails": {
|
|
1784
|
-
"type": "structure",
|
|
1785
|
-
"required": ["instanceArn", "oidcClientId"],
|
|
1786
|
-
"members": {
|
|
1787
|
-
"instanceArn": {
|
|
1788
|
-
"shape": "ResourceArn"
|
|
1789
|
-
},
|
|
1790
|
-
"oidcClientId": {
|
|
1791
|
-
"shape": "String"
|
|
1792
|
-
},
|
|
1793
|
-
"ssoRegion": {
|
|
1794
|
-
"shape": "SSORegion"
|
|
1795
|
-
}
|
|
1796
|
-
}
|
|
1797
|
-
},
|
|
1798
|
-
"SSOIdentitySource": {
|
|
1799
|
-
"type": "structure",
|
|
1800
|
-
"required": ["instanceArn"],
|
|
1801
|
-
"members": {
|
|
1802
|
-
"instanceArn": {
|
|
1803
|
-
"shape": "ResourceArn"
|
|
1804
|
-
},
|
|
1805
|
-
"ssoRegion": {
|
|
1806
|
-
"shape": "SSORegion"
|
|
1807
|
-
}
|
|
1808
|
-
}
|
|
1809
|
-
},
|
|
1810
|
-
"SSORegion": {
|
|
1811
|
-
"type": "string",
|
|
1812
|
-
"max": 63,
|
|
1813
|
-
"min": 1,
|
|
1814
|
-
"pattern": "[-a-z0-9]{1,63}"
|
|
1815
|
-
},
|
|
1816
|
-
"Span": {
|
|
1817
|
-
"type": "structure",
|
|
1818
|
-
"members": {
|
|
1819
|
-
"start": {
|
|
1820
|
-
"shape": "SpanStartInteger"
|
|
1821
|
-
},
|
|
1822
|
-
"end": {
|
|
1823
|
-
"shape": "SpanEndInteger"
|
|
1824
|
-
}
|
|
1825
|
-
},
|
|
1826
|
-
"documentation": "<p>Represents span in a text.</p>"
|
|
1827
|
-
},
|
|
1828
|
-
"SpanEndInteger": {
|
|
1829
|
-
"type": "integer",
|
|
1830
|
-
"box": true,
|
|
1831
|
-
"min": 0
|
|
1832
|
-
},
|
|
1833
|
-
"SpanStartInteger": {
|
|
1834
|
-
"type": "integer",
|
|
1835
|
-
"box": true,
|
|
1836
|
-
"min": 0
|
|
1837
|
-
},
|
|
1838
|
-
"String": {
|
|
1839
|
-
"type": "string"
|
|
1840
|
-
},
|
|
1841
|
-
"SupplementalContext": {
|
|
1842
|
-
"type": "structure",
|
|
1843
|
-
"required": ["filePath", "content"],
|
|
1844
|
-
"members": {
|
|
1845
|
-
"filePath": {
|
|
1846
|
-
"shape": "SupplementalContextFilePathString"
|
|
1847
|
-
},
|
|
1848
|
-
"content": {
|
|
1849
|
-
"shape": "SupplementalContextContentString"
|
|
1850
|
-
},
|
|
1851
|
-
"type": {
|
|
1852
|
-
"shape": "SupplementalContextType"
|
|
1853
|
-
},
|
|
1854
|
-
"metadata": {
|
|
1855
|
-
"shape": "SupplementalContextMetadata"
|
|
1856
|
-
}
|
|
1857
|
-
}
|
|
1858
|
-
},
|
|
1859
|
-
"SupplementalContextContentString": {
|
|
1860
|
-
"type": "string",
|
|
1861
|
-
"max": 10240,
|
|
1862
|
-
"min": 1,
|
|
1863
|
-
"sensitive": true
|
|
1864
|
-
},
|
|
1865
|
-
"SupplementalContextFilePathString": {
|
|
1866
|
-
"type": "string",
|
|
1867
|
-
"max": 1024,
|
|
1868
|
-
"min": 1,
|
|
1869
|
-
"sensitive": true
|
|
1870
|
-
},
|
|
1871
|
-
"SupplementalContextList": {
|
|
1872
|
-
"type": "list",
|
|
1873
|
-
"member": {
|
|
1874
|
-
"shape": "SupplementalContext"
|
|
1875
|
-
},
|
|
1876
|
-
"max": 20,
|
|
1877
|
-
"min": 0
|
|
1878
|
-
},
|
|
1879
|
-
"SupplementalContextMetadata": {
|
|
1880
|
-
"type": "structure",
|
|
1881
|
-
"members": {
|
|
1882
|
-
"previousEditorStateMetadata": {
|
|
1883
|
-
"shape": "PreviousEditorStateMetadata"
|
|
1884
|
-
}
|
|
1885
|
-
},
|
|
1886
|
-
"union": true
|
|
1887
|
-
},
|
|
1888
|
-
"SupplementalContextType": {
|
|
1889
|
-
"type": "string",
|
|
1890
|
-
"enum": ["PreviousEditorState", "WorkspaceContext"]
|
|
1891
|
-
},
|
|
1892
|
-
"Tag": {
|
|
1893
|
-
"type": "structure",
|
|
1894
|
-
"required": ["key", "value"],
|
|
1895
|
-
"members": {
|
|
1896
|
-
"key": {
|
|
1897
|
-
"shape": "TagKey"
|
|
1898
|
-
},
|
|
1899
|
-
"value": {
|
|
1900
|
-
"shape": "TagValue"
|
|
1901
|
-
}
|
|
1902
|
-
}
|
|
1903
|
-
},
|
|
1904
|
-
"TagKey": {
|
|
1905
|
-
"type": "string",
|
|
1906
|
-
"max": 128,
|
|
1907
|
-
"min": 1
|
|
1908
|
-
},
|
|
1909
|
-
"TagKeyList": {
|
|
1910
|
-
"type": "list",
|
|
1911
|
-
"member": {
|
|
1912
|
-
"shape": "TagKey"
|
|
1913
|
-
},
|
|
1914
|
-
"max": 50,
|
|
1915
|
-
"min": 0
|
|
1916
|
-
},
|
|
1917
|
-
"TagList": {
|
|
1918
|
-
"type": "list",
|
|
1919
|
-
"member": {
|
|
1920
|
-
"shape": "Tag"
|
|
1921
|
-
},
|
|
1922
|
-
"max": 50,
|
|
1923
|
-
"min": 0
|
|
1924
|
-
},
|
|
1925
|
-
"TagResourceRequest": {
|
|
1926
|
-
"type": "structure",
|
|
1927
|
-
"required": ["resourceArn", "tags"],
|
|
1928
|
-
"members": {
|
|
1929
|
-
"resourceArn": {
|
|
1930
|
-
"shape": "ResourceArn"
|
|
1931
|
-
},
|
|
1932
|
-
"tags": {
|
|
1933
|
-
"shape": "TagList"
|
|
1934
|
-
}
|
|
1935
|
-
}
|
|
1936
|
-
},
|
|
1937
|
-
"TagResourceResponse": {
|
|
1938
|
-
"type": "structure",
|
|
1939
|
-
"members": {}
|
|
1940
|
-
},
|
|
1941
|
-
"TagValue": {
|
|
1942
|
-
"type": "string",
|
|
1943
|
-
"max": 256,
|
|
1944
|
-
"min": 0
|
|
1945
|
-
},
|
|
1946
|
-
"TenantId": {
|
|
1947
|
-
"type": "string",
|
|
1948
|
-
"max": 1024,
|
|
1949
|
-
"min": 1
|
|
1950
|
-
},
|
|
1951
|
-
"ThrottlingException": {
|
|
1952
|
-
"type": "structure",
|
|
1953
|
-
"required": ["message"],
|
|
1954
|
-
"members": {
|
|
1955
|
-
"message": {
|
|
1956
|
-
"shape": "String"
|
|
1957
|
-
},
|
|
1958
|
-
"reason": {
|
|
1959
|
-
"shape": "ThrottlingExceptionReason"
|
|
1960
|
-
}
|
|
1961
|
-
},
|
|
1962
|
-
"documentation": "<p>This exception is thrown when request was denied due to request throttling.</p>",
|
|
1963
|
-
"exception": true,
|
|
1964
|
-
"retryable": {
|
|
1965
|
-
"throttling": true
|
|
1966
|
-
}
|
|
1967
|
-
},
|
|
1968
|
-
"ThrottlingExceptionReason": {
|
|
1969
|
-
"type": "string",
|
|
1970
|
-
"documentation": "<p>Reason for ThrottlingException</p>",
|
|
1971
|
-
"enum": ["MONTHLY_REQUEST_COUNT"]
|
|
1972
|
-
},
|
|
1973
|
-
"Timestamp": {
|
|
1974
|
-
"type": "timestamp"
|
|
1975
|
-
},
|
|
1976
|
-
"UntagResourceRequest": {
|
|
1977
|
-
"type": "structure",
|
|
1978
|
-
"required": ["resourceArn", "tagKeys"],
|
|
1979
|
-
"members": {
|
|
1980
|
-
"resourceArn": {
|
|
1981
|
-
"shape": "ResourceArn"
|
|
1982
|
-
},
|
|
1983
|
-
"tagKeys": {
|
|
1984
|
-
"shape": "TagKeyList"
|
|
1985
|
-
}
|
|
1986
|
-
}
|
|
1987
|
-
},
|
|
1988
|
-
"UntagResourceResponse": {
|
|
1989
|
-
"type": "structure",
|
|
1990
|
-
"members": {}
|
|
1991
|
-
},
|
|
1992
|
-
"UpdateCustomizationRequest": {
|
|
1993
|
-
"type": "structure",
|
|
1994
|
-
"required": ["identifier", "operation"],
|
|
1995
|
-
"members": {
|
|
1996
|
-
"identifier": {
|
|
1997
|
-
"shape": "CustomizationIdentifier"
|
|
1998
|
-
},
|
|
1999
|
-
"operation": {
|
|
2000
|
-
"shape": "UpdateOperation"
|
|
2001
|
-
},
|
|
2002
|
-
"clientToken": {
|
|
2003
|
-
"shape": "IdempotencyToken"
|
|
2004
|
-
},
|
|
2005
|
-
"dataReference": {
|
|
2006
|
-
"shape": "DataReference"
|
|
2007
|
-
},
|
|
2008
|
-
"version": {
|
|
2009
|
-
"shape": "Version"
|
|
2010
|
-
},
|
|
2011
|
-
"includeRepos": {
|
|
2012
|
-
"shape": "RepositoryList"
|
|
2013
|
-
}
|
|
2014
|
-
}
|
|
2015
|
-
},
|
|
2016
|
-
"UpdateCustomizationResponse": {
|
|
2017
|
-
"type": "structure",
|
|
2018
|
-
"members": {}
|
|
2019
|
-
},
|
|
2020
|
-
"UpdateOperation": {
|
|
2021
|
-
"type": "string",
|
|
2022
|
-
"enum": ["ACTIVATE", "DEACTIVATE", "UPDATE"]
|
|
2023
|
-
},
|
|
2024
|
-
"UpdateProfileRequest": {
|
|
2025
|
-
"type": "structure",
|
|
2026
|
-
"required": ["profileArn"],
|
|
2027
|
-
"members": {
|
|
2028
|
-
"profileArn": {
|
|
2029
|
-
"shape": "ProfileArn"
|
|
2030
|
-
},
|
|
2031
|
-
"identitySource": {
|
|
2032
|
-
"shape": "IdentitySource"
|
|
2033
|
-
},
|
|
2034
|
-
"profileName": {
|
|
2035
|
-
"shape": "ProfileName"
|
|
2036
|
-
},
|
|
2037
|
-
"description": {
|
|
2038
|
-
"shape": "ProfileDescription"
|
|
2039
|
-
},
|
|
2040
|
-
"referenceTrackerConfiguration": {
|
|
2041
|
-
"shape": "ReferenceTrackerConfiguration"
|
|
2042
|
-
},
|
|
2043
|
-
"activeFunctionalities": {
|
|
2044
|
-
"shape": "ActiveFunctionalityList"
|
|
2045
|
-
},
|
|
2046
|
-
"kmsKeyArn": {
|
|
2047
|
-
"shape": "ResourceArn"
|
|
2048
|
-
},
|
|
2049
|
-
"resourcePolicy": {
|
|
2050
|
-
"shape": "ResourcePolicy"
|
|
2051
|
-
},
|
|
2052
|
-
"targetProfileType": {
|
|
2053
|
-
"shape": "ProfileType"
|
|
2054
|
-
},
|
|
2055
|
-
"optInFeatures": {
|
|
2056
|
-
"shape": "OptInFeatures"
|
|
2057
|
-
}
|
|
2058
|
-
}
|
|
2059
|
-
},
|
|
2060
|
-
"UpdateProfileResponse": {
|
|
2061
|
-
"type": "structure",
|
|
2062
|
-
"required": ["profileArn"],
|
|
2063
|
-
"members": {
|
|
2064
|
-
"profileArn": {
|
|
2065
|
-
"shape": "ProfileArn"
|
|
2066
|
-
}
|
|
2067
|
-
}
|
|
2068
|
-
},
|
|
2069
|
-
"Url": {
|
|
2070
|
-
"type": "string",
|
|
2071
|
-
"max": 1024,
|
|
2072
|
-
"min": 1
|
|
2073
|
-
},
|
|
2074
|
-
"ValidationException": {
|
|
2075
|
-
"type": "structure",
|
|
2076
|
-
"required": ["message"],
|
|
2077
|
-
"members": {
|
|
2078
|
-
"message": {
|
|
2079
|
-
"shape": "String"
|
|
2080
|
-
},
|
|
2081
|
-
"reason": {
|
|
2082
|
-
"shape": "ValidationExceptionReason"
|
|
2083
|
-
}
|
|
2084
|
-
},
|
|
2085
|
-
"documentation": "<p>This exception is thrown when the input fails to satisfy the constraints specified by the service.</p>",
|
|
2086
|
-
"exception": true
|
|
2087
|
-
},
|
|
2088
|
-
"ValidationExceptionReason": {
|
|
2089
|
-
"type": "string",
|
|
2090
|
-
"documentation": "<p>Reason for ValidationException</p>",
|
|
2091
|
-
"enum": ["INVALID_CONVERSATION_ID", "CONTENT_LENGTH_EXCEEDS_THRESHOLD", "INVALID_KMS_GRANT"]
|
|
2092
|
-
},
|
|
2093
|
-
"VendKeyGrantRequest": {
|
|
2094
|
-
"type": "structure",
|
|
2095
|
-
"required": ["accountId", "usecase"],
|
|
2096
|
-
"members": {
|
|
2097
|
-
"accountId": {
|
|
2098
|
-
"shape": "AWSAccountId"
|
|
2099
|
-
},
|
|
2100
|
-
"usecase": {
|
|
2101
|
-
"shape": "VendKeyGrantUseCase"
|
|
2102
|
-
}
|
|
2103
|
-
}
|
|
2104
|
-
},
|
|
2105
|
-
"VendKeyGrantResponse": {
|
|
2106
|
-
"type": "structure",
|
|
2107
|
-
"members": {
|
|
2108
|
-
"cmkArn": {
|
|
2109
|
-
"shape": "ResourceArn"
|
|
2110
|
-
},
|
|
2111
|
-
"grantId": {
|
|
2112
|
-
"shape": "GrantToken"
|
|
2113
|
-
},
|
|
2114
|
-
"grantToken": {
|
|
2115
|
-
"shape": "GrantId"
|
|
2116
|
-
}
|
|
2117
|
-
}
|
|
2118
|
-
},
|
|
2119
|
-
"VendKeyGrantUseCase": {
|
|
2120
|
-
"type": "string",
|
|
2121
|
-
"enum": [
|
|
2122
|
-
"TEST",
|
|
2123
|
-
"WEAVER_BIRD",
|
|
2124
|
-
"ELASTIC_GUMBY",
|
|
2125
|
-
"LOCHNESS",
|
|
2126
|
-
"BOWER_BIRD",
|
|
2127
|
-
"ELASTIC_GUMBY_V2_JOB",
|
|
2128
|
-
"ELASTIC_GUMBY_V2_CHAT"
|
|
2129
|
-
]
|
|
2130
|
-
},
|
|
2131
|
-
"Version": {
|
|
2132
|
-
"type": "long",
|
|
2133
|
-
"box": true
|
|
2134
|
-
},
|
|
2135
|
-
"WorkspaceContext": {
|
|
2136
|
-
"type": "structure",
|
|
2137
|
-
"required": ["toggle"],
|
|
2138
|
-
"members": {
|
|
2139
|
-
"toggle": {
|
|
2140
|
-
"shape": "OptInFeatureToggle"
|
|
2141
|
-
}
|
|
2142
|
-
}
|
|
2143
|
-
}
|
|
2144
|
-
}
|
|
2145
|
-
}
|