@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
package/README.md
ADDED
|
@@ -0,0 +1,616 @@
|
|
|
1
|
+
<!-- generated file, do not edit directly -->
|
|
2
|
+
|
|
3
|
+
# @aws-sdk/client-bedrock-agentcore-control
|
|
4
|
+
|
|
5
|
+
## Description
|
|
6
|
+
|
|
7
|
+
AWS SDK for JavaScript BedrockAgentCoreControl Client for Node.js, Browser and React Native.
|
|
8
|
+
|
|
9
|
+
<note> <p>Amazon Bedrock AgentCore is in preview release and is subject to change.</p> </note> <p>Amazon Bedrock Agent Core Control is a service that enables you to manage memory resources for your Amazon Bedrock agents.</p> <p>Use this API to create, retrieve, update, and delete memory resources and their associated memory strategies. Memory resources enable your agents to store and retrieve information from conversations and interactions.</p>
|
|
10
|
+
|
|
11
|
+
## Installing
|
|
12
|
+
|
|
13
|
+
To install this package, simply type add or install @aws-sdk/client-bedrock-agentcore-control
|
|
14
|
+
using your favorite package manager:
|
|
15
|
+
|
|
16
|
+
- `npm install @aws-sdk/client-bedrock-agentcore-control`
|
|
17
|
+
- `yarn add @aws-sdk/client-bedrock-agentcore-control`
|
|
18
|
+
- `pnpm add @aws-sdk/client-bedrock-agentcore-control`
|
|
19
|
+
|
|
20
|
+
## Getting Started
|
|
21
|
+
|
|
22
|
+
### Import
|
|
23
|
+
|
|
24
|
+
The AWS SDK is modulized by clients and commands.
|
|
25
|
+
To send a request, you only need to import the `BedrockAgentCoreControlClient` and
|
|
26
|
+
the commands you need, for example `ListAgentRuntimesCommand`:
|
|
27
|
+
|
|
28
|
+
```js
|
|
29
|
+
// ES5 example
|
|
30
|
+
const {
|
|
31
|
+
BedrockAgentCoreControlClient,
|
|
32
|
+
ListAgentRuntimesCommand,
|
|
33
|
+
} = require("@aws-sdk/client-bedrock-agentcore-control");
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
```ts
|
|
37
|
+
// ES6+ example
|
|
38
|
+
import { BedrockAgentCoreControlClient, ListAgentRuntimesCommand } from "@aws-sdk/client-bedrock-agentcore-control";
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Usage
|
|
42
|
+
|
|
43
|
+
To send a request, you:
|
|
44
|
+
|
|
45
|
+
- Initiate client with configuration (e.g. credentials, region).
|
|
46
|
+
- Initiate command with input parameters.
|
|
47
|
+
- Call `send` operation on client with command object as input.
|
|
48
|
+
- If you are using a custom http handler, you may call `destroy()` to close open connections.
|
|
49
|
+
|
|
50
|
+
```js
|
|
51
|
+
// a client can be shared by different commands.
|
|
52
|
+
const client = new BedrockAgentCoreControlClient({ region: "REGION" });
|
|
53
|
+
|
|
54
|
+
const params = {
|
|
55
|
+
/** input parameters */
|
|
56
|
+
};
|
|
57
|
+
const command = new ListAgentRuntimesCommand(params);
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
#### Async/await
|
|
61
|
+
|
|
62
|
+
We recommend using [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
|
|
63
|
+
operator to wait for the promise returned by send operation as follows:
|
|
64
|
+
|
|
65
|
+
```js
|
|
66
|
+
// async/await.
|
|
67
|
+
try {
|
|
68
|
+
const data = await client.send(command);
|
|
69
|
+
// process data.
|
|
70
|
+
} catch (error) {
|
|
71
|
+
// error handling.
|
|
72
|
+
} finally {
|
|
73
|
+
// finally.
|
|
74
|
+
}
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Async-await is clean, concise, intuitive, easy to debug and has better error handling
|
|
78
|
+
as compared to using Promise chains or callbacks.
|
|
79
|
+
|
|
80
|
+
#### Promises
|
|
81
|
+
|
|
82
|
+
You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining)
|
|
83
|
+
to execute send operation.
|
|
84
|
+
|
|
85
|
+
```js
|
|
86
|
+
client.send(command).then(
|
|
87
|
+
(data) => {
|
|
88
|
+
// process data.
|
|
89
|
+
},
|
|
90
|
+
(error) => {
|
|
91
|
+
// error handling.
|
|
92
|
+
}
|
|
93
|
+
);
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Promises can also be called using `.catch()` and `.finally()` as follows:
|
|
97
|
+
|
|
98
|
+
```js
|
|
99
|
+
client
|
|
100
|
+
.send(command)
|
|
101
|
+
.then((data) => {
|
|
102
|
+
// process data.
|
|
103
|
+
})
|
|
104
|
+
.catch((error) => {
|
|
105
|
+
// error handling.
|
|
106
|
+
})
|
|
107
|
+
.finally(() => {
|
|
108
|
+
// finally.
|
|
109
|
+
});
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
#### Callbacks
|
|
113
|
+
|
|
114
|
+
We do not recommend using callbacks because of [callback hell](http://callbackhell.com/),
|
|
115
|
+
but they are supported by the send operation.
|
|
116
|
+
|
|
117
|
+
```js
|
|
118
|
+
// callbacks.
|
|
119
|
+
client.send(command, (err, data) => {
|
|
120
|
+
// process err and data.
|
|
121
|
+
});
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
#### v2 compatible style
|
|
125
|
+
|
|
126
|
+
The client can also send requests using v2 compatible style.
|
|
127
|
+
However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post
|
|
128
|
+
on [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/)
|
|
129
|
+
|
|
130
|
+
```ts
|
|
131
|
+
import * as AWS from "@aws-sdk/client-bedrock-agentcore-control";
|
|
132
|
+
const client = new AWS.BedrockAgentCoreControl({ region: "REGION" });
|
|
133
|
+
|
|
134
|
+
// async/await.
|
|
135
|
+
try {
|
|
136
|
+
const data = await client.listAgentRuntimes(params);
|
|
137
|
+
// process data.
|
|
138
|
+
} catch (error) {
|
|
139
|
+
// error handling.
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
// Promises.
|
|
143
|
+
client
|
|
144
|
+
.listAgentRuntimes(params)
|
|
145
|
+
.then((data) => {
|
|
146
|
+
// process data.
|
|
147
|
+
})
|
|
148
|
+
.catch((error) => {
|
|
149
|
+
// error handling.
|
|
150
|
+
});
|
|
151
|
+
|
|
152
|
+
// callbacks.
|
|
153
|
+
client.listAgentRuntimes(params, (err, data) => {
|
|
154
|
+
// process err and data.
|
|
155
|
+
});
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
### Troubleshooting
|
|
159
|
+
|
|
160
|
+
When the service returns an exception, the error will include the exception information,
|
|
161
|
+
as well as response metadata (e.g. request id).
|
|
162
|
+
|
|
163
|
+
```js
|
|
164
|
+
try {
|
|
165
|
+
const data = await client.send(command);
|
|
166
|
+
// process data.
|
|
167
|
+
} catch (error) {
|
|
168
|
+
const { requestId, cfId, extendedRequestId } = error.$metadata;
|
|
169
|
+
console.log({ requestId, cfId, extendedRequestId });
|
|
170
|
+
/**
|
|
171
|
+
* The keys within exceptions are also parsed.
|
|
172
|
+
* You can access them by specifying exception names:
|
|
173
|
+
* if (error.name === 'SomeServiceException') {
|
|
174
|
+
* const value = error.specialKeyInException;
|
|
175
|
+
* }
|
|
176
|
+
*/
|
|
177
|
+
}
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
## Getting Help
|
|
181
|
+
|
|
182
|
+
Please use these community resources for getting help.
|
|
183
|
+
We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
|
|
184
|
+
|
|
185
|
+
- Visit [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
|
|
186
|
+
or [API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/index.html).
|
|
187
|
+
- Check out the blog posts tagged with [`aws-sdk-js`](https://aws.amazon.com/blogs/developer/tag/aws-sdk-js/)
|
|
188
|
+
on AWS Developer Blog.
|
|
189
|
+
- Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js`.
|
|
190
|
+
- Join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3).
|
|
191
|
+
- If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues/new/choose).
|
|
192
|
+
|
|
193
|
+
To test your universal JavaScript code in Node.js, browser and react-native environments,
|
|
194
|
+
visit our [code samples repo](https://github.com/aws-samples/aws-sdk-js-tests).
|
|
195
|
+
|
|
196
|
+
## Contributing
|
|
197
|
+
|
|
198
|
+
This client code is generated automatically. Any modifications will be overwritten the next time the `@aws-sdk/client-bedrock-agentcore-control` package is updated.
|
|
199
|
+
To contribute to client you can check our [generate clients scripts](https://github.com/aws/aws-sdk-js-v3/tree/main/scripts/generate-clients).
|
|
200
|
+
|
|
201
|
+
## License
|
|
202
|
+
|
|
203
|
+
This SDK is distributed under the
|
|
204
|
+
[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0),
|
|
205
|
+
see LICENSE for more information.
|
|
206
|
+
|
|
207
|
+
## Client Commands (Operations List)
|
|
208
|
+
|
|
209
|
+
<details>
|
|
210
|
+
<summary>
|
|
211
|
+
CreateAgentRuntime
|
|
212
|
+
</summary>
|
|
213
|
+
|
|
214
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/CreateAgentRuntimeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateAgentRuntimeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateAgentRuntimeCommandOutput/)
|
|
215
|
+
|
|
216
|
+
</details>
|
|
217
|
+
<details>
|
|
218
|
+
<summary>
|
|
219
|
+
CreateAgentRuntimeEndpoint
|
|
220
|
+
</summary>
|
|
221
|
+
|
|
222
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/CreateAgentRuntimeEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateAgentRuntimeEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateAgentRuntimeEndpointCommandOutput/)
|
|
223
|
+
|
|
224
|
+
</details>
|
|
225
|
+
<details>
|
|
226
|
+
<summary>
|
|
227
|
+
CreateApiKeyCredentialProvider
|
|
228
|
+
</summary>
|
|
229
|
+
|
|
230
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/CreateApiKeyCredentialProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateApiKeyCredentialProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateApiKeyCredentialProviderCommandOutput/)
|
|
231
|
+
|
|
232
|
+
</details>
|
|
233
|
+
<details>
|
|
234
|
+
<summary>
|
|
235
|
+
CreateBrowser
|
|
236
|
+
</summary>
|
|
237
|
+
|
|
238
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/CreateBrowserCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateBrowserCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateBrowserCommandOutput/)
|
|
239
|
+
|
|
240
|
+
</details>
|
|
241
|
+
<details>
|
|
242
|
+
<summary>
|
|
243
|
+
CreateCodeInterpreter
|
|
244
|
+
</summary>
|
|
245
|
+
|
|
246
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/CreateCodeInterpreterCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateCodeInterpreterCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateCodeInterpreterCommandOutput/)
|
|
247
|
+
|
|
248
|
+
</details>
|
|
249
|
+
<details>
|
|
250
|
+
<summary>
|
|
251
|
+
CreateGateway
|
|
252
|
+
</summary>
|
|
253
|
+
|
|
254
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/CreateGatewayCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateGatewayCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateGatewayCommandOutput/)
|
|
255
|
+
|
|
256
|
+
</details>
|
|
257
|
+
<details>
|
|
258
|
+
<summary>
|
|
259
|
+
CreateGatewayTarget
|
|
260
|
+
</summary>
|
|
261
|
+
|
|
262
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/CreateGatewayTargetCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateGatewayTargetCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateGatewayTargetCommandOutput/)
|
|
263
|
+
|
|
264
|
+
</details>
|
|
265
|
+
<details>
|
|
266
|
+
<summary>
|
|
267
|
+
CreateMemory
|
|
268
|
+
</summary>
|
|
269
|
+
|
|
270
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/CreateMemoryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateMemoryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateMemoryCommandOutput/)
|
|
271
|
+
|
|
272
|
+
</details>
|
|
273
|
+
<details>
|
|
274
|
+
<summary>
|
|
275
|
+
CreateOauth2CredentialProvider
|
|
276
|
+
</summary>
|
|
277
|
+
|
|
278
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/CreateOauth2CredentialProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateOauth2CredentialProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateOauth2CredentialProviderCommandOutput/)
|
|
279
|
+
|
|
280
|
+
</details>
|
|
281
|
+
<details>
|
|
282
|
+
<summary>
|
|
283
|
+
CreateWorkloadIdentity
|
|
284
|
+
</summary>
|
|
285
|
+
|
|
286
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/CreateWorkloadIdentityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateWorkloadIdentityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateWorkloadIdentityCommandOutput/)
|
|
287
|
+
|
|
288
|
+
</details>
|
|
289
|
+
<details>
|
|
290
|
+
<summary>
|
|
291
|
+
DeleteAgentRuntime
|
|
292
|
+
</summary>
|
|
293
|
+
|
|
294
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/DeleteAgentRuntimeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteAgentRuntimeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteAgentRuntimeCommandOutput/)
|
|
295
|
+
|
|
296
|
+
</details>
|
|
297
|
+
<details>
|
|
298
|
+
<summary>
|
|
299
|
+
DeleteAgentRuntimeEndpoint
|
|
300
|
+
</summary>
|
|
301
|
+
|
|
302
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/DeleteAgentRuntimeEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteAgentRuntimeEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteAgentRuntimeEndpointCommandOutput/)
|
|
303
|
+
|
|
304
|
+
</details>
|
|
305
|
+
<details>
|
|
306
|
+
<summary>
|
|
307
|
+
DeleteApiKeyCredentialProvider
|
|
308
|
+
</summary>
|
|
309
|
+
|
|
310
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/DeleteApiKeyCredentialProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteApiKeyCredentialProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteApiKeyCredentialProviderCommandOutput/)
|
|
311
|
+
|
|
312
|
+
</details>
|
|
313
|
+
<details>
|
|
314
|
+
<summary>
|
|
315
|
+
DeleteBrowser
|
|
316
|
+
</summary>
|
|
317
|
+
|
|
318
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/DeleteBrowserCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteBrowserCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteBrowserCommandOutput/)
|
|
319
|
+
|
|
320
|
+
</details>
|
|
321
|
+
<details>
|
|
322
|
+
<summary>
|
|
323
|
+
DeleteCodeInterpreter
|
|
324
|
+
</summary>
|
|
325
|
+
|
|
326
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/DeleteCodeInterpreterCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteCodeInterpreterCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteCodeInterpreterCommandOutput/)
|
|
327
|
+
|
|
328
|
+
</details>
|
|
329
|
+
<details>
|
|
330
|
+
<summary>
|
|
331
|
+
DeleteGateway
|
|
332
|
+
</summary>
|
|
333
|
+
|
|
334
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/DeleteGatewayCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteGatewayCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteGatewayCommandOutput/)
|
|
335
|
+
|
|
336
|
+
</details>
|
|
337
|
+
<details>
|
|
338
|
+
<summary>
|
|
339
|
+
DeleteGatewayTarget
|
|
340
|
+
</summary>
|
|
341
|
+
|
|
342
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/DeleteGatewayTargetCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteGatewayTargetCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteGatewayTargetCommandOutput/)
|
|
343
|
+
|
|
344
|
+
</details>
|
|
345
|
+
<details>
|
|
346
|
+
<summary>
|
|
347
|
+
DeleteMemory
|
|
348
|
+
</summary>
|
|
349
|
+
|
|
350
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/DeleteMemoryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteMemoryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteMemoryCommandOutput/)
|
|
351
|
+
|
|
352
|
+
</details>
|
|
353
|
+
<details>
|
|
354
|
+
<summary>
|
|
355
|
+
DeleteOauth2CredentialProvider
|
|
356
|
+
</summary>
|
|
357
|
+
|
|
358
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/DeleteOauth2CredentialProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteOauth2CredentialProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteOauth2CredentialProviderCommandOutput/)
|
|
359
|
+
|
|
360
|
+
</details>
|
|
361
|
+
<details>
|
|
362
|
+
<summary>
|
|
363
|
+
DeleteWorkloadIdentity
|
|
364
|
+
</summary>
|
|
365
|
+
|
|
366
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/DeleteWorkloadIdentityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteWorkloadIdentityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteWorkloadIdentityCommandOutput/)
|
|
367
|
+
|
|
368
|
+
</details>
|
|
369
|
+
<details>
|
|
370
|
+
<summary>
|
|
371
|
+
GetAgentRuntime
|
|
372
|
+
</summary>
|
|
373
|
+
|
|
374
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetAgentRuntimeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetAgentRuntimeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetAgentRuntimeCommandOutput/)
|
|
375
|
+
|
|
376
|
+
</details>
|
|
377
|
+
<details>
|
|
378
|
+
<summary>
|
|
379
|
+
GetAgentRuntimeEndpoint
|
|
380
|
+
</summary>
|
|
381
|
+
|
|
382
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetAgentRuntimeEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetAgentRuntimeEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetAgentRuntimeEndpointCommandOutput/)
|
|
383
|
+
|
|
384
|
+
</details>
|
|
385
|
+
<details>
|
|
386
|
+
<summary>
|
|
387
|
+
GetApiKeyCredentialProvider
|
|
388
|
+
</summary>
|
|
389
|
+
|
|
390
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetApiKeyCredentialProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetApiKeyCredentialProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetApiKeyCredentialProviderCommandOutput/)
|
|
391
|
+
|
|
392
|
+
</details>
|
|
393
|
+
<details>
|
|
394
|
+
<summary>
|
|
395
|
+
GetBrowser
|
|
396
|
+
</summary>
|
|
397
|
+
|
|
398
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetBrowserCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetBrowserCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetBrowserCommandOutput/)
|
|
399
|
+
|
|
400
|
+
</details>
|
|
401
|
+
<details>
|
|
402
|
+
<summary>
|
|
403
|
+
GetCodeInterpreter
|
|
404
|
+
</summary>
|
|
405
|
+
|
|
406
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetCodeInterpreterCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetCodeInterpreterCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetCodeInterpreterCommandOutput/)
|
|
407
|
+
|
|
408
|
+
</details>
|
|
409
|
+
<details>
|
|
410
|
+
<summary>
|
|
411
|
+
GetGateway
|
|
412
|
+
</summary>
|
|
413
|
+
|
|
414
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetGatewayCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetGatewayCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetGatewayCommandOutput/)
|
|
415
|
+
|
|
416
|
+
</details>
|
|
417
|
+
<details>
|
|
418
|
+
<summary>
|
|
419
|
+
GetGatewayTarget
|
|
420
|
+
</summary>
|
|
421
|
+
|
|
422
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetGatewayTargetCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetGatewayTargetCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetGatewayTargetCommandOutput/)
|
|
423
|
+
|
|
424
|
+
</details>
|
|
425
|
+
<details>
|
|
426
|
+
<summary>
|
|
427
|
+
GetMemory
|
|
428
|
+
</summary>
|
|
429
|
+
|
|
430
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetMemoryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetMemoryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetMemoryCommandOutput/)
|
|
431
|
+
|
|
432
|
+
</details>
|
|
433
|
+
<details>
|
|
434
|
+
<summary>
|
|
435
|
+
GetOauth2CredentialProvider
|
|
436
|
+
</summary>
|
|
437
|
+
|
|
438
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetOauth2CredentialProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetOauth2CredentialProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetOauth2CredentialProviderCommandOutput/)
|
|
439
|
+
|
|
440
|
+
</details>
|
|
441
|
+
<details>
|
|
442
|
+
<summary>
|
|
443
|
+
GetTokenVault
|
|
444
|
+
</summary>
|
|
445
|
+
|
|
446
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetTokenVaultCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetTokenVaultCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetTokenVaultCommandOutput/)
|
|
447
|
+
|
|
448
|
+
</details>
|
|
449
|
+
<details>
|
|
450
|
+
<summary>
|
|
451
|
+
GetWorkloadIdentity
|
|
452
|
+
</summary>
|
|
453
|
+
|
|
454
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetWorkloadIdentityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetWorkloadIdentityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetWorkloadIdentityCommandOutput/)
|
|
455
|
+
|
|
456
|
+
</details>
|
|
457
|
+
<details>
|
|
458
|
+
<summary>
|
|
459
|
+
ListAgentRuntimeEndpoints
|
|
460
|
+
</summary>
|
|
461
|
+
|
|
462
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListAgentRuntimeEndpointsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListAgentRuntimeEndpointsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListAgentRuntimeEndpointsCommandOutput/)
|
|
463
|
+
|
|
464
|
+
</details>
|
|
465
|
+
<details>
|
|
466
|
+
<summary>
|
|
467
|
+
ListAgentRuntimes
|
|
468
|
+
</summary>
|
|
469
|
+
|
|
470
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListAgentRuntimesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListAgentRuntimesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListAgentRuntimesCommandOutput/)
|
|
471
|
+
|
|
472
|
+
</details>
|
|
473
|
+
<details>
|
|
474
|
+
<summary>
|
|
475
|
+
ListAgentRuntimeVersions
|
|
476
|
+
</summary>
|
|
477
|
+
|
|
478
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListAgentRuntimeVersionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListAgentRuntimeVersionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListAgentRuntimeVersionsCommandOutput/)
|
|
479
|
+
|
|
480
|
+
</details>
|
|
481
|
+
<details>
|
|
482
|
+
<summary>
|
|
483
|
+
ListApiKeyCredentialProviders
|
|
484
|
+
</summary>
|
|
485
|
+
|
|
486
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListApiKeyCredentialProvidersCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListApiKeyCredentialProvidersCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListApiKeyCredentialProvidersCommandOutput/)
|
|
487
|
+
|
|
488
|
+
</details>
|
|
489
|
+
<details>
|
|
490
|
+
<summary>
|
|
491
|
+
ListBrowsers
|
|
492
|
+
</summary>
|
|
493
|
+
|
|
494
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListBrowsersCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListBrowsersCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListBrowsersCommandOutput/)
|
|
495
|
+
|
|
496
|
+
</details>
|
|
497
|
+
<details>
|
|
498
|
+
<summary>
|
|
499
|
+
ListCodeInterpreters
|
|
500
|
+
</summary>
|
|
501
|
+
|
|
502
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListCodeInterpretersCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListCodeInterpretersCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListCodeInterpretersCommandOutput/)
|
|
503
|
+
|
|
504
|
+
</details>
|
|
505
|
+
<details>
|
|
506
|
+
<summary>
|
|
507
|
+
ListGateways
|
|
508
|
+
</summary>
|
|
509
|
+
|
|
510
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListGatewaysCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListGatewaysCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListGatewaysCommandOutput/)
|
|
511
|
+
|
|
512
|
+
</details>
|
|
513
|
+
<details>
|
|
514
|
+
<summary>
|
|
515
|
+
ListGatewayTargets
|
|
516
|
+
</summary>
|
|
517
|
+
|
|
518
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListGatewayTargetsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListGatewayTargetsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListGatewayTargetsCommandOutput/)
|
|
519
|
+
|
|
520
|
+
</details>
|
|
521
|
+
<details>
|
|
522
|
+
<summary>
|
|
523
|
+
ListMemories
|
|
524
|
+
</summary>
|
|
525
|
+
|
|
526
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListMemoriesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListMemoriesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListMemoriesCommandOutput/)
|
|
527
|
+
|
|
528
|
+
</details>
|
|
529
|
+
<details>
|
|
530
|
+
<summary>
|
|
531
|
+
ListOauth2CredentialProviders
|
|
532
|
+
</summary>
|
|
533
|
+
|
|
534
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListOauth2CredentialProvidersCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListOauth2CredentialProvidersCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListOauth2CredentialProvidersCommandOutput/)
|
|
535
|
+
|
|
536
|
+
</details>
|
|
537
|
+
<details>
|
|
538
|
+
<summary>
|
|
539
|
+
ListWorkloadIdentities
|
|
540
|
+
</summary>
|
|
541
|
+
|
|
542
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListWorkloadIdentitiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListWorkloadIdentitiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListWorkloadIdentitiesCommandOutput/)
|
|
543
|
+
|
|
544
|
+
</details>
|
|
545
|
+
<details>
|
|
546
|
+
<summary>
|
|
547
|
+
SetTokenVaultCMK
|
|
548
|
+
</summary>
|
|
549
|
+
|
|
550
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/SetTokenVaultCMKCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/SetTokenVaultCMKCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/SetTokenVaultCMKCommandOutput/)
|
|
551
|
+
|
|
552
|
+
</details>
|
|
553
|
+
<details>
|
|
554
|
+
<summary>
|
|
555
|
+
UpdateAgentRuntime
|
|
556
|
+
</summary>
|
|
557
|
+
|
|
558
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/UpdateAgentRuntimeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateAgentRuntimeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateAgentRuntimeCommandOutput/)
|
|
559
|
+
|
|
560
|
+
</details>
|
|
561
|
+
<details>
|
|
562
|
+
<summary>
|
|
563
|
+
UpdateAgentRuntimeEndpoint
|
|
564
|
+
</summary>
|
|
565
|
+
|
|
566
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/UpdateAgentRuntimeEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateAgentRuntimeEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateAgentRuntimeEndpointCommandOutput/)
|
|
567
|
+
|
|
568
|
+
</details>
|
|
569
|
+
<details>
|
|
570
|
+
<summary>
|
|
571
|
+
UpdateApiKeyCredentialProvider
|
|
572
|
+
</summary>
|
|
573
|
+
|
|
574
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/UpdateApiKeyCredentialProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateApiKeyCredentialProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateApiKeyCredentialProviderCommandOutput/)
|
|
575
|
+
|
|
576
|
+
</details>
|
|
577
|
+
<details>
|
|
578
|
+
<summary>
|
|
579
|
+
UpdateGateway
|
|
580
|
+
</summary>
|
|
581
|
+
|
|
582
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/UpdateGatewayCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateGatewayCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateGatewayCommandOutput/)
|
|
583
|
+
|
|
584
|
+
</details>
|
|
585
|
+
<details>
|
|
586
|
+
<summary>
|
|
587
|
+
UpdateGatewayTarget
|
|
588
|
+
</summary>
|
|
589
|
+
|
|
590
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/UpdateGatewayTargetCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateGatewayTargetCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateGatewayTargetCommandOutput/)
|
|
591
|
+
|
|
592
|
+
</details>
|
|
593
|
+
<details>
|
|
594
|
+
<summary>
|
|
595
|
+
UpdateMemory
|
|
596
|
+
</summary>
|
|
597
|
+
|
|
598
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/UpdateMemoryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateMemoryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateMemoryCommandOutput/)
|
|
599
|
+
|
|
600
|
+
</details>
|
|
601
|
+
<details>
|
|
602
|
+
<summary>
|
|
603
|
+
UpdateOauth2CredentialProvider
|
|
604
|
+
</summary>
|
|
605
|
+
|
|
606
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/UpdateOauth2CredentialProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateOauth2CredentialProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateOauth2CredentialProviderCommandOutput/)
|
|
607
|
+
|
|
608
|
+
</details>
|
|
609
|
+
<details>
|
|
610
|
+
<summary>
|
|
611
|
+
UpdateWorkloadIdentity
|
|
612
|
+
</summary>
|
|
613
|
+
|
|
614
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/UpdateWorkloadIdentityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateWorkloadIdentityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateWorkloadIdentityCommandOutput/)
|
|
615
|
+
|
|
616
|
+
</details>
|