@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,8 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@smithy/types";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface BedrockAgentCoreControlPaginationConfiguration extends PaginationConfiguration {
|
|
7
|
+
client: BedrockAgentCoreControlClient;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAgentRuntimeEndpointsCommandInput, ListAgentRuntimeEndpointsCommandOutput } from "../commands/ListAgentRuntimeEndpointsCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAgentRuntimeEndpoints: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListAgentRuntimeEndpointsCommandInput, ...rest: any[]) => Paginator<ListAgentRuntimeEndpointsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAgentRuntimeVersionsCommandInput, ListAgentRuntimeVersionsCommandOutput } from "../commands/ListAgentRuntimeVersionsCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAgentRuntimeVersions: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListAgentRuntimeVersionsCommandInput, ...rest: any[]) => Paginator<ListAgentRuntimeVersionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAgentRuntimesCommandInput, ListAgentRuntimesCommandOutput } from "../commands/ListAgentRuntimesCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAgentRuntimes: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListAgentRuntimesCommandInput, ...rest: any[]) => Paginator<ListAgentRuntimesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListApiKeyCredentialProvidersCommandInput, ListApiKeyCredentialProvidersCommandOutput } from "../commands/ListApiKeyCredentialProvidersCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListApiKeyCredentialProviders: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListApiKeyCredentialProvidersCommandInput, ...rest: any[]) => Paginator<ListApiKeyCredentialProvidersCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListBrowsersCommandInput, ListBrowsersCommandOutput } from "../commands/ListBrowsersCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListBrowsers: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListBrowsersCommandInput, ...rest: any[]) => Paginator<ListBrowsersCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListCodeInterpretersCommandInput, ListCodeInterpretersCommandOutput } from "../commands/ListCodeInterpretersCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListCodeInterpreters: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListCodeInterpretersCommandInput, ...rest: any[]) => Paginator<ListCodeInterpretersCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListGatewayTargetsCommandInput, ListGatewayTargetsCommandOutput } from "../commands/ListGatewayTargetsCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListGatewayTargets: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListGatewayTargetsCommandInput, ...rest: any[]) => Paginator<ListGatewayTargetsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "../commands/ListGatewaysCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListGateways: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListGatewaysCommandInput, ...rest: any[]) => Paginator<ListGatewaysCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListMemoriesCommandInput, ListMemoriesCommandOutput } from "../commands/ListMemoriesCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListMemories: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListMemoriesCommandInput, ...rest: any[]) => Paginator<ListMemoriesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListOauth2CredentialProvidersCommandInput, ListOauth2CredentialProvidersCommandOutput } from "../commands/ListOauth2CredentialProvidersCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListOauth2CredentialProviders: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListOauth2CredentialProvidersCommandInput, ...rest: any[]) => Paginator<ListOauth2CredentialProvidersCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListWorkloadIdentitiesCommandInput, ListWorkloadIdentitiesCommandOutput } from "../commands/ListWorkloadIdentitiesCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListWorkloadIdentities: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListWorkloadIdentitiesCommandInput, ...rest: any[]) => Paginator<ListWorkloadIdentitiesCommandOutput>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAgentRuntimeEndpointsPaginator";
|
|
3
|
+
export * from "./ListAgentRuntimeVersionsPaginator";
|
|
4
|
+
export * from "./ListAgentRuntimesPaginator";
|
|
5
|
+
export * from "./ListApiKeyCredentialProvidersPaginator";
|
|
6
|
+
export * from "./ListBrowsersPaginator";
|
|
7
|
+
export * from "./ListCodeInterpretersPaginator";
|
|
8
|
+
export * from "./ListGatewayTargetsPaginator";
|
|
9
|
+
export * from "./ListGatewaysPaginator";
|
|
10
|
+
export * from "./ListMemoriesPaginator";
|
|
11
|
+
export * from "./ListOauth2CredentialProvidersPaginator";
|
|
12
|
+
export * from "./ListWorkloadIdentitiesPaginator";
|
|
@@ -0,0 +1,461 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CreateAgentRuntimeCommandInput, CreateAgentRuntimeCommandOutput } from "../commands/CreateAgentRuntimeCommand";
|
|
4
|
+
import { CreateAgentRuntimeEndpointCommandInput, CreateAgentRuntimeEndpointCommandOutput } from "../commands/CreateAgentRuntimeEndpointCommand";
|
|
5
|
+
import { CreateApiKeyCredentialProviderCommandInput, CreateApiKeyCredentialProviderCommandOutput } from "../commands/CreateApiKeyCredentialProviderCommand";
|
|
6
|
+
import { CreateBrowserCommandInput, CreateBrowserCommandOutput } from "../commands/CreateBrowserCommand";
|
|
7
|
+
import { CreateCodeInterpreterCommandInput, CreateCodeInterpreterCommandOutput } from "../commands/CreateCodeInterpreterCommand";
|
|
8
|
+
import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "../commands/CreateGatewayCommand";
|
|
9
|
+
import { CreateGatewayTargetCommandInput, CreateGatewayTargetCommandOutput } from "../commands/CreateGatewayTargetCommand";
|
|
10
|
+
import { CreateMemoryCommandInput, CreateMemoryCommandOutput } from "../commands/CreateMemoryCommand";
|
|
11
|
+
import { CreateOauth2CredentialProviderCommandInput, CreateOauth2CredentialProviderCommandOutput } from "../commands/CreateOauth2CredentialProviderCommand";
|
|
12
|
+
import { CreateWorkloadIdentityCommandInput, CreateWorkloadIdentityCommandOutput } from "../commands/CreateWorkloadIdentityCommand";
|
|
13
|
+
import { DeleteAgentRuntimeCommandInput, DeleteAgentRuntimeCommandOutput } from "../commands/DeleteAgentRuntimeCommand";
|
|
14
|
+
import { DeleteAgentRuntimeEndpointCommandInput, DeleteAgentRuntimeEndpointCommandOutput } from "../commands/DeleteAgentRuntimeEndpointCommand";
|
|
15
|
+
import { DeleteApiKeyCredentialProviderCommandInput, DeleteApiKeyCredentialProviderCommandOutput } from "../commands/DeleteApiKeyCredentialProviderCommand";
|
|
16
|
+
import { DeleteBrowserCommandInput, DeleteBrowserCommandOutput } from "../commands/DeleteBrowserCommand";
|
|
17
|
+
import { DeleteCodeInterpreterCommandInput, DeleteCodeInterpreterCommandOutput } from "../commands/DeleteCodeInterpreterCommand";
|
|
18
|
+
import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "../commands/DeleteGatewayCommand";
|
|
19
|
+
import { DeleteGatewayTargetCommandInput, DeleteGatewayTargetCommandOutput } from "../commands/DeleteGatewayTargetCommand";
|
|
20
|
+
import { DeleteMemoryCommandInput, DeleteMemoryCommandOutput } from "../commands/DeleteMemoryCommand";
|
|
21
|
+
import { DeleteOauth2CredentialProviderCommandInput, DeleteOauth2CredentialProviderCommandOutput } from "../commands/DeleteOauth2CredentialProviderCommand";
|
|
22
|
+
import { DeleteWorkloadIdentityCommandInput, DeleteWorkloadIdentityCommandOutput } from "../commands/DeleteWorkloadIdentityCommand";
|
|
23
|
+
import { GetAgentRuntimeCommandInput, GetAgentRuntimeCommandOutput } from "../commands/GetAgentRuntimeCommand";
|
|
24
|
+
import { GetAgentRuntimeEndpointCommandInput, GetAgentRuntimeEndpointCommandOutput } from "../commands/GetAgentRuntimeEndpointCommand";
|
|
25
|
+
import { GetApiKeyCredentialProviderCommandInput, GetApiKeyCredentialProviderCommandOutput } from "../commands/GetApiKeyCredentialProviderCommand";
|
|
26
|
+
import { GetBrowserCommandInput, GetBrowserCommandOutput } from "../commands/GetBrowserCommand";
|
|
27
|
+
import { GetCodeInterpreterCommandInput, GetCodeInterpreterCommandOutput } from "../commands/GetCodeInterpreterCommand";
|
|
28
|
+
import { GetGatewayCommandInput, GetGatewayCommandOutput } from "../commands/GetGatewayCommand";
|
|
29
|
+
import { GetGatewayTargetCommandInput, GetGatewayTargetCommandOutput } from "../commands/GetGatewayTargetCommand";
|
|
30
|
+
import { GetMemoryCommandInput, GetMemoryCommandOutput } from "../commands/GetMemoryCommand";
|
|
31
|
+
import { GetOauth2CredentialProviderCommandInput, GetOauth2CredentialProviderCommandOutput } from "../commands/GetOauth2CredentialProviderCommand";
|
|
32
|
+
import { GetTokenVaultCommandInput, GetTokenVaultCommandOutput } from "../commands/GetTokenVaultCommand";
|
|
33
|
+
import { GetWorkloadIdentityCommandInput, GetWorkloadIdentityCommandOutput } from "../commands/GetWorkloadIdentityCommand";
|
|
34
|
+
import { ListAgentRuntimeEndpointsCommandInput, ListAgentRuntimeEndpointsCommandOutput } from "../commands/ListAgentRuntimeEndpointsCommand";
|
|
35
|
+
import { ListAgentRuntimesCommandInput, ListAgentRuntimesCommandOutput } from "../commands/ListAgentRuntimesCommand";
|
|
36
|
+
import { ListAgentRuntimeVersionsCommandInput, ListAgentRuntimeVersionsCommandOutput } from "../commands/ListAgentRuntimeVersionsCommand";
|
|
37
|
+
import { ListApiKeyCredentialProvidersCommandInput, ListApiKeyCredentialProvidersCommandOutput } from "../commands/ListApiKeyCredentialProvidersCommand";
|
|
38
|
+
import { ListBrowsersCommandInput, ListBrowsersCommandOutput } from "../commands/ListBrowsersCommand";
|
|
39
|
+
import { ListCodeInterpretersCommandInput, ListCodeInterpretersCommandOutput } from "../commands/ListCodeInterpretersCommand";
|
|
40
|
+
import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "../commands/ListGatewaysCommand";
|
|
41
|
+
import { ListGatewayTargetsCommandInput, ListGatewayTargetsCommandOutput } from "../commands/ListGatewayTargetsCommand";
|
|
42
|
+
import { ListMemoriesCommandInput, ListMemoriesCommandOutput } from "../commands/ListMemoriesCommand";
|
|
43
|
+
import { ListOauth2CredentialProvidersCommandInput, ListOauth2CredentialProvidersCommandOutput } from "../commands/ListOauth2CredentialProvidersCommand";
|
|
44
|
+
import { ListWorkloadIdentitiesCommandInput, ListWorkloadIdentitiesCommandOutput } from "../commands/ListWorkloadIdentitiesCommand";
|
|
45
|
+
import { SetTokenVaultCMKCommandInput, SetTokenVaultCMKCommandOutput } from "../commands/SetTokenVaultCMKCommand";
|
|
46
|
+
import { UpdateAgentRuntimeCommandInput, UpdateAgentRuntimeCommandOutput } from "../commands/UpdateAgentRuntimeCommand";
|
|
47
|
+
import { UpdateAgentRuntimeEndpointCommandInput, UpdateAgentRuntimeEndpointCommandOutput } from "../commands/UpdateAgentRuntimeEndpointCommand";
|
|
48
|
+
import { UpdateApiKeyCredentialProviderCommandInput, UpdateApiKeyCredentialProviderCommandOutput } from "../commands/UpdateApiKeyCredentialProviderCommand";
|
|
49
|
+
import { UpdateGatewayCommandInput, UpdateGatewayCommandOutput } from "../commands/UpdateGatewayCommand";
|
|
50
|
+
import { UpdateGatewayTargetCommandInput, UpdateGatewayTargetCommandOutput } from "../commands/UpdateGatewayTargetCommand";
|
|
51
|
+
import { UpdateMemoryCommandInput, UpdateMemoryCommandOutput } from "../commands/UpdateMemoryCommand";
|
|
52
|
+
import { UpdateOauth2CredentialProviderCommandInput, UpdateOauth2CredentialProviderCommandOutput } from "../commands/UpdateOauth2CredentialProviderCommand";
|
|
53
|
+
import { UpdateWorkloadIdentityCommandInput, UpdateWorkloadIdentityCommandOutput } from "../commands/UpdateWorkloadIdentityCommand";
|
|
54
|
+
/**
|
|
55
|
+
* serializeAws_restJson1CreateAgentRuntimeCommand
|
|
56
|
+
*/
|
|
57
|
+
export declare const se_CreateAgentRuntimeCommand: (input: CreateAgentRuntimeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
/**
|
|
59
|
+
* serializeAws_restJson1CreateAgentRuntimeEndpointCommand
|
|
60
|
+
*/
|
|
61
|
+
export declare const se_CreateAgentRuntimeEndpointCommand: (input: CreateAgentRuntimeEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
+
/**
|
|
63
|
+
* serializeAws_restJson1CreateApiKeyCredentialProviderCommand
|
|
64
|
+
*/
|
|
65
|
+
export declare const se_CreateApiKeyCredentialProviderCommand: (input: CreateApiKeyCredentialProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
+
/**
|
|
67
|
+
* serializeAws_restJson1CreateBrowserCommand
|
|
68
|
+
*/
|
|
69
|
+
export declare const se_CreateBrowserCommand: (input: CreateBrowserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
+
/**
|
|
71
|
+
* serializeAws_restJson1CreateCodeInterpreterCommand
|
|
72
|
+
*/
|
|
73
|
+
export declare const se_CreateCodeInterpreterCommand: (input: CreateCodeInterpreterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
/**
|
|
75
|
+
* serializeAws_restJson1CreateGatewayCommand
|
|
76
|
+
*/
|
|
77
|
+
export declare const se_CreateGatewayCommand: (input: CreateGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
+
/**
|
|
79
|
+
* serializeAws_restJson1CreateGatewayTargetCommand
|
|
80
|
+
*/
|
|
81
|
+
export declare const se_CreateGatewayTargetCommand: (input: CreateGatewayTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
+
/**
|
|
83
|
+
* serializeAws_restJson1CreateMemoryCommand
|
|
84
|
+
*/
|
|
85
|
+
export declare const se_CreateMemoryCommand: (input: CreateMemoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
+
/**
|
|
87
|
+
* serializeAws_restJson1CreateOauth2CredentialProviderCommand
|
|
88
|
+
*/
|
|
89
|
+
export declare const se_CreateOauth2CredentialProviderCommand: (input: CreateOauth2CredentialProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
+
/**
|
|
91
|
+
* serializeAws_restJson1CreateWorkloadIdentityCommand
|
|
92
|
+
*/
|
|
93
|
+
export declare const se_CreateWorkloadIdentityCommand: (input: CreateWorkloadIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
+
/**
|
|
95
|
+
* serializeAws_restJson1DeleteAgentRuntimeCommand
|
|
96
|
+
*/
|
|
97
|
+
export declare const se_DeleteAgentRuntimeCommand: (input: DeleteAgentRuntimeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
|
+
/**
|
|
99
|
+
* serializeAws_restJson1DeleteAgentRuntimeEndpointCommand
|
|
100
|
+
*/
|
|
101
|
+
export declare const se_DeleteAgentRuntimeEndpointCommand: (input: DeleteAgentRuntimeEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
102
|
+
/**
|
|
103
|
+
* serializeAws_restJson1DeleteApiKeyCredentialProviderCommand
|
|
104
|
+
*/
|
|
105
|
+
export declare const se_DeleteApiKeyCredentialProviderCommand: (input: DeleteApiKeyCredentialProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
|
+
/**
|
|
107
|
+
* serializeAws_restJson1DeleteBrowserCommand
|
|
108
|
+
*/
|
|
109
|
+
export declare const se_DeleteBrowserCommand: (input: DeleteBrowserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
|
+
/**
|
|
111
|
+
* serializeAws_restJson1DeleteCodeInterpreterCommand
|
|
112
|
+
*/
|
|
113
|
+
export declare const se_DeleteCodeInterpreterCommand: (input: DeleteCodeInterpreterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
|
+
/**
|
|
115
|
+
* serializeAws_restJson1DeleteGatewayCommand
|
|
116
|
+
*/
|
|
117
|
+
export declare const se_DeleteGatewayCommand: (input: DeleteGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
+
/**
|
|
119
|
+
* serializeAws_restJson1DeleteGatewayTargetCommand
|
|
120
|
+
*/
|
|
121
|
+
export declare const se_DeleteGatewayTargetCommand: (input: DeleteGatewayTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
122
|
+
/**
|
|
123
|
+
* serializeAws_restJson1DeleteMemoryCommand
|
|
124
|
+
*/
|
|
125
|
+
export declare const se_DeleteMemoryCommand: (input: DeleteMemoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
|
+
/**
|
|
127
|
+
* serializeAws_restJson1DeleteOauth2CredentialProviderCommand
|
|
128
|
+
*/
|
|
129
|
+
export declare const se_DeleteOauth2CredentialProviderCommand: (input: DeleteOauth2CredentialProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
130
|
+
/**
|
|
131
|
+
* serializeAws_restJson1DeleteWorkloadIdentityCommand
|
|
132
|
+
*/
|
|
133
|
+
export declare const se_DeleteWorkloadIdentityCommand: (input: DeleteWorkloadIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
134
|
+
/**
|
|
135
|
+
* serializeAws_restJson1GetAgentRuntimeCommand
|
|
136
|
+
*/
|
|
137
|
+
export declare const se_GetAgentRuntimeCommand: (input: GetAgentRuntimeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
138
|
+
/**
|
|
139
|
+
* serializeAws_restJson1GetAgentRuntimeEndpointCommand
|
|
140
|
+
*/
|
|
141
|
+
export declare const se_GetAgentRuntimeEndpointCommand: (input: GetAgentRuntimeEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
|
+
/**
|
|
143
|
+
* serializeAws_restJson1GetApiKeyCredentialProviderCommand
|
|
144
|
+
*/
|
|
145
|
+
export declare const se_GetApiKeyCredentialProviderCommand: (input: GetApiKeyCredentialProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
146
|
+
/**
|
|
147
|
+
* serializeAws_restJson1GetBrowserCommand
|
|
148
|
+
*/
|
|
149
|
+
export declare const se_GetBrowserCommand: (input: GetBrowserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
|
+
/**
|
|
151
|
+
* serializeAws_restJson1GetCodeInterpreterCommand
|
|
152
|
+
*/
|
|
153
|
+
export declare const se_GetCodeInterpreterCommand: (input: GetCodeInterpreterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
154
|
+
/**
|
|
155
|
+
* serializeAws_restJson1GetGatewayCommand
|
|
156
|
+
*/
|
|
157
|
+
export declare const se_GetGatewayCommand: (input: GetGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
158
|
+
/**
|
|
159
|
+
* serializeAws_restJson1GetGatewayTargetCommand
|
|
160
|
+
*/
|
|
161
|
+
export declare const se_GetGatewayTargetCommand: (input: GetGatewayTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
162
|
+
/**
|
|
163
|
+
* serializeAws_restJson1GetMemoryCommand
|
|
164
|
+
*/
|
|
165
|
+
export declare const se_GetMemoryCommand: (input: GetMemoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
166
|
+
/**
|
|
167
|
+
* serializeAws_restJson1GetOauth2CredentialProviderCommand
|
|
168
|
+
*/
|
|
169
|
+
export declare const se_GetOauth2CredentialProviderCommand: (input: GetOauth2CredentialProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
170
|
+
/**
|
|
171
|
+
* serializeAws_restJson1GetTokenVaultCommand
|
|
172
|
+
*/
|
|
173
|
+
export declare const se_GetTokenVaultCommand: (input: GetTokenVaultCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
174
|
+
/**
|
|
175
|
+
* serializeAws_restJson1GetWorkloadIdentityCommand
|
|
176
|
+
*/
|
|
177
|
+
export declare const se_GetWorkloadIdentityCommand: (input: GetWorkloadIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
178
|
+
/**
|
|
179
|
+
* serializeAws_restJson1ListAgentRuntimeEndpointsCommand
|
|
180
|
+
*/
|
|
181
|
+
export declare const se_ListAgentRuntimeEndpointsCommand: (input: ListAgentRuntimeEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
182
|
+
/**
|
|
183
|
+
* serializeAws_restJson1ListAgentRuntimesCommand
|
|
184
|
+
*/
|
|
185
|
+
export declare const se_ListAgentRuntimesCommand: (input: ListAgentRuntimesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
186
|
+
/**
|
|
187
|
+
* serializeAws_restJson1ListAgentRuntimeVersionsCommand
|
|
188
|
+
*/
|
|
189
|
+
export declare const se_ListAgentRuntimeVersionsCommand: (input: ListAgentRuntimeVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
190
|
+
/**
|
|
191
|
+
* serializeAws_restJson1ListApiKeyCredentialProvidersCommand
|
|
192
|
+
*/
|
|
193
|
+
export declare const se_ListApiKeyCredentialProvidersCommand: (input: ListApiKeyCredentialProvidersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
194
|
+
/**
|
|
195
|
+
* serializeAws_restJson1ListBrowsersCommand
|
|
196
|
+
*/
|
|
197
|
+
export declare const se_ListBrowsersCommand: (input: ListBrowsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
198
|
+
/**
|
|
199
|
+
* serializeAws_restJson1ListCodeInterpretersCommand
|
|
200
|
+
*/
|
|
201
|
+
export declare const se_ListCodeInterpretersCommand: (input: ListCodeInterpretersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
202
|
+
/**
|
|
203
|
+
* serializeAws_restJson1ListGatewaysCommand
|
|
204
|
+
*/
|
|
205
|
+
export declare const se_ListGatewaysCommand: (input: ListGatewaysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
206
|
+
/**
|
|
207
|
+
* serializeAws_restJson1ListGatewayTargetsCommand
|
|
208
|
+
*/
|
|
209
|
+
export declare const se_ListGatewayTargetsCommand: (input: ListGatewayTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
210
|
+
/**
|
|
211
|
+
* serializeAws_restJson1ListMemoriesCommand
|
|
212
|
+
*/
|
|
213
|
+
export declare const se_ListMemoriesCommand: (input: ListMemoriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
214
|
+
/**
|
|
215
|
+
* serializeAws_restJson1ListOauth2CredentialProvidersCommand
|
|
216
|
+
*/
|
|
217
|
+
export declare const se_ListOauth2CredentialProvidersCommand: (input: ListOauth2CredentialProvidersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
218
|
+
/**
|
|
219
|
+
* serializeAws_restJson1ListWorkloadIdentitiesCommand
|
|
220
|
+
*/
|
|
221
|
+
export declare const se_ListWorkloadIdentitiesCommand: (input: ListWorkloadIdentitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
222
|
+
/**
|
|
223
|
+
* serializeAws_restJson1SetTokenVaultCMKCommand
|
|
224
|
+
*/
|
|
225
|
+
export declare const se_SetTokenVaultCMKCommand: (input: SetTokenVaultCMKCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
226
|
+
/**
|
|
227
|
+
* serializeAws_restJson1UpdateAgentRuntimeCommand
|
|
228
|
+
*/
|
|
229
|
+
export declare const se_UpdateAgentRuntimeCommand: (input: UpdateAgentRuntimeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
230
|
+
/**
|
|
231
|
+
* serializeAws_restJson1UpdateAgentRuntimeEndpointCommand
|
|
232
|
+
*/
|
|
233
|
+
export declare const se_UpdateAgentRuntimeEndpointCommand: (input: UpdateAgentRuntimeEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
234
|
+
/**
|
|
235
|
+
* serializeAws_restJson1UpdateApiKeyCredentialProviderCommand
|
|
236
|
+
*/
|
|
237
|
+
export declare const se_UpdateApiKeyCredentialProviderCommand: (input: UpdateApiKeyCredentialProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
238
|
+
/**
|
|
239
|
+
* serializeAws_restJson1UpdateGatewayCommand
|
|
240
|
+
*/
|
|
241
|
+
export declare const se_UpdateGatewayCommand: (input: UpdateGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
242
|
+
/**
|
|
243
|
+
* serializeAws_restJson1UpdateGatewayTargetCommand
|
|
244
|
+
*/
|
|
245
|
+
export declare const se_UpdateGatewayTargetCommand: (input: UpdateGatewayTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
246
|
+
/**
|
|
247
|
+
* serializeAws_restJson1UpdateMemoryCommand
|
|
248
|
+
*/
|
|
249
|
+
export declare const se_UpdateMemoryCommand: (input: UpdateMemoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
250
|
+
/**
|
|
251
|
+
* serializeAws_restJson1UpdateOauth2CredentialProviderCommand
|
|
252
|
+
*/
|
|
253
|
+
export declare const se_UpdateOauth2CredentialProviderCommand: (input: UpdateOauth2CredentialProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
254
|
+
/**
|
|
255
|
+
* serializeAws_restJson1UpdateWorkloadIdentityCommand
|
|
256
|
+
*/
|
|
257
|
+
export declare const se_UpdateWorkloadIdentityCommand: (input: UpdateWorkloadIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
258
|
+
/**
|
|
259
|
+
* deserializeAws_restJson1CreateAgentRuntimeCommand
|
|
260
|
+
*/
|
|
261
|
+
export declare const de_CreateAgentRuntimeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAgentRuntimeCommandOutput>;
|
|
262
|
+
/**
|
|
263
|
+
* deserializeAws_restJson1CreateAgentRuntimeEndpointCommand
|
|
264
|
+
*/
|
|
265
|
+
export declare const de_CreateAgentRuntimeEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAgentRuntimeEndpointCommandOutput>;
|
|
266
|
+
/**
|
|
267
|
+
* deserializeAws_restJson1CreateApiKeyCredentialProviderCommand
|
|
268
|
+
*/
|
|
269
|
+
export declare const de_CreateApiKeyCredentialProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApiKeyCredentialProviderCommandOutput>;
|
|
270
|
+
/**
|
|
271
|
+
* deserializeAws_restJson1CreateBrowserCommand
|
|
272
|
+
*/
|
|
273
|
+
export declare const de_CreateBrowserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBrowserCommandOutput>;
|
|
274
|
+
/**
|
|
275
|
+
* deserializeAws_restJson1CreateCodeInterpreterCommand
|
|
276
|
+
*/
|
|
277
|
+
export declare const de_CreateCodeInterpreterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCodeInterpreterCommandOutput>;
|
|
278
|
+
/**
|
|
279
|
+
* deserializeAws_restJson1CreateGatewayCommand
|
|
280
|
+
*/
|
|
281
|
+
export declare const de_CreateGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGatewayCommandOutput>;
|
|
282
|
+
/**
|
|
283
|
+
* deserializeAws_restJson1CreateGatewayTargetCommand
|
|
284
|
+
*/
|
|
285
|
+
export declare const de_CreateGatewayTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGatewayTargetCommandOutput>;
|
|
286
|
+
/**
|
|
287
|
+
* deserializeAws_restJson1CreateMemoryCommand
|
|
288
|
+
*/
|
|
289
|
+
export declare const de_CreateMemoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMemoryCommandOutput>;
|
|
290
|
+
/**
|
|
291
|
+
* deserializeAws_restJson1CreateOauth2CredentialProviderCommand
|
|
292
|
+
*/
|
|
293
|
+
export declare const de_CreateOauth2CredentialProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateOauth2CredentialProviderCommandOutput>;
|
|
294
|
+
/**
|
|
295
|
+
* deserializeAws_restJson1CreateWorkloadIdentityCommand
|
|
296
|
+
*/
|
|
297
|
+
export declare const de_CreateWorkloadIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkloadIdentityCommandOutput>;
|
|
298
|
+
/**
|
|
299
|
+
* deserializeAws_restJson1DeleteAgentRuntimeCommand
|
|
300
|
+
*/
|
|
301
|
+
export declare const de_DeleteAgentRuntimeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAgentRuntimeCommandOutput>;
|
|
302
|
+
/**
|
|
303
|
+
* deserializeAws_restJson1DeleteAgentRuntimeEndpointCommand
|
|
304
|
+
*/
|
|
305
|
+
export declare const de_DeleteAgentRuntimeEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAgentRuntimeEndpointCommandOutput>;
|
|
306
|
+
/**
|
|
307
|
+
* deserializeAws_restJson1DeleteApiKeyCredentialProviderCommand
|
|
308
|
+
*/
|
|
309
|
+
export declare const de_DeleteApiKeyCredentialProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteApiKeyCredentialProviderCommandOutput>;
|
|
310
|
+
/**
|
|
311
|
+
* deserializeAws_restJson1DeleteBrowserCommand
|
|
312
|
+
*/
|
|
313
|
+
export declare const de_DeleteBrowserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteBrowserCommandOutput>;
|
|
314
|
+
/**
|
|
315
|
+
* deserializeAws_restJson1DeleteCodeInterpreterCommand
|
|
316
|
+
*/
|
|
317
|
+
export declare const de_DeleteCodeInterpreterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCodeInterpreterCommandOutput>;
|
|
318
|
+
/**
|
|
319
|
+
* deserializeAws_restJson1DeleteGatewayCommand
|
|
320
|
+
*/
|
|
321
|
+
export declare const de_DeleteGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGatewayCommandOutput>;
|
|
322
|
+
/**
|
|
323
|
+
* deserializeAws_restJson1DeleteGatewayTargetCommand
|
|
324
|
+
*/
|
|
325
|
+
export declare const de_DeleteGatewayTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGatewayTargetCommandOutput>;
|
|
326
|
+
/**
|
|
327
|
+
* deserializeAws_restJson1DeleteMemoryCommand
|
|
328
|
+
*/
|
|
329
|
+
export declare const de_DeleteMemoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMemoryCommandOutput>;
|
|
330
|
+
/**
|
|
331
|
+
* deserializeAws_restJson1DeleteOauth2CredentialProviderCommand
|
|
332
|
+
*/
|
|
333
|
+
export declare const de_DeleteOauth2CredentialProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOauth2CredentialProviderCommandOutput>;
|
|
334
|
+
/**
|
|
335
|
+
* deserializeAws_restJson1DeleteWorkloadIdentityCommand
|
|
336
|
+
*/
|
|
337
|
+
export declare const de_DeleteWorkloadIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWorkloadIdentityCommandOutput>;
|
|
338
|
+
/**
|
|
339
|
+
* deserializeAws_restJson1GetAgentRuntimeCommand
|
|
340
|
+
*/
|
|
341
|
+
export declare const de_GetAgentRuntimeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAgentRuntimeCommandOutput>;
|
|
342
|
+
/**
|
|
343
|
+
* deserializeAws_restJson1GetAgentRuntimeEndpointCommand
|
|
344
|
+
*/
|
|
345
|
+
export declare const de_GetAgentRuntimeEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAgentRuntimeEndpointCommandOutput>;
|
|
346
|
+
/**
|
|
347
|
+
* deserializeAws_restJson1GetApiKeyCredentialProviderCommand
|
|
348
|
+
*/
|
|
349
|
+
export declare const de_GetApiKeyCredentialProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApiKeyCredentialProviderCommandOutput>;
|
|
350
|
+
/**
|
|
351
|
+
* deserializeAws_restJson1GetBrowserCommand
|
|
352
|
+
*/
|
|
353
|
+
export declare const de_GetBrowserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetBrowserCommandOutput>;
|
|
354
|
+
/**
|
|
355
|
+
* deserializeAws_restJson1GetCodeInterpreterCommand
|
|
356
|
+
*/
|
|
357
|
+
export declare const de_GetCodeInterpreterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCodeInterpreterCommandOutput>;
|
|
358
|
+
/**
|
|
359
|
+
* deserializeAws_restJson1GetGatewayCommand
|
|
360
|
+
*/
|
|
361
|
+
export declare const de_GetGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGatewayCommandOutput>;
|
|
362
|
+
/**
|
|
363
|
+
* deserializeAws_restJson1GetGatewayTargetCommand
|
|
364
|
+
*/
|
|
365
|
+
export declare const de_GetGatewayTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGatewayTargetCommandOutput>;
|
|
366
|
+
/**
|
|
367
|
+
* deserializeAws_restJson1GetMemoryCommand
|
|
368
|
+
*/
|
|
369
|
+
export declare const de_GetMemoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMemoryCommandOutput>;
|
|
370
|
+
/**
|
|
371
|
+
* deserializeAws_restJson1GetOauth2CredentialProviderCommand
|
|
372
|
+
*/
|
|
373
|
+
export declare const de_GetOauth2CredentialProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOauth2CredentialProviderCommandOutput>;
|
|
374
|
+
/**
|
|
375
|
+
* deserializeAws_restJson1GetTokenVaultCommand
|
|
376
|
+
*/
|
|
377
|
+
export declare const de_GetTokenVaultCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTokenVaultCommandOutput>;
|
|
378
|
+
/**
|
|
379
|
+
* deserializeAws_restJson1GetWorkloadIdentityCommand
|
|
380
|
+
*/
|
|
381
|
+
export declare const de_GetWorkloadIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkloadIdentityCommandOutput>;
|
|
382
|
+
/**
|
|
383
|
+
* deserializeAws_restJson1ListAgentRuntimeEndpointsCommand
|
|
384
|
+
*/
|
|
385
|
+
export declare const de_ListAgentRuntimeEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAgentRuntimeEndpointsCommandOutput>;
|
|
386
|
+
/**
|
|
387
|
+
* deserializeAws_restJson1ListAgentRuntimesCommand
|
|
388
|
+
*/
|
|
389
|
+
export declare const de_ListAgentRuntimesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAgentRuntimesCommandOutput>;
|
|
390
|
+
/**
|
|
391
|
+
* deserializeAws_restJson1ListAgentRuntimeVersionsCommand
|
|
392
|
+
*/
|
|
393
|
+
export declare const de_ListAgentRuntimeVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAgentRuntimeVersionsCommandOutput>;
|
|
394
|
+
/**
|
|
395
|
+
* deserializeAws_restJson1ListApiKeyCredentialProvidersCommand
|
|
396
|
+
*/
|
|
397
|
+
export declare const de_ListApiKeyCredentialProvidersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApiKeyCredentialProvidersCommandOutput>;
|
|
398
|
+
/**
|
|
399
|
+
* deserializeAws_restJson1ListBrowsersCommand
|
|
400
|
+
*/
|
|
401
|
+
export declare const de_ListBrowsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBrowsersCommandOutput>;
|
|
402
|
+
/**
|
|
403
|
+
* deserializeAws_restJson1ListCodeInterpretersCommand
|
|
404
|
+
*/
|
|
405
|
+
export declare const de_ListCodeInterpretersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCodeInterpretersCommandOutput>;
|
|
406
|
+
/**
|
|
407
|
+
* deserializeAws_restJson1ListGatewaysCommand
|
|
408
|
+
*/
|
|
409
|
+
export declare const de_ListGatewaysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGatewaysCommandOutput>;
|
|
410
|
+
/**
|
|
411
|
+
* deserializeAws_restJson1ListGatewayTargetsCommand
|
|
412
|
+
*/
|
|
413
|
+
export declare const de_ListGatewayTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGatewayTargetsCommandOutput>;
|
|
414
|
+
/**
|
|
415
|
+
* deserializeAws_restJson1ListMemoriesCommand
|
|
416
|
+
*/
|
|
417
|
+
export declare const de_ListMemoriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMemoriesCommandOutput>;
|
|
418
|
+
/**
|
|
419
|
+
* deserializeAws_restJson1ListOauth2CredentialProvidersCommand
|
|
420
|
+
*/
|
|
421
|
+
export declare const de_ListOauth2CredentialProvidersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOauth2CredentialProvidersCommandOutput>;
|
|
422
|
+
/**
|
|
423
|
+
* deserializeAws_restJson1ListWorkloadIdentitiesCommand
|
|
424
|
+
*/
|
|
425
|
+
export declare const de_ListWorkloadIdentitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkloadIdentitiesCommandOutput>;
|
|
426
|
+
/**
|
|
427
|
+
* deserializeAws_restJson1SetTokenVaultCMKCommand
|
|
428
|
+
*/
|
|
429
|
+
export declare const de_SetTokenVaultCMKCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetTokenVaultCMKCommandOutput>;
|
|
430
|
+
/**
|
|
431
|
+
* deserializeAws_restJson1UpdateAgentRuntimeCommand
|
|
432
|
+
*/
|
|
433
|
+
export declare const de_UpdateAgentRuntimeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAgentRuntimeCommandOutput>;
|
|
434
|
+
/**
|
|
435
|
+
* deserializeAws_restJson1UpdateAgentRuntimeEndpointCommand
|
|
436
|
+
*/
|
|
437
|
+
export declare const de_UpdateAgentRuntimeEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAgentRuntimeEndpointCommandOutput>;
|
|
438
|
+
/**
|
|
439
|
+
* deserializeAws_restJson1UpdateApiKeyCredentialProviderCommand
|
|
440
|
+
*/
|
|
441
|
+
export declare const de_UpdateApiKeyCredentialProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateApiKeyCredentialProviderCommandOutput>;
|
|
442
|
+
/**
|
|
443
|
+
* deserializeAws_restJson1UpdateGatewayCommand
|
|
444
|
+
*/
|
|
445
|
+
export declare const de_UpdateGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGatewayCommandOutput>;
|
|
446
|
+
/**
|
|
447
|
+
* deserializeAws_restJson1UpdateGatewayTargetCommand
|
|
448
|
+
*/
|
|
449
|
+
export declare const de_UpdateGatewayTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGatewayTargetCommandOutput>;
|
|
450
|
+
/**
|
|
451
|
+
* deserializeAws_restJson1UpdateMemoryCommand
|
|
452
|
+
*/
|
|
453
|
+
export declare const de_UpdateMemoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMemoryCommandOutput>;
|
|
454
|
+
/**
|
|
455
|
+
* deserializeAws_restJson1UpdateOauth2CredentialProviderCommand
|
|
456
|
+
*/
|
|
457
|
+
export declare const de_UpdateOauth2CredentialProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateOauth2CredentialProviderCommandOutput>;
|
|
458
|
+
/**
|
|
459
|
+
* deserializeAws_restJson1UpdateWorkloadIdentityCommand
|
|
460
|
+
*/
|
|
461
|
+
export declare const de_UpdateWorkloadIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWorkloadIdentityCommandOutput>;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
+
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
22
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
23
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
25
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
27
|
+
disableHostPrefix: boolean;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
profile?: string;
|
|
30
|
+
logger: import("@smithy/types").Logger;
|
|
31
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
35
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
36
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
|
+
logger?: import("@smithy/types").Logger;
|
|
38
|
+
}) => import("@smithy/types").EndpointV2;
|
|
39
|
+
tls?: boolean;
|
|
40
|
+
serviceConfiguredEndpoint?: never;
|
|
41
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
42
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
43
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
44
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
45
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
46
|
+
signingEscapePath?: boolean;
|
|
47
|
+
systemClockOffset?: number;
|
|
48
|
+
signingRegion?: string;
|
|
49
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
50
|
+
};
|