@aws-sdk/client-bedrock-agentcore-control 3.940.0 → 3.946.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/README.md +216 -0
- package/dist-cjs/index.js +2060 -545
- package/dist-cjs/runtimeConfig.browser.js +2 -2
- package/dist-cjs/runtimeConfig.js +3 -4
- package/dist-es/BedrockAgentCoreControl.js +54 -0
- package/dist-es/BedrockAgentCoreControlClient.js +2 -2
- package/dist-es/commands/CreateEvaluatorCommand.js +16 -0
- package/dist-es/commands/CreateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/CreatePolicyCommand.js +16 -0
- package/dist-es/commands/CreatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteEvaluatorCommand.js +16 -0
- package/dist-es/commands/DeleteOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/DeletePolicyCommand.js +16 -0
- package/dist-es/commands/DeletePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
- package/dist-es/commands/GetEvaluatorCommand.js +16 -0
- package/dist-es/commands/GetOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/GetPolicyCommand.js +16 -0
- package/dist-es/commands/GetPolicyEngineCommand.js +16 -0
- package/dist-es/commands/GetPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +16 -0
- package/dist-es/commands/ListEvaluatorsCommand.js +16 -0
- package/dist-es/commands/ListOnlineEvaluationConfigsCommand.js +16 -0
- package/dist-es/commands/ListPoliciesCommand.js +16 -0
- package/dist-es/commands/ListPolicyEnginesCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationAssetsCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationsCommand.js +16 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +16 -0
- package/dist-es/commands/StartPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/UpdateEvaluatorCommand.js +16 -0
- package/dist-es/commands/UpdateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/models/enums.js +104 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListEvaluatorsPaginator.js +4 -0
- package/dist-es/pagination/ListOnlineEvaluationConfigsPaginator.js +4 -0
- package/dist-es/pagination/ListPoliciesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyEnginesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationAssetsPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/runtimeConfig.browser.js +2 -2
- package/dist-es/runtimeConfig.js +2 -3
- package/dist-es/schemas/schemas_0.js +1276 -535
- package/dist-es/waiters/index.js +5 -0
- package/dist-es/waiters/waitForPolicyActive.js +58 -0
- package/dist-es/waiters/waitForPolicyDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyEngineActive.js +58 -0
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyGenerationCompleted.js +58 -0
- package/dist-types/BedrockAgentCoreControl.d.ts +193 -1
- package/dist-types/BedrockAgentCoreControlClient.d.ts +39 -12
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +2 -2
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +21 -3
- package/dist-types/commands/CreateAgentRuntimeEndpointCommand.d.ts +3 -3
- package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/CreateBrowserCommand.d.ts +3 -3
- package/dist-types/commands/CreateCodeInterpreterCommand.d.ts +3 -3
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +132 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +47 -3
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +51 -3
- package/dist-types/commands/CreateMemoryCommand.d.ts +55 -8
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/CreateOnlineEvaluationConfigCommand.d.ts +140 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +119 -0
- package/dist-types/commands/CreatePolicyEngineCommand.d.ts +103 -0
- package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +3 -3
- package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +3 -3
- package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +3 -3
- package/dist-types/commands/DeleteApiKeyCredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/DeleteBrowserCommand.d.ts +3 -3
- package/dist-types/commands/DeleteCodeInterpreterCommand.d.ts +3 -3
- package/dist-types/commands/DeleteEvaluatorCommand.d.ts +94 -0
- package/dist-types/commands/DeleteGatewayCommand.d.ts +3 -3
- package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +3 -3
- package/dist-types/commands/DeleteMemoryCommand.d.ts +6 -3
- package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/DeleteOnlineEvaluationConfigCommand.d.ts +94 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +108 -0
- package/dist-types/commands/DeletePolicyEngineCommand.d.ts +101 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +87 -0
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +3 -3
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +22 -3
- package/dist-types/commands/GetAgentRuntimeEndpointCommand.d.ts +3 -3
- package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/GetBrowserCommand.d.ts +3 -3
- package/dist-types/commands/GetCodeInterpreterCommand.d.ts +3 -3
- package/dist-types/commands/GetEvaluatorCommand.d.ts +131 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +25 -3
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +28 -3
- package/dist-types/commands/GetMemoryCommand.d.ts +30 -8
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/GetOnlineEvaluationConfigCommand.d.ts +137 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +105 -0
- package/dist-types/commands/GetPolicyEngineCommand.d.ts +98 -0
- package/dist-types/commands/GetPolicyGenerationCommand.d.ts +103 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +89 -0
- package/dist-types/commands/GetTokenVaultCommand.d.ts +3 -3
- package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +3 -3
- package/dist-types/commands/ListAgentRuntimeEndpointsCommand.d.ts +3 -3
- package/dist-types/commands/ListAgentRuntimeVersionsCommand.d.ts +3 -3
- package/dist-types/commands/ListAgentRuntimesCommand.d.ts +3 -3
- package/dist-types/commands/ListApiKeyCredentialProvidersCommand.d.ts +3 -3
- package/dist-types/commands/ListBrowsersCommand.d.ts +3 -3
- package/dist-types/commands/ListCodeInterpretersCommand.d.ts +3 -3
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +101 -0
- package/dist-types/commands/ListGatewayTargetsCommand.d.ts +3 -3
- package/dist-types/commands/ListGatewaysCommand.d.ts +3 -3
- package/dist-types/commands/ListMemoriesCommand.d.ts +3 -3
- package/dist-types/commands/ListOauth2CredentialProvidersCommand.d.ts +3 -3
- package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +100 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +113 -0
- package/dist-types/commands/ListPolicyEnginesCommand.d.ts +101 -0
- package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +109 -0
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +109 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -3
- package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +3 -3
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +90 -0
- package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +3 -3
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +116 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +28 -3
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +21 -3
- package/dist-types/commands/UpdateAgentRuntimeEndpointCommand.d.ts +3 -3
- package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +135 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +47 -3
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +51 -3
- package/dist-types/commands/UpdateMemoryCommand.d.ts +76 -11
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +138 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +115 -0
- package/dist-types/commands/UpdatePolicyEngineCommand.d.ts +102 -0
- package/dist-types/commands/UpdateWorkloadIdentityCommand.d.ts +3 -3
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +13 -1
- package/dist-types/endpoint/endpointResolver.d.ts +5 -2
- package/dist-types/extensionConfiguration.d.ts +4 -4
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/BedrockAgentCoreControlServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +232 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +4160 -2169
- package/dist-types/models/models_1.d.ts +1009 -0
- package/dist-types/pagination/Interfaces.d.ts +1 -1
- package/dist-types/pagination/ListAgentRuntimeEndpointsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAgentRuntimeVersionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAgentRuntimesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListApiKeyCredentialProvidersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListBrowsersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListCodeInterpretersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEvaluatorsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayTargetsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGatewaysPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMemoriesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListOauth2CredentialProvidersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyEnginesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationAssetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkloadIdentitiesPaginator.d.ts +1 -1
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +157 -1
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +462 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +165 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeletePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEvaluatorCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetPolicyEngineCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEvaluatorsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/ListPolicyEnginesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/BedrockAgentCoreControlServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +132 -0
- package/dist-types/ts3.4/models/models_0.d.ts +835 -188
- package/dist-types/ts3.4/models/models_1.d.ts +331 -0
- package/dist-types/ts3.4/pagination/ListEvaluatorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyEnginesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationAssetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/waiters/index.d.ts +5 -0
- package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +5 -0
- package/dist-types/waiters/waitForPolicyActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +14 -0
- package/package.json +13 -12
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAgentRuntimeEndpointsCommandInput, ListAgentRuntimeEndpointsCommandOutput } from "../commands/ListAgentRuntimeEndpointsCommand";
|
|
3
3
|
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAgentRuntimeVersionsCommandInput, ListAgentRuntimeVersionsCommandOutput } from "../commands/ListAgentRuntimeVersionsCommand";
|
|
3
3
|
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAgentRuntimesCommandInput, ListAgentRuntimesCommandOutput } from "../commands/ListAgentRuntimesCommand";
|
|
3
3
|
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListApiKeyCredentialProvidersCommandInput, ListApiKeyCredentialProvidersCommandOutput } from "../commands/ListApiKeyCredentialProvidersCommand";
|
|
3
3
|
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListBrowsersCommandInput, ListBrowsersCommandOutput } from "../commands/ListBrowsersCommand";
|
|
3
3
|
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListCodeInterpretersCommandInput, ListCodeInterpretersCommandOutput } from "../commands/ListCodeInterpretersCommand";
|
|
3
3
|
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListEvaluatorsCommandInput, ListEvaluatorsCommandOutput } from "../commands/ListEvaluatorsCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListEvaluators: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListEvaluatorsCommandInput, ...rest: any[]) => Paginator<ListEvaluatorsCommandOutput>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListGatewayTargetsCommandInput, ListGatewayTargetsCommandOutput } from "../commands/ListGatewayTargetsCommand";
|
|
3
3
|
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "../commands/ListGatewaysCommand";
|
|
3
3
|
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListMemoriesCommandInput, ListMemoriesCommandOutput } from "../commands/ListMemoriesCommand";
|
|
3
3
|
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListOauth2CredentialProvidersCommandInput, ListOauth2CredentialProvidersCommandOutput } from "../commands/ListOauth2CredentialProvidersCommand";
|
|
3
3
|
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListOnlineEvaluationConfigsCommandInput, ListOnlineEvaluationConfigsCommandOutput } from "../commands/ListOnlineEvaluationConfigsCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListOnlineEvaluationConfigs: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListOnlineEvaluationConfigsCommandInput, ...rest: any[]) => Paginator<ListOnlineEvaluationConfigsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "../commands/ListPoliciesCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListPolicies: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListPoliciesCommandInput, ...rest: any[]) => Paginator<ListPoliciesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListPolicyEnginesCommandInput, ListPolicyEnginesCommandOutput } from "../commands/ListPolicyEnginesCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListPolicyEngines: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListPolicyEnginesCommandInput, ...rest: any[]) => Paginator<ListPolicyEnginesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListPolicyGenerationAssetsCommandInput, ListPolicyGenerationAssetsCommandOutput } from "../commands/ListPolicyGenerationAssetsCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListPolicyGenerationAssets: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListPolicyGenerationAssetsCommandInput, ...rest: any[]) => Paginator<ListPolicyGenerationAssetsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput } from "../commands/ListPolicyGenerationsCommand";
|
|
3
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListPolicyGenerations: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListPolicyGenerationsCommandInput, ...rest: any[]) => Paginator<ListPolicyGenerationsCommandOutput>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListWorkloadIdentitiesCommandInput, ListWorkloadIdentitiesCommandOutput } from "../commands/ListWorkloadIdentitiesCommand";
|
|
3
3
|
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -5,8 +5,14 @@ export * from "./ListAgentRuntimesPaginator";
|
|
|
5
5
|
export * from "./ListApiKeyCredentialProvidersPaginator";
|
|
6
6
|
export * from "./ListBrowsersPaginator";
|
|
7
7
|
export * from "./ListCodeInterpretersPaginator";
|
|
8
|
+
export * from "./ListEvaluatorsPaginator";
|
|
8
9
|
export * from "./ListGatewayTargetsPaginator";
|
|
9
10
|
export * from "./ListGatewaysPaginator";
|
|
10
11
|
export * from "./ListMemoriesPaginator";
|
|
11
12
|
export * from "./ListOauth2CredentialProvidersPaginator";
|
|
13
|
+
export * from "./ListOnlineEvaluationConfigsPaginator";
|
|
14
|
+
export * from "./ListPoliciesPaginator";
|
|
15
|
+
export * from "./ListPolicyEnginesPaginator";
|
|
16
|
+
export * from "./ListPolicyGenerationAssetsPaginator";
|
|
17
|
+
export * from "./ListPolicyGenerationsPaginator";
|
|
12
18
|
export * from "./ListWorkloadIdentitiesPaginator";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
-
import { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient";
|
|
2
|
+
import type { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
-
import { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient";
|
|
2
|
+
import type { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
1
|
+
import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
2
|
export declare var ApiKeyType: StaticSimpleSchema;
|
|
3
3
|
export declare var ClientSecretType: StaticSimpleSchema;
|
|
4
4
|
export declare var Description: StaticSimpleSchema;
|
|
5
5
|
export declare var EndpointName: StaticSimpleSchema;
|
|
6
|
+
export declare var EvaluationConfigDescription: StaticSimpleSchema;
|
|
7
|
+
export declare var EvaluatorDescription: StaticSimpleSchema;
|
|
8
|
+
export declare var EvaluatorInstructions: StaticSimpleSchema;
|
|
6
9
|
export declare var GatewayDescription: StaticSimpleSchema;
|
|
7
10
|
export declare var GatewayName: StaticSimpleSchema;
|
|
8
11
|
export declare var InlinePayload: StaticSimpleSchema;
|
|
@@ -13,13 +16,23 @@ export declare var TargetName: StaticSimpleSchema;
|
|
|
13
16
|
export declare var AccessDeniedException: StaticErrorSchema;
|
|
14
17
|
export declare var AgentRuntime: StaticStructureSchema;
|
|
15
18
|
export declare var AgentRuntimeEndpoint: StaticStructureSchema;
|
|
19
|
+
export declare var ApiGatewayTargetConfiguration: StaticStructureSchema;
|
|
20
|
+
export declare var ApiGatewayToolConfiguration: StaticStructureSchema;
|
|
21
|
+
export declare var ApiGatewayToolFilter: StaticStructureSchema;
|
|
22
|
+
export declare var ApiGatewayToolOverride: StaticStructureSchema;
|
|
16
23
|
export declare var ApiKeyCredentialProviderItem: StaticStructureSchema;
|
|
17
24
|
export declare var AtlassianOauth2ProviderConfigInput: StaticStructureSchema;
|
|
18
25
|
export declare var AtlassianOauth2ProviderConfigOutput: StaticStructureSchema;
|
|
26
|
+
export declare var AuthorizingClaimMatchValueType: StaticStructureSchema;
|
|
27
|
+
export declare var BedrockEvaluatorModelConfig: StaticStructureSchema;
|
|
19
28
|
export declare var BrowserNetworkConfiguration: StaticStructureSchema;
|
|
20
29
|
export declare var BrowserSigningConfigInput: StaticStructureSchema;
|
|
21
30
|
export declare var BrowserSigningConfigOutput: StaticStructureSchema;
|
|
22
31
|
export declare var BrowserSummary: StaticStructureSchema;
|
|
32
|
+
export declare var CategoricalScaleDefinition: StaticStructureSchema;
|
|
33
|
+
export declare var CedarPolicy: StaticStructureSchema;
|
|
34
|
+
export declare var CloudWatchLogsInputConfig: StaticStructureSchema;
|
|
35
|
+
export declare var CloudWatchOutputConfig: StaticStructureSchema;
|
|
23
36
|
export declare var CodeConfiguration: StaticStructureSchema;
|
|
24
37
|
export declare var CodeInterpreterNetworkConfiguration: StaticStructureSchema;
|
|
25
38
|
export declare var CodeInterpreterSummary: StaticStructureSchema;
|
|
@@ -36,6 +49,8 @@ export declare var CreateBrowserRequest: StaticStructureSchema;
|
|
|
36
49
|
export declare var CreateBrowserResponse: StaticStructureSchema;
|
|
37
50
|
export declare var CreateCodeInterpreterRequest: StaticStructureSchema;
|
|
38
51
|
export declare var CreateCodeInterpreterResponse: StaticStructureSchema;
|
|
52
|
+
export declare var CreateEvaluatorRequest: StaticStructureSchema;
|
|
53
|
+
export declare var CreateEvaluatorResponse: StaticStructureSchema;
|
|
39
54
|
export declare var CreateGatewayRequest: StaticStructureSchema;
|
|
40
55
|
export declare var CreateGatewayResponse: StaticStructureSchema;
|
|
41
56
|
export declare var CreateGatewayTargetRequest: StaticStructureSchema;
|
|
@@ -44,9 +59,16 @@ export declare var CreateMemoryInput: StaticStructureSchema;
|
|
|
44
59
|
export declare var CreateMemoryOutput: StaticStructureSchema;
|
|
45
60
|
export declare var CreateOauth2CredentialProviderRequest: StaticStructureSchema;
|
|
46
61
|
export declare var CreateOauth2CredentialProviderResponse: StaticStructureSchema;
|
|
62
|
+
export declare var CreateOnlineEvaluationConfigRequest: StaticStructureSchema;
|
|
63
|
+
export declare var CreateOnlineEvaluationConfigResponse: StaticStructureSchema;
|
|
64
|
+
export declare var CreatePolicyEngineRequest: StaticStructureSchema;
|
|
65
|
+
export declare var CreatePolicyEngineResponse: StaticStructureSchema;
|
|
66
|
+
export declare var CreatePolicyRequest: StaticStructureSchema;
|
|
67
|
+
export declare var CreatePolicyResponse: StaticStructureSchema;
|
|
47
68
|
export declare var CreateWorkloadIdentityRequest: StaticStructureSchema;
|
|
48
69
|
export declare var CreateWorkloadIdentityResponse: StaticStructureSchema;
|
|
49
70
|
export declare var CredentialProviderConfiguration: StaticStructureSchema;
|
|
71
|
+
export declare var CustomClaimValidationType: StaticStructureSchema;
|
|
50
72
|
export declare var CustomJWTAuthorizerConfiguration: StaticStructureSchema;
|
|
51
73
|
export declare var CustomMemoryStrategyInput: StaticStructureSchema;
|
|
52
74
|
export declare var CustomOauth2ProviderConfigInput: StaticStructureSchema;
|
|
@@ -62,6 +84,8 @@ export declare var DeleteBrowserRequest: StaticStructureSchema;
|
|
|
62
84
|
export declare var DeleteBrowserResponse: StaticStructureSchema;
|
|
63
85
|
export declare var DeleteCodeInterpreterRequest: StaticStructureSchema;
|
|
64
86
|
export declare var DeleteCodeInterpreterResponse: StaticStructureSchema;
|
|
87
|
+
export declare var DeleteEvaluatorRequest: StaticStructureSchema;
|
|
88
|
+
export declare var DeleteEvaluatorResponse: StaticStructureSchema;
|
|
65
89
|
export declare var DeleteGatewayRequest: StaticStructureSchema;
|
|
66
90
|
export declare var DeleteGatewayResponse: StaticStructureSchema;
|
|
67
91
|
export declare var DeleteGatewayTargetRequest: StaticStructureSchema;
|
|
@@ -71,11 +95,33 @@ export declare var DeleteMemoryOutput: StaticStructureSchema;
|
|
|
71
95
|
export declare var DeleteMemoryStrategyInput: StaticStructureSchema;
|
|
72
96
|
export declare var DeleteOauth2CredentialProviderRequest: StaticStructureSchema;
|
|
73
97
|
export declare var DeleteOauth2CredentialProviderResponse: StaticStructureSchema;
|
|
98
|
+
export declare var DeleteOnlineEvaluationConfigRequest: StaticStructureSchema;
|
|
99
|
+
export declare var DeleteOnlineEvaluationConfigResponse: StaticStructureSchema;
|
|
100
|
+
export declare var DeletePolicyEngineRequest: StaticStructureSchema;
|
|
101
|
+
export declare var DeletePolicyEngineResponse: StaticStructureSchema;
|
|
102
|
+
export declare var DeletePolicyRequest: StaticStructureSchema;
|
|
103
|
+
export declare var DeletePolicyResponse: StaticStructureSchema;
|
|
104
|
+
export declare var DeleteResourcePolicyRequest: StaticStructureSchema;
|
|
105
|
+
export declare var DeleteResourcePolicyResponse: StaticStructureSchema;
|
|
74
106
|
export declare var DeleteWorkloadIdentityRequest: StaticStructureSchema;
|
|
75
107
|
export declare var DeleteWorkloadIdentityResponse: StaticStructureSchema;
|
|
76
108
|
export declare var EncryptionFailure: StaticErrorSchema;
|
|
109
|
+
export declare var EpisodicConsolidationOverride: StaticStructureSchema;
|
|
110
|
+
export declare var EpisodicExtractionOverride: StaticStructureSchema;
|
|
111
|
+
export declare var EpisodicMemoryStrategyInput: StaticStructureSchema;
|
|
112
|
+
export declare var EpisodicOverrideConfigurationInput: StaticStructureSchema;
|
|
113
|
+
export declare var EpisodicOverrideConsolidationConfigurationInput: StaticStructureSchema;
|
|
114
|
+
export declare var EpisodicOverrideExtractionConfigurationInput: StaticStructureSchema;
|
|
115
|
+
export declare var EpisodicOverrideReflectionConfigurationInput: StaticStructureSchema;
|
|
116
|
+
export declare var EpisodicReflectionConfiguration: StaticStructureSchema;
|
|
117
|
+
export declare var EpisodicReflectionConfigurationInput: StaticStructureSchema;
|
|
118
|
+
export declare var EpisodicReflectionOverride: StaticStructureSchema;
|
|
119
|
+
export declare var EvaluatorSummary: StaticStructureSchema;
|
|
120
|
+
export declare var Filter: StaticStructureSchema;
|
|
121
|
+
export declare var Finding: StaticStructureSchema;
|
|
77
122
|
export declare var GatewayApiKeyCredentialProvider: StaticStructureSchema;
|
|
78
123
|
export declare var GatewayInterceptorConfiguration: StaticStructureSchema;
|
|
124
|
+
export declare var GatewayPolicyEngineConfiguration: StaticStructureSchema;
|
|
79
125
|
export declare var GatewaySummary: StaticStructureSchema;
|
|
80
126
|
export declare var GatewayTarget: StaticStructureSchema;
|
|
81
127
|
export declare var GetAgentRuntimeEndpointRequest: StaticStructureSchema;
|
|
@@ -88,6 +134,8 @@ export declare var GetBrowserRequest: StaticStructureSchema;
|
|
|
88
134
|
export declare var GetBrowserResponse: StaticStructureSchema;
|
|
89
135
|
export declare var GetCodeInterpreterRequest: StaticStructureSchema;
|
|
90
136
|
export declare var GetCodeInterpreterResponse: StaticStructureSchema;
|
|
137
|
+
export declare var GetEvaluatorRequest: StaticStructureSchema;
|
|
138
|
+
export declare var GetEvaluatorResponse: StaticStructureSchema;
|
|
91
139
|
export declare var GetGatewayRequest: StaticStructureSchema;
|
|
92
140
|
export declare var GetGatewayResponse: StaticStructureSchema;
|
|
93
141
|
export declare var GetGatewayTargetRequest: StaticStructureSchema;
|
|
@@ -96,6 +144,16 @@ export declare var GetMemoryInput: StaticStructureSchema;
|
|
|
96
144
|
export declare var GetMemoryOutput: StaticStructureSchema;
|
|
97
145
|
export declare var GetOauth2CredentialProviderRequest: StaticStructureSchema;
|
|
98
146
|
export declare var GetOauth2CredentialProviderResponse: StaticStructureSchema;
|
|
147
|
+
export declare var GetOnlineEvaluationConfigRequest: StaticStructureSchema;
|
|
148
|
+
export declare var GetOnlineEvaluationConfigResponse: StaticStructureSchema;
|
|
149
|
+
export declare var GetPolicyEngineRequest: StaticStructureSchema;
|
|
150
|
+
export declare var GetPolicyEngineResponse: StaticStructureSchema;
|
|
151
|
+
export declare var GetPolicyGenerationRequest: StaticStructureSchema;
|
|
152
|
+
export declare var GetPolicyGenerationResponse: StaticStructureSchema;
|
|
153
|
+
export declare var GetPolicyRequest: StaticStructureSchema;
|
|
154
|
+
export declare var GetPolicyResponse: StaticStructureSchema;
|
|
155
|
+
export declare var GetResourcePolicyRequest: StaticStructureSchema;
|
|
156
|
+
export declare var GetResourcePolicyResponse: StaticStructureSchema;
|
|
99
157
|
export declare var GetTokenVaultRequest: StaticStructureSchema;
|
|
100
158
|
export declare var GetTokenVaultResponse: StaticStructureSchema;
|
|
101
159
|
export declare var GetWorkloadIdentityRequest: StaticStructureSchema;
|
|
@@ -106,6 +164,7 @@ export declare var GoogleOauth2ProviderConfigInput: StaticStructureSchema;
|
|
|
106
164
|
export declare var GoogleOauth2ProviderConfigOutput: StaticStructureSchema;
|
|
107
165
|
export declare var IncludedOauth2ProviderConfigInput: StaticStructureSchema;
|
|
108
166
|
export declare var IncludedOauth2ProviderConfigOutput: StaticStructureSchema;
|
|
167
|
+
export declare var InferenceConfiguration: StaticStructureSchema;
|
|
109
168
|
export declare var InterceptorInputConfiguration: StaticStructureSchema;
|
|
110
169
|
export declare var InternalServerException: StaticErrorSchema;
|
|
111
170
|
export declare var InvocationConfiguration: StaticStructureSchema;
|
|
@@ -127,6 +186,8 @@ export declare var ListBrowsersRequest: StaticStructureSchema;
|
|
|
127
186
|
export declare var ListBrowsersResponse: StaticStructureSchema;
|
|
128
187
|
export declare var ListCodeInterpretersRequest: StaticStructureSchema;
|
|
129
188
|
export declare var ListCodeInterpretersResponse: StaticStructureSchema;
|
|
189
|
+
export declare var ListEvaluatorsRequest: StaticStructureSchema;
|
|
190
|
+
export declare var ListEvaluatorsResponse: StaticStructureSchema;
|
|
130
191
|
export declare var ListGatewaysRequest: StaticStructureSchema;
|
|
131
192
|
export declare var ListGatewaysResponse: StaticStructureSchema;
|
|
132
193
|
export declare var ListGatewayTargetsRequest: StaticStructureSchema;
|
|
@@ -135,10 +196,21 @@ export declare var ListMemoriesInput: StaticStructureSchema;
|
|
|
135
196
|
export declare var ListMemoriesOutput: StaticStructureSchema;
|
|
136
197
|
export declare var ListOauth2CredentialProvidersRequest: StaticStructureSchema;
|
|
137
198
|
export declare var ListOauth2CredentialProvidersResponse: StaticStructureSchema;
|
|
199
|
+
export declare var ListOnlineEvaluationConfigsRequest: StaticStructureSchema;
|
|
200
|
+
export declare var ListOnlineEvaluationConfigsResponse: StaticStructureSchema;
|
|
201
|
+
export declare var ListPoliciesRequest: StaticStructureSchema;
|
|
202
|
+
export declare var ListPoliciesResponse: StaticStructureSchema;
|
|
203
|
+
export declare var ListPolicyEnginesRequest: StaticStructureSchema;
|
|
204
|
+
export declare var ListPolicyEnginesResponse: StaticStructureSchema;
|
|
205
|
+
export declare var ListPolicyGenerationAssetsRequest: StaticStructureSchema;
|
|
206
|
+
export declare var ListPolicyGenerationAssetsResponse: StaticStructureSchema;
|
|
207
|
+
export declare var ListPolicyGenerationsRequest: StaticStructureSchema;
|
|
208
|
+
export declare var ListPolicyGenerationsResponse: StaticStructureSchema;
|
|
138
209
|
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
139
210
|
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
140
211
|
export declare var ListWorkloadIdentitiesRequest: StaticStructureSchema;
|
|
141
212
|
export declare var ListWorkloadIdentitiesResponse: StaticStructureSchema;
|
|
213
|
+
export declare var LlmAsAJudgeEvaluatorConfig: StaticStructureSchema;
|
|
142
214
|
export declare var MCPGatewayConfiguration: StaticStructureSchema;
|
|
143
215
|
export declare var McpLambdaTargetConfiguration: StaticStructureSchema;
|
|
144
216
|
export declare var McpServerTargetConfiguration: StaticStructureSchema;
|
|
@@ -155,17 +227,28 @@ export declare var ModifyMemoryStrategyInput: StaticStructureSchema;
|
|
|
155
227
|
export declare var ModifySelfManagedConfiguration: StaticStructureSchema;
|
|
156
228
|
export declare var ModifyStrategyConfiguration: StaticStructureSchema;
|
|
157
229
|
export declare var NetworkConfiguration: StaticStructureSchema;
|
|
230
|
+
export declare var NumericalScaleDefinition: StaticStructureSchema;
|
|
158
231
|
export declare var Oauth2AuthorizationServerMetadata: StaticStructureSchema;
|
|
159
232
|
export declare var Oauth2CredentialProviderItem: StaticStructureSchema;
|
|
160
233
|
export declare var OAuthCredentialProvider: StaticStructureSchema;
|
|
234
|
+
export declare var OnlineEvaluationConfigSummary: StaticStructureSchema;
|
|
235
|
+
export declare var OutputConfig: StaticStructureSchema;
|
|
236
|
+
export declare var Policy: StaticStructureSchema;
|
|
237
|
+
export declare var PolicyEngine: StaticStructureSchema;
|
|
238
|
+
export declare var PolicyGeneration: StaticStructureSchema;
|
|
239
|
+
export declare var PolicyGenerationAsset: StaticStructureSchema;
|
|
161
240
|
export declare var ProtocolConfiguration: StaticStructureSchema;
|
|
241
|
+
export declare var PutResourcePolicyRequest: StaticStructureSchema;
|
|
242
|
+
export declare var PutResourcePolicyResponse: StaticStructureSchema;
|
|
162
243
|
export declare var RecordingConfig: StaticStructureSchema;
|
|
163
244
|
export declare var ResourceLimitExceededException: StaticErrorSchema;
|
|
164
245
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
246
|
+
export declare var Rule: StaticStructureSchema;
|
|
165
247
|
export declare var S3Configuration: StaticStructureSchema;
|
|
166
248
|
export declare var S3Location: StaticStructureSchema;
|
|
167
249
|
export declare var SalesforceOauth2ProviderConfigInput: StaticStructureSchema;
|
|
168
250
|
export declare var SalesforceOauth2ProviderConfigOutput: StaticStructureSchema;
|
|
251
|
+
export declare var SamplingConfig: StaticStructureSchema;
|
|
169
252
|
export declare var SchemaDefinition: StaticStructureSchema;
|
|
170
253
|
export declare var Secret: StaticStructureSchema;
|
|
171
254
|
export declare var SelfManagedConfiguration: StaticStructureSchema;
|
|
@@ -178,10 +261,13 @@ export declare var SemanticOverrideConsolidationConfigurationInput: StaticStruct
|
|
|
178
261
|
export declare var SemanticOverrideExtractionConfigurationInput: StaticStructureSchema;
|
|
179
262
|
export declare var ServiceException: StaticErrorSchema;
|
|
180
263
|
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
264
|
+
export declare var SessionConfig: StaticStructureSchema;
|
|
181
265
|
export declare var SetTokenVaultCMKRequest: StaticStructureSchema;
|
|
182
266
|
export declare var SetTokenVaultCMKResponse: StaticStructureSchema;
|
|
183
267
|
export declare var SlackOauth2ProviderConfigInput: StaticStructureSchema;
|
|
184
268
|
export declare var SlackOauth2ProviderConfigOutput: StaticStructureSchema;
|
|
269
|
+
export declare var StartPolicyGenerationRequest: StaticStructureSchema;
|
|
270
|
+
export declare var StartPolicyGenerationResponse: StaticStructureSchema;
|
|
185
271
|
export declare var StrategyConfiguration: StaticStructureSchema;
|
|
186
272
|
export declare var SummaryConsolidationOverride: StaticStructureSchema;
|
|
187
273
|
export declare var SummaryMemoryStrategyInput: StaticStructureSchema;
|
|
@@ -208,6 +294,8 @@ export declare var UpdateAgentRuntimeRequest: StaticStructureSchema;
|
|
|
208
294
|
export declare var UpdateAgentRuntimeResponse: StaticStructureSchema;
|
|
209
295
|
export declare var UpdateApiKeyCredentialProviderRequest: StaticStructureSchema;
|
|
210
296
|
export declare var UpdateApiKeyCredentialProviderResponse: StaticStructureSchema;
|
|
297
|
+
export declare var UpdateEvaluatorRequest: StaticStructureSchema;
|
|
298
|
+
export declare var UpdateEvaluatorResponse: StaticStructureSchema;
|
|
211
299
|
export declare var UpdateGatewayRequest: StaticStructureSchema;
|
|
212
300
|
export declare var UpdateGatewayResponse: StaticStructureSchema;
|
|
213
301
|
export declare var UpdateGatewayTargetRequest: StaticStructureSchema;
|
|
@@ -216,6 +304,12 @@ export declare var UpdateMemoryInput: StaticStructureSchema;
|
|
|
216
304
|
export declare var UpdateMemoryOutput: StaticStructureSchema;
|
|
217
305
|
export declare var UpdateOauth2CredentialProviderRequest: StaticStructureSchema;
|
|
218
306
|
export declare var UpdateOauth2CredentialProviderResponse: StaticStructureSchema;
|
|
307
|
+
export declare var UpdateOnlineEvaluationConfigRequest: StaticStructureSchema;
|
|
308
|
+
export declare var UpdateOnlineEvaluationConfigResponse: StaticStructureSchema;
|
|
309
|
+
export declare var UpdatePolicyEngineRequest: StaticStructureSchema;
|
|
310
|
+
export declare var UpdatePolicyEngineResponse: StaticStructureSchema;
|
|
311
|
+
export declare var UpdatePolicyRequest: StaticStructureSchema;
|
|
312
|
+
export declare var UpdatePolicyResponse: StaticStructureSchema;
|
|
219
313
|
export declare var UpdateWorkloadIdentityRequest: StaticStructureSchema;
|
|
220
314
|
export declare var UpdateWorkloadIdentityResponse: StaticStructureSchema;
|
|
221
315
|
export declare var UserPreferenceConsolidationOverride: StaticStructureSchema;
|
|
@@ -235,29 +329,50 @@ export declare var AgentRuntimeEndpoints: StaticListSchema;
|
|
|
235
329
|
export declare var AgentRuntimes: StaticListSchema;
|
|
236
330
|
export declare var AllowedAudienceList: number;
|
|
237
331
|
export declare var AllowedClientsList: number;
|
|
332
|
+
export declare var AllowedScopesType: number;
|
|
333
|
+
export declare var ApiGatewayToolFilters: StaticListSchema;
|
|
334
|
+
export declare var ApiGatewayToolOverrides: StaticListSchema;
|
|
238
335
|
export declare var ApiKeyCredentialProviders: StaticListSchema;
|
|
239
336
|
export declare var BrowserSummaries: StaticListSchema;
|
|
337
|
+
export declare var CategoricalScaleDefinitions: StaticListSchema;
|
|
240
338
|
export declare var CodeInterpreterSummaries: StaticListSchema;
|
|
241
339
|
export declare var CredentialProviderConfigurations: StaticListSchema;
|
|
340
|
+
export declare var CustomClaimValidationsType: StaticListSchema;
|
|
242
341
|
export declare var DeleteMemoryStrategiesList: StaticListSchema;
|
|
243
342
|
export declare var EntryPoints: number;
|
|
343
|
+
export declare var EvaluatorList: StaticListSchema;
|
|
344
|
+
export declare var EvaluatorSummaryList: StaticListSchema;
|
|
345
|
+
export declare var FilterList: StaticListSchema;
|
|
346
|
+
export declare var Findings: StaticListSchema;
|
|
244
347
|
export declare var GatewayInterceptionPoints: number;
|
|
245
348
|
export declare var GatewayInterceptorConfigurations: StaticListSchema;
|
|
246
349
|
export declare var GatewaySummaries: StaticListSchema;
|
|
247
350
|
export declare var GatewayTargetList: StaticListSchema;
|
|
351
|
+
export declare var LogGroupNamesList: number;
|
|
352
|
+
export declare var MatchValueStringList: number;
|
|
248
353
|
export declare var McpSupportedVersions: number;
|
|
249
354
|
export declare var MemoryStrategyInputList: StaticListSchema;
|
|
250
355
|
export declare var MemoryStrategyList: StaticListSchema;
|
|
251
356
|
export declare var MemorySummaryList: StaticListSchema;
|
|
252
357
|
export declare var ModifyMemoryStrategiesList: StaticListSchema;
|
|
253
358
|
export declare var NamespacesList: number;
|
|
359
|
+
export declare var NonEmptyStringList: number;
|
|
360
|
+
export declare var NumericalScaleDefinitions: StaticListSchema;
|
|
254
361
|
export declare var Oauth2CredentialProviders: StaticListSchema;
|
|
255
362
|
export declare var OAuthScopes: number;
|
|
363
|
+
export declare var OnlineEvaluationConfigSummaryList: StaticListSchema;
|
|
364
|
+
export declare var Policies: StaticListSchema;
|
|
365
|
+
export declare var PolicyEngines: StaticListSchema;
|
|
366
|
+
export declare var PolicyGenerationAssets: StaticListSchema;
|
|
367
|
+
export declare var PolicyGenerations: StaticListSchema;
|
|
368
|
+
export declare var PolicyStatusReasons: number;
|
|
256
369
|
export declare var RequestHeaderAllowlist: number;
|
|
257
370
|
export declare var RequiredProperties: number;
|
|
258
371
|
export declare var ResourceOauth2ReturnUrlListType: number;
|
|
259
372
|
export declare var ResponseListType: number;
|
|
373
|
+
export declare var RestApiMethods: number;
|
|
260
374
|
export declare var SecurityGroups: number;
|
|
375
|
+
export declare var ServiceNamesList: number;
|
|
261
376
|
export declare var StatusReasons: number;
|
|
262
377
|
export declare var Subnets: number;
|
|
263
378
|
export declare var TagKeyList: number;
|
|
@@ -276,25 +391,39 @@ export declare var TagsMap: number;
|
|
|
276
391
|
export declare var AgentRuntimeArtifact: StaticStructureSchema;
|
|
277
392
|
export declare var ApiSchemaConfiguration: StaticStructureSchema;
|
|
278
393
|
export declare var AuthorizerConfiguration: StaticStructureSchema;
|
|
394
|
+
export declare var ClaimMatchValueType: StaticStructureSchema;
|
|
279
395
|
export declare var Code: StaticStructureSchema;
|
|
280
396
|
export declare var ConsolidationConfiguration: StaticStructureSchema;
|
|
397
|
+
export declare var Content: StaticStructureSchema;
|
|
281
398
|
export declare var CredentialProvider: StaticStructureSchema;
|
|
282
399
|
export declare var CustomConfigurationInput: StaticStructureSchema;
|
|
283
400
|
export declare var CustomConsolidationConfiguration: StaticStructureSchema;
|
|
284
401
|
export declare var CustomConsolidationConfigurationInput: StaticStructureSchema;
|
|
285
402
|
export declare var CustomExtractionConfiguration: StaticStructureSchema;
|
|
286
403
|
export declare var CustomExtractionConfigurationInput: StaticStructureSchema;
|
|
404
|
+
export declare var CustomReflectionConfiguration: StaticStructureSchema;
|
|
405
|
+
export declare var CustomReflectionConfigurationInput: StaticStructureSchema;
|
|
406
|
+
export declare var DataSourceConfig: StaticStructureSchema;
|
|
407
|
+
export declare var EvaluatorConfig: StaticStructureSchema;
|
|
408
|
+
export declare var EvaluatorModelConfig: StaticStructureSchema;
|
|
409
|
+
export declare var EvaluatorReference: StaticStructureSchema;
|
|
287
410
|
export declare var ExtractionConfiguration: StaticStructureSchema;
|
|
411
|
+
export declare var FilterValue: StaticStructureSchema;
|
|
288
412
|
export declare var GatewayProtocolConfiguration: StaticStructureSchema;
|
|
289
413
|
export declare var InterceptorConfiguration: StaticStructureSchema;
|
|
290
414
|
export declare var McpTargetConfiguration: StaticStructureSchema;
|
|
291
415
|
export declare var MemoryStrategyInput: StaticStructureSchema;
|
|
292
416
|
export declare var ModifyConsolidationConfiguration: StaticStructureSchema;
|
|
293
417
|
export declare var ModifyExtractionConfiguration: StaticStructureSchema;
|
|
418
|
+
export declare var ModifyReflectionConfiguration: StaticStructureSchema;
|
|
294
419
|
export declare var Oauth2Discovery: StaticStructureSchema;
|
|
295
420
|
export declare var Oauth2ProviderConfigInput: StaticStructureSchema;
|
|
296
421
|
export declare var Oauth2ProviderConfigOutput: StaticStructureSchema;
|
|
422
|
+
export declare var PolicyDefinition: StaticStructureSchema;
|
|
423
|
+
export declare var RatingScale: StaticStructureSchema;
|
|
424
|
+
export declare var ReflectionConfiguration: StaticStructureSchema;
|
|
297
425
|
export declare var RequestHeaderConfiguration: StaticStructureSchema;
|
|
426
|
+
export declare var Resource: StaticStructureSchema;
|
|
298
427
|
export declare var TargetConfiguration: StaticStructureSchema;
|
|
299
428
|
export declare var ToolSchema: StaticStructureSchema;
|
|
300
429
|
export declare var TriggerCondition: StaticStructureSchema;
|
|
@@ -304,30 +433,45 @@ export declare var CreateAgentRuntimeEndpoint: StaticOperationSchema;
|
|
|
304
433
|
export declare var CreateApiKeyCredentialProvider: StaticOperationSchema;
|
|
305
434
|
export declare var CreateBrowser: StaticOperationSchema;
|
|
306
435
|
export declare var CreateCodeInterpreter: StaticOperationSchema;
|
|
436
|
+
export declare var CreateEvaluator: StaticOperationSchema;
|
|
307
437
|
export declare var CreateGateway: StaticOperationSchema;
|
|
308
438
|
export declare var CreateGatewayTarget: StaticOperationSchema;
|
|
309
439
|
export declare var CreateMemory: StaticOperationSchema;
|
|
310
440
|
export declare var CreateOauth2CredentialProvider: StaticOperationSchema;
|
|
441
|
+
export declare var CreateOnlineEvaluationConfig: StaticOperationSchema;
|
|
442
|
+
export declare var CreatePolicy: StaticOperationSchema;
|
|
443
|
+
export declare var CreatePolicyEngine: StaticOperationSchema;
|
|
311
444
|
export declare var CreateWorkloadIdentity: StaticOperationSchema;
|
|
312
445
|
export declare var DeleteAgentRuntime: StaticOperationSchema;
|
|
313
446
|
export declare var DeleteAgentRuntimeEndpoint: StaticOperationSchema;
|
|
314
447
|
export declare var DeleteApiKeyCredentialProvider: StaticOperationSchema;
|
|
315
448
|
export declare var DeleteBrowser: StaticOperationSchema;
|
|
316
449
|
export declare var DeleteCodeInterpreter: StaticOperationSchema;
|
|
450
|
+
export declare var DeleteEvaluator: StaticOperationSchema;
|
|
317
451
|
export declare var DeleteGateway: StaticOperationSchema;
|
|
318
452
|
export declare var DeleteGatewayTarget: StaticOperationSchema;
|
|
319
453
|
export declare var DeleteMemory: StaticOperationSchema;
|
|
320
454
|
export declare var DeleteOauth2CredentialProvider: StaticOperationSchema;
|
|
455
|
+
export declare var DeleteOnlineEvaluationConfig: StaticOperationSchema;
|
|
456
|
+
export declare var DeletePolicy: StaticOperationSchema;
|
|
457
|
+
export declare var DeletePolicyEngine: StaticOperationSchema;
|
|
458
|
+
export declare var DeleteResourcePolicy: StaticOperationSchema;
|
|
321
459
|
export declare var DeleteWorkloadIdentity: StaticOperationSchema;
|
|
322
460
|
export declare var GetAgentRuntime: StaticOperationSchema;
|
|
323
461
|
export declare var GetAgentRuntimeEndpoint: StaticOperationSchema;
|
|
324
462
|
export declare var GetApiKeyCredentialProvider: StaticOperationSchema;
|
|
325
463
|
export declare var GetBrowser: StaticOperationSchema;
|
|
326
464
|
export declare var GetCodeInterpreter: StaticOperationSchema;
|
|
465
|
+
export declare var GetEvaluator: StaticOperationSchema;
|
|
327
466
|
export declare var GetGateway: StaticOperationSchema;
|
|
328
467
|
export declare var GetGatewayTarget: StaticOperationSchema;
|
|
329
468
|
export declare var GetMemory: StaticOperationSchema;
|
|
330
469
|
export declare var GetOauth2CredentialProvider: StaticOperationSchema;
|
|
470
|
+
export declare var GetOnlineEvaluationConfig: StaticOperationSchema;
|
|
471
|
+
export declare var GetPolicy: StaticOperationSchema;
|
|
472
|
+
export declare var GetPolicyEngine: StaticOperationSchema;
|
|
473
|
+
export declare var GetPolicyGeneration: StaticOperationSchema;
|
|
474
|
+
export declare var GetResourcePolicy: StaticOperationSchema;
|
|
331
475
|
export declare var GetTokenVault: StaticOperationSchema;
|
|
332
476
|
export declare var GetWorkloadIdentity: StaticOperationSchema;
|
|
333
477
|
export declare var ListAgentRuntimeEndpoints: StaticOperationSchema;
|
|
@@ -336,21 +480,33 @@ export declare var ListAgentRuntimeVersions: StaticOperationSchema;
|
|
|
336
480
|
export declare var ListApiKeyCredentialProviders: StaticOperationSchema;
|
|
337
481
|
export declare var ListBrowsers: StaticOperationSchema;
|
|
338
482
|
export declare var ListCodeInterpreters: StaticOperationSchema;
|
|
483
|
+
export declare var ListEvaluators: StaticOperationSchema;
|
|
339
484
|
export declare var ListGateways: StaticOperationSchema;
|
|
340
485
|
export declare var ListGatewayTargets: StaticOperationSchema;
|
|
341
486
|
export declare var ListMemories: StaticOperationSchema;
|
|
342
487
|
export declare var ListOauth2CredentialProviders: StaticOperationSchema;
|
|
488
|
+
export declare var ListOnlineEvaluationConfigs: StaticOperationSchema;
|
|
489
|
+
export declare var ListPolicies: StaticOperationSchema;
|
|
490
|
+
export declare var ListPolicyEngines: StaticOperationSchema;
|
|
491
|
+
export declare var ListPolicyGenerationAssets: StaticOperationSchema;
|
|
492
|
+
export declare var ListPolicyGenerations: StaticOperationSchema;
|
|
343
493
|
export declare var ListTagsForResource: StaticOperationSchema;
|
|
344
494
|
export declare var ListWorkloadIdentities: StaticOperationSchema;
|
|
495
|
+
export declare var PutResourcePolicy: StaticOperationSchema;
|
|
345
496
|
export declare var SetTokenVaultCMK: StaticOperationSchema;
|
|
497
|
+
export declare var StartPolicyGeneration: StaticOperationSchema;
|
|
346
498
|
export declare var SynchronizeGatewayTargets: StaticOperationSchema;
|
|
347
499
|
export declare var TagResource: StaticOperationSchema;
|
|
348
500
|
export declare var UntagResource: StaticOperationSchema;
|
|
349
501
|
export declare var UpdateAgentRuntime: StaticOperationSchema;
|
|
350
502
|
export declare var UpdateAgentRuntimeEndpoint: StaticOperationSchema;
|
|
351
503
|
export declare var UpdateApiKeyCredentialProvider: StaticOperationSchema;
|
|
504
|
+
export declare var UpdateEvaluator: StaticOperationSchema;
|
|
352
505
|
export declare var UpdateGateway: StaticOperationSchema;
|
|
353
506
|
export declare var UpdateGatewayTarget: StaticOperationSchema;
|
|
354
507
|
export declare var UpdateMemory: StaticOperationSchema;
|
|
355
508
|
export declare var UpdateOauth2CredentialProvider: StaticOperationSchema;
|
|
509
|
+
export declare var UpdateOnlineEvaluationConfig: StaticOperationSchema;
|
|
510
|
+
export declare var UpdatePolicy: StaticOperationSchema;
|
|
511
|
+
export declare var UpdatePolicyEngine: StaticOperationSchema;
|
|
356
512
|
export declare var UpdateWorkloadIdentity: StaticOperationSchema;
|