@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,428 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EndpointInputConfig,
|
|
15
|
+
EndpointResolvedConfig,
|
|
16
|
+
} from "@smithy/middleware-endpoint";
|
|
17
|
+
import {
|
|
18
|
+
RetryInputConfig,
|
|
19
|
+
RetryResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-retry";
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
|
+
import {
|
|
23
|
+
Client as __Client,
|
|
24
|
+
DefaultsMode as __DefaultsMode,
|
|
25
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
26
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
27
|
+
} from "@smithy/smithy-client";
|
|
28
|
+
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
30
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
StreamCollector as __StreamCollector,
|
|
41
|
+
UrlParser as __UrlParser,
|
|
42
|
+
UserAgent as __UserAgent,
|
|
43
|
+
} from "@smithy/types";
|
|
44
|
+
import {
|
|
45
|
+
HttpAuthSchemeInputConfig,
|
|
46
|
+
HttpAuthSchemeResolvedConfig,
|
|
47
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
CreateAgentRuntimeCommandInput,
|
|
50
|
+
CreateAgentRuntimeCommandOutput,
|
|
51
|
+
} from "./commands/CreateAgentRuntimeCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateAgentRuntimeEndpointCommandInput,
|
|
54
|
+
CreateAgentRuntimeEndpointCommandOutput,
|
|
55
|
+
} from "./commands/CreateAgentRuntimeEndpointCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateApiKeyCredentialProviderCommandInput,
|
|
58
|
+
CreateApiKeyCredentialProviderCommandOutput,
|
|
59
|
+
} from "./commands/CreateApiKeyCredentialProviderCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateBrowserCommandInput,
|
|
62
|
+
CreateBrowserCommandOutput,
|
|
63
|
+
} from "./commands/CreateBrowserCommand";
|
|
64
|
+
import {
|
|
65
|
+
CreateCodeInterpreterCommandInput,
|
|
66
|
+
CreateCodeInterpreterCommandOutput,
|
|
67
|
+
} from "./commands/CreateCodeInterpreterCommand";
|
|
68
|
+
import {
|
|
69
|
+
CreateGatewayCommandInput,
|
|
70
|
+
CreateGatewayCommandOutput,
|
|
71
|
+
} from "./commands/CreateGatewayCommand";
|
|
72
|
+
import {
|
|
73
|
+
CreateGatewayTargetCommandInput,
|
|
74
|
+
CreateGatewayTargetCommandOutput,
|
|
75
|
+
} from "./commands/CreateGatewayTargetCommand";
|
|
76
|
+
import {
|
|
77
|
+
CreateMemoryCommandInput,
|
|
78
|
+
CreateMemoryCommandOutput,
|
|
79
|
+
} from "./commands/CreateMemoryCommand";
|
|
80
|
+
import {
|
|
81
|
+
CreateOauth2CredentialProviderCommandInput,
|
|
82
|
+
CreateOauth2CredentialProviderCommandOutput,
|
|
83
|
+
} from "./commands/CreateOauth2CredentialProviderCommand";
|
|
84
|
+
import {
|
|
85
|
+
CreateWorkloadIdentityCommandInput,
|
|
86
|
+
CreateWorkloadIdentityCommandOutput,
|
|
87
|
+
} from "./commands/CreateWorkloadIdentityCommand";
|
|
88
|
+
import {
|
|
89
|
+
DeleteAgentRuntimeCommandInput,
|
|
90
|
+
DeleteAgentRuntimeCommandOutput,
|
|
91
|
+
} from "./commands/DeleteAgentRuntimeCommand";
|
|
92
|
+
import {
|
|
93
|
+
DeleteAgentRuntimeEndpointCommandInput,
|
|
94
|
+
DeleteAgentRuntimeEndpointCommandOutput,
|
|
95
|
+
} from "./commands/DeleteAgentRuntimeEndpointCommand";
|
|
96
|
+
import {
|
|
97
|
+
DeleteApiKeyCredentialProviderCommandInput,
|
|
98
|
+
DeleteApiKeyCredentialProviderCommandOutput,
|
|
99
|
+
} from "./commands/DeleteApiKeyCredentialProviderCommand";
|
|
100
|
+
import {
|
|
101
|
+
DeleteBrowserCommandInput,
|
|
102
|
+
DeleteBrowserCommandOutput,
|
|
103
|
+
} from "./commands/DeleteBrowserCommand";
|
|
104
|
+
import {
|
|
105
|
+
DeleteCodeInterpreterCommandInput,
|
|
106
|
+
DeleteCodeInterpreterCommandOutput,
|
|
107
|
+
} from "./commands/DeleteCodeInterpreterCommand";
|
|
108
|
+
import {
|
|
109
|
+
DeleteGatewayCommandInput,
|
|
110
|
+
DeleteGatewayCommandOutput,
|
|
111
|
+
} from "./commands/DeleteGatewayCommand";
|
|
112
|
+
import {
|
|
113
|
+
DeleteGatewayTargetCommandInput,
|
|
114
|
+
DeleteGatewayTargetCommandOutput,
|
|
115
|
+
} from "./commands/DeleteGatewayTargetCommand";
|
|
116
|
+
import {
|
|
117
|
+
DeleteMemoryCommandInput,
|
|
118
|
+
DeleteMemoryCommandOutput,
|
|
119
|
+
} from "./commands/DeleteMemoryCommand";
|
|
120
|
+
import {
|
|
121
|
+
DeleteOauth2CredentialProviderCommandInput,
|
|
122
|
+
DeleteOauth2CredentialProviderCommandOutput,
|
|
123
|
+
} from "./commands/DeleteOauth2CredentialProviderCommand";
|
|
124
|
+
import {
|
|
125
|
+
DeleteWorkloadIdentityCommandInput,
|
|
126
|
+
DeleteWorkloadIdentityCommandOutput,
|
|
127
|
+
} from "./commands/DeleteWorkloadIdentityCommand";
|
|
128
|
+
import {
|
|
129
|
+
GetAgentRuntimeCommandInput,
|
|
130
|
+
GetAgentRuntimeCommandOutput,
|
|
131
|
+
} from "./commands/GetAgentRuntimeCommand";
|
|
132
|
+
import {
|
|
133
|
+
GetAgentRuntimeEndpointCommandInput,
|
|
134
|
+
GetAgentRuntimeEndpointCommandOutput,
|
|
135
|
+
} from "./commands/GetAgentRuntimeEndpointCommand";
|
|
136
|
+
import {
|
|
137
|
+
GetApiKeyCredentialProviderCommandInput,
|
|
138
|
+
GetApiKeyCredentialProviderCommandOutput,
|
|
139
|
+
} from "./commands/GetApiKeyCredentialProviderCommand";
|
|
140
|
+
import {
|
|
141
|
+
GetBrowserCommandInput,
|
|
142
|
+
GetBrowserCommandOutput,
|
|
143
|
+
} from "./commands/GetBrowserCommand";
|
|
144
|
+
import {
|
|
145
|
+
GetCodeInterpreterCommandInput,
|
|
146
|
+
GetCodeInterpreterCommandOutput,
|
|
147
|
+
} from "./commands/GetCodeInterpreterCommand";
|
|
148
|
+
import {
|
|
149
|
+
GetGatewayCommandInput,
|
|
150
|
+
GetGatewayCommandOutput,
|
|
151
|
+
} from "./commands/GetGatewayCommand";
|
|
152
|
+
import {
|
|
153
|
+
GetGatewayTargetCommandInput,
|
|
154
|
+
GetGatewayTargetCommandOutput,
|
|
155
|
+
} from "./commands/GetGatewayTargetCommand";
|
|
156
|
+
import {
|
|
157
|
+
GetMemoryCommandInput,
|
|
158
|
+
GetMemoryCommandOutput,
|
|
159
|
+
} from "./commands/GetMemoryCommand";
|
|
160
|
+
import {
|
|
161
|
+
GetOauth2CredentialProviderCommandInput,
|
|
162
|
+
GetOauth2CredentialProviderCommandOutput,
|
|
163
|
+
} from "./commands/GetOauth2CredentialProviderCommand";
|
|
164
|
+
import {
|
|
165
|
+
GetTokenVaultCommandInput,
|
|
166
|
+
GetTokenVaultCommandOutput,
|
|
167
|
+
} from "./commands/GetTokenVaultCommand";
|
|
168
|
+
import {
|
|
169
|
+
GetWorkloadIdentityCommandInput,
|
|
170
|
+
GetWorkloadIdentityCommandOutput,
|
|
171
|
+
} from "./commands/GetWorkloadIdentityCommand";
|
|
172
|
+
import {
|
|
173
|
+
ListAgentRuntimeEndpointsCommandInput,
|
|
174
|
+
ListAgentRuntimeEndpointsCommandOutput,
|
|
175
|
+
} from "./commands/ListAgentRuntimeEndpointsCommand";
|
|
176
|
+
import {
|
|
177
|
+
ListAgentRuntimesCommandInput,
|
|
178
|
+
ListAgentRuntimesCommandOutput,
|
|
179
|
+
} from "./commands/ListAgentRuntimesCommand";
|
|
180
|
+
import {
|
|
181
|
+
ListAgentRuntimeVersionsCommandInput,
|
|
182
|
+
ListAgentRuntimeVersionsCommandOutput,
|
|
183
|
+
} from "./commands/ListAgentRuntimeVersionsCommand";
|
|
184
|
+
import {
|
|
185
|
+
ListApiKeyCredentialProvidersCommandInput,
|
|
186
|
+
ListApiKeyCredentialProvidersCommandOutput,
|
|
187
|
+
} from "./commands/ListApiKeyCredentialProvidersCommand";
|
|
188
|
+
import {
|
|
189
|
+
ListBrowsersCommandInput,
|
|
190
|
+
ListBrowsersCommandOutput,
|
|
191
|
+
} from "./commands/ListBrowsersCommand";
|
|
192
|
+
import {
|
|
193
|
+
ListCodeInterpretersCommandInput,
|
|
194
|
+
ListCodeInterpretersCommandOutput,
|
|
195
|
+
} from "./commands/ListCodeInterpretersCommand";
|
|
196
|
+
import {
|
|
197
|
+
ListGatewaysCommandInput,
|
|
198
|
+
ListGatewaysCommandOutput,
|
|
199
|
+
} from "./commands/ListGatewaysCommand";
|
|
200
|
+
import {
|
|
201
|
+
ListGatewayTargetsCommandInput,
|
|
202
|
+
ListGatewayTargetsCommandOutput,
|
|
203
|
+
} from "./commands/ListGatewayTargetsCommand";
|
|
204
|
+
import {
|
|
205
|
+
ListMemoriesCommandInput,
|
|
206
|
+
ListMemoriesCommandOutput,
|
|
207
|
+
} from "./commands/ListMemoriesCommand";
|
|
208
|
+
import {
|
|
209
|
+
ListOauth2CredentialProvidersCommandInput,
|
|
210
|
+
ListOauth2CredentialProvidersCommandOutput,
|
|
211
|
+
} from "./commands/ListOauth2CredentialProvidersCommand";
|
|
212
|
+
import {
|
|
213
|
+
ListWorkloadIdentitiesCommandInput,
|
|
214
|
+
ListWorkloadIdentitiesCommandOutput,
|
|
215
|
+
} from "./commands/ListWorkloadIdentitiesCommand";
|
|
216
|
+
import {
|
|
217
|
+
SetTokenVaultCMKCommandInput,
|
|
218
|
+
SetTokenVaultCMKCommandOutput,
|
|
219
|
+
} from "./commands/SetTokenVaultCMKCommand";
|
|
220
|
+
import {
|
|
221
|
+
UpdateAgentRuntimeCommandInput,
|
|
222
|
+
UpdateAgentRuntimeCommandOutput,
|
|
223
|
+
} from "./commands/UpdateAgentRuntimeCommand";
|
|
224
|
+
import {
|
|
225
|
+
UpdateAgentRuntimeEndpointCommandInput,
|
|
226
|
+
UpdateAgentRuntimeEndpointCommandOutput,
|
|
227
|
+
} from "./commands/UpdateAgentRuntimeEndpointCommand";
|
|
228
|
+
import {
|
|
229
|
+
UpdateApiKeyCredentialProviderCommandInput,
|
|
230
|
+
UpdateApiKeyCredentialProviderCommandOutput,
|
|
231
|
+
} from "./commands/UpdateApiKeyCredentialProviderCommand";
|
|
232
|
+
import {
|
|
233
|
+
UpdateGatewayCommandInput,
|
|
234
|
+
UpdateGatewayCommandOutput,
|
|
235
|
+
} from "./commands/UpdateGatewayCommand";
|
|
236
|
+
import {
|
|
237
|
+
UpdateGatewayTargetCommandInput,
|
|
238
|
+
UpdateGatewayTargetCommandOutput,
|
|
239
|
+
} from "./commands/UpdateGatewayTargetCommand";
|
|
240
|
+
import {
|
|
241
|
+
UpdateMemoryCommandInput,
|
|
242
|
+
UpdateMemoryCommandOutput,
|
|
243
|
+
} from "./commands/UpdateMemoryCommand";
|
|
244
|
+
import {
|
|
245
|
+
UpdateOauth2CredentialProviderCommandInput,
|
|
246
|
+
UpdateOauth2CredentialProviderCommandOutput,
|
|
247
|
+
} from "./commands/UpdateOauth2CredentialProviderCommand";
|
|
248
|
+
import {
|
|
249
|
+
UpdateWorkloadIdentityCommandInput,
|
|
250
|
+
UpdateWorkloadIdentityCommandOutput,
|
|
251
|
+
} from "./commands/UpdateWorkloadIdentityCommand";
|
|
252
|
+
import {
|
|
253
|
+
ClientInputEndpointParameters,
|
|
254
|
+
ClientResolvedEndpointParameters,
|
|
255
|
+
EndpointParameters,
|
|
256
|
+
} from "./endpoint/EndpointParameters";
|
|
257
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
258
|
+
export { __Client };
|
|
259
|
+
export type ServiceInputTypes =
|
|
260
|
+
| CreateAgentRuntimeCommandInput
|
|
261
|
+
| CreateAgentRuntimeEndpointCommandInput
|
|
262
|
+
| CreateApiKeyCredentialProviderCommandInput
|
|
263
|
+
| CreateBrowserCommandInput
|
|
264
|
+
| CreateCodeInterpreterCommandInput
|
|
265
|
+
| CreateGatewayCommandInput
|
|
266
|
+
| CreateGatewayTargetCommandInput
|
|
267
|
+
| CreateMemoryCommandInput
|
|
268
|
+
| CreateOauth2CredentialProviderCommandInput
|
|
269
|
+
| CreateWorkloadIdentityCommandInput
|
|
270
|
+
| DeleteAgentRuntimeCommandInput
|
|
271
|
+
| DeleteAgentRuntimeEndpointCommandInput
|
|
272
|
+
| DeleteApiKeyCredentialProviderCommandInput
|
|
273
|
+
| DeleteBrowserCommandInput
|
|
274
|
+
| DeleteCodeInterpreterCommandInput
|
|
275
|
+
| DeleteGatewayCommandInput
|
|
276
|
+
| DeleteGatewayTargetCommandInput
|
|
277
|
+
| DeleteMemoryCommandInput
|
|
278
|
+
| DeleteOauth2CredentialProviderCommandInput
|
|
279
|
+
| DeleteWorkloadIdentityCommandInput
|
|
280
|
+
| GetAgentRuntimeCommandInput
|
|
281
|
+
| GetAgentRuntimeEndpointCommandInput
|
|
282
|
+
| GetApiKeyCredentialProviderCommandInput
|
|
283
|
+
| GetBrowserCommandInput
|
|
284
|
+
| GetCodeInterpreterCommandInput
|
|
285
|
+
| GetGatewayCommandInput
|
|
286
|
+
| GetGatewayTargetCommandInput
|
|
287
|
+
| GetMemoryCommandInput
|
|
288
|
+
| GetOauth2CredentialProviderCommandInput
|
|
289
|
+
| GetTokenVaultCommandInput
|
|
290
|
+
| GetWorkloadIdentityCommandInput
|
|
291
|
+
| ListAgentRuntimeEndpointsCommandInput
|
|
292
|
+
| ListAgentRuntimeVersionsCommandInput
|
|
293
|
+
| ListAgentRuntimesCommandInput
|
|
294
|
+
| ListApiKeyCredentialProvidersCommandInput
|
|
295
|
+
| ListBrowsersCommandInput
|
|
296
|
+
| ListCodeInterpretersCommandInput
|
|
297
|
+
| ListGatewayTargetsCommandInput
|
|
298
|
+
| ListGatewaysCommandInput
|
|
299
|
+
| ListMemoriesCommandInput
|
|
300
|
+
| ListOauth2CredentialProvidersCommandInput
|
|
301
|
+
| ListWorkloadIdentitiesCommandInput
|
|
302
|
+
| SetTokenVaultCMKCommandInput
|
|
303
|
+
| UpdateAgentRuntimeCommandInput
|
|
304
|
+
| UpdateAgentRuntimeEndpointCommandInput
|
|
305
|
+
| UpdateApiKeyCredentialProviderCommandInput
|
|
306
|
+
| UpdateGatewayCommandInput
|
|
307
|
+
| UpdateGatewayTargetCommandInput
|
|
308
|
+
| UpdateMemoryCommandInput
|
|
309
|
+
| UpdateOauth2CredentialProviderCommandInput
|
|
310
|
+
| UpdateWorkloadIdentityCommandInput;
|
|
311
|
+
export type ServiceOutputTypes =
|
|
312
|
+
| CreateAgentRuntimeCommandOutput
|
|
313
|
+
| CreateAgentRuntimeEndpointCommandOutput
|
|
314
|
+
| CreateApiKeyCredentialProviderCommandOutput
|
|
315
|
+
| CreateBrowserCommandOutput
|
|
316
|
+
| CreateCodeInterpreterCommandOutput
|
|
317
|
+
| CreateGatewayCommandOutput
|
|
318
|
+
| CreateGatewayTargetCommandOutput
|
|
319
|
+
| CreateMemoryCommandOutput
|
|
320
|
+
| CreateOauth2CredentialProviderCommandOutput
|
|
321
|
+
| CreateWorkloadIdentityCommandOutput
|
|
322
|
+
| DeleteAgentRuntimeCommandOutput
|
|
323
|
+
| DeleteAgentRuntimeEndpointCommandOutput
|
|
324
|
+
| DeleteApiKeyCredentialProviderCommandOutput
|
|
325
|
+
| DeleteBrowserCommandOutput
|
|
326
|
+
| DeleteCodeInterpreterCommandOutput
|
|
327
|
+
| DeleteGatewayCommandOutput
|
|
328
|
+
| DeleteGatewayTargetCommandOutput
|
|
329
|
+
| DeleteMemoryCommandOutput
|
|
330
|
+
| DeleteOauth2CredentialProviderCommandOutput
|
|
331
|
+
| DeleteWorkloadIdentityCommandOutput
|
|
332
|
+
| GetAgentRuntimeCommandOutput
|
|
333
|
+
| GetAgentRuntimeEndpointCommandOutput
|
|
334
|
+
| GetApiKeyCredentialProviderCommandOutput
|
|
335
|
+
| GetBrowserCommandOutput
|
|
336
|
+
| GetCodeInterpreterCommandOutput
|
|
337
|
+
| GetGatewayCommandOutput
|
|
338
|
+
| GetGatewayTargetCommandOutput
|
|
339
|
+
| GetMemoryCommandOutput
|
|
340
|
+
| GetOauth2CredentialProviderCommandOutput
|
|
341
|
+
| GetTokenVaultCommandOutput
|
|
342
|
+
| GetWorkloadIdentityCommandOutput
|
|
343
|
+
| ListAgentRuntimeEndpointsCommandOutput
|
|
344
|
+
| ListAgentRuntimeVersionsCommandOutput
|
|
345
|
+
| ListAgentRuntimesCommandOutput
|
|
346
|
+
| ListApiKeyCredentialProvidersCommandOutput
|
|
347
|
+
| ListBrowsersCommandOutput
|
|
348
|
+
| ListCodeInterpretersCommandOutput
|
|
349
|
+
| ListGatewayTargetsCommandOutput
|
|
350
|
+
| ListGatewaysCommandOutput
|
|
351
|
+
| ListMemoriesCommandOutput
|
|
352
|
+
| ListOauth2CredentialProvidersCommandOutput
|
|
353
|
+
| ListWorkloadIdentitiesCommandOutput
|
|
354
|
+
| SetTokenVaultCMKCommandOutput
|
|
355
|
+
| UpdateAgentRuntimeCommandOutput
|
|
356
|
+
| UpdateAgentRuntimeEndpointCommandOutput
|
|
357
|
+
| UpdateApiKeyCredentialProviderCommandOutput
|
|
358
|
+
| UpdateGatewayCommandOutput
|
|
359
|
+
| UpdateGatewayTargetCommandOutput
|
|
360
|
+
| UpdateMemoryCommandOutput
|
|
361
|
+
| UpdateOauth2CredentialProviderCommandOutput
|
|
362
|
+
| UpdateWorkloadIdentityCommandOutput;
|
|
363
|
+
export interface ClientDefaults
|
|
364
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
365
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
366
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
367
|
+
urlParser?: __UrlParser;
|
|
368
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
369
|
+
streamCollector?: __StreamCollector;
|
|
370
|
+
base64Decoder?: __Decoder;
|
|
371
|
+
base64Encoder?: __Encoder;
|
|
372
|
+
utf8Decoder?: __Decoder;
|
|
373
|
+
utf8Encoder?: __Encoder;
|
|
374
|
+
runtime?: string;
|
|
375
|
+
disableHostPrefix?: boolean;
|
|
376
|
+
serviceId?: string;
|
|
377
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
378
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
379
|
+
region?: string | __Provider<string>;
|
|
380
|
+
profile?: string;
|
|
381
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
382
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
383
|
+
maxAttempts?: number | __Provider<number>;
|
|
384
|
+
retryMode?: string | __Provider<string>;
|
|
385
|
+
logger?: __Logger;
|
|
386
|
+
extensions?: RuntimeExtension[];
|
|
387
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
388
|
+
}
|
|
389
|
+
export type BedrockAgentCoreControlClientConfigType = Partial<
|
|
390
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
391
|
+
> &
|
|
392
|
+
ClientDefaults &
|
|
393
|
+
UserAgentInputConfig &
|
|
394
|
+
RetryInputConfig &
|
|
395
|
+
RegionInputConfig &
|
|
396
|
+
HostHeaderInputConfig &
|
|
397
|
+
EndpointInputConfig<EndpointParameters> &
|
|
398
|
+
HttpAuthSchemeInputConfig &
|
|
399
|
+
ClientInputEndpointParameters;
|
|
400
|
+
export interface BedrockAgentCoreControlClientConfig
|
|
401
|
+
extends BedrockAgentCoreControlClientConfigType {}
|
|
402
|
+
export type BedrockAgentCoreControlClientResolvedConfigType =
|
|
403
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
404
|
+
Required<ClientDefaults> &
|
|
405
|
+
RuntimeExtensionsConfig &
|
|
406
|
+
UserAgentResolvedConfig &
|
|
407
|
+
RetryResolvedConfig &
|
|
408
|
+
RegionResolvedConfig &
|
|
409
|
+
HostHeaderResolvedConfig &
|
|
410
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
411
|
+
HttpAuthSchemeResolvedConfig &
|
|
412
|
+
ClientResolvedEndpointParameters;
|
|
413
|
+
export interface BedrockAgentCoreControlClientResolvedConfig
|
|
414
|
+
extends BedrockAgentCoreControlClientResolvedConfigType {}
|
|
415
|
+
export declare class BedrockAgentCoreControlClient extends __Client<
|
|
416
|
+
__HttpHandlerOptions,
|
|
417
|
+
ServiceInputTypes,
|
|
418
|
+
ServiceOutputTypes,
|
|
419
|
+
BedrockAgentCoreControlClientResolvedConfig
|
|
420
|
+
> {
|
|
421
|
+
readonly config: BedrockAgentCoreControlClientResolvedConfig;
|
|
422
|
+
constructor(
|
|
423
|
+
...[
|
|
424
|
+
configuration,
|
|
425
|
+
]: __CheckOptionalClientConfig<BedrockAgentCoreControlClientConfig>
|
|
426
|
+
);
|
|
427
|
+
destroy(): void;
|
|
428
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { BedrockAgentCoreControlHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: BedrockAgentCoreControlHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
Provider,
|
|
13
|
+
} from "@smithy/types";
|
|
14
|
+
import { BedrockAgentCoreControlClientResolvedConfig } from "../BedrockAgentCoreControlClient";
|
|
15
|
+
export interface BedrockAgentCoreControlHttpAuthSchemeParameters
|
|
16
|
+
extends HttpAuthSchemeParameters {
|
|
17
|
+
region?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface BedrockAgentCoreControlHttpAuthSchemeParametersProvider
|
|
20
|
+
extends HttpAuthSchemeParametersProvider<
|
|
21
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
22
|
+
HandlerExecutionContext,
|
|
23
|
+
BedrockAgentCoreControlHttpAuthSchemeParameters,
|
|
24
|
+
object
|
|
25
|
+
> {}
|
|
26
|
+
export declare const defaultBedrockAgentCoreControlHttpAuthSchemeParametersProvider: (
|
|
27
|
+
config: BedrockAgentCoreControlClientResolvedConfig,
|
|
28
|
+
context: HandlerExecutionContext,
|
|
29
|
+
input: object
|
|
30
|
+
) => Promise<BedrockAgentCoreControlHttpAuthSchemeParameters>;
|
|
31
|
+
export interface BedrockAgentCoreControlHttpAuthSchemeProvider
|
|
32
|
+
extends HttpAuthSchemeProvider<BedrockAgentCoreControlHttpAuthSchemeParameters> {}
|
|
33
|
+
export declare const defaultBedrockAgentCoreControlHttpAuthSchemeProvider: BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
34
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
|
+
httpAuthSchemeProvider?: BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
38
|
+
}
|
|
39
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
42
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
|
+
readonly httpAuthSchemeProvider: BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
44
|
+
}
|
|
45
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
47
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateAgentRuntimeRequest,
|
|
10
|
+
CreateAgentRuntimeResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateAgentRuntimeCommandInput
|
|
15
|
+
extends CreateAgentRuntimeRequest {}
|
|
16
|
+
export interface CreateAgentRuntimeCommandOutput
|
|
17
|
+
extends CreateAgentRuntimeResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateAgentRuntimeCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateAgentRuntimeCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateAgentRuntimeCommandInput,
|
|
24
|
+
CreateAgentRuntimeCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateAgentRuntimeCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateAgentRuntimeCommandInput,
|
|
33
|
+
CreateAgentRuntimeCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateAgentRuntimeCommand extends CreateAgentRuntimeCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateAgentRuntimeRequest;
|
|
44
|
+
output: CreateAgentRuntimeResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateAgentRuntimeCommandInput;
|
|
48
|
+
output: CreateAgentRuntimeCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateAgentRuntimeEndpointRequest,
|
|
10
|
+
CreateAgentRuntimeEndpointResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateAgentRuntimeEndpointCommandInput
|
|
15
|
+
extends CreateAgentRuntimeEndpointRequest {}
|
|
16
|
+
export interface CreateAgentRuntimeEndpointCommandOutput
|
|
17
|
+
extends CreateAgentRuntimeEndpointResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateAgentRuntimeEndpointCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateAgentRuntimeEndpointCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateAgentRuntimeEndpointCommandInput,
|
|
24
|
+
CreateAgentRuntimeEndpointCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateAgentRuntimeEndpointCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateAgentRuntimeEndpointCommandInput,
|
|
33
|
+
CreateAgentRuntimeEndpointCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateAgentRuntimeEndpointCommand extends CreateAgentRuntimeEndpointCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateAgentRuntimeEndpointRequest;
|
|
44
|
+
output: CreateAgentRuntimeEndpointResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateAgentRuntimeEndpointCommandInput;
|
|
48
|
+
output: CreateAgentRuntimeEndpointCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateApiKeyCredentialProviderRequest,
|
|
10
|
+
CreateApiKeyCredentialProviderResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateApiKeyCredentialProviderCommandInput
|
|
15
|
+
extends CreateApiKeyCredentialProviderRequest {}
|
|
16
|
+
export interface CreateApiKeyCredentialProviderCommandOutput
|
|
17
|
+
extends CreateApiKeyCredentialProviderResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateApiKeyCredentialProviderCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateApiKeyCredentialProviderCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateApiKeyCredentialProviderCommandInput,
|
|
24
|
+
CreateApiKeyCredentialProviderCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateApiKeyCredentialProviderCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateApiKeyCredentialProviderCommandInput,
|
|
33
|
+
CreateApiKeyCredentialProviderCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateApiKeyCredentialProviderCommand extends CreateApiKeyCredentialProviderCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateApiKeyCredentialProviderRequest;
|
|
44
|
+
output: CreateApiKeyCredentialProviderResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateApiKeyCredentialProviderCommandInput;
|
|
48
|
+
output: CreateApiKeyCredentialProviderCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|