@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
|
@@ -5,30 +5,45 @@ import { CreateAgentRuntimeEndpointCommand, } from "./commands/CreateAgentRuntim
|
|
|
5
5
|
import { CreateApiKeyCredentialProviderCommand, } from "./commands/CreateApiKeyCredentialProviderCommand";
|
|
6
6
|
import { CreateBrowserCommand, } from "./commands/CreateBrowserCommand";
|
|
7
7
|
import { CreateCodeInterpreterCommand, } from "./commands/CreateCodeInterpreterCommand";
|
|
8
|
+
import { CreateEvaluatorCommand, } from "./commands/CreateEvaluatorCommand";
|
|
8
9
|
import { CreateGatewayCommand, } from "./commands/CreateGatewayCommand";
|
|
9
10
|
import { CreateGatewayTargetCommand, } from "./commands/CreateGatewayTargetCommand";
|
|
10
11
|
import { CreateMemoryCommand, } from "./commands/CreateMemoryCommand";
|
|
11
12
|
import { CreateOauth2CredentialProviderCommand, } from "./commands/CreateOauth2CredentialProviderCommand";
|
|
13
|
+
import { CreateOnlineEvaluationConfigCommand, } from "./commands/CreateOnlineEvaluationConfigCommand";
|
|
14
|
+
import { CreatePolicyCommand, } from "./commands/CreatePolicyCommand";
|
|
15
|
+
import { CreatePolicyEngineCommand, } from "./commands/CreatePolicyEngineCommand";
|
|
12
16
|
import { CreateWorkloadIdentityCommand, } from "./commands/CreateWorkloadIdentityCommand";
|
|
13
17
|
import { DeleteAgentRuntimeCommand, } from "./commands/DeleteAgentRuntimeCommand";
|
|
14
18
|
import { DeleteAgentRuntimeEndpointCommand, } from "./commands/DeleteAgentRuntimeEndpointCommand";
|
|
15
19
|
import { DeleteApiKeyCredentialProviderCommand, } from "./commands/DeleteApiKeyCredentialProviderCommand";
|
|
16
20
|
import { DeleteBrowserCommand, } from "./commands/DeleteBrowserCommand";
|
|
17
21
|
import { DeleteCodeInterpreterCommand, } from "./commands/DeleteCodeInterpreterCommand";
|
|
22
|
+
import { DeleteEvaluatorCommand, } from "./commands/DeleteEvaluatorCommand";
|
|
18
23
|
import { DeleteGatewayCommand, } from "./commands/DeleteGatewayCommand";
|
|
19
24
|
import { DeleteGatewayTargetCommand, } from "./commands/DeleteGatewayTargetCommand";
|
|
20
25
|
import { DeleteMemoryCommand, } from "./commands/DeleteMemoryCommand";
|
|
21
26
|
import { DeleteOauth2CredentialProviderCommand, } from "./commands/DeleteOauth2CredentialProviderCommand";
|
|
27
|
+
import { DeleteOnlineEvaluationConfigCommand, } from "./commands/DeleteOnlineEvaluationConfigCommand";
|
|
28
|
+
import { DeletePolicyCommand, } from "./commands/DeletePolicyCommand";
|
|
29
|
+
import { DeletePolicyEngineCommand, } from "./commands/DeletePolicyEngineCommand";
|
|
30
|
+
import { DeleteResourcePolicyCommand, } from "./commands/DeleteResourcePolicyCommand";
|
|
22
31
|
import { DeleteWorkloadIdentityCommand, } from "./commands/DeleteWorkloadIdentityCommand";
|
|
23
32
|
import { GetAgentRuntimeCommand, } from "./commands/GetAgentRuntimeCommand";
|
|
24
33
|
import { GetAgentRuntimeEndpointCommand, } from "./commands/GetAgentRuntimeEndpointCommand";
|
|
25
34
|
import { GetApiKeyCredentialProviderCommand, } from "./commands/GetApiKeyCredentialProviderCommand";
|
|
26
35
|
import { GetBrowserCommand } from "./commands/GetBrowserCommand";
|
|
27
36
|
import { GetCodeInterpreterCommand, } from "./commands/GetCodeInterpreterCommand";
|
|
37
|
+
import { GetEvaluatorCommand, } from "./commands/GetEvaluatorCommand";
|
|
28
38
|
import { GetGatewayCommand } from "./commands/GetGatewayCommand";
|
|
29
39
|
import { GetGatewayTargetCommand, } from "./commands/GetGatewayTargetCommand";
|
|
30
40
|
import { GetMemoryCommand } from "./commands/GetMemoryCommand";
|
|
31
41
|
import { GetOauth2CredentialProviderCommand, } from "./commands/GetOauth2CredentialProviderCommand";
|
|
42
|
+
import { GetOnlineEvaluationConfigCommand, } from "./commands/GetOnlineEvaluationConfigCommand";
|
|
43
|
+
import { GetPolicyCommand } from "./commands/GetPolicyCommand";
|
|
44
|
+
import { GetPolicyEngineCommand, } from "./commands/GetPolicyEngineCommand";
|
|
45
|
+
import { GetPolicyGenerationCommand, } from "./commands/GetPolicyGenerationCommand";
|
|
46
|
+
import { GetResourcePolicyCommand, } from "./commands/GetResourcePolicyCommand";
|
|
32
47
|
import { GetTokenVaultCommand, } from "./commands/GetTokenVaultCommand";
|
|
33
48
|
import { GetWorkloadIdentityCommand, } from "./commands/GetWorkloadIdentityCommand";
|
|
34
49
|
import { ListAgentRuntimeEndpointsCommand, } from "./commands/ListAgentRuntimeEndpointsCommand";
|
|
@@ -37,23 +52,35 @@ import { ListAgentRuntimeVersionsCommand, } from "./commands/ListAgentRuntimeVer
|
|
|
37
52
|
import { ListApiKeyCredentialProvidersCommand, } from "./commands/ListApiKeyCredentialProvidersCommand";
|
|
38
53
|
import { ListBrowsersCommand, } from "./commands/ListBrowsersCommand";
|
|
39
54
|
import { ListCodeInterpretersCommand, } from "./commands/ListCodeInterpretersCommand";
|
|
55
|
+
import { ListEvaluatorsCommand, } from "./commands/ListEvaluatorsCommand";
|
|
40
56
|
import { ListGatewaysCommand, } from "./commands/ListGatewaysCommand";
|
|
41
57
|
import { ListGatewayTargetsCommand, } from "./commands/ListGatewayTargetsCommand";
|
|
42
58
|
import { ListMemoriesCommand, } from "./commands/ListMemoriesCommand";
|
|
43
59
|
import { ListOauth2CredentialProvidersCommand, } from "./commands/ListOauth2CredentialProvidersCommand";
|
|
60
|
+
import { ListOnlineEvaluationConfigsCommand, } from "./commands/ListOnlineEvaluationConfigsCommand";
|
|
61
|
+
import { ListPoliciesCommand, } from "./commands/ListPoliciesCommand";
|
|
62
|
+
import { ListPolicyEnginesCommand, } from "./commands/ListPolicyEnginesCommand";
|
|
63
|
+
import { ListPolicyGenerationAssetsCommand, } from "./commands/ListPolicyGenerationAssetsCommand";
|
|
64
|
+
import { ListPolicyGenerationsCommand, } from "./commands/ListPolicyGenerationsCommand";
|
|
44
65
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
45
66
|
import { ListWorkloadIdentitiesCommand, } from "./commands/ListWorkloadIdentitiesCommand";
|
|
67
|
+
import { PutResourcePolicyCommand, } from "./commands/PutResourcePolicyCommand";
|
|
46
68
|
import { SetTokenVaultCMKCommand, } from "./commands/SetTokenVaultCMKCommand";
|
|
69
|
+
import { StartPolicyGenerationCommand, } from "./commands/StartPolicyGenerationCommand";
|
|
47
70
|
import { SynchronizeGatewayTargetsCommand, } from "./commands/SynchronizeGatewayTargetsCommand";
|
|
48
71
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
49
72
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
50
73
|
import { UpdateAgentRuntimeCommand, } from "./commands/UpdateAgentRuntimeCommand";
|
|
51
74
|
import { UpdateAgentRuntimeEndpointCommand, } from "./commands/UpdateAgentRuntimeEndpointCommand";
|
|
52
75
|
import { UpdateApiKeyCredentialProviderCommand, } from "./commands/UpdateApiKeyCredentialProviderCommand";
|
|
76
|
+
import { UpdateEvaluatorCommand, } from "./commands/UpdateEvaluatorCommand";
|
|
53
77
|
import { UpdateGatewayCommand, } from "./commands/UpdateGatewayCommand";
|
|
54
78
|
import { UpdateGatewayTargetCommand, } from "./commands/UpdateGatewayTargetCommand";
|
|
55
79
|
import { UpdateMemoryCommand, } from "./commands/UpdateMemoryCommand";
|
|
56
80
|
import { UpdateOauth2CredentialProviderCommand, } from "./commands/UpdateOauth2CredentialProviderCommand";
|
|
81
|
+
import { UpdateOnlineEvaluationConfigCommand, } from "./commands/UpdateOnlineEvaluationConfigCommand";
|
|
82
|
+
import { UpdatePolicyCommand, } from "./commands/UpdatePolicyCommand";
|
|
83
|
+
import { UpdatePolicyEngineCommand, } from "./commands/UpdatePolicyEngineCommand";
|
|
57
84
|
import { UpdateWorkloadIdentityCommand, } from "./commands/UpdateWorkloadIdentityCommand";
|
|
58
85
|
const commands = {
|
|
59
86
|
CreateAgentRuntimeCommand,
|
|
@@ -61,30 +88,45 @@ const commands = {
|
|
|
61
88
|
CreateApiKeyCredentialProviderCommand,
|
|
62
89
|
CreateBrowserCommand,
|
|
63
90
|
CreateCodeInterpreterCommand,
|
|
91
|
+
CreateEvaluatorCommand,
|
|
64
92
|
CreateGatewayCommand,
|
|
65
93
|
CreateGatewayTargetCommand,
|
|
66
94
|
CreateMemoryCommand,
|
|
67
95
|
CreateOauth2CredentialProviderCommand,
|
|
96
|
+
CreateOnlineEvaluationConfigCommand,
|
|
97
|
+
CreatePolicyCommand,
|
|
98
|
+
CreatePolicyEngineCommand,
|
|
68
99
|
CreateWorkloadIdentityCommand,
|
|
69
100
|
DeleteAgentRuntimeCommand,
|
|
70
101
|
DeleteAgentRuntimeEndpointCommand,
|
|
71
102
|
DeleteApiKeyCredentialProviderCommand,
|
|
72
103
|
DeleteBrowserCommand,
|
|
73
104
|
DeleteCodeInterpreterCommand,
|
|
105
|
+
DeleteEvaluatorCommand,
|
|
74
106
|
DeleteGatewayCommand,
|
|
75
107
|
DeleteGatewayTargetCommand,
|
|
76
108
|
DeleteMemoryCommand,
|
|
77
109
|
DeleteOauth2CredentialProviderCommand,
|
|
110
|
+
DeleteOnlineEvaluationConfigCommand,
|
|
111
|
+
DeletePolicyCommand,
|
|
112
|
+
DeletePolicyEngineCommand,
|
|
113
|
+
DeleteResourcePolicyCommand,
|
|
78
114
|
DeleteWorkloadIdentityCommand,
|
|
79
115
|
GetAgentRuntimeCommand,
|
|
80
116
|
GetAgentRuntimeEndpointCommand,
|
|
81
117
|
GetApiKeyCredentialProviderCommand,
|
|
82
118
|
GetBrowserCommand,
|
|
83
119
|
GetCodeInterpreterCommand,
|
|
120
|
+
GetEvaluatorCommand,
|
|
84
121
|
GetGatewayCommand,
|
|
85
122
|
GetGatewayTargetCommand,
|
|
86
123
|
GetMemoryCommand,
|
|
87
124
|
GetOauth2CredentialProviderCommand,
|
|
125
|
+
GetOnlineEvaluationConfigCommand,
|
|
126
|
+
GetPolicyCommand,
|
|
127
|
+
GetPolicyEngineCommand,
|
|
128
|
+
GetPolicyGenerationCommand,
|
|
129
|
+
GetResourcePolicyCommand,
|
|
88
130
|
GetTokenVaultCommand,
|
|
89
131
|
GetWorkloadIdentityCommand,
|
|
90
132
|
ListAgentRuntimeEndpointsCommand,
|
|
@@ -93,23 +135,35 @@ const commands = {
|
|
|
93
135
|
ListApiKeyCredentialProvidersCommand,
|
|
94
136
|
ListBrowsersCommand,
|
|
95
137
|
ListCodeInterpretersCommand,
|
|
138
|
+
ListEvaluatorsCommand,
|
|
96
139
|
ListGatewaysCommand,
|
|
97
140
|
ListGatewayTargetsCommand,
|
|
98
141
|
ListMemoriesCommand,
|
|
99
142
|
ListOauth2CredentialProvidersCommand,
|
|
143
|
+
ListOnlineEvaluationConfigsCommand,
|
|
144
|
+
ListPoliciesCommand,
|
|
145
|
+
ListPolicyEnginesCommand,
|
|
146
|
+
ListPolicyGenerationAssetsCommand,
|
|
147
|
+
ListPolicyGenerationsCommand,
|
|
100
148
|
ListTagsForResourceCommand,
|
|
101
149
|
ListWorkloadIdentitiesCommand,
|
|
150
|
+
PutResourcePolicyCommand,
|
|
102
151
|
SetTokenVaultCMKCommand,
|
|
152
|
+
StartPolicyGenerationCommand,
|
|
103
153
|
SynchronizeGatewayTargetsCommand,
|
|
104
154
|
TagResourceCommand,
|
|
105
155
|
UntagResourceCommand,
|
|
106
156
|
UpdateAgentRuntimeCommand,
|
|
107
157
|
UpdateAgentRuntimeEndpointCommand,
|
|
108
158
|
UpdateApiKeyCredentialProviderCommand,
|
|
159
|
+
UpdateEvaluatorCommand,
|
|
109
160
|
UpdateGatewayCommand,
|
|
110
161
|
UpdateGatewayTargetCommand,
|
|
111
162
|
UpdateMemoryCommand,
|
|
112
163
|
UpdateOauth2CredentialProviderCommand,
|
|
164
|
+
UpdateOnlineEvaluationConfigCommand,
|
|
165
|
+
UpdatePolicyCommand,
|
|
166
|
+
UpdatePolicyEngineCommand,
|
|
113
167
|
UpdateWorkloadIdentityCommand,
|
|
114
168
|
};
|
|
115
169
|
export class BedrockAgentCoreControl extends BedrockAgentCoreControlClient {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateEvaluator } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateEvaluatorCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "CreateEvaluator", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "CreateEvaluatorCommand")
|
|
14
|
+
.sc(CreateEvaluator)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateOnlineEvaluationConfig } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateOnlineEvaluationConfigCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "CreateOnlineEvaluationConfig", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "CreateOnlineEvaluationConfigCommand")
|
|
14
|
+
.sc(CreateOnlineEvaluationConfig)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreatePolicy } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreatePolicyCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "CreatePolicy", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "CreatePolicyCommand")
|
|
14
|
+
.sc(CreatePolicy)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreatePolicyEngine } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreatePolicyEngineCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "CreatePolicyEngine", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "CreatePolicyEngineCommand")
|
|
14
|
+
.sc(CreatePolicyEngine)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteEvaluator } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteEvaluatorCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "DeleteEvaluator", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "DeleteEvaluatorCommand")
|
|
14
|
+
.sc(DeleteEvaluator)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteOnlineEvaluationConfig } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteOnlineEvaluationConfigCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "DeleteOnlineEvaluationConfig", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "DeleteOnlineEvaluationConfigCommand")
|
|
14
|
+
.sc(DeleteOnlineEvaluationConfig)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeletePolicy } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeletePolicyCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "DeletePolicy", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "DeletePolicyCommand")
|
|
14
|
+
.sc(DeletePolicy)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeletePolicyEngine } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeletePolicyEngineCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "DeletePolicyEngine", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "DeletePolicyEngineCommand")
|
|
14
|
+
.sc(DeletePolicyEngine)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteResourcePolicy } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteResourcePolicyCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "DeleteResourcePolicy", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "DeleteResourcePolicyCommand")
|
|
14
|
+
.sc(DeleteResourcePolicy)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetEvaluator } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetEvaluatorCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "GetEvaluator", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "GetEvaluatorCommand")
|
|
14
|
+
.sc(GetEvaluator)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetOnlineEvaluationConfig } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetOnlineEvaluationConfigCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "GetOnlineEvaluationConfig", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "GetOnlineEvaluationConfigCommand")
|
|
14
|
+
.sc(GetOnlineEvaluationConfig)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetPolicy } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetPolicyCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "GetPolicy", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "GetPolicyCommand")
|
|
14
|
+
.sc(GetPolicy)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetPolicyEngine } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetPolicyEngineCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "GetPolicyEngine", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "GetPolicyEngineCommand")
|
|
14
|
+
.sc(GetPolicyEngine)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetPolicyGeneration } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetPolicyGenerationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "GetPolicyGeneration", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "GetPolicyGenerationCommand")
|
|
14
|
+
.sc(GetPolicyGeneration)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetResourcePolicy } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetResourcePolicyCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "GetResourcePolicy", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "GetResourcePolicyCommand")
|
|
14
|
+
.sc(GetResourcePolicy)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListEvaluators } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListEvaluatorsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "ListEvaluators", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "ListEvaluatorsCommand")
|
|
14
|
+
.sc(ListEvaluators)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListOnlineEvaluationConfigs } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListOnlineEvaluationConfigsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "ListOnlineEvaluationConfigs", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "ListOnlineEvaluationConfigsCommand")
|
|
14
|
+
.sc(ListOnlineEvaluationConfigs)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListPolicies } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListPoliciesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "ListPolicies", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "ListPoliciesCommand")
|
|
14
|
+
.sc(ListPolicies)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListPolicyEngines } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListPolicyEnginesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "ListPolicyEngines", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "ListPolicyEnginesCommand")
|
|
14
|
+
.sc(ListPolicyEngines)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListPolicyGenerationAssets } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListPolicyGenerationAssetsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "ListPolicyGenerationAssets", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "ListPolicyGenerationAssetsCommand")
|
|
14
|
+
.sc(ListPolicyGenerationAssets)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListPolicyGenerations } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListPolicyGenerationsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "ListPolicyGenerations", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "ListPolicyGenerationsCommand")
|
|
14
|
+
.sc(ListPolicyGenerations)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { PutResourcePolicy } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class PutResourcePolicyCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "PutResourcePolicy", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "PutResourcePolicyCommand")
|
|
14
|
+
.sc(PutResourcePolicy)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { StartPolicyGeneration } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class StartPolicyGenerationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "StartPolicyGeneration", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "StartPolicyGenerationCommand")
|
|
14
|
+
.sc(StartPolicyGeneration)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateEvaluator } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateEvaluatorCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateEvaluator", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "UpdateEvaluatorCommand")
|
|
14
|
+
.sc(UpdateEvaluator)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateOnlineEvaluationConfig } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateOnlineEvaluationConfigCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateOnlineEvaluationConfig", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "UpdateOnlineEvaluationConfigCommand")
|
|
14
|
+
.sc(UpdateOnlineEvaluationConfig)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdatePolicy } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdatePolicyCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "UpdatePolicy", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "UpdatePolicyCommand")
|
|
14
|
+
.sc(UpdatePolicy)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdatePolicyEngine } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdatePolicyEngineCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "UpdatePolicyEngine", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "UpdatePolicyEngineCommand")
|
|
14
|
+
.sc(UpdatePolicyEngine)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|