@aws-sdk/client-bedrock-agentcore-control 3.940.0 → 3.943.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 +2140 -143
- package/dist-es/BedrockAgentCoreControl.js +54 -0
- 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/schemas/schemas_0.js +1320 -97
- 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 +192 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +29 -2
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +132 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/CreateMemoryCommand.d.ts +52 -5
- 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 +1 -1
- package/dist-types/commands/DeleteEvaluatorCommand.d.ts +94 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +3 -0
- 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 +1 -1
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +19 -0
- package/dist-types/commands/GetEvaluatorCommand.d.ts +131 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +22 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +26 -1
- package/dist-types/commands/GetMemoryCommand.d.ts +27 -5
- 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/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +101 -0
- 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/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +90 -0
- package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +116 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +26 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +135 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/UpdateMemoryCommand.d.ts +73 -8
- 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 +1 -1
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +232 -0
- package/dist-types/models/models_0.d.ts +4160 -2169
- package/dist-types/models/models_1.d.ts +1009 -0
- package/dist-types/pagination/ListEvaluatorsPaginator.d.ts +7 -0
- 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/index.d.ts +6 -0
- package/dist-types/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +462 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +162 -0
- 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/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 +5 -5
|
@@ -12,30 +12,45 @@ import { CreateAgentRuntimeEndpointCommandInput, CreateAgentRuntimeEndpointComma
|
|
|
12
12
|
import { CreateApiKeyCredentialProviderCommandInput, CreateApiKeyCredentialProviderCommandOutput } from "./commands/CreateApiKeyCredentialProviderCommand";
|
|
13
13
|
import { CreateBrowserCommandInput, CreateBrowserCommandOutput } from "./commands/CreateBrowserCommand";
|
|
14
14
|
import { CreateCodeInterpreterCommandInput, CreateCodeInterpreterCommandOutput } from "./commands/CreateCodeInterpreterCommand";
|
|
15
|
+
import { CreateEvaluatorCommandInput, CreateEvaluatorCommandOutput } from "./commands/CreateEvaluatorCommand";
|
|
15
16
|
import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
|
|
16
17
|
import { CreateGatewayTargetCommandInput, CreateGatewayTargetCommandOutput } from "./commands/CreateGatewayTargetCommand";
|
|
17
18
|
import { CreateMemoryCommandInput, CreateMemoryCommandOutput } from "./commands/CreateMemoryCommand";
|
|
18
19
|
import { CreateOauth2CredentialProviderCommandInput, CreateOauth2CredentialProviderCommandOutput } from "./commands/CreateOauth2CredentialProviderCommand";
|
|
20
|
+
import { CreateOnlineEvaluationConfigCommandInput, CreateOnlineEvaluationConfigCommandOutput } from "./commands/CreateOnlineEvaluationConfigCommand";
|
|
21
|
+
import { CreatePolicyCommandInput, CreatePolicyCommandOutput } from "./commands/CreatePolicyCommand";
|
|
22
|
+
import { CreatePolicyEngineCommandInput, CreatePolicyEngineCommandOutput } from "./commands/CreatePolicyEngineCommand";
|
|
19
23
|
import { CreateWorkloadIdentityCommandInput, CreateWorkloadIdentityCommandOutput } from "./commands/CreateWorkloadIdentityCommand";
|
|
20
24
|
import { DeleteAgentRuntimeCommandInput, DeleteAgentRuntimeCommandOutput } from "./commands/DeleteAgentRuntimeCommand";
|
|
21
25
|
import { DeleteAgentRuntimeEndpointCommandInput, DeleteAgentRuntimeEndpointCommandOutput } from "./commands/DeleteAgentRuntimeEndpointCommand";
|
|
22
26
|
import { DeleteApiKeyCredentialProviderCommandInput, DeleteApiKeyCredentialProviderCommandOutput } from "./commands/DeleteApiKeyCredentialProviderCommand";
|
|
23
27
|
import { DeleteBrowserCommandInput, DeleteBrowserCommandOutput } from "./commands/DeleteBrowserCommand";
|
|
24
28
|
import { DeleteCodeInterpreterCommandInput, DeleteCodeInterpreterCommandOutput } from "./commands/DeleteCodeInterpreterCommand";
|
|
29
|
+
import { DeleteEvaluatorCommandInput, DeleteEvaluatorCommandOutput } from "./commands/DeleteEvaluatorCommand";
|
|
25
30
|
import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
26
31
|
import { DeleteGatewayTargetCommandInput, DeleteGatewayTargetCommandOutput } from "./commands/DeleteGatewayTargetCommand";
|
|
27
32
|
import { DeleteMemoryCommandInput, DeleteMemoryCommandOutput } from "./commands/DeleteMemoryCommand";
|
|
28
33
|
import { DeleteOauth2CredentialProviderCommandInput, DeleteOauth2CredentialProviderCommandOutput } from "./commands/DeleteOauth2CredentialProviderCommand";
|
|
34
|
+
import { DeleteOnlineEvaluationConfigCommandInput, DeleteOnlineEvaluationConfigCommandOutput } from "./commands/DeleteOnlineEvaluationConfigCommand";
|
|
35
|
+
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
36
|
+
import { DeletePolicyEngineCommandInput, DeletePolicyEngineCommandOutput } from "./commands/DeletePolicyEngineCommand";
|
|
37
|
+
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
|
|
29
38
|
import { DeleteWorkloadIdentityCommandInput, DeleteWorkloadIdentityCommandOutput } from "./commands/DeleteWorkloadIdentityCommand";
|
|
30
39
|
import { GetAgentRuntimeCommandInput, GetAgentRuntimeCommandOutput } from "./commands/GetAgentRuntimeCommand";
|
|
31
40
|
import { GetAgentRuntimeEndpointCommandInput, GetAgentRuntimeEndpointCommandOutput } from "./commands/GetAgentRuntimeEndpointCommand";
|
|
32
41
|
import { GetApiKeyCredentialProviderCommandInput, GetApiKeyCredentialProviderCommandOutput } from "./commands/GetApiKeyCredentialProviderCommand";
|
|
33
42
|
import { GetBrowserCommandInput, GetBrowserCommandOutput } from "./commands/GetBrowserCommand";
|
|
34
43
|
import { GetCodeInterpreterCommandInput, GetCodeInterpreterCommandOutput } from "./commands/GetCodeInterpreterCommand";
|
|
44
|
+
import { GetEvaluatorCommandInput, GetEvaluatorCommandOutput } from "./commands/GetEvaluatorCommand";
|
|
35
45
|
import { GetGatewayCommandInput, GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
|
|
36
46
|
import { GetGatewayTargetCommandInput, GetGatewayTargetCommandOutput } from "./commands/GetGatewayTargetCommand";
|
|
37
47
|
import { GetMemoryCommandInput, GetMemoryCommandOutput } from "./commands/GetMemoryCommand";
|
|
38
48
|
import { GetOauth2CredentialProviderCommandInput, GetOauth2CredentialProviderCommandOutput } from "./commands/GetOauth2CredentialProviderCommand";
|
|
49
|
+
import { GetOnlineEvaluationConfigCommandInput, GetOnlineEvaluationConfigCommandOutput } from "./commands/GetOnlineEvaluationConfigCommand";
|
|
50
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
51
|
+
import { GetPolicyEngineCommandInput, GetPolicyEngineCommandOutput } from "./commands/GetPolicyEngineCommand";
|
|
52
|
+
import { GetPolicyGenerationCommandInput, GetPolicyGenerationCommandOutput } from "./commands/GetPolicyGenerationCommand";
|
|
53
|
+
import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
|
|
39
54
|
import { GetTokenVaultCommandInput, GetTokenVaultCommandOutput } from "./commands/GetTokenVaultCommand";
|
|
40
55
|
import { GetWorkloadIdentityCommandInput, GetWorkloadIdentityCommandOutput } from "./commands/GetWorkloadIdentityCommand";
|
|
41
56
|
import { ListAgentRuntimeEndpointsCommandInput, ListAgentRuntimeEndpointsCommandOutput } from "./commands/ListAgentRuntimeEndpointsCommand";
|
|
@@ -44,23 +59,35 @@ import { ListAgentRuntimeVersionsCommandInput, ListAgentRuntimeVersionsCommandOu
|
|
|
44
59
|
import { ListApiKeyCredentialProvidersCommandInput, ListApiKeyCredentialProvidersCommandOutput } from "./commands/ListApiKeyCredentialProvidersCommand";
|
|
45
60
|
import { ListBrowsersCommandInput, ListBrowsersCommandOutput } from "./commands/ListBrowsersCommand";
|
|
46
61
|
import { ListCodeInterpretersCommandInput, ListCodeInterpretersCommandOutput } from "./commands/ListCodeInterpretersCommand";
|
|
62
|
+
import { ListEvaluatorsCommandInput, ListEvaluatorsCommandOutput } from "./commands/ListEvaluatorsCommand";
|
|
47
63
|
import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
48
64
|
import { ListGatewayTargetsCommandInput, ListGatewayTargetsCommandOutput } from "./commands/ListGatewayTargetsCommand";
|
|
49
65
|
import { ListMemoriesCommandInput, ListMemoriesCommandOutput } from "./commands/ListMemoriesCommand";
|
|
50
66
|
import { ListOauth2CredentialProvidersCommandInput, ListOauth2CredentialProvidersCommandOutput } from "./commands/ListOauth2CredentialProvidersCommand";
|
|
67
|
+
import { ListOnlineEvaluationConfigsCommandInput, ListOnlineEvaluationConfigsCommandOutput } from "./commands/ListOnlineEvaluationConfigsCommand";
|
|
68
|
+
import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "./commands/ListPoliciesCommand";
|
|
69
|
+
import { ListPolicyEnginesCommandInput, ListPolicyEnginesCommandOutput } from "./commands/ListPolicyEnginesCommand";
|
|
70
|
+
import { ListPolicyGenerationAssetsCommandInput, ListPolicyGenerationAssetsCommandOutput } from "./commands/ListPolicyGenerationAssetsCommand";
|
|
71
|
+
import { ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput } from "./commands/ListPolicyGenerationsCommand";
|
|
51
72
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
52
73
|
import { ListWorkloadIdentitiesCommandInput, ListWorkloadIdentitiesCommandOutput } from "./commands/ListWorkloadIdentitiesCommand";
|
|
74
|
+
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
53
75
|
import { SetTokenVaultCMKCommandInput, SetTokenVaultCMKCommandOutput } from "./commands/SetTokenVaultCMKCommand";
|
|
76
|
+
import { StartPolicyGenerationCommandInput, StartPolicyGenerationCommandOutput } from "./commands/StartPolicyGenerationCommand";
|
|
54
77
|
import { SynchronizeGatewayTargetsCommandInput, SynchronizeGatewayTargetsCommandOutput } from "./commands/SynchronizeGatewayTargetsCommand";
|
|
55
78
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
56
79
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
57
80
|
import { UpdateAgentRuntimeCommandInput, UpdateAgentRuntimeCommandOutput } from "./commands/UpdateAgentRuntimeCommand";
|
|
58
81
|
import { UpdateAgentRuntimeEndpointCommandInput, UpdateAgentRuntimeEndpointCommandOutput } from "./commands/UpdateAgentRuntimeEndpointCommand";
|
|
59
82
|
import { UpdateApiKeyCredentialProviderCommandInput, UpdateApiKeyCredentialProviderCommandOutput } from "./commands/UpdateApiKeyCredentialProviderCommand";
|
|
83
|
+
import { UpdateEvaluatorCommandInput, UpdateEvaluatorCommandOutput } from "./commands/UpdateEvaluatorCommand";
|
|
60
84
|
import { UpdateGatewayCommandInput, UpdateGatewayCommandOutput } from "./commands/UpdateGatewayCommand";
|
|
61
85
|
import { UpdateGatewayTargetCommandInput, UpdateGatewayTargetCommandOutput } from "./commands/UpdateGatewayTargetCommand";
|
|
62
86
|
import { UpdateMemoryCommandInput, UpdateMemoryCommandOutput } from "./commands/UpdateMemoryCommand";
|
|
63
87
|
import { UpdateOauth2CredentialProviderCommandInput, UpdateOauth2CredentialProviderCommandOutput } from "./commands/UpdateOauth2CredentialProviderCommand";
|
|
88
|
+
import { UpdateOnlineEvaluationConfigCommandInput, UpdateOnlineEvaluationConfigCommandOutput } from "./commands/UpdateOnlineEvaluationConfigCommand";
|
|
89
|
+
import { UpdatePolicyCommandInput, UpdatePolicyCommandOutput } from "./commands/UpdatePolicyCommand";
|
|
90
|
+
import { UpdatePolicyEngineCommandInput, UpdatePolicyEngineCommandOutput } from "./commands/UpdatePolicyEngineCommand";
|
|
64
91
|
import { UpdateWorkloadIdentityCommandInput, UpdateWorkloadIdentityCommandOutput } from "./commands/UpdateWorkloadIdentityCommand";
|
|
65
92
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
66
93
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
@@ -68,11 +95,11 @@ export { __Client };
|
|
|
68
95
|
/**
|
|
69
96
|
* @public
|
|
70
97
|
*/
|
|
71
|
-
export type ServiceInputTypes = CreateAgentRuntimeCommandInput | CreateAgentRuntimeEndpointCommandInput | CreateApiKeyCredentialProviderCommandInput | CreateBrowserCommandInput | CreateCodeInterpreterCommandInput | CreateGatewayCommandInput | CreateGatewayTargetCommandInput | CreateMemoryCommandInput | CreateOauth2CredentialProviderCommandInput | CreateWorkloadIdentityCommandInput | DeleteAgentRuntimeCommandInput | DeleteAgentRuntimeEndpointCommandInput | DeleteApiKeyCredentialProviderCommandInput | DeleteBrowserCommandInput | DeleteCodeInterpreterCommandInput | DeleteGatewayCommandInput | DeleteGatewayTargetCommandInput | DeleteMemoryCommandInput | DeleteOauth2CredentialProviderCommandInput | DeleteWorkloadIdentityCommandInput | GetAgentRuntimeCommandInput | GetAgentRuntimeEndpointCommandInput | GetApiKeyCredentialProviderCommandInput | GetBrowserCommandInput | GetCodeInterpreterCommandInput | GetGatewayCommandInput | GetGatewayTargetCommandInput | GetMemoryCommandInput | GetOauth2CredentialProviderCommandInput | GetTokenVaultCommandInput | GetWorkloadIdentityCommandInput | ListAgentRuntimeEndpointsCommandInput | ListAgentRuntimeVersionsCommandInput | ListAgentRuntimesCommandInput | ListApiKeyCredentialProvidersCommandInput | ListBrowsersCommandInput | ListCodeInterpretersCommandInput | ListGatewayTargetsCommandInput | ListGatewaysCommandInput | ListMemoriesCommandInput | ListOauth2CredentialProvidersCommandInput | ListTagsForResourceCommandInput | ListWorkloadIdentitiesCommandInput | SetTokenVaultCMKCommandInput | SynchronizeGatewayTargetsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentRuntimeCommandInput | UpdateAgentRuntimeEndpointCommandInput | UpdateApiKeyCredentialProviderCommandInput | UpdateGatewayCommandInput | UpdateGatewayTargetCommandInput | UpdateMemoryCommandInput | UpdateOauth2CredentialProviderCommandInput | UpdateWorkloadIdentityCommandInput;
|
|
98
|
+
export type ServiceInputTypes = CreateAgentRuntimeCommandInput | CreateAgentRuntimeEndpointCommandInput | CreateApiKeyCredentialProviderCommandInput | CreateBrowserCommandInput | CreateCodeInterpreterCommandInput | CreateEvaluatorCommandInput | CreateGatewayCommandInput | CreateGatewayTargetCommandInput | CreateMemoryCommandInput | CreateOauth2CredentialProviderCommandInput | CreateOnlineEvaluationConfigCommandInput | CreatePolicyCommandInput | CreatePolicyEngineCommandInput | CreateWorkloadIdentityCommandInput | DeleteAgentRuntimeCommandInput | DeleteAgentRuntimeEndpointCommandInput | DeleteApiKeyCredentialProviderCommandInput | DeleteBrowserCommandInput | DeleteCodeInterpreterCommandInput | DeleteEvaluatorCommandInput | DeleteGatewayCommandInput | DeleteGatewayTargetCommandInput | DeleteMemoryCommandInput | DeleteOauth2CredentialProviderCommandInput | DeleteOnlineEvaluationConfigCommandInput | DeletePolicyCommandInput | DeletePolicyEngineCommandInput | DeleteResourcePolicyCommandInput | DeleteWorkloadIdentityCommandInput | GetAgentRuntimeCommandInput | GetAgentRuntimeEndpointCommandInput | GetApiKeyCredentialProviderCommandInput | GetBrowserCommandInput | GetCodeInterpreterCommandInput | GetEvaluatorCommandInput | GetGatewayCommandInput | GetGatewayTargetCommandInput | GetMemoryCommandInput | GetOauth2CredentialProviderCommandInput | GetOnlineEvaluationConfigCommandInput | GetPolicyCommandInput | GetPolicyEngineCommandInput | GetPolicyGenerationCommandInput | GetResourcePolicyCommandInput | GetTokenVaultCommandInput | GetWorkloadIdentityCommandInput | ListAgentRuntimeEndpointsCommandInput | ListAgentRuntimeVersionsCommandInput | ListAgentRuntimesCommandInput | ListApiKeyCredentialProvidersCommandInput | ListBrowsersCommandInput | ListCodeInterpretersCommandInput | ListEvaluatorsCommandInput | ListGatewayTargetsCommandInput | ListGatewaysCommandInput | ListMemoriesCommandInput | ListOauth2CredentialProvidersCommandInput | ListOnlineEvaluationConfigsCommandInput | ListPoliciesCommandInput | ListPolicyEnginesCommandInput | ListPolicyGenerationAssetsCommandInput | ListPolicyGenerationsCommandInput | ListTagsForResourceCommandInput | ListWorkloadIdentitiesCommandInput | PutResourcePolicyCommandInput | SetTokenVaultCMKCommandInput | StartPolicyGenerationCommandInput | SynchronizeGatewayTargetsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentRuntimeCommandInput | UpdateAgentRuntimeEndpointCommandInput | UpdateApiKeyCredentialProviderCommandInput | UpdateEvaluatorCommandInput | UpdateGatewayCommandInput | UpdateGatewayTargetCommandInput | UpdateMemoryCommandInput | UpdateOauth2CredentialProviderCommandInput | UpdateOnlineEvaluationConfigCommandInput | UpdatePolicyCommandInput | UpdatePolicyEngineCommandInput | UpdateWorkloadIdentityCommandInput;
|
|
72
99
|
/**
|
|
73
100
|
* @public
|
|
74
101
|
*/
|
|
75
|
-
export type ServiceOutputTypes = CreateAgentRuntimeCommandOutput | CreateAgentRuntimeEndpointCommandOutput | CreateApiKeyCredentialProviderCommandOutput | CreateBrowserCommandOutput | CreateCodeInterpreterCommandOutput | CreateGatewayCommandOutput | CreateGatewayTargetCommandOutput | CreateMemoryCommandOutput | CreateOauth2CredentialProviderCommandOutput | CreateWorkloadIdentityCommandOutput | DeleteAgentRuntimeCommandOutput | DeleteAgentRuntimeEndpointCommandOutput | DeleteApiKeyCredentialProviderCommandOutput | DeleteBrowserCommandOutput | DeleteCodeInterpreterCommandOutput | DeleteGatewayCommandOutput | DeleteGatewayTargetCommandOutput | DeleteMemoryCommandOutput | DeleteOauth2CredentialProviderCommandOutput | DeleteWorkloadIdentityCommandOutput | GetAgentRuntimeCommandOutput | GetAgentRuntimeEndpointCommandOutput | GetApiKeyCredentialProviderCommandOutput | GetBrowserCommandOutput | GetCodeInterpreterCommandOutput | GetGatewayCommandOutput | GetGatewayTargetCommandOutput | GetMemoryCommandOutput | GetOauth2CredentialProviderCommandOutput | GetTokenVaultCommandOutput | GetWorkloadIdentityCommandOutput | ListAgentRuntimeEndpointsCommandOutput | ListAgentRuntimeVersionsCommandOutput | ListAgentRuntimesCommandOutput | ListApiKeyCredentialProvidersCommandOutput | ListBrowsersCommandOutput | ListCodeInterpretersCommandOutput | ListGatewayTargetsCommandOutput | ListGatewaysCommandOutput | ListMemoriesCommandOutput | ListOauth2CredentialProvidersCommandOutput | ListTagsForResourceCommandOutput | ListWorkloadIdentitiesCommandOutput | SetTokenVaultCMKCommandOutput | SynchronizeGatewayTargetsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentRuntimeCommandOutput | UpdateAgentRuntimeEndpointCommandOutput | UpdateApiKeyCredentialProviderCommandOutput | UpdateGatewayCommandOutput | UpdateGatewayTargetCommandOutput | UpdateMemoryCommandOutput | UpdateOauth2CredentialProviderCommandOutput | UpdateWorkloadIdentityCommandOutput;
|
|
102
|
+
export type ServiceOutputTypes = CreateAgentRuntimeCommandOutput | CreateAgentRuntimeEndpointCommandOutput | CreateApiKeyCredentialProviderCommandOutput | CreateBrowserCommandOutput | CreateCodeInterpreterCommandOutput | CreateEvaluatorCommandOutput | CreateGatewayCommandOutput | CreateGatewayTargetCommandOutput | CreateMemoryCommandOutput | CreateOauth2CredentialProviderCommandOutput | CreateOnlineEvaluationConfigCommandOutput | CreatePolicyCommandOutput | CreatePolicyEngineCommandOutput | CreateWorkloadIdentityCommandOutput | DeleteAgentRuntimeCommandOutput | DeleteAgentRuntimeEndpointCommandOutput | DeleteApiKeyCredentialProviderCommandOutput | DeleteBrowserCommandOutput | DeleteCodeInterpreterCommandOutput | DeleteEvaluatorCommandOutput | DeleteGatewayCommandOutput | DeleteGatewayTargetCommandOutput | DeleteMemoryCommandOutput | DeleteOauth2CredentialProviderCommandOutput | DeleteOnlineEvaluationConfigCommandOutput | DeletePolicyCommandOutput | DeletePolicyEngineCommandOutput | DeleteResourcePolicyCommandOutput | DeleteWorkloadIdentityCommandOutput | GetAgentRuntimeCommandOutput | GetAgentRuntimeEndpointCommandOutput | GetApiKeyCredentialProviderCommandOutput | GetBrowserCommandOutput | GetCodeInterpreterCommandOutput | GetEvaluatorCommandOutput | GetGatewayCommandOutput | GetGatewayTargetCommandOutput | GetMemoryCommandOutput | GetOauth2CredentialProviderCommandOutput | GetOnlineEvaluationConfigCommandOutput | GetPolicyCommandOutput | GetPolicyEngineCommandOutput | GetPolicyGenerationCommandOutput | GetResourcePolicyCommandOutput | GetTokenVaultCommandOutput | GetWorkloadIdentityCommandOutput | ListAgentRuntimeEndpointsCommandOutput | ListAgentRuntimeVersionsCommandOutput | ListAgentRuntimesCommandOutput | ListApiKeyCredentialProvidersCommandOutput | ListBrowsersCommandOutput | ListCodeInterpretersCommandOutput | ListEvaluatorsCommandOutput | ListGatewayTargetsCommandOutput | ListGatewaysCommandOutput | ListMemoriesCommandOutput | ListOauth2CredentialProvidersCommandOutput | ListOnlineEvaluationConfigsCommandOutput | ListPoliciesCommandOutput | ListPolicyEnginesCommandOutput | ListPolicyGenerationAssetsCommandOutput | ListPolicyGenerationsCommandOutput | ListTagsForResourceCommandOutput | ListWorkloadIdentitiesCommandOutput | PutResourcePolicyCommandOutput | SetTokenVaultCMKCommandOutput | StartPolicyGenerationCommandOutput | SynchronizeGatewayTargetsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentRuntimeCommandOutput | UpdateAgentRuntimeEndpointCommandOutput | UpdateApiKeyCredentialProviderCommandOutput | UpdateEvaluatorCommandOutput | UpdateGatewayCommandOutput | UpdateGatewayTargetCommandOutput | UpdateMemoryCommandOutput | UpdateOauth2CredentialProviderCommandOutput | UpdateOnlineEvaluationConfigCommandOutput | UpdatePolicyCommandOutput | UpdatePolicyEngineCommandOutput | UpdateWorkloadIdentityCommandOutput;
|
|
76
103
|
/**
|
|
77
104
|
* @public
|
|
78
105
|
*/
|
|
@@ -79,6 +79,24 @@ declare const CreateAgentRuntimeCommand_base: {
|
|
|
79
79
|
* allowedClients: [ // AllowedClientsList
|
|
80
80
|
* "STRING_VALUE",
|
|
81
81
|
* ],
|
|
82
|
+
* allowedScopes: [ // AllowedScopesType
|
|
83
|
+
* "STRING_VALUE",
|
|
84
|
+
* ],
|
|
85
|
+
* customClaims: [ // CustomClaimValidationsType
|
|
86
|
+
* { // CustomClaimValidationType
|
|
87
|
+
* inboundTokenClaimName: "STRING_VALUE", // required
|
|
88
|
+
* inboundTokenClaimValueType: "STRING" || "STRING_ARRAY", // required
|
|
89
|
+
* authorizingClaimMatchValue: { // AuthorizingClaimMatchValueType
|
|
90
|
+
* claimMatchValue: { // ClaimMatchValueType Union: only one key present
|
|
91
|
+
* matchValueString: "STRING_VALUE",
|
|
92
|
+
* matchValueStringList: [ // MatchValueStringList
|
|
93
|
+
* "STRING_VALUE",
|
|
94
|
+
* ],
|
|
95
|
+
* },
|
|
96
|
+
* claimMatchOperator: "EQUALS" || "CONTAINS" || "CONTAINS_ANY", // required
|
|
97
|
+
* },
|
|
98
|
+
* },
|
|
99
|
+
* ],
|
|
82
100
|
* },
|
|
83
101
|
* },
|
|
84
102
|
* requestHeaderConfiguration: { // RequestHeaderConfiguration Union: only one key present
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
|
|
4
|
+
import { CreateEvaluatorRequest, CreateEvaluatorResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateEvaluatorCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateEvaluatorCommandInput extends CreateEvaluatorRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateEvaluatorCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateEvaluatorCommandOutput extends CreateEvaluatorResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateEvaluatorCommand_base: {
|
|
25
|
+
new (input: CreateEvaluatorCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEvaluatorCommandInput, CreateEvaluatorCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateEvaluatorCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEvaluatorCommandInput, CreateEvaluatorCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p> Creates a custom evaluator for agent quality assessment. Custom evaluators use LLM-as-a-Judge configurations with user-defined prompts, rating scales, and model settings to evaluate agent performance at tool call, trace, or session levels. </p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { BedrockAgentCoreControlClient, CreateEvaluatorCommand } from "@aws-sdk/client-bedrock-agentcore-control"; // ES Modules import
|
|
35
|
+
* // const { BedrockAgentCoreControlClient, CreateEvaluatorCommand } = require("@aws-sdk/client-bedrock-agentcore-control"); // CommonJS import
|
|
36
|
+
* // import type { BedrockAgentCoreControlClientConfig } from "@aws-sdk/client-bedrock-agentcore-control";
|
|
37
|
+
* const config = {}; // type is BedrockAgentCoreControlClientConfig
|
|
38
|
+
* const client = new BedrockAgentCoreControlClient(config);
|
|
39
|
+
* const input = { // CreateEvaluatorRequest
|
|
40
|
+
* clientToken: "STRING_VALUE",
|
|
41
|
+
* evaluatorName: "STRING_VALUE", // required
|
|
42
|
+
* description: "STRING_VALUE",
|
|
43
|
+
* evaluatorConfig: { // EvaluatorConfig Union: only one key present
|
|
44
|
+
* llmAsAJudge: { // LlmAsAJudgeEvaluatorConfig
|
|
45
|
+
* instructions: "STRING_VALUE", // required
|
|
46
|
+
* ratingScale: { // RatingScale Union: only one key present
|
|
47
|
+
* numerical: [ // NumericalScaleDefinitions
|
|
48
|
+
* { // NumericalScaleDefinition
|
|
49
|
+
* definition: "STRING_VALUE", // required
|
|
50
|
+
* value: Number("double"), // required
|
|
51
|
+
* label: "STRING_VALUE", // required
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
54
|
+
* categorical: [ // CategoricalScaleDefinitions
|
|
55
|
+
* { // CategoricalScaleDefinition
|
|
56
|
+
* definition: "STRING_VALUE", // required
|
|
57
|
+
* label: "STRING_VALUE", // required
|
|
58
|
+
* },
|
|
59
|
+
* ],
|
|
60
|
+
* },
|
|
61
|
+
* modelConfig: { // EvaluatorModelConfig Union: only one key present
|
|
62
|
+
* bedrockEvaluatorModelConfig: { // BedrockEvaluatorModelConfig
|
|
63
|
+
* modelId: "STRING_VALUE", // required
|
|
64
|
+
* inferenceConfig: { // InferenceConfiguration
|
|
65
|
+
* maxTokens: Number("int"),
|
|
66
|
+
* temperature: Number("float"),
|
|
67
|
+
* topP: Number("float"),
|
|
68
|
+
* stopSequences: [ // NonEmptyStringList
|
|
69
|
+
* "STRING_VALUE",
|
|
70
|
+
* ],
|
|
71
|
+
* },
|
|
72
|
+
* additionalModelRequestFields: "DOCUMENT_VALUE",
|
|
73
|
+
* },
|
|
74
|
+
* },
|
|
75
|
+
* },
|
|
76
|
+
* },
|
|
77
|
+
* level: "TOOL_CALL" || "TRACE" || "SESSION", // required
|
|
78
|
+
* };
|
|
79
|
+
* const command = new CreateEvaluatorCommand(input);
|
|
80
|
+
* const response = await client.send(command);
|
|
81
|
+
* // { // CreateEvaluatorResponse
|
|
82
|
+
* // evaluatorArn: "STRING_VALUE", // required
|
|
83
|
+
* // evaluatorId: "STRING_VALUE", // required
|
|
84
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
85
|
+
* // status: "ACTIVE" || "CREATING" || "CREATE_FAILED" || "UPDATING" || "UPDATE_FAILED" || "DELETING", // required
|
|
86
|
+
* // };
|
|
87
|
+
*
|
|
88
|
+
* ```
|
|
89
|
+
*
|
|
90
|
+
* @param CreateEvaluatorCommandInput - {@link CreateEvaluatorCommandInput}
|
|
91
|
+
* @returns {@link CreateEvaluatorCommandOutput}
|
|
92
|
+
* @see {@link CreateEvaluatorCommandInput} for command's `input` shape.
|
|
93
|
+
* @see {@link CreateEvaluatorCommandOutput} for command's `response` shape.
|
|
94
|
+
* @see {@link BedrockAgentCoreControlClientResolvedConfig | config} for BedrockAgentCoreControlClient's `config` shape.
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
97
|
+
* <p>This exception is thrown when a request is denied per access permissions</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ConflictException} (client fault)
|
|
100
|
+
* <p>This exception is thrown when there is a conflict performing an operation</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link InternalServerException} (server fault)
|
|
103
|
+
* <p>This exception is thrown if there was an unexpected error during processing of request</p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
106
|
+
* <p>This exception is thrown when a request is made beyond the service quota</p>
|
|
107
|
+
*
|
|
108
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
109
|
+
* <p>This exception is thrown when the number of requests exceeds the limit</p>
|
|
110
|
+
*
|
|
111
|
+
* @throws {@link ValidationException} (client fault)
|
|
112
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
113
|
+
*
|
|
114
|
+
* @throws {@link BedrockAgentCoreControlServiceException}
|
|
115
|
+
* <p>Base exception class for all service exceptions from BedrockAgentCoreControl service.</p>
|
|
116
|
+
*
|
|
117
|
+
*
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
export declare class CreateEvaluatorCommand extends CreateEvaluatorCommand_base {
|
|
121
|
+
/** @internal type navigation helper, not in runtime. */
|
|
122
|
+
protected static __types: {
|
|
123
|
+
api: {
|
|
124
|
+
input: CreateEvaluatorRequest;
|
|
125
|
+
output: CreateEvaluatorResponse;
|
|
126
|
+
};
|
|
127
|
+
sdk: {
|
|
128
|
+
input: CreateEvaluatorCommandInput;
|
|
129
|
+
output: CreateEvaluatorCommandOutput;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
}
|
|
@@ -61,6 +61,24 @@ declare const CreateGatewayCommand_base: {
|
|
|
61
61
|
* allowedClients: [ // AllowedClientsList
|
|
62
62
|
* "STRING_VALUE",
|
|
63
63
|
* ],
|
|
64
|
+
* allowedScopes: [ // AllowedScopesType
|
|
65
|
+
* "STRING_VALUE",
|
|
66
|
+
* ],
|
|
67
|
+
* customClaims: [ // CustomClaimValidationsType
|
|
68
|
+
* { // CustomClaimValidationType
|
|
69
|
+
* inboundTokenClaimName: "STRING_VALUE", // required
|
|
70
|
+
* inboundTokenClaimValueType: "STRING" || "STRING_ARRAY", // required
|
|
71
|
+
* authorizingClaimMatchValue: { // AuthorizingClaimMatchValueType
|
|
72
|
+
* claimMatchValue: { // ClaimMatchValueType Union: only one key present
|
|
73
|
+
* matchValueString: "STRING_VALUE",
|
|
74
|
+
* matchValueStringList: [ // MatchValueStringList
|
|
75
|
+
* "STRING_VALUE",
|
|
76
|
+
* ],
|
|
77
|
+
* },
|
|
78
|
+
* claimMatchOperator: "EQUALS" || "CONTAINS" || "CONTAINS_ANY", // required
|
|
79
|
+
* },
|
|
80
|
+
* },
|
|
81
|
+
* ],
|
|
64
82
|
* },
|
|
65
83
|
* },
|
|
66
84
|
* kmsKeyArn: "STRING_VALUE",
|
|
@@ -79,6 +97,10 @@ declare const CreateGatewayCommand_base: {
|
|
|
79
97
|
* },
|
|
80
98
|
* },
|
|
81
99
|
* ],
|
|
100
|
+
* policyEngineConfiguration: { // GatewayPolicyEngineConfiguration
|
|
101
|
+
* arn: "STRING_VALUE", // required
|
|
102
|
+
* mode: "LOG_ONLY" || "ENFORCE", // required
|
|
103
|
+
* },
|
|
82
104
|
* exceptionLevel: "DEBUG",
|
|
83
105
|
* tags: { // TagsMap
|
|
84
106
|
* "<keys>": "STRING_VALUE",
|
|
@@ -119,6 +141,24 @@ declare const CreateGatewayCommand_base: {
|
|
|
119
141
|
* // allowedClients: [ // AllowedClientsList
|
|
120
142
|
* // "STRING_VALUE",
|
|
121
143
|
* // ],
|
|
144
|
+
* // allowedScopes: [ // AllowedScopesType
|
|
145
|
+
* // "STRING_VALUE",
|
|
146
|
+
* // ],
|
|
147
|
+
* // customClaims: [ // CustomClaimValidationsType
|
|
148
|
+
* // { // CustomClaimValidationType
|
|
149
|
+
* // inboundTokenClaimName: "STRING_VALUE", // required
|
|
150
|
+
* // inboundTokenClaimValueType: "STRING" || "STRING_ARRAY", // required
|
|
151
|
+
* // authorizingClaimMatchValue: { // AuthorizingClaimMatchValueType
|
|
152
|
+
* // claimMatchValue: { // ClaimMatchValueType Union: only one key present
|
|
153
|
+
* // matchValueString: "STRING_VALUE",
|
|
154
|
+
* // matchValueStringList: [ // MatchValueStringList
|
|
155
|
+
* // "STRING_VALUE",
|
|
156
|
+
* // ],
|
|
157
|
+
* // },
|
|
158
|
+
* // claimMatchOperator: "EQUALS" || "CONTAINS" || "CONTAINS_ANY", // required
|
|
159
|
+
* // },
|
|
160
|
+
* // },
|
|
161
|
+
* // ],
|
|
122
162
|
* // },
|
|
123
163
|
* // },
|
|
124
164
|
* // kmsKeyArn: "STRING_VALUE",
|
|
@@ -137,6 +177,10 @@ declare const CreateGatewayCommand_base: {
|
|
|
137
177
|
* // },
|
|
138
178
|
* // },
|
|
139
179
|
* // ],
|
|
180
|
+
* // policyEngineConfiguration: { // GatewayPolicyEngineConfiguration
|
|
181
|
+
* // arn: "STRING_VALUE", // required
|
|
182
|
+
* // mode: "LOG_ONLY" || "ENFORCE", // required
|
|
183
|
+
* // },
|
|
140
184
|
* // workloadIdentityDetails: { // WorkloadIdentityDetails
|
|
141
185
|
* // workloadIdentityArn: "STRING_VALUE", // required
|
|
142
186
|
* // },
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
|
|
4
|
-
import { CreateGatewayTargetRequest, CreateGatewayTargetResponse } from "../models/
|
|
4
|
+
import { CreateGatewayTargetRequest, CreateGatewayTargetResponse } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -97,6 +97,28 @@ declare const CreateGatewayTargetCommand_base: {
|
|
|
97
97
|
* mcpServer: { // McpServerTargetConfiguration
|
|
98
98
|
* endpoint: "STRING_VALUE", // required
|
|
99
99
|
* },
|
|
100
|
+
* apiGateway: { // ApiGatewayTargetConfiguration
|
|
101
|
+
* restApiId: "STRING_VALUE", // required
|
|
102
|
+
* stage: "STRING_VALUE", // required
|
|
103
|
+
* apiGatewayToolConfiguration: { // ApiGatewayToolConfiguration
|
|
104
|
+
* toolOverrides: [ // ApiGatewayToolOverrides
|
|
105
|
+
* { // ApiGatewayToolOverride
|
|
106
|
+
* name: "STRING_VALUE", // required
|
|
107
|
+
* description: "STRING_VALUE",
|
|
108
|
+
* path: "STRING_VALUE", // required
|
|
109
|
+
* method: "GET" || "DELETE" || "HEAD" || "OPTIONS" || "PATCH" || "PUT" || "POST", // required
|
|
110
|
+
* },
|
|
111
|
+
* ],
|
|
112
|
+
* toolFilters: [ // ApiGatewayToolFilters // required
|
|
113
|
+
* { // ApiGatewayToolFilter
|
|
114
|
+
* filterPath: "STRING_VALUE", // required
|
|
115
|
+
* methods: [ // RestApiMethods // required
|
|
116
|
+
* "GET" || "DELETE" || "HEAD" || "OPTIONS" || "PATCH" || "PUT" || "POST",
|
|
117
|
+
* ],
|
|
118
|
+
* },
|
|
119
|
+
* ],
|
|
120
|
+
* },
|
|
121
|
+
* },
|
|
100
122
|
* },
|
|
101
123
|
* },
|
|
102
124
|
* credentialProviderConfigurations: [ // CredentialProviderConfigurations
|
|
@@ -111,6 +133,8 @@ declare const CreateGatewayTargetCommand_base: {
|
|
|
111
133
|
* customParameters: { // OAuthCustomParameters
|
|
112
134
|
* "<keys>": "STRING_VALUE",
|
|
113
135
|
* },
|
|
136
|
+
* grantType: "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE",
|
|
137
|
+
* defaultReturnUrl: "STRING_VALUE",
|
|
114
138
|
* },
|
|
115
139
|
* apiKeyCredentialProvider: { // GatewayApiKeyCredentialProvider
|
|
116
140
|
* providerArn: "STRING_VALUE", // required
|
|
@@ -191,6 +215,28 @@ declare const CreateGatewayTargetCommand_base: {
|
|
|
191
215
|
* // mcpServer: { // McpServerTargetConfiguration
|
|
192
216
|
* // endpoint: "STRING_VALUE", // required
|
|
193
217
|
* // },
|
|
218
|
+
* // apiGateway: { // ApiGatewayTargetConfiguration
|
|
219
|
+
* // restApiId: "STRING_VALUE", // required
|
|
220
|
+
* // stage: "STRING_VALUE", // required
|
|
221
|
+
* // apiGatewayToolConfiguration: { // ApiGatewayToolConfiguration
|
|
222
|
+
* // toolOverrides: [ // ApiGatewayToolOverrides
|
|
223
|
+
* // { // ApiGatewayToolOverride
|
|
224
|
+
* // name: "STRING_VALUE", // required
|
|
225
|
+
* // description: "STRING_VALUE",
|
|
226
|
+
* // path: "STRING_VALUE", // required
|
|
227
|
+
* // method: "GET" || "DELETE" || "HEAD" || "OPTIONS" || "PATCH" || "PUT" || "POST", // required
|
|
228
|
+
* // },
|
|
229
|
+
* // ],
|
|
230
|
+
* // toolFilters: [ // ApiGatewayToolFilters // required
|
|
231
|
+
* // { // ApiGatewayToolFilter
|
|
232
|
+
* // filterPath: "STRING_VALUE", // required
|
|
233
|
+
* // methods: [ // RestApiMethods // required
|
|
234
|
+
* // "GET" || "DELETE" || "HEAD" || "OPTIONS" || "PATCH" || "PUT" || "POST",
|
|
235
|
+
* // ],
|
|
236
|
+
* // },
|
|
237
|
+
* // ],
|
|
238
|
+
* // },
|
|
239
|
+
* // },
|
|
194
240
|
* // },
|
|
195
241
|
* // },
|
|
196
242
|
* // credentialProviderConfigurations: [ // CredentialProviderConfigurations // required
|
|
@@ -205,6 +251,8 @@ declare const CreateGatewayTargetCommand_base: {
|
|
|
205
251
|
* // customParameters: { // OAuthCustomParameters
|
|
206
252
|
* // "<keys>": "STRING_VALUE",
|
|
207
253
|
* // },
|
|
254
|
+
* // grantType: "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE",
|
|
255
|
+
* // defaultReturnUrl: "STRING_VALUE",
|
|
208
256
|
* // },
|
|
209
257
|
* // apiKeyCredentialProvider: { // GatewayApiKeyCredentialProvider
|
|
210
258
|
* // providerArn: "STRING_VALUE", // required
|
|
@@ -99,6 +99,23 @@ declare const CreateMemoryCommand_base: {
|
|
|
99
99
|
* modelId: "STRING_VALUE", // required
|
|
100
100
|
* },
|
|
101
101
|
* },
|
|
102
|
+
* episodicOverride: { // EpisodicOverrideConfigurationInput
|
|
103
|
+
* extraction: { // EpisodicOverrideExtractionConfigurationInput
|
|
104
|
+
* appendToPrompt: "STRING_VALUE", // required
|
|
105
|
+
* modelId: "STRING_VALUE", // required
|
|
106
|
+
* },
|
|
107
|
+
* consolidation: { // EpisodicOverrideConsolidationConfigurationInput
|
|
108
|
+
* appendToPrompt: "STRING_VALUE", // required
|
|
109
|
+
* modelId: "STRING_VALUE", // required
|
|
110
|
+
* },
|
|
111
|
+
* reflection: { // EpisodicOverrideReflectionConfigurationInput
|
|
112
|
+
* appendToPrompt: "STRING_VALUE", // required
|
|
113
|
+
* modelId: "STRING_VALUE", // required
|
|
114
|
+
* namespaces: [
|
|
115
|
+
* "STRING_VALUE",
|
|
116
|
+
* ],
|
|
117
|
+
* },
|
|
118
|
+
* },
|
|
102
119
|
* selfManagedConfiguration: { // SelfManagedConfigurationInput
|
|
103
120
|
* triggerConditions: [ // TriggerConditionInputList
|
|
104
121
|
* { // TriggerConditionInput Union: only one key present
|
|
@@ -121,6 +138,14 @@ declare const CreateMemoryCommand_base: {
|
|
|
121
138
|
* },
|
|
122
139
|
* },
|
|
123
140
|
* },
|
|
141
|
+
* episodicMemoryStrategy: { // EpisodicMemoryStrategyInput
|
|
142
|
+
* name: "STRING_VALUE", // required
|
|
143
|
+
* description: "STRING_VALUE",
|
|
144
|
+
* namespaces: "<NamespacesList>",
|
|
145
|
+
* reflectionConfiguration: { // EpisodicReflectionConfigurationInput
|
|
146
|
+
* namespaces: "<NamespacesList>", // required
|
|
147
|
+
* },
|
|
148
|
+
* },
|
|
124
149
|
* },
|
|
125
150
|
* ],
|
|
126
151
|
* tags: { // TagsMap
|
|
@@ -148,7 +173,7 @@ declare const CreateMemoryCommand_base: {
|
|
|
148
173
|
* // name: "STRING_VALUE", // required
|
|
149
174
|
* // description: "STRING_VALUE",
|
|
150
175
|
* // configuration: { // StrategyConfiguration
|
|
151
|
-
* // type: "SEMANTIC_OVERRIDE" || "SUMMARY_OVERRIDE" || "USER_PREFERENCE_OVERRIDE" || "SELF_MANAGED",
|
|
176
|
+
* // type: "SEMANTIC_OVERRIDE" || "SUMMARY_OVERRIDE" || "USER_PREFERENCE_OVERRIDE" || "SELF_MANAGED" || "EPISODIC_OVERRIDE",
|
|
152
177
|
* // extraction: { // ExtractionConfiguration Union: only one key present
|
|
153
178
|
* // customExtractionConfiguration: { // CustomExtractionConfiguration Union: only one key present
|
|
154
179
|
* // semanticExtractionOverride: { // SemanticExtractionOverride
|
|
@@ -159,6 +184,10 @@ declare const CreateMemoryCommand_base: {
|
|
|
159
184
|
* // appendToPrompt: "STRING_VALUE", // required
|
|
160
185
|
* // modelId: "STRING_VALUE", // required
|
|
161
186
|
* // },
|
|
187
|
+
* // episodicExtractionOverride: { // EpisodicExtractionOverride
|
|
188
|
+
* // appendToPrompt: "STRING_VALUE", // required
|
|
189
|
+
* // modelId: "STRING_VALUE", // required
|
|
190
|
+
* // },
|
|
162
191
|
* // },
|
|
163
192
|
* // },
|
|
164
193
|
* // consolidation: { // ConsolidationConfiguration Union: only one key present
|
|
@@ -175,6 +204,26 @@ declare const CreateMemoryCommand_base: {
|
|
|
175
204
|
* // appendToPrompt: "STRING_VALUE", // required
|
|
176
205
|
* // modelId: "STRING_VALUE", // required
|
|
177
206
|
* // },
|
|
207
|
+
* // episodicConsolidationOverride: { // EpisodicConsolidationOverride
|
|
208
|
+
* // appendToPrompt: "STRING_VALUE", // required
|
|
209
|
+
* // modelId: "STRING_VALUE", // required
|
|
210
|
+
* // },
|
|
211
|
+
* // },
|
|
212
|
+
* // },
|
|
213
|
+
* // reflection: { // ReflectionConfiguration Union: only one key present
|
|
214
|
+
* // customReflectionConfiguration: { // CustomReflectionConfiguration Union: only one key present
|
|
215
|
+
* // episodicReflectionOverride: { // EpisodicReflectionOverride
|
|
216
|
+
* // appendToPrompt: "STRING_VALUE", // required
|
|
217
|
+
* // modelId: "STRING_VALUE", // required
|
|
218
|
+
* // namespaces: [ // NamespacesList
|
|
219
|
+
* // "STRING_VALUE",
|
|
220
|
+
* // ],
|
|
221
|
+
* // },
|
|
222
|
+
* // },
|
|
223
|
+
* // episodicReflectionConfiguration: { // EpisodicReflectionConfiguration
|
|
224
|
+
* // namespaces: [ // required
|
|
225
|
+
* // "STRING_VALUE",
|
|
226
|
+
* // ],
|
|
178
227
|
* // },
|
|
179
228
|
* // },
|
|
180
229
|
* // selfManagedConfiguration: { // SelfManagedConfiguration
|
|
@@ -198,10 +247,8 @@ declare const CreateMemoryCommand_base: {
|
|
|
198
247
|
* // historicalContextWindowSize: Number("int"), // required
|
|
199
248
|
* // },
|
|
200
249
|
* // },
|
|
201
|
-
* // type: "SEMANTIC" || "SUMMARIZATION" || "USER_PREFERENCE" || "CUSTOM", // required
|
|
202
|
-
* // namespaces:
|
|
203
|
-
* // "STRING_VALUE",
|
|
204
|
-
* // ],
|
|
250
|
+
* // type: "SEMANTIC" || "SUMMARIZATION" || "USER_PREFERENCE" || "CUSTOM" || "EPISODIC", // required
|
|
251
|
+
* // namespaces: "<NamespacesList>", // required
|
|
205
252
|
* // createdAt: new Date("TIMESTAMP"),
|
|
206
253
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
207
254
|
* // status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED",
|