@aws-sdk/client-bedrock-agentcore-control 3.847.0
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/LICENSE +201 -0
- package/README.md +616 -0
- package/dist-cjs/BedrockAgentCoreControl.js +113 -0
- package/dist-cjs/BedrockAgentCoreControlClient.js +52 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateAgentRuntimeCommand.js +27 -0
- package/dist-cjs/commands/CreateAgentRuntimeEndpointCommand.js +27 -0
- package/dist-cjs/commands/CreateApiKeyCredentialProviderCommand.js +27 -0
- package/dist-cjs/commands/CreateBrowserCommand.js +27 -0
- package/dist-cjs/commands/CreateCodeInterpreterCommand.js +27 -0
- package/dist-cjs/commands/CreateGatewayCommand.js +27 -0
- package/dist-cjs/commands/CreateGatewayTargetCommand.js +27 -0
- package/dist-cjs/commands/CreateMemoryCommand.js +27 -0
- package/dist-cjs/commands/CreateOauth2CredentialProviderCommand.js +27 -0
- package/dist-cjs/commands/CreateWorkloadIdentityCommand.js +26 -0
- package/dist-cjs/commands/DeleteAgentRuntimeCommand.js +26 -0
- package/dist-cjs/commands/DeleteAgentRuntimeEndpointCommand.js +27 -0
- package/dist-cjs/commands/DeleteApiKeyCredentialProviderCommand.js +26 -0
- package/dist-cjs/commands/DeleteBrowserCommand.js +26 -0
- package/dist-cjs/commands/DeleteCodeInterpreterCommand.js +26 -0
- package/dist-cjs/commands/DeleteGatewayCommand.js +26 -0
- package/dist-cjs/commands/DeleteGatewayTargetCommand.js +26 -0
- package/dist-cjs/commands/DeleteMemoryCommand.js +26 -0
- package/dist-cjs/commands/DeleteOauth2CredentialProviderCommand.js +26 -0
- package/dist-cjs/commands/DeleteWorkloadIdentityCommand.js +26 -0
- package/dist-cjs/commands/GetAgentRuntimeCommand.js +27 -0
- package/dist-cjs/commands/GetAgentRuntimeEndpointCommand.js +27 -0
- package/dist-cjs/commands/GetApiKeyCredentialProviderCommand.js +26 -0
- package/dist-cjs/commands/GetBrowserCommand.js +27 -0
- package/dist-cjs/commands/GetCodeInterpreterCommand.js +27 -0
- package/dist-cjs/commands/GetGatewayCommand.js +27 -0
- package/dist-cjs/commands/GetGatewayTargetCommand.js +27 -0
- package/dist-cjs/commands/GetMemoryCommand.js +27 -0
- package/dist-cjs/commands/GetOauth2CredentialProviderCommand.js +26 -0
- package/dist-cjs/commands/GetTokenVaultCommand.js +26 -0
- package/dist-cjs/commands/GetWorkloadIdentityCommand.js +26 -0
- package/dist-cjs/commands/ListAgentRuntimeEndpointsCommand.js +27 -0
- package/dist-cjs/commands/ListAgentRuntimeVersionsCommand.js +27 -0
- package/dist-cjs/commands/ListAgentRuntimesCommand.js +27 -0
- package/dist-cjs/commands/ListApiKeyCredentialProvidersCommand.js +26 -0
- package/dist-cjs/commands/ListBrowsersCommand.js +27 -0
- package/dist-cjs/commands/ListCodeInterpretersCommand.js +27 -0
- package/dist-cjs/commands/ListGatewayTargetsCommand.js +27 -0
- package/dist-cjs/commands/ListGatewaysCommand.js +27 -0
- package/dist-cjs/commands/ListMemoriesCommand.js +26 -0
- package/dist-cjs/commands/ListOauth2CredentialProvidersCommand.js +26 -0
- package/dist-cjs/commands/ListWorkloadIdentitiesCommand.js +26 -0
- package/dist-cjs/commands/SetTokenVaultCMKCommand.js +26 -0
- package/dist-cjs/commands/UpdateAgentRuntimeCommand.js +27 -0
- package/dist-cjs/commands/UpdateAgentRuntimeEndpointCommand.js +27 -0
- package/dist-cjs/commands/UpdateApiKeyCredentialProviderCommand.js +27 -0
- package/dist-cjs/commands/UpdateGatewayCommand.js +27 -0
- package/dist-cjs/commands/UpdateGatewayTargetCommand.js +27 -0
- package/dist-cjs/commands/UpdateMemoryCommand.js +27 -0
- package/dist-cjs/commands/UpdateOauth2CredentialProviderCommand.js +27 -0
- package/dist-cjs/commands/UpdateWorkloadIdentityCommand.js +26 -0
- package/dist-cjs/commands/index.js +54 -0
- package/dist-cjs/endpoint/EndpointParameters.js +17 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/BedrockAgentCoreControlServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +1213 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAgentRuntimeEndpointsPaginator.js +7 -0
- package/dist-cjs/pagination/ListAgentRuntimeVersionsPaginator.js +7 -0
- package/dist-cjs/pagination/ListAgentRuntimesPaginator.js +7 -0
- package/dist-cjs/pagination/ListApiKeyCredentialProvidersPaginator.js +7 -0
- package/dist-cjs/pagination/ListBrowsersPaginator.js +7 -0
- package/dist-cjs/pagination/ListCodeInterpretersPaginator.js +7 -0
- package/dist-cjs/pagination/ListGatewayTargetsPaginator.js +7 -0
- package/dist-cjs/pagination/ListGatewaysPaginator.js +7 -0
- package/dist-cjs/pagination/ListMemoriesPaginator.js +7 -0
- package/dist-cjs/pagination/ListOauth2CredentialProvidersPaginator.js +7 -0
- package/dist-cjs/pagination/ListWorkloadIdentitiesPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +15 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2325 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +13 -0
- package/dist-cjs/waiters/index.js +4 -0
- package/dist-cjs/waiters/waitForMemoryCreated.js +54 -0
- package/dist-es/BedrockAgentCoreControl.js +109 -0
- package/dist-es/BedrockAgentCoreControlClient.js +48 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateAgentRuntimeCommand.js +23 -0
- package/dist-es/commands/CreateAgentRuntimeEndpointCommand.js +23 -0
- package/dist-es/commands/CreateApiKeyCredentialProviderCommand.js +23 -0
- package/dist-es/commands/CreateBrowserCommand.js +23 -0
- package/dist-es/commands/CreateCodeInterpreterCommand.js +23 -0
- package/dist-es/commands/CreateGatewayCommand.js +23 -0
- package/dist-es/commands/CreateGatewayTargetCommand.js +23 -0
- package/dist-es/commands/CreateMemoryCommand.js +23 -0
- package/dist-es/commands/CreateOauth2CredentialProviderCommand.js +23 -0
- package/dist-es/commands/CreateWorkloadIdentityCommand.js +22 -0
- package/dist-es/commands/DeleteAgentRuntimeCommand.js +22 -0
- package/dist-es/commands/DeleteAgentRuntimeEndpointCommand.js +23 -0
- package/dist-es/commands/DeleteApiKeyCredentialProviderCommand.js +22 -0
- package/dist-es/commands/DeleteBrowserCommand.js +22 -0
- package/dist-es/commands/DeleteCodeInterpreterCommand.js +22 -0
- package/dist-es/commands/DeleteGatewayCommand.js +22 -0
- package/dist-es/commands/DeleteGatewayTargetCommand.js +22 -0
- package/dist-es/commands/DeleteMemoryCommand.js +22 -0
- package/dist-es/commands/DeleteOauth2CredentialProviderCommand.js +22 -0
- package/dist-es/commands/DeleteWorkloadIdentityCommand.js +22 -0
- package/dist-es/commands/GetAgentRuntimeCommand.js +23 -0
- package/dist-es/commands/GetAgentRuntimeEndpointCommand.js +23 -0
- package/dist-es/commands/GetApiKeyCredentialProviderCommand.js +22 -0
- package/dist-es/commands/GetBrowserCommand.js +23 -0
- package/dist-es/commands/GetCodeInterpreterCommand.js +23 -0
- package/dist-es/commands/GetGatewayCommand.js +23 -0
- package/dist-es/commands/GetGatewayTargetCommand.js +23 -0
- package/dist-es/commands/GetMemoryCommand.js +23 -0
- package/dist-es/commands/GetOauth2CredentialProviderCommand.js +22 -0
- package/dist-es/commands/GetTokenVaultCommand.js +22 -0
- package/dist-es/commands/GetWorkloadIdentityCommand.js +22 -0
- package/dist-es/commands/ListAgentRuntimeEndpointsCommand.js +23 -0
- package/dist-es/commands/ListAgentRuntimeVersionsCommand.js +23 -0
- package/dist-es/commands/ListAgentRuntimesCommand.js +23 -0
- package/dist-es/commands/ListApiKeyCredentialProvidersCommand.js +22 -0
- package/dist-es/commands/ListBrowsersCommand.js +23 -0
- package/dist-es/commands/ListCodeInterpretersCommand.js +23 -0
- package/dist-es/commands/ListGatewayTargetsCommand.js +23 -0
- package/dist-es/commands/ListGatewaysCommand.js +23 -0
- package/dist-es/commands/ListMemoriesCommand.js +22 -0
- package/dist-es/commands/ListOauth2CredentialProvidersCommand.js +22 -0
- package/dist-es/commands/ListWorkloadIdentitiesCommand.js +22 -0
- package/dist-es/commands/SetTokenVaultCMKCommand.js +22 -0
- package/dist-es/commands/UpdateAgentRuntimeCommand.js +23 -0
- package/dist-es/commands/UpdateAgentRuntimeEndpointCommand.js +23 -0
- package/dist-es/commands/UpdateApiKeyCredentialProviderCommand.js +23 -0
- package/dist-es/commands/UpdateGatewayCommand.js +23 -0
- package/dist-es/commands/UpdateGatewayTargetCommand.js +23 -0
- package/dist-es/commands/UpdateMemoryCommand.js +23 -0
- package/dist-es/commands/UpdateOauth2CredentialProviderCommand.js +23 -0
- package/dist-es/commands/UpdateWorkloadIdentityCommand.js +22 -0
- package/dist-es/commands/index.js +51 -0
- package/dist-es/endpoint/EndpointParameters.js +13 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/BedrockAgentCoreControlServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +1104 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAgentRuntimeEndpointsPaginator.js +4 -0
- package/dist-es/pagination/ListAgentRuntimeVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListAgentRuntimesPaginator.js +4 -0
- package/dist-es/pagination/ListApiKeyCredentialProvidersPaginator.js +4 -0
- package/dist-es/pagination/ListBrowsersPaginator.js +4 -0
- package/dist-es/pagination/ListCodeInterpretersPaginator.js +4 -0
- package/dist-es/pagination/ListGatewayTargetsPaginator.js +4 -0
- package/dist-es/pagination/ListGatewaysPaginator.js +4 -0
- package/dist-es/pagination/ListMemoriesPaginator.js +4 -0
- package/dist-es/pagination/ListOauth2CredentialProvidersPaginator.js +4 -0
- package/dist-es/pagination/ListWorkloadIdentitiesPaginator.js +4 -0
- package/dist-es/pagination/index.js +12 -0
- package/dist-es/protocols/Aws_restJson1.js +2218 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForMemoryCreated.js +49 -0
- package/dist-types/BedrockAgentCoreControl.d.ts +376 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +238 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +125 -0
- package/dist-types/commands/CreateAgentRuntimeEndpointCommand.d.ts +101 -0
- package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +110 -0
- package/dist-types/commands/CreateBrowserCommand.d.ts +106 -0
- package/dist-types/commands/CreateCodeInterpreterCommand.d.ts +99 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +155 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +259 -0
- package/dist-types/commands/CreateMemoryCommand.d.ts +215 -0
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +147 -0
- package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +97 -0
- package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +87 -0
- package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +89 -0
- package/dist-types/commands/DeleteApiKeyCredentialProviderCommand.d.ts +88 -0
- package/dist-types/commands/DeleteBrowserCommand.d.ts +96 -0
- package/dist-types/commands/DeleteCodeInterpreterCommand.d.ts +96 -0
- package/dist-types/commands/DeleteGatewayCommand.d.ts +94 -0
- package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +96 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +89 -0
- package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +88 -0
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +88 -0
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +124 -0
- package/dist-types/commands/GetAgentRuntimeEndpointCommand.d.ts +98 -0
- package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +99 -0
- package/dist-types/commands/GetBrowserCommand.d.ts +104 -0
- package/dist-types/commands/GetCodeInterpreterCommand.d.ts +97 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +125 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +174 -0
- package/dist-types/commands/GetMemoryCommand.d.ts +144 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +170 -0
- package/dist-types/commands/GetTokenVaultCommand.d.ts +95 -0
- package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +96 -0
- package/dist-types/commands/ListAgentRuntimeEndpointsCommand.d.ts +100 -0
- package/dist-types/commands/ListAgentRuntimeVersionsCommand.d.ts +100 -0
- package/dist-types/commands/ListAgentRuntimesCommand.d.ts +96 -0
- package/dist-types/commands/ListApiKeyCredentialProvidersCommand.d.ts +99 -0
- package/dist-types/commands/ListBrowsersCommand.d.ts +97 -0
- package/dist-types/commands/ListCodeInterpretersCommand.d.ts +97 -0
- package/dist-types/commands/ListGatewayTargetsCommand.d.ts +96 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +97 -0
- package/dist-types/commands/ListMemoriesCommand.d.ts +97 -0
- package/dist-types/commands/ListOauth2CredentialProvidersCommand.d.ts +100 -0
- package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +97 -0
- package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +102 -0
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +129 -0
- package/dist-types/commands/UpdateAgentRuntimeEndpointCommand.d.ts +103 -0
- package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +109 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +158 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +259 -0
- package/dist-types/commands/UpdateMemoryCommand.d.ts +260 -0
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +217 -0
- package/dist-types/commands/UpdateWorkloadIdentityCommand.d.ts +99 -0
- package/dist-types/commands/index.d.ts +51 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +15 -0
- package/dist-types/models/BedrockAgentCoreControlServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +5821 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAgentRuntimeEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAgentRuntimeVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAgentRuntimesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListApiKeyCredentialProvidersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBrowsersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCodeInterpretersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayTargetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewaysPaginator.d.ts +7 -0
- package/dist-types/pagination/ListMemoriesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOauth2CredentialProvidersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkloadIdentitiesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +12 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +461 -0
- package/dist-types/runtimeConfig.browser.d.ts +50 -0
- package/dist-types/runtimeConfig.d.ts +50 -0
- package/dist-types/runtimeConfig.native.d.ts +49 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +883 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +428 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateAgentRuntimeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateAgentRuntimeEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateApiKeyCredentialProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateBrowserCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateCodeInterpreterCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateGatewayTargetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateOauth2CredentialProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAgentRuntimeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAgentRuntimeEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteApiKeyCredentialProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteBrowserCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteCodeInterpreterCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteGatewayTargetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteMemoryCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteOauth2CredentialProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetAgentRuntimeCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAgentRuntimeEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetApiKeyCredentialProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetBrowserCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetCodeInterpreterCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetGatewayCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetMemoryCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetOauth2CredentialProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTokenVaultCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAgentRuntimeEndpointsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAgentRuntimeVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAgentRuntimesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListApiKeyCredentialProvidersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListBrowsersCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListCodeInterpretersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGatewayTargetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListMemoriesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListOauth2CredentialProvidersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAgentRuntimeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateAgentRuntimeEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateApiKeyCredentialProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGatewayCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateGatewayTargetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateMemoryCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateOauth2CredentialProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateWorkloadIdentityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/BedrockAgentCoreControlServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2222 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAgentRuntimeEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAgentRuntimeVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAgentRuntimesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListApiKeyCredentialProvidersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBrowsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCodeInterpretersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewayTargetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListMemoriesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOauth2CredentialProvidersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkloadIdentitiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +12 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +617 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +94 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +98 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForMemoryCreated.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForMemoryCreated.d.ts +14 -0
- package/package.json +102 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListCodeInterpretersCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
+
class ListCodeInterpretersCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep(EndpointParameters_1.commonParams)
|
|
14
|
+
.m(function (Command, cs, config, o) {
|
|
15
|
+
return [
|
|
16
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
17
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
18
|
+
];
|
|
19
|
+
})
|
|
20
|
+
.s("AmazonBedrockAgentCoreControl", "ListCodeInterpreters", {})
|
|
21
|
+
.n("BedrockAgentCoreControlClient", "ListCodeInterpretersCommand")
|
|
22
|
+
.f(void 0, models_0_1.ListCodeInterpretersResponseFilterSensitiveLog)
|
|
23
|
+
.ser(Aws_restJson1_1.se_ListCodeInterpretersCommand)
|
|
24
|
+
.de(Aws_restJson1_1.de_ListCodeInterpretersCommand)
|
|
25
|
+
.build() {
|
|
26
|
+
}
|
|
27
|
+
exports.ListCodeInterpretersCommand = ListCodeInterpretersCommand;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListGatewayTargetsCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
+
class ListGatewayTargetsCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep(EndpointParameters_1.commonParams)
|
|
14
|
+
.m(function (Command, cs, config, o) {
|
|
15
|
+
return [
|
|
16
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
17
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
18
|
+
];
|
|
19
|
+
})
|
|
20
|
+
.s("AmazonBedrockAgentCoreControl", "ListGatewayTargets", {})
|
|
21
|
+
.n("BedrockAgentCoreControlClient", "ListGatewayTargetsCommand")
|
|
22
|
+
.f(void 0, models_0_1.ListGatewayTargetsResponseFilterSensitiveLog)
|
|
23
|
+
.ser(Aws_restJson1_1.se_ListGatewayTargetsCommand)
|
|
24
|
+
.de(Aws_restJson1_1.de_ListGatewayTargetsCommand)
|
|
25
|
+
.build() {
|
|
26
|
+
}
|
|
27
|
+
exports.ListGatewayTargetsCommand = ListGatewayTargetsCommand;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListGatewaysCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
+
class ListGatewaysCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep(EndpointParameters_1.commonParams)
|
|
14
|
+
.m(function (Command, cs, config, o) {
|
|
15
|
+
return [
|
|
16
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
17
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
18
|
+
];
|
|
19
|
+
})
|
|
20
|
+
.s("AmazonBedrockAgentCoreControl", "ListGateways", {})
|
|
21
|
+
.n("BedrockAgentCoreControlClient", "ListGatewaysCommand")
|
|
22
|
+
.f(void 0, models_0_1.ListGatewaysResponseFilterSensitiveLog)
|
|
23
|
+
.ser(Aws_restJson1_1.se_ListGatewaysCommand)
|
|
24
|
+
.de(Aws_restJson1_1.de_ListGatewaysCommand)
|
|
25
|
+
.build() {
|
|
26
|
+
}
|
|
27
|
+
exports.ListGatewaysCommand = ListGatewaysCommand;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListMemoriesCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class ListMemoriesCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep(EndpointParameters_1.commonParams)
|
|
13
|
+
.m(function (Command, cs, config, o) {
|
|
14
|
+
return [
|
|
15
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
16
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
17
|
+
];
|
|
18
|
+
})
|
|
19
|
+
.s("AmazonBedrockAgentCoreControl", "ListMemories", {})
|
|
20
|
+
.n("BedrockAgentCoreControlClient", "ListMemoriesCommand")
|
|
21
|
+
.f(void 0, void 0)
|
|
22
|
+
.ser(Aws_restJson1_1.se_ListMemoriesCommand)
|
|
23
|
+
.de(Aws_restJson1_1.de_ListMemoriesCommand)
|
|
24
|
+
.build() {
|
|
25
|
+
}
|
|
26
|
+
exports.ListMemoriesCommand = ListMemoriesCommand;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListOauth2CredentialProvidersCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class ListOauth2CredentialProvidersCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep(EndpointParameters_1.commonParams)
|
|
13
|
+
.m(function (Command, cs, config, o) {
|
|
14
|
+
return [
|
|
15
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
16
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
17
|
+
];
|
|
18
|
+
})
|
|
19
|
+
.s("AmazonBedrockAgentCoreControl", "ListOauth2CredentialProviders", {})
|
|
20
|
+
.n("BedrockAgentCoreControlClient", "ListOauth2CredentialProvidersCommand")
|
|
21
|
+
.f(void 0, void 0)
|
|
22
|
+
.ser(Aws_restJson1_1.se_ListOauth2CredentialProvidersCommand)
|
|
23
|
+
.de(Aws_restJson1_1.de_ListOauth2CredentialProvidersCommand)
|
|
24
|
+
.build() {
|
|
25
|
+
}
|
|
26
|
+
exports.ListOauth2CredentialProvidersCommand = ListOauth2CredentialProvidersCommand;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListWorkloadIdentitiesCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class ListWorkloadIdentitiesCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep(EndpointParameters_1.commonParams)
|
|
13
|
+
.m(function (Command, cs, config, o) {
|
|
14
|
+
return [
|
|
15
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
16
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
17
|
+
];
|
|
18
|
+
})
|
|
19
|
+
.s("AmazonBedrockAgentCoreControl", "ListWorkloadIdentities", {})
|
|
20
|
+
.n("BedrockAgentCoreControlClient", "ListWorkloadIdentitiesCommand")
|
|
21
|
+
.f(void 0, void 0)
|
|
22
|
+
.ser(Aws_restJson1_1.se_ListWorkloadIdentitiesCommand)
|
|
23
|
+
.de(Aws_restJson1_1.de_ListWorkloadIdentitiesCommand)
|
|
24
|
+
.build() {
|
|
25
|
+
}
|
|
26
|
+
exports.ListWorkloadIdentitiesCommand = ListWorkloadIdentitiesCommand;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SetTokenVaultCMKCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class SetTokenVaultCMKCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep(EndpointParameters_1.commonParams)
|
|
13
|
+
.m(function (Command, cs, config, o) {
|
|
14
|
+
return [
|
|
15
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
16
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
17
|
+
];
|
|
18
|
+
})
|
|
19
|
+
.s("AmazonBedrockAgentCoreControl", "SetTokenVaultCMK", {})
|
|
20
|
+
.n("BedrockAgentCoreControlClient", "SetTokenVaultCMKCommand")
|
|
21
|
+
.f(void 0, void 0)
|
|
22
|
+
.ser(Aws_restJson1_1.se_SetTokenVaultCMKCommand)
|
|
23
|
+
.de(Aws_restJson1_1.de_SetTokenVaultCMKCommand)
|
|
24
|
+
.build() {
|
|
25
|
+
}
|
|
26
|
+
exports.SetTokenVaultCMKCommand = SetTokenVaultCMKCommand;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateAgentRuntimeCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
+
class UpdateAgentRuntimeCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep(EndpointParameters_1.commonParams)
|
|
14
|
+
.m(function (Command, cs, config, o) {
|
|
15
|
+
return [
|
|
16
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
17
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
18
|
+
];
|
|
19
|
+
})
|
|
20
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateAgentRuntime", {})
|
|
21
|
+
.n("BedrockAgentCoreControlClient", "UpdateAgentRuntimeCommand")
|
|
22
|
+
.f(models_0_1.UpdateAgentRuntimeRequestFilterSensitiveLog, void 0)
|
|
23
|
+
.ser(Aws_restJson1_1.se_UpdateAgentRuntimeCommand)
|
|
24
|
+
.de(Aws_restJson1_1.de_UpdateAgentRuntimeCommand)
|
|
25
|
+
.build() {
|
|
26
|
+
}
|
|
27
|
+
exports.UpdateAgentRuntimeCommand = UpdateAgentRuntimeCommand;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateAgentRuntimeEndpointCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
+
class UpdateAgentRuntimeEndpointCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep(EndpointParameters_1.commonParams)
|
|
14
|
+
.m(function (Command, cs, config, o) {
|
|
15
|
+
return [
|
|
16
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
17
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
18
|
+
];
|
|
19
|
+
})
|
|
20
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateAgentRuntimeEndpoint", {})
|
|
21
|
+
.n("BedrockAgentCoreControlClient", "UpdateAgentRuntimeEndpointCommand")
|
|
22
|
+
.f(models_0_1.UpdateAgentRuntimeEndpointRequestFilterSensitiveLog, void 0)
|
|
23
|
+
.ser(Aws_restJson1_1.se_UpdateAgentRuntimeEndpointCommand)
|
|
24
|
+
.de(Aws_restJson1_1.de_UpdateAgentRuntimeEndpointCommand)
|
|
25
|
+
.build() {
|
|
26
|
+
}
|
|
27
|
+
exports.UpdateAgentRuntimeEndpointCommand = UpdateAgentRuntimeEndpointCommand;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateApiKeyCredentialProviderCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
+
class UpdateApiKeyCredentialProviderCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep(EndpointParameters_1.commonParams)
|
|
14
|
+
.m(function (Command, cs, config, o) {
|
|
15
|
+
return [
|
|
16
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
17
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
18
|
+
];
|
|
19
|
+
})
|
|
20
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateApiKeyCredentialProvider", {})
|
|
21
|
+
.n("BedrockAgentCoreControlClient", "UpdateApiKeyCredentialProviderCommand")
|
|
22
|
+
.f(models_0_1.UpdateApiKeyCredentialProviderRequestFilterSensitiveLog, void 0)
|
|
23
|
+
.ser(Aws_restJson1_1.se_UpdateApiKeyCredentialProviderCommand)
|
|
24
|
+
.de(Aws_restJson1_1.de_UpdateApiKeyCredentialProviderCommand)
|
|
25
|
+
.build() {
|
|
26
|
+
}
|
|
27
|
+
exports.UpdateApiKeyCredentialProviderCommand = UpdateApiKeyCredentialProviderCommand;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateGatewayCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
+
class UpdateGatewayCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep(EndpointParameters_1.commonParams)
|
|
14
|
+
.m(function (Command, cs, config, o) {
|
|
15
|
+
return [
|
|
16
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
17
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
18
|
+
];
|
|
19
|
+
})
|
|
20
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateGateway", {})
|
|
21
|
+
.n("BedrockAgentCoreControlClient", "UpdateGatewayCommand")
|
|
22
|
+
.f(models_0_1.UpdateGatewayRequestFilterSensitiveLog, models_0_1.UpdateGatewayResponseFilterSensitiveLog)
|
|
23
|
+
.ser(Aws_restJson1_1.se_UpdateGatewayCommand)
|
|
24
|
+
.de(Aws_restJson1_1.de_UpdateGatewayCommand)
|
|
25
|
+
.build() {
|
|
26
|
+
}
|
|
27
|
+
exports.UpdateGatewayCommand = UpdateGatewayCommand;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateGatewayTargetCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
+
class UpdateGatewayTargetCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep(EndpointParameters_1.commonParams)
|
|
14
|
+
.m(function (Command, cs, config, o) {
|
|
15
|
+
return [
|
|
16
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
17
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
18
|
+
];
|
|
19
|
+
})
|
|
20
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateGatewayTarget", {})
|
|
21
|
+
.n("BedrockAgentCoreControlClient", "UpdateGatewayTargetCommand")
|
|
22
|
+
.f(models_0_1.UpdateGatewayTargetRequestFilterSensitiveLog, models_0_1.UpdateGatewayTargetResponseFilterSensitiveLog)
|
|
23
|
+
.ser(Aws_restJson1_1.se_UpdateGatewayTargetCommand)
|
|
24
|
+
.de(Aws_restJson1_1.de_UpdateGatewayTargetCommand)
|
|
25
|
+
.build() {
|
|
26
|
+
}
|
|
27
|
+
exports.UpdateGatewayTargetCommand = UpdateGatewayTargetCommand;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateMemoryCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
+
class UpdateMemoryCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep(EndpointParameters_1.commonParams)
|
|
14
|
+
.m(function (Command, cs, config, o) {
|
|
15
|
+
return [
|
|
16
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
17
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
18
|
+
];
|
|
19
|
+
})
|
|
20
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateMemory", {})
|
|
21
|
+
.n("BedrockAgentCoreControlClient", "UpdateMemoryCommand")
|
|
22
|
+
.f(models_0_1.UpdateMemoryInputFilterSensitiveLog, models_0_1.UpdateMemoryOutputFilterSensitiveLog)
|
|
23
|
+
.ser(Aws_restJson1_1.se_UpdateMemoryCommand)
|
|
24
|
+
.de(Aws_restJson1_1.de_UpdateMemoryCommand)
|
|
25
|
+
.build() {
|
|
26
|
+
}
|
|
27
|
+
exports.UpdateMemoryCommand = UpdateMemoryCommand;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateOauth2CredentialProviderCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
+
class UpdateOauth2CredentialProviderCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep(EndpointParameters_1.commonParams)
|
|
14
|
+
.m(function (Command, cs, config, o) {
|
|
15
|
+
return [
|
|
16
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
17
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
18
|
+
];
|
|
19
|
+
})
|
|
20
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateOauth2CredentialProvider", {})
|
|
21
|
+
.n("BedrockAgentCoreControlClient", "UpdateOauth2CredentialProviderCommand")
|
|
22
|
+
.f(models_0_1.UpdateOauth2CredentialProviderRequestFilterSensitiveLog, void 0)
|
|
23
|
+
.ser(Aws_restJson1_1.se_UpdateOauth2CredentialProviderCommand)
|
|
24
|
+
.de(Aws_restJson1_1.de_UpdateOauth2CredentialProviderCommand)
|
|
25
|
+
.build() {
|
|
26
|
+
}
|
|
27
|
+
exports.UpdateOauth2CredentialProviderCommand = UpdateOauth2CredentialProviderCommand;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateWorkloadIdentityCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class UpdateWorkloadIdentityCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep(EndpointParameters_1.commonParams)
|
|
13
|
+
.m(function (Command, cs, config, o) {
|
|
14
|
+
return [
|
|
15
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
16
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
17
|
+
];
|
|
18
|
+
})
|
|
19
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateWorkloadIdentity", {})
|
|
20
|
+
.n("BedrockAgentCoreControlClient", "UpdateWorkloadIdentityCommand")
|
|
21
|
+
.f(void 0, void 0)
|
|
22
|
+
.ser(Aws_restJson1_1.se_UpdateWorkloadIdentityCommand)
|
|
23
|
+
.de(Aws_restJson1_1.de_UpdateWorkloadIdentityCommand)
|
|
24
|
+
.build() {
|
|
25
|
+
}
|
|
26
|
+
exports.UpdateWorkloadIdentityCommand = UpdateWorkloadIdentityCommand;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./CreateAgentRuntimeCommand"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./CreateAgentRuntimeEndpointCommand"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./CreateApiKeyCredentialProviderCommand"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./CreateBrowserCommand"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./CreateCodeInterpreterCommand"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./CreateGatewayCommand"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./CreateGatewayTargetCommand"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./CreateMemoryCommand"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./CreateOauth2CredentialProviderCommand"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./CreateWorkloadIdentityCommand"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./DeleteAgentRuntimeCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./DeleteAgentRuntimeEndpointCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./DeleteApiKeyCredentialProviderCommand"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./DeleteBrowserCommand"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./DeleteCodeInterpreterCommand"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./DeleteGatewayCommand"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./DeleteGatewayTargetCommand"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./DeleteMemoryCommand"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./DeleteOauth2CredentialProviderCommand"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./DeleteWorkloadIdentityCommand"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./GetAgentRuntimeCommand"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./GetAgentRuntimeEndpointCommand"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./GetApiKeyCredentialProviderCommand"), exports);
|
|
27
|
+
tslib_1.__exportStar(require("./GetBrowserCommand"), exports);
|
|
28
|
+
tslib_1.__exportStar(require("./GetCodeInterpreterCommand"), exports);
|
|
29
|
+
tslib_1.__exportStar(require("./GetGatewayCommand"), exports);
|
|
30
|
+
tslib_1.__exportStar(require("./GetGatewayTargetCommand"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./GetMemoryCommand"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./GetOauth2CredentialProviderCommand"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./GetTokenVaultCommand"), exports);
|
|
34
|
+
tslib_1.__exportStar(require("./GetWorkloadIdentityCommand"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./ListAgentRuntimeEndpointsCommand"), exports);
|
|
36
|
+
tslib_1.__exportStar(require("./ListAgentRuntimeVersionsCommand"), exports);
|
|
37
|
+
tslib_1.__exportStar(require("./ListAgentRuntimesCommand"), exports);
|
|
38
|
+
tslib_1.__exportStar(require("./ListApiKeyCredentialProvidersCommand"), exports);
|
|
39
|
+
tslib_1.__exportStar(require("./ListBrowsersCommand"), exports);
|
|
40
|
+
tslib_1.__exportStar(require("./ListCodeInterpretersCommand"), exports);
|
|
41
|
+
tslib_1.__exportStar(require("./ListGatewayTargetsCommand"), exports);
|
|
42
|
+
tslib_1.__exportStar(require("./ListGatewaysCommand"), exports);
|
|
43
|
+
tslib_1.__exportStar(require("./ListMemoriesCommand"), exports);
|
|
44
|
+
tslib_1.__exportStar(require("./ListOauth2CredentialProvidersCommand"), exports);
|
|
45
|
+
tslib_1.__exportStar(require("./ListWorkloadIdentitiesCommand"), exports);
|
|
46
|
+
tslib_1.__exportStar(require("./SetTokenVaultCMKCommand"), exports);
|
|
47
|
+
tslib_1.__exportStar(require("./UpdateAgentRuntimeCommand"), exports);
|
|
48
|
+
tslib_1.__exportStar(require("./UpdateAgentRuntimeEndpointCommand"), exports);
|
|
49
|
+
tslib_1.__exportStar(require("./UpdateApiKeyCredentialProviderCommand"), exports);
|
|
50
|
+
tslib_1.__exportStar(require("./UpdateGatewayCommand"), exports);
|
|
51
|
+
tslib_1.__exportStar(require("./UpdateGatewayTargetCommand"), exports);
|
|
52
|
+
tslib_1.__exportStar(require("./UpdateMemoryCommand"), exports);
|
|
53
|
+
tslib_1.__exportStar(require("./UpdateOauth2CredentialProviderCommand"), exports);
|
|
54
|
+
tslib_1.__exportStar(require("./UpdateWorkloadIdentityCommand"), exports);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.commonParams = exports.resolveClientEndpointParameters = void 0;
|
|
4
|
+
const resolveClientEndpointParameters = (options) => {
|
|
5
|
+
return Object.assign(options, {
|
|
6
|
+
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
7
|
+
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
8
|
+
defaultSigningName: "bedrock-agentcore",
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
|
|
12
|
+
exports.commonParams = {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.defaultEndpointResolver = void 0;
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
|
+
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
11
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
13
|
+
endpointParams: endpointParams,
|
|
14
|
+
logger: context.logger,
|
|
15
|
+
}));
|
|
16
|
+
};
|
|
17
|
+
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
18
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ruleSet = void 0;
|
|
4
|
+
const s = "required", t = "fn", u = "argv", v = "ref";
|
|
5
|
+
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = { [s]: false, "type": "String" }, i = { [s]: true, "default": false, "type": "Boolean" }, j = { [v]: "Endpoint" }, k = { [t]: c, [u]: [{ [v]: "UseFIPS" }, true] }, l = { [t]: c, [u]: [{ [v]: "UseDualStack" }, true] }, m = {}, n = { [t]: "getAttr", [u]: [{ [v]: g }, "supportsFIPS"] }, o = { [t]: c, [u]: [true, { [t]: "getAttr", [u]: [{ [v]: g }, "supportsDualStack"] }] }, p = [k], q = [l], r = [{ [v]: "Region" }];
|
|
6
|
+
const _data = { version: "1.0", parameters: { Region: h, UseDualStack: i, UseFIPS: i, Endpoint: h }, rules: [{ conditions: [{ [t]: b, [u]: [j] }], rules: [{ conditions: p, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d }, { rules: [{ conditions: q, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d }, { endpoint: { url: j, properties: m, headers: m }, type: e }], type: f }], type: f }, { rules: [{ conditions: [{ [t]: b, [u]: r }], rules: [{ conditions: [{ [t]: "aws.partition", [u]: r, assign: g }], rules: [{ conditions: [k, l], rules: [{ conditions: [{ [t]: c, [u]: [a, n] }, o], rules: [{ rules: [{ endpoint: { url: "https://bedrock-agentcore-control-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d }], type: f }, { conditions: p, rules: [{ conditions: [{ [t]: c, [u]: [n, a] }], rules: [{ rules: [{ endpoint: { url: "https://bedrock-agentcore-control-fips.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "FIPS is enabled but this partition does not support FIPS", type: d }], type: f }, { conditions: q, rules: [{ conditions: [o], rules: [{ rules: [{ endpoint: { url: "https://bedrock-agentcore-control.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "DualStack is enabled but this partition does not support DualStack", type: d }], type: f }, { rules: [{ endpoint: { url: "https://bedrock-agentcore-control.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }], type: f }, { error: "Invalid Configuration: Missing Region", type: d }], type: f }] };
|
|
7
|
+
exports.ruleSet = _data;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BedrockAgentCoreControlServiceException = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
tslib_1.__exportStar(require("./BedrockAgentCoreControlClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./BedrockAgentCoreControl"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./commands"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./pagination"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./waiters"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./models"), exports);
|
|
11
|
+
var BedrockAgentCoreControlServiceException_1 = require("./models/BedrockAgentCoreControlServiceException");
|
|
12
|
+
Object.defineProperty(exports, "BedrockAgentCoreControlServiceException", { enumerable: true, get: function () { return BedrockAgentCoreControlServiceException_1.BedrockAgentCoreControlServiceException; } });
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BedrockAgentCoreControlServiceException = exports.__ServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
+
class BedrockAgentCoreControlServiceException extends smithy_client_1.ServiceException {
|
|
7
|
+
constructor(options) {
|
|
8
|
+
super(options);
|
|
9
|
+
Object.setPrototypeOf(this, BedrockAgentCoreControlServiceException.prototype);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.BedrockAgentCoreControlServiceException = BedrockAgentCoreControlServiceException;
|