@aws-sdk/client-bedrock-agentcore-control 3.940.0 → 3.946.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +216 -0
- package/dist-cjs/index.js +2060 -545
- package/dist-cjs/runtimeConfig.browser.js +2 -2
- package/dist-cjs/runtimeConfig.js +3 -4
- package/dist-es/BedrockAgentCoreControl.js +54 -0
- package/dist-es/BedrockAgentCoreControlClient.js +2 -2
- package/dist-es/commands/CreateEvaluatorCommand.js +16 -0
- package/dist-es/commands/CreateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/CreatePolicyCommand.js +16 -0
- package/dist-es/commands/CreatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteEvaluatorCommand.js +16 -0
- package/dist-es/commands/DeleteOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/DeletePolicyCommand.js +16 -0
- package/dist-es/commands/DeletePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
- package/dist-es/commands/GetEvaluatorCommand.js +16 -0
- package/dist-es/commands/GetOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/GetPolicyCommand.js +16 -0
- package/dist-es/commands/GetPolicyEngineCommand.js +16 -0
- package/dist-es/commands/GetPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +16 -0
- package/dist-es/commands/ListEvaluatorsCommand.js +16 -0
- package/dist-es/commands/ListOnlineEvaluationConfigsCommand.js +16 -0
- package/dist-es/commands/ListPoliciesCommand.js +16 -0
- package/dist-es/commands/ListPolicyEnginesCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationAssetsCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationsCommand.js +16 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +16 -0
- package/dist-es/commands/StartPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/UpdateEvaluatorCommand.js +16 -0
- package/dist-es/commands/UpdateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/models/enums.js +104 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListEvaluatorsPaginator.js +4 -0
- package/dist-es/pagination/ListOnlineEvaluationConfigsPaginator.js +4 -0
- package/dist-es/pagination/ListPoliciesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyEnginesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationAssetsPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/runtimeConfig.browser.js +2 -2
- package/dist-es/runtimeConfig.js +2 -3
- package/dist-es/schemas/schemas_0.js +1276 -535
- package/dist-es/waiters/index.js +5 -0
- package/dist-es/waiters/waitForPolicyActive.js +58 -0
- package/dist-es/waiters/waitForPolicyDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyEngineActive.js +58 -0
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyGenerationCompleted.js +58 -0
- package/dist-types/BedrockAgentCoreControl.d.ts +193 -1
- package/dist-types/BedrockAgentCoreControlClient.d.ts +39 -12
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +2 -2
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +21 -3
- package/dist-types/commands/CreateAgentRuntimeEndpointCommand.d.ts +3 -3
- package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/CreateBrowserCommand.d.ts +3 -3
- package/dist-types/commands/CreateCodeInterpreterCommand.d.ts +3 -3
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +132 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +47 -3
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +51 -3
- package/dist-types/commands/CreateMemoryCommand.d.ts +55 -8
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/CreateOnlineEvaluationConfigCommand.d.ts +140 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +119 -0
- package/dist-types/commands/CreatePolicyEngineCommand.d.ts +103 -0
- package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +3 -3
- package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +3 -3
- package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +3 -3
- package/dist-types/commands/DeleteApiKeyCredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/DeleteBrowserCommand.d.ts +3 -3
- package/dist-types/commands/DeleteCodeInterpreterCommand.d.ts +3 -3
- package/dist-types/commands/DeleteEvaluatorCommand.d.ts +94 -0
- package/dist-types/commands/DeleteGatewayCommand.d.ts +3 -3
- package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +3 -3
- package/dist-types/commands/DeleteMemoryCommand.d.ts +6 -3
- package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/DeleteOnlineEvaluationConfigCommand.d.ts +94 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +108 -0
- package/dist-types/commands/DeletePolicyEngineCommand.d.ts +101 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +87 -0
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +3 -3
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +22 -3
- package/dist-types/commands/GetAgentRuntimeEndpointCommand.d.ts +3 -3
- package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/GetBrowserCommand.d.ts +3 -3
- package/dist-types/commands/GetCodeInterpreterCommand.d.ts +3 -3
- package/dist-types/commands/GetEvaluatorCommand.d.ts +131 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +25 -3
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +28 -3
- package/dist-types/commands/GetMemoryCommand.d.ts +30 -8
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/GetOnlineEvaluationConfigCommand.d.ts +137 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +105 -0
- package/dist-types/commands/GetPolicyEngineCommand.d.ts +98 -0
- package/dist-types/commands/GetPolicyGenerationCommand.d.ts +103 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +89 -0
- package/dist-types/commands/GetTokenVaultCommand.d.ts +3 -3
- package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +3 -3
- package/dist-types/commands/ListAgentRuntimeEndpointsCommand.d.ts +3 -3
- package/dist-types/commands/ListAgentRuntimeVersionsCommand.d.ts +3 -3
- package/dist-types/commands/ListAgentRuntimesCommand.d.ts +3 -3
- package/dist-types/commands/ListApiKeyCredentialProvidersCommand.d.ts +3 -3
- package/dist-types/commands/ListBrowsersCommand.d.ts +3 -3
- package/dist-types/commands/ListCodeInterpretersCommand.d.ts +3 -3
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +101 -0
- package/dist-types/commands/ListGatewayTargetsCommand.d.ts +3 -3
- package/dist-types/commands/ListGatewaysCommand.d.ts +3 -3
- package/dist-types/commands/ListMemoriesCommand.d.ts +3 -3
- package/dist-types/commands/ListOauth2CredentialProvidersCommand.d.ts +3 -3
- package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +100 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +113 -0
- package/dist-types/commands/ListPolicyEnginesCommand.d.ts +101 -0
- package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +109 -0
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +109 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -3
- package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +3 -3
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +90 -0
- package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +3 -3
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +116 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +28 -3
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +21 -3
- package/dist-types/commands/UpdateAgentRuntimeEndpointCommand.d.ts +3 -3
- package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +135 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +47 -3
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +51 -3
- package/dist-types/commands/UpdateMemoryCommand.d.ts +76 -11
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +138 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +115 -0
- package/dist-types/commands/UpdatePolicyEngineCommand.d.ts +102 -0
- package/dist-types/commands/UpdateWorkloadIdentityCommand.d.ts +3 -3
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +13 -1
- package/dist-types/endpoint/endpointResolver.d.ts +5 -2
- package/dist-types/extensionConfiguration.d.ts +4 -4
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/BedrockAgentCoreControlServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +232 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +4160 -2169
- package/dist-types/models/models_1.d.ts +1009 -0
- package/dist-types/pagination/Interfaces.d.ts +1 -1
- package/dist-types/pagination/ListAgentRuntimeEndpointsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAgentRuntimeVersionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAgentRuntimesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListApiKeyCredentialProvidersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListBrowsersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListCodeInterpretersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEvaluatorsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayTargetsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGatewaysPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMemoriesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListOauth2CredentialProvidersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyEnginesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationAssetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkloadIdentitiesPaginator.d.ts +1 -1
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +157 -1
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +462 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +165 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeletePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEvaluatorCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetPolicyEngineCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEvaluatorsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/ListPolicyEnginesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/BedrockAgentCoreControlServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +132 -0
- package/dist-types/ts3.4/models/models_0.d.ts +835 -188
- package/dist-types/ts3.4/models/models_1.d.ts +331 -0
- package/dist-types/ts3.4/pagination/ListEvaluatorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyEnginesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationAssetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/waiters/index.d.ts +5 -0
- package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +5 -0
- package/dist-types/waiters/waitForPolicyActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +14 -0
- package/package.json +13 -12
|
@@ -20,6 +20,10 @@ import {
|
|
|
20
20
|
CreateCodeInterpreterCommandInput,
|
|
21
21
|
CreateCodeInterpreterCommandOutput,
|
|
22
22
|
} from "./commands/CreateCodeInterpreterCommand";
|
|
23
|
+
import {
|
|
24
|
+
CreateEvaluatorCommandInput,
|
|
25
|
+
CreateEvaluatorCommandOutput,
|
|
26
|
+
} from "./commands/CreateEvaluatorCommand";
|
|
23
27
|
import {
|
|
24
28
|
CreateGatewayCommandInput,
|
|
25
29
|
CreateGatewayCommandOutput,
|
|
@@ -36,6 +40,18 @@ import {
|
|
|
36
40
|
CreateOauth2CredentialProviderCommandInput,
|
|
37
41
|
CreateOauth2CredentialProviderCommandOutput,
|
|
38
42
|
} from "./commands/CreateOauth2CredentialProviderCommand";
|
|
43
|
+
import {
|
|
44
|
+
CreateOnlineEvaluationConfigCommandInput,
|
|
45
|
+
CreateOnlineEvaluationConfigCommandOutput,
|
|
46
|
+
} from "./commands/CreateOnlineEvaluationConfigCommand";
|
|
47
|
+
import {
|
|
48
|
+
CreatePolicyCommandInput,
|
|
49
|
+
CreatePolicyCommandOutput,
|
|
50
|
+
} from "./commands/CreatePolicyCommand";
|
|
51
|
+
import {
|
|
52
|
+
CreatePolicyEngineCommandInput,
|
|
53
|
+
CreatePolicyEngineCommandOutput,
|
|
54
|
+
} from "./commands/CreatePolicyEngineCommand";
|
|
39
55
|
import {
|
|
40
56
|
CreateWorkloadIdentityCommandInput,
|
|
41
57
|
CreateWorkloadIdentityCommandOutput,
|
|
@@ -60,6 +76,10 @@ import {
|
|
|
60
76
|
DeleteCodeInterpreterCommandInput,
|
|
61
77
|
DeleteCodeInterpreterCommandOutput,
|
|
62
78
|
} from "./commands/DeleteCodeInterpreterCommand";
|
|
79
|
+
import {
|
|
80
|
+
DeleteEvaluatorCommandInput,
|
|
81
|
+
DeleteEvaluatorCommandOutput,
|
|
82
|
+
} from "./commands/DeleteEvaluatorCommand";
|
|
63
83
|
import {
|
|
64
84
|
DeleteGatewayCommandInput,
|
|
65
85
|
DeleteGatewayCommandOutput,
|
|
@@ -76,6 +96,22 @@ import {
|
|
|
76
96
|
DeleteOauth2CredentialProviderCommandInput,
|
|
77
97
|
DeleteOauth2CredentialProviderCommandOutput,
|
|
78
98
|
} from "./commands/DeleteOauth2CredentialProviderCommand";
|
|
99
|
+
import {
|
|
100
|
+
DeleteOnlineEvaluationConfigCommandInput,
|
|
101
|
+
DeleteOnlineEvaluationConfigCommandOutput,
|
|
102
|
+
} from "./commands/DeleteOnlineEvaluationConfigCommand";
|
|
103
|
+
import {
|
|
104
|
+
DeletePolicyCommandInput,
|
|
105
|
+
DeletePolicyCommandOutput,
|
|
106
|
+
} from "./commands/DeletePolicyCommand";
|
|
107
|
+
import {
|
|
108
|
+
DeletePolicyEngineCommandInput,
|
|
109
|
+
DeletePolicyEngineCommandOutput,
|
|
110
|
+
} from "./commands/DeletePolicyEngineCommand";
|
|
111
|
+
import {
|
|
112
|
+
DeleteResourcePolicyCommandInput,
|
|
113
|
+
DeleteResourcePolicyCommandOutput,
|
|
114
|
+
} from "./commands/DeleteResourcePolicyCommand";
|
|
79
115
|
import {
|
|
80
116
|
DeleteWorkloadIdentityCommandInput,
|
|
81
117
|
DeleteWorkloadIdentityCommandOutput,
|
|
@@ -100,6 +136,10 @@ import {
|
|
|
100
136
|
GetCodeInterpreterCommandInput,
|
|
101
137
|
GetCodeInterpreterCommandOutput,
|
|
102
138
|
} from "./commands/GetCodeInterpreterCommand";
|
|
139
|
+
import {
|
|
140
|
+
GetEvaluatorCommandInput,
|
|
141
|
+
GetEvaluatorCommandOutput,
|
|
142
|
+
} from "./commands/GetEvaluatorCommand";
|
|
103
143
|
import {
|
|
104
144
|
GetGatewayCommandInput,
|
|
105
145
|
GetGatewayCommandOutput,
|
|
@@ -116,6 +156,26 @@ import {
|
|
|
116
156
|
GetOauth2CredentialProviderCommandInput,
|
|
117
157
|
GetOauth2CredentialProviderCommandOutput,
|
|
118
158
|
} from "./commands/GetOauth2CredentialProviderCommand";
|
|
159
|
+
import {
|
|
160
|
+
GetOnlineEvaluationConfigCommandInput,
|
|
161
|
+
GetOnlineEvaluationConfigCommandOutput,
|
|
162
|
+
} from "./commands/GetOnlineEvaluationConfigCommand";
|
|
163
|
+
import {
|
|
164
|
+
GetPolicyCommandInput,
|
|
165
|
+
GetPolicyCommandOutput,
|
|
166
|
+
} from "./commands/GetPolicyCommand";
|
|
167
|
+
import {
|
|
168
|
+
GetPolicyEngineCommandInput,
|
|
169
|
+
GetPolicyEngineCommandOutput,
|
|
170
|
+
} from "./commands/GetPolicyEngineCommand";
|
|
171
|
+
import {
|
|
172
|
+
GetPolicyGenerationCommandInput,
|
|
173
|
+
GetPolicyGenerationCommandOutput,
|
|
174
|
+
} from "./commands/GetPolicyGenerationCommand";
|
|
175
|
+
import {
|
|
176
|
+
GetResourcePolicyCommandInput,
|
|
177
|
+
GetResourcePolicyCommandOutput,
|
|
178
|
+
} from "./commands/GetResourcePolicyCommand";
|
|
119
179
|
import {
|
|
120
180
|
GetTokenVaultCommandInput,
|
|
121
181
|
GetTokenVaultCommandOutput,
|
|
@@ -148,6 +208,10 @@ import {
|
|
|
148
208
|
ListCodeInterpretersCommandInput,
|
|
149
209
|
ListCodeInterpretersCommandOutput,
|
|
150
210
|
} from "./commands/ListCodeInterpretersCommand";
|
|
211
|
+
import {
|
|
212
|
+
ListEvaluatorsCommandInput,
|
|
213
|
+
ListEvaluatorsCommandOutput,
|
|
214
|
+
} from "./commands/ListEvaluatorsCommand";
|
|
151
215
|
import {
|
|
152
216
|
ListGatewaysCommandInput,
|
|
153
217
|
ListGatewaysCommandOutput,
|
|
@@ -164,6 +228,26 @@ import {
|
|
|
164
228
|
ListOauth2CredentialProvidersCommandInput,
|
|
165
229
|
ListOauth2CredentialProvidersCommandOutput,
|
|
166
230
|
} from "./commands/ListOauth2CredentialProvidersCommand";
|
|
231
|
+
import {
|
|
232
|
+
ListOnlineEvaluationConfigsCommandInput,
|
|
233
|
+
ListOnlineEvaluationConfigsCommandOutput,
|
|
234
|
+
} from "./commands/ListOnlineEvaluationConfigsCommand";
|
|
235
|
+
import {
|
|
236
|
+
ListPoliciesCommandInput,
|
|
237
|
+
ListPoliciesCommandOutput,
|
|
238
|
+
} from "./commands/ListPoliciesCommand";
|
|
239
|
+
import {
|
|
240
|
+
ListPolicyEnginesCommandInput,
|
|
241
|
+
ListPolicyEnginesCommandOutput,
|
|
242
|
+
} from "./commands/ListPolicyEnginesCommand";
|
|
243
|
+
import {
|
|
244
|
+
ListPolicyGenerationAssetsCommandInput,
|
|
245
|
+
ListPolicyGenerationAssetsCommandOutput,
|
|
246
|
+
} from "./commands/ListPolicyGenerationAssetsCommand";
|
|
247
|
+
import {
|
|
248
|
+
ListPolicyGenerationsCommandInput,
|
|
249
|
+
ListPolicyGenerationsCommandOutput,
|
|
250
|
+
} from "./commands/ListPolicyGenerationsCommand";
|
|
167
251
|
import {
|
|
168
252
|
ListTagsForResourceCommandInput,
|
|
169
253
|
ListTagsForResourceCommandOutput,
|
|
@@ -172,10 +256,18 @@ import {
|
|
|
172
256
|
ListWorkloadIdentitiesCommandInput,
|
|
173
257
|
ListWorkloadIdentitiesCommandOutput,
|
|
174
258
|
} from "./commands/ListWorkloadIdentitiesCommand";
|
|
259
|
+
import {
|
|
260
|
+
PutResourcePolicyCommandInput,
|
|
261
|
+
PutResourcePolicyCommandOutput,
|
|
262
|
+
} from "./commands/PutResourcePolicyCommand";
|
|
175
263
|
import {
|
|
176
264
|
SetTokenVaultCMKCommandInput,
|
|
177
265
|
SetTokenVaultCMKCommandOutput,
|
|
178
266
|
} from "./commands/SetTokenVaultCMKCommand";
|
|
267
|
+
import {
|
|
268
|
+
StartPolicyGenerationCommandInput,
|
|
269
|
+
StartPolicyGenerationCommandOutput,
|
|
270
|
+
} from "./commands/StartPolicyGenerationCommand";
|
|
179
271
|
import {
|
|
180
272
|
SynchronizeGatewayTargetsCommandInput,
|
|
181
273
|
SynchronizeGatewayTargetsCommandOutput,
|
|
@@ -200,6 +292,10 @@ import {
|
|
|
200
292
|
UpdateApiKeyCredentialProviderCommandInput,
|
|
201
293
|
UpdateApiKeyCredentialProviderCommandOutput,
|
|
202
294
|
} from "./commands/UpdateApiKeyCredentialProviderCommand";
|
|
295
|
+
import {
|
|
296
|
+
UpdateEvaluatorCommandInput,
|
|
297
|
+
UpdateEvaluatorCommandOutput,
|
|
298
|
+
} from "./commands/UpdateEvaluatorCommand";
|
|
203
299
|
import {
|
|
204
300
|
UpdateGatewayCommandInput,
|
|
205
301
|
UpdateGatewayCommandOutput,
|
|
@@ -216,6 +312,18 @@ import {
|
|
|
216
312
|
UpdateOauth2CredentialProviderCommandInput,
|
|
217
313
|
UpdateOauth2CredentialProviderCommandOutput,
|
|
218
314
|
} from "./commands/UpdateOauth2CredentialProviderCommand";
|
|
315
|
+
import {
|
|
316
|
+
UpdateOnlineEvaluationConfigCommandInput,
|
|
317
|
+
UpdateOnlineEvaluationConfigCommandOutput,
|
|
318
|
+
} from "./commands/UpdateOnlineEvaluationConfigCommand";
|
|
319
|
+
import {
|
|
320
|
+
UpdatePolicyCommandInput,
|
|
321
|
+
UpdatePolicyCommandOutput,
|
|
322
|
+
} from "./commands/UpdatePolicyCommand";
|
|
323
|
+
import {
|
|
324
|
+
UpdatePolicyEngineCommandInput,
|
|
325
|
+
UpdatePolicyEngineCommandOutput,
|
|
326
|
+
} from "./commands/UpdatePolicyEngineCommand";
|
|
219
327
|
import {
|
|
220
328
|
UpdateWorkloadIdentityCommandInput,
|
|
221
329
|
UpdateWorkloadIdentityCommandOutput,
|
|
@@ -286,6 +394,19 @@ export interface BedrockAgentCoreControl {
|
|
|
286
394
|
options: __HttpHandlerOptions,
|
|
287
395
|
cb: (err: any, data?: CreateCodeInterpreterCommandOutput) => void
|
|
288
396
|
): void;
|
|
397
|
+
createEvaluator(
|
|
398
|
+
args: CreateEvaluatorCommandInput,
|
|
399
|
+
options?: __HttpHandlerOptions
|
|
400
|
+
): Promise<CreateEvaluatorCommandOutput>;
|
|
401
|
+
createEvaluator(
|
|
402
|
+
args: CreateEvaluatorCommandInput,
|
|
403
|
+
cb: (err: any, data?: CreateEvaluatorCommandOutput) => void
|
|
404
|
+
): void;
|
|
405
|
+
createEvaluator(
|
|
406
|
+
args: CreateEvaluatorCommandInput,
|
|
407
|
+
options: __HttpHandlerOptions,
|
|
408
|
+
cb: (err: any, data?: CreateEvaluatorCommandOutput) => void
|
|
409
|
+
): void;
|
|
289
410
|
createGateway(
|
|
290
411
|
args: CreateGatewayCommandInput,
|
|
291
412
|
options?: __HttpHandlerOptions
|
|
@@ -338,6 +459,45 @@ export interface BedrockAgentCoreControl {
|
|
|
338
459
|
options: __HttpHandlerOptions,
|
|
339
460
|
cb: (err: any, data?: CreateOauth2CredentialProviderCommandOutput) => void
|
|
340
461
|
): void;
|
|
462
|
+
createOnlineEvaluationConfig(
|
|
463
|
+
args: CreateOnlineEvaluationConfigCommandInput,
|
|
464
|
+
options?: __HttpHandlerOptions
|
|
465
|
+
): Promise<CreateOnlineEvaluationConfigCommandOutput>;
|
|
466
|
+
createOnlineEvaluationConfig(
|
|
467
|
+
args: CreateOnlineEvaluationConfigCommandInput,
|
|
468
|
+
cb: (err: any, data?: CreateOnlineEvaluationConfigCommandOutput) => void
|
|
469
|
+
): void;
|
|
470
|
+
createOnlineEvaluationConfig(
|
|
471
|
+
args: CreateOnlineEvaluationConfigCommandInput,
|
|
472
|
+
options: __HttpHandlerOptions,
|
|
473
|
+
cb: (err: any, data?: CreateOnlineEvaluationConfigCommandOutput) => void
|
|
474
|
+
): void;
|
|
475
|
+
createPolicy(
|
|
476
|
+
args: CreatePolicyCommandInput,
|
|
477
|
+
options?: __HttpHandlerOptions
|
|
478
|
+
): Promise<CreatePolicyCommandOutput>;
|
|
479
|
+
createPolicy(
|
|
480
|
+
args: CreatePolicyCommandInput,
|
|
481
|
+
cb: (err: any, data?: CreatePolicyCommandOutput) => void
|
|
482
|
+
): void;
|
|
483
|
+
createPolicy(
|
|
484
|
+
args: CreatePolicyCommandInput,
|
|
485
|
+
options: __HttpHandlerOptions,
|
|
486
|
+
cb: (err: any, data?: CreatePolicyCommandOutput) => void
|
|
487
|
+
): void;
|
|
488
|
+
createPolicyEngine(
|
|
489
|
+
args: CreatePolicyEngineCommandInput,
|
|
490
|
+
options?: __HttpHandlerOptions
|
|
491
|
+
): Promise<CreatePolicyEngineCommandOutput>;
|
|
492
|
+
createPolicyEngine(
|
|
493
|
+
args: CreatePolicyEngineCommandInput,
|
|
494
|
+
cb: (err: any, data?: CreatePolicyEngineCommandOutput) => void
|
|
495
|
+
): void;
|
|
496
|
+
createPolicyEngine(
|
|
497
|
+
args: CreatePolicyEngineCommandInput,
|
|
498
|
+
options: __HttpHandlerOptions,
|
|
499
|
+
cb: (err: any, data?: CreatePolicyEngineCommandOutput) => void
|
|
500
|
+
): void;
|
|
341
501
|
createWorkloadIdentity(
|
|
342
502
|
args: CreateWorkloadIdentityCommandInput,
|
|
343
503
|
options?: __HttpHandlerOptions
|
|
@@ -416,6 +576,19 @@ export interface BedrockAgentCoreControl {
|
|
|
416
576
|
options: __HttpHandlerOptions,
|
|
417
577
|
cb: (err: any, data?: DeleteCodeInterpreterCommandOutput) => void
|
|
418
578
|
): void;
|
|
579
|
+
deleteEvaluator(
|
|
580
|
+
args: DeleteEvaluatorCommandInput,
|
|
581
|
+
options?: __HttpHandlerOptions
|
|
582
|
+
): Promise<DeleteEvaluatorCommandOutput>;
|
|
583
|
+
deleteEvaluator(
|
|
584
|
+
args: DeleteEvaluatorCommandInput,
|
|
585
|
+
cb: (err: any, data?: DeleteEvaluatorCommandOutput) => void
|
|
586
|
+
): void;
|
|
587
|
+
deleteEvaluator(
|
|
588
|
+
args: DeleteEvaluatorCommandInput,
|
|
589
|
+
options: __HttpHandlerOptions,
|
|
590
|
+
cb: (err: any, data?: DeleteEvaluatorCommandOutput) => void
|
|
591
|
+
): void;
|
|
419
592
|
deleteGateway(
|
|
420
593
|
args: DeleteGatewayCommandInput,
|
|
421
594
|
options?: __HttpHandlerOptions
|
|
@@ -468,6 +641,58 @@ export interface BedrockAgentCoreControl {
|
|
|
468
641
|
options: __HttpHandlerOptions,
|
|
469
642
|
cb: (err: any, data?: DeleteOauth2CredentialProviderCommandOutput) => void
|
|
470
643
|
): void;
|
|
644
|
+
deleteOnlineEvaluationConfig(
|
|
645
|
+
args: DeleteOnlineEvaluationConfigCommandInput,
|
|
646
|
+
options?: __HttpHandlerOptions
|
|
647
|
+
): Promise<DeleteOnlineEvaluationConfigCommandOutput>;
|
|
648
|
+
deleteOnlineEvaluationConfig(
|
|
649
|
+
args: DeleteOnlineEvaluationConfigCommandInput,
|
|
650
|
+
cb: (err: any, data?: DeleteOnlineEvaluationConfigCommandOutput) => void
|
|
651
|
+
): void;
|
|
652
|
+
deleteOnlineEvaluationConfig(
|
|
653
|
+
args: DeleteOnlineEvaluationConfigCommandInput,
|
|
654
|
+
options: __HttpHandlerOptions,
|
|
655
|
+
cb: (err: any, data?: DeleteOnlineEvaluationConfigCommandOutput) => void
|
|
656
|
+
): void;
|
|
657
|
+
deletePolicy(
|
|
658
|
+
args: DeletePolicyCommandInput,
|
|
659
|
+
options?: __HttpHandlerOptions
|
|
660
|
+
): Promise<DeletePolicyCommandOutput>;
|
|
661
|
+
deletePolicy(
|
|
662
|
+
args: DeletePolicyCommandInput,
|
|
663
|
+
cb: (err: any, data?: DeletePolicyCommandOutput) => void
|
|
664
|
+
): void;
|
|
665
|
+
deletePolicy(
|
|
666
|
+
args: DeletePolicyCommandInput,
|
|
667
|
+
options: __HttpHandlerOptions,
|
|
668
|
+
cb: (err: any, data?: DeletePolicyCommandOutput) => void
|
|
669
|
+
): void;
|
|
670
|
+
deletePolicyEngine(
|
|
671
|
+
args: DeletePolicyEngineCommandInput,
|
|
672
|
+
options?: __HttpHandlerOptions
|
|
673
|
+
): Promise<DeletePolicyEngineCommandOutput>;
|
|
674
|
+
deletePolicyEngine(
|
|
675
|
+
args: DeletePolicyEngineCommandInput,
|
|
676
|
+
cb: (err: any, data?: DeletePolicyEngineCommandOutput) => void
|
|
677
|
+
): void;
|
|
678
|
+
deletePolicyEngine(
|
|
679
|
+
args: DeletePolicyEngineCommandInput,
|
|
680
|
+
options: __HttpHandlerOptions,
|
|
681
|
+
cb: (err: any, data?: DeletePolicyEngineCommandOutput) => void
|
|
682
|
+
): void;
|
|
683
|
+
deleteResourcePolicy(
|
|
684
|
+
args: DeleteResourcePolicyCommandInput,
|
|
685
|
+
options?: __HttpHandlerOptions
|
|
686
|
+
): Promise<DeleteResourcePolicyCommandOutput>;
|
|
687
|
+
deleteResourcePolicy(
|
|
688
|
+
args: DeleteResourcePolicyCommandInput,
|
|
689
|
+
cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
|
|
690
|
+
): void;
|
|
691
|
+
deleteResourcePolicy(
|
|
692
|
+
args: DeleteResourcePolicyCommandInput,
|
|
693
|
+
options: __HttpHandlerOptions,
|
|
694
|
+
cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
|
|
695
|
+
): void;
|
|
471
696
|
deleteWorkloadIdentity(
|
|
472
697
|
args: DeleteWorkloadIdentityCommandInput,
|
|
473
698
|
options?: __HttpHandlerOptions
|
|
@@ -546,6 +771,19 @@ export interface BedrockAgentCoreControl {
|
|
|
546
771
|
options: __HttpHandlerOptions,
|
|
547
772
|
cb: (err: any, data?: GetCodeInterpreterCommandOutput) => void
|
|
548
773
|
): void;
|
|
774
|
+
getEvaluator(
|
|
775
|
+
args: GetEvaluatorCommandInput,
|
|
776
|
+
options?: __HttpHandlerOptions
|
|
777
|
+
): Promise<GetEvaluatorCommandOutput>;
|
|
778
|
+
getEvaluator(
|
|
779
|
+
args: GetEvaluatorCommandInput,
|
|
780
|
+
cb: (err: any, data?: GetEvaluatorCommandOutput) => void
|
|
781
|
+
): void;
|
|
782
|
+
getEvaluator(
|
|
783
|
+
args: GetEvaluatorCommandInput,
|
|
784
|
+
options: __HttpHandlerOptions,
|
|
785
|
+
cb: (err: any, data?: GetEvaluatorCommandOutput) => void
|
|
786
|
+
): void;
|
|
549
787
|
getGateway(
|
|
550
788
|
args: GetGatewayCommandInput,
|
|
551
789
|
options?: __HttpHandlerOptions
|
|
@@ -598,6 +836,71 @@ export interface BedrockAgentCoreControl {
|
|
|
598
836
|
options: __HttpHandlerOptions,
|
|
599
837
|
cb: (err: any, data?: GetOauth2CredentialProviderCommandOutput) => void
|
|
600
838
|
): void;
|
|
839
|
+
getOnlineEvaluationConfig(
|
|
840
|
+
args: GetOnlineEvaluationConfigCommandInput,
|
|
841
|
+
options?: __HttpHandlerOptions
|
|
842
|
+
): Promise<GetOnlineEvaluationConfigCommandOutput>;
|
|
843
|
+
getOnlineEvaluationConfig(
|
|
844
|
+
args: GetOnlineEvaluationConfigCommandInput,
|
|
845
|
+
cb: (err: any, data?: GetOnlineEvaluationConfigCommandOutput) => void
|
|
846
|
+
): void;
|
|
847
|
+
getOnlineEvaluationConfig(
|
|
848
|
+
args: GetOnlineEvaluationConfigCommandInput,
|
|
849
|
+
options: __HttpHandlerOptions,
|
|
850
|
+
cb: (err: any, data?: GetOnlineEvaluationConfigCommandOutput) => void
|
|
851
|
+
): void;
|
|
852
|
+
getPolicy(
|
|
853
|
+
args: GetPolicyCommandInput,
|
|
854
|
+
options?: __HttpHandlerOptions
|
|
855
|
+
): Promise<GetPolicyCommandOutput>;
|
|
856
|
+
getPolicy(
|
|
857
|
+
args: GetPolicyCommandInput,
|
|
858
|
+
cb: (err: any, data?: GetPolicyCommandOutput) => void
|
|
859
|
+
): void;
|
|
860
|
+
getPolicy(
|
|
861
|
+
args: GetPolicyCommandInput,
|
|
862
|
+
options: __HttpHandlerOptions,
|
|
863
|
+
cb: (err: any, data?: GetPolicyCommandOutput) => void
|
|
864
|
+
): void;
|
|
865
|
+
getPolicyEngine(
|
|
866
|
+
args: GetPolicyEngineCommandInput,
|
|
867
|
+
options?: __HttpHandlerOptions
|
|
868
|
+
): Promise<GetPolicyEngineCommandOutput>;
|
|
869
|
+
getPolicyEngine(
|
|
870
|
+
args: GetPolicyEngineCommandInput,
|
|
871
|
+
cb: (err: any, data?: GetPolicyEngineCommandOutput) => void
|
|
872
|
+
): void;
|
|
873
|
+
getPolicyEngine(
|
|
874
|
+
args: GetPolicyEngineCommandInput,
|
|
875
|
+
options: __HttpHandlerOptions,
|
|
876
|
+
cb: (err: any, data?: GetPolicyEngineCommandOutput) => void
|
|
877
|
+
): void;
|
|
878
|
+
getPolicyGeneration(
|
|
879
|
+
args: GetPolicyGenerationCommandInput,
|
|
880
|
+
options?: __HttpHandlerOptions
|
|
881
|
+
): Promise<GetPolicyGenerationCommandOutput>;
|
|
882
|
+
getPolicyGeneration(
|
|
883
|
+
args: GetPolicyGenerationCommandInput,
|
|
884
|
+
cb: (err: any, data?: GetPolicyGenerationCommandOutput) => void
|
|
885
|
+
): void;
|
|
886
|
+
getPolicyGeneration(
|
|
887
|
+
args: GetPolicyGenerationCommandInput,
|
|
888
|
+
options: __HttpHandlerOptions,
|
|
889
|
+
cb: (err: any, data?: GetPolicyGenerationCommandOutput) => void
|
|
890
|
+
): void;
|
|
891
|
+
getResourcePolicy(
|
|
892
|
+
args: GetResourcePolicyCommandInput,
|
|
893
|
+
options?: __HttpHandlerOptions
|
|
894
|
+
): Promise<GetResourcePolicyCommandOutput>;
|
|
895
|
+
getResourcePolicy(
|
|
896
|
+
args: GetResourcePolicyCommandInput,
|
|
897
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
898
|
+
): void;
|
|
899
|
+
getResourcePolicy(
|
|
900
|
+
args: GetResourcePolicyCommandInput,
|
|
901
|
+
options: __HttpHandlerOptions,
|
|
902
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
903
|
+
): void;
|
|
601
904
|
getTokenVault(): Promise<GetTokenVaultCommandOutput>;
|
|
602
905
|
getTokenVault(
|
|
603
906
|
args: GetTokenVaultCommandInput,
|
|
@@ -707,6 +1010,20 @@ export interface BedrockAgentCoreControl {
|
|
|
707
1010
|
options: __HttpHandlerOptions,
|
|
708
1011
|
cb: (err: any, data?: ListCodeInterpretersCommandOutput) => void
|
|
709
1012
|
): void;
|
|
1013
|
+
listEvaluators(): Promise<ListEvaluatorsCommandOutput>;
|
|
1014
|
+
listEvaluators(
|
|
1015
|
+
args: ListEvaluatorsCommandInput,
|
|
1016
|
+
options?: __HttpHandlerOptions
|
|
1017
|
+
): Promise<ListEvaluatorsCommandOutput>;
|
|
1018
|
+
listEvaluators(
|
|
1019
|
+
args: ListEvaluatorsCommandInput,
|
|
1020
|
+
cb: (err: any, data?: ListEvaluatorsCommandOutput) => void
|
|
1021
|
+
): void;
|
|
1022
|
+
listEvaluators(
|
|
1023
|
+
args: ListEvaluatorsCommandInput,
|
|
1024
|
+
options: __HttpHandlerOptions,
|
|
1025
|
+
cb: (err: any, data?: ListEvaluatorsCommandOutput) => void
|
|
1026
|
+
): void;
|
|
710
1027
|
listGateways(): Promise<ListGatewaysCommandOutput>;
|
|
711
1028
|
listGateways(
|
|
712
1029
|
args: ListGatewaysCommandInput,
|
|
@@ -762,6 +1079,73 @@ export interface BedrockAgentCoreControl {
|
|
|
762
1079
|
options: __HttpHandlerOptions,
|
|
763
1080
|
cb: (err: any, data?: ListOauth2CredentialProvidersCommandOutput) => void
|
|
764
1081
|
): void;
|
|
1082
|
+
listOnlineEvaluationConfigs(): Promise<ListOnlineEvaluationConfigsCommandOutput>;
|
|
1083
|
+
listOnlineEvaluationConfigs(
|
|
1084
|
+
args: ListOnlineEvaluationConfigsCommandInput,
|
|
1085
|
+
options?: __HttpHandlerOptions
|
|
1086
|
+
): Promise<ListOnlineEvaluationConfigsCommandOutput>;
|
|
1087
|
+
listOnlineEvaluationConfigs(
|
|
1088
|
+
args: ListOnlineEvaluationConfigsCommandInput,
|
|
1089
|
+
cb: (err: any, data?: ListOnlineEvaluationConfigsCommandOutput) => void
|
|
1090
|
+
): void;
|
|
1091
|
+
listOnlineEvaluationConfigs(
|
|
1092
|
+
args: ListOnlineEvaluationConfigsCommandInput,
|
|
1093
|
+
options: __HttpHandlerOptions,
|
|
1094
|
+
cb: (err: any, data?: ListOnlineEvaluationConfigsCommandOutput) => void
|
|
1095
|
+
): void;
|
|
1096
|
+
listPolicies(
|
|
1097
|
+
args: ListPoliciesCommandInput,
|
|
1098
|
+
options?: __HttpHandlerOptions
|
|
1099
|
+
): Promise<ListPoliciesCommandOutput>;
|
|
1100
|
+
listPolicies(
|
|
1101
|
+
args: ListPoliciesCommandInput,
|
|
1102
|
+
cb: (err: any, data?: ListPoliciesCommandOutput) => void
|
|
1103
|
+
): void;
|
|
1104
|
+
listPolicies(
|
|
1105
|
+
args: ListPoliciesCommandInput,
|
|
1106
|
+
options: __HttpHandlerOptions,
|
|
1107
|
+
cb: (err: any, data?: ListPoliciesCommandOutput) => void
|
|
1108
|
+
): void;
|
|
1109
|
+
listPolicyEngines(): Promise<ListPolicyEnginesCommandOutput>;
|
|
1110
|
+
listPolicyEngines(
|
|
1111
|
+
args: ListPolicyEnginesCommandInput,
|
|
1112
|
+
options?: __HttpHandlerOptions
|
|
1113
|
+
): Promise<ListPolicyEnginesCommandOutput>;
|
|
1114
|
+
listPolicyEngines(
|
|
1115
|
+
args: ListPolicyEnginesCommandInput,
|
|
1116
|
+
cb: (err: any, data?: ListPolicyEnginesCommandOutput) => void
|
|
1117
|
+
): void;
|
|
1118
|
+
listPolicyEngines(
|
|
1119
|
+
args: ListPolicyEnginesCommandInput,
|
|
1120
|
+
options: __HttpHandlerOptions,
|
|
1121
|
+
cb: (err: any, data?: ListPolicyEnginesCommandOutput) => void
|
|
1122
|
+
): void;
|
|
1123
|
+
listPolicyGenerationAssets(
|
|
1124
|
+
args: ListPolicyGenerationAssetsCommandInput,
|
|
1125
|
+
options?: __HttpHandlerOptions
|
|
1126
|
+
): Promise<ListPolicyGenerationAssetsCommandOutput>;
|
|
1127
|
+
listPolicyGenerationAssets(
|
|
1128
|
+
args: ListPolicyGenerationAssetsCommandInput,
|
|
1129
|
+
cb: (err: any, data?: ListPolicyGenerationAssetsCommandOutput) => void
|
|
1130
|
+
): void;
|
|
1131
|
+
listPolicyGenerationAssets(
|
|
1132
|
+
args: ListPolicyGenerationAssetsCommandInput,
|
|
1133
|
+
options: __HttpHandlerOptions,
|
|
1134
|
+
cb: (err: any, data?: ListPolicyGenerationAssetsCommandOutput) => void
|
|
1135
|
+
): void;
|
|
1136
|
+
listPolicyGenerations(
|
|
1137
|
+
args: ListPolicyGenerationsCommandInput,
|
|
1138
|
+
options?: __HttpHandlerOptions
|
|
1139
|
+
): Promise<ListPolicyGenerationsCommandOutput>;
|
|
1140
|
+
listPolicyGenerations(
|
|
1141
|
+
args: ListPolicyGenerationsCommandInput,
|
|
1142
|
+
cb: (err: any, data?: ListPolicyGenerationsCommandOutput) => void
|
|
1143
|
+
): void;
|
|
1144
|
+
listPolicyGenerations(
|
|
1145
|
+
args: ListPolicyGenerationsCommandInput,
|
|
1146
|
+
options: __HttpHandlerOptions,
|
|
1147
|
+
cb: (err: any, data?: ListPolicyGenerationsCommandOutput) => void
|
|
1148
|
+
): void;
|
|
765
1149
|
listTagsForResource(
|
|
766
1150
|
args: ListTagsForResourceCommandInput,
|
|
767
1151
|
options?: __HttpHandlerOptions
|
|
@@ -789,6 +1173,19 @@ export interface BedrockAgentCoreControl {
|
|
|
789
1173
|
options: __HttpHandlerOptions,
|
|
790
1174
|
cb: (err: any, data?: ListWorkloadIdentitiesCommandOutput) => void
|
|
791
1175
|
): void;
|
|
1176
|
+
putResourcePolicy(
|
|
1177
|
+
args: PutResourcePolicyCommandInput,
|
|
1178
|
+
options?: __HttpHandlerOptions
|
|
1179
|
+
): Promise<PutResourcePolicyCommandOutput>;
|
|
1180
|
+
putResourcePolicy(
|
|
1181
|
+
args: PutResourcePolicyCommandInput,
|
|
1182
|
+
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
|
|
1183
|
+
): void;
|
|
1184
|
+
putResourcePolicy(
|
|
1185
|
+
args: PutResourcePolicyCommandInput,
|
|
1186
|
+
options: __HttpHandlerOptions,
|
|
1187
|
+
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
|
|
1188
|
+
): void;
|
|
792
1189
|
setTokenVaultCMK(
|
|
793
1190
|
args: SetTokenVaultCMKCommandInput,
|
|
794
1191
|
options?: __HttpHandlerOptions
|
|
@@ -802,6 +1199,19 @@ export interface BedrockAgentCoreControl {
|
|
|
802
1199
|
options: __HttpHandlerOptions,
|
|
803
1200
|
cb: (err: any, data?: SetTokenVaultCMKCommandOutput) => void
|
|
804
1201
|
): void;
|
|
1202
|
+
startPolicyGeneration(
|
|
1203
|
+
args: StartPolicyGenerationCommandInput,
|
|
1204
|
+
options?: __HttpHandlerOptions
|
|
1205
|
+
): Promise<StartPolicyGenerationCommandOutput>;
|
|
1206
|
+
startPolicyGeneration(
|
|
1207
|
+
args: StartPolicyGenerationCommandInput,
|
|
1208
|
+
cb: (err: any, data?: StartPolicyGenerationCommandOutput) => void
|
|
1209
|
+
): void;
|
|
1210
|
+
startPolicyGeneration(
|
|
1211
|
+
args: StartPolicyGenerationCommandInput,
|
|
1212
|
+
options: __HttpHandlerOptions,
|
|
1213
|
+
cb: (err: any, data?: StartPolicyGenerationCommandOutput) => void
|
|
1214
|
+
): void;
|
|
805
1215
|
synchronizeGatewayTargets(
|
|
806
1216
|
args: SynchronizeGatewayTargetsCommandInput,
|
|
807
1217
|
options?: __HttpHandlerOptions
|
|
@@ -880,6 +1290,19 @@ export interface BedrockAgentCoreControl {
|
|
|
880
1290
|
options: __HttpHandlerOptions,
|
|
881
1291
|
cb: (err: any, data?: UpdateApiKeyCredentialProviderCommandOutput) => void
|
|
882
1292
|
): void;
|
|
1293
|
+
updateEvaluator(
|
|
1294
|
+
args: UpdateEvaluatorCommandInput,
|
|
1295
|
+
options?: __HttpHandlerOptions
|
|
1296
|
+
): Promise<UpdateEvaluatorCommandOutput>;
|
|
1297
|
+
updateEvaluator(
|
|
1298
|
+
args: UpdateEvaluatorCommandInput,
|
|
1299
|
+
cb: (err: any, data?: UpdateEvaluatorCommandOutput) => void
|
|
1300
|
+
): void;
|
|
1301
|
+
updateEvaluator(
|
|
1302
|
+
args: UpdateEvaluatorCommandInput,
|
|
1303
|
+
options: __HttpHandlerOptions,
|
|
1304
|
+
cb: (err: any, data?: UpdateEvaluatorCommandOutput) => void
|
|
1305
|
+
): void;
|
|
883
1306
|
updateGateway(
|
|
884
1307
|
args: UpdateGatewayCommandInput,
|
|
885
1308
|
options?: __HttpHandlerOptions
|
|
@@ -932,6 +1355,45 @@ export interface BedrockAgentCoreControl {
|
|
|
932
1355
|
options: __HttpHandlerOptions,
|
|
933
1356
|
cb: (err: any, data?: UpdateOauth2CredentialProviderCommandOutput) => void
|
|
934
1357
|
): void;
|
|
1358
|
+
updateOnlineEvaluationConfig(
|
|
1359
|
+
args: UpdateOnlineEvaluationConfigCommandInput,
|
|
1360
|
+
options?: __HttpHandlerOptions
|
|
1361
|
+
): Promise<UpdateOnlineEvaluationConfigCommandOutput>;
|
|
1362
|
+
updateOnlineEvaluationConfig(
|
|
1363
|
+
args: UpdateOnlineEvaluationConfigCommandInput,
|
|
1364
|
+
cb: (err: any, data?: UpdateOnlineEvaluationConfigCommandOutput) => void
|
|
1365
|
+
): void;
|
|
1366
|
+
updateOnlineEvaluationConfig(
|
|
1367
|
+
args: UpdateOnlineEvaluationConfigCommandInput,
|
|
1368
|
+
options: __HttpHandlerOptions,
|
|
1369
|
+
cb: (err: any, data?: UpdateOnlineEvaluationConfigCommandOutput) => void
|
|
1370
|
+
): void;
|
|
1371
|
+
updatePolicy(
|
|
1372
|
+
args: UpdatePolicyCommandInput,
|
|
1373
|
+
options?: __HttpHandlerOptions
|
|
1374
|
+
): Promise<UpdatePolicyCommandOutput>;
|
|
1375
|
+
updatePolicy(
|
|
1376
|
+
args: UpdatePolicyCommandInput,
|
|
1377
|
+
cb: (err: any, data?: UpdatePolicyCommandOutput) => void
|
|
1378
|
+
): void;
|
|
1379
|
+
updatePolicy(
|
|
1380
|
+
args: UpdatePolicyCommandInput,
|
|
1381
|
+
options: __HttpHandlerOptions,
|
|
1382
|
+
cb: (err: any, data?: UpdatePolicyCommandOutput) => void
|
|
1383
|
+
): void;
|
|
1384
|
+
updatePolicyEngine(
|
|
1385
|
+
args: UpdatePolicyEngineCommandInput,
|
|
1386
|
+
options?: __HttpHandlerOptions
|
|
1387
|
+
): Promise<UpdatePolicyEngineCommandOutput>;
|
|
1388
|
+
updatePolicyEngine(
|
|
1389
|
+
args: UpdatePolicyEngineCommandInput,
|
|
1390
|
+
cb: (err: any, data?: UpdatePolicyEngineCommandOutput) => void
|
|
1391
|
+
): void;
|
|
1392
|
+
updatePolicyEngine(
|
|
1393
|
+
args: UpdatePolicyEngineCommandInput,
|
|
1394
|
+
options: __HttpHandlerOptions,
|
|
1395
|
+
cb: (err: any, data?: UpdatePolicyEngineCommandOutput) => void
|
|
1396
|
+
): void;
|
|
935
1397
|
updateWorkloadIdentity(
|
|
936
1398
|
args: UpdateWorkloadIdentityCommandInput,
|
|
937
1399
|
options?: __HttpHandlerOptions
|