@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
|
@@ -68,6 +68,10 @@ import {
|
|
|
68
68
|
CreateCodeInterpreterCommandInput,
|
|
69
69
|
CreateCodeInterpreterCommandOutput,
|
|
70
70
|
} from "./commands/CreateCodeInterpreterCommand";
|
|
71
|
+
import {
|
|
72
|
+
CreateEvaluatorCommandInput,
|
|
73
|
+
CreateEvaluatorCommandOutput,
|
|
74
|
+
} from "./commands/CreateEvaluatorCommand";
|
|
71
75
|
import {
|
|
72
76
|
CreateGatewayCommandInput,
|
|
73
77
|
CreateGatewayCommandOutput,
|
|
@@ -84,6 +88,18 @@ import {
|
|
|
84
88
|
CreateOauth2CredentialProviderCommandInput,
|
|
85
89
|
CreateOauth2CredentialProviderCommandOutput,
|
|
86
90
|
} from "./commands/CreateOauth2CredentialProviderCommand";
|
|
91
|
+
import {
|
|
92
|
+
CreateOnlineEvaluationConfigCommandInput,
|
|
93
|
+
CreateOnlineEvaluationConfigCommandOutput,
|
|
94
|
+
} from "./commands/CreateOnlineEvaluationConfigCommand";
|
|
95
|
+
import {
|
|
96
|
+
CreatePolicyCommandInput,
|
|
97
|
+
CreatePolicyCommandOutput,
|
|
98
|
+
} from "./commands/CreatePolicyCommand";
|
|
99
|
+
import {
|
|
100
|
+
CreatePolicyEngineCommandInput,
|
|
101
|
+
CreatePolicyEngineCommandOutput,
|
|
102
|
+
} from "./commands/CreatePolicyEngineCommand";
|
|
87
103
|
import {
|
|
88
104
|
CreateWorkloadIdentityCommandInput,
|
|
89
105
|
CreateWorkloadIdentityCommandOutput,
|
|
@@ -108,6 +124,10 @@ import {
|
|
|
108
124
|
DeleteCodeInterpreterCommandInput,
|
|
109
125
|
DeleteCodeInterpreterCommandOutput,
|
|
110
126
|
} from "./commands/DeleteCodeInterpreterCommand";
|
|
127
|
+
import {
|
|
128
|
+
DeleteEvaluatorCommandInput,
|
|
129
|
+
DeleteEvaluatorCommandOutput,
|
|
130
|
+
} from "./commands/DeleteEvaluatorCommand";
|
|
111
131
|
import {
|
|
112
132
|
DeleteGatewayCommandInput,
|
|
113
133
|
DeleteGatewayCommandOutput,
|
|
@@ -124,6 +144,22 @@ import {
|
|
|
124
144
|
DeleteOauth2CredentialProviderCommandInput,
|
|
125
145
|
DeleteOauth2CredentialProviderCommandOutput,
|
|
126
146
|
} from "./commands/DeleteOauth2CredentialProviderCommand";
|
|
147
|
+
import {
|
|
148
|
+
DeleteOnlineEvaluationConfigCommandInput,
|
|
149
|
+
DeleteOnlineEvaluationConfigCommandOutput,
|
|
150
|
+
} from "./commands/DeleteOnlineEvaluationConfigCommand";
|
|
151
|
+
import {
|
|
152
|
+
DeletePolicyCommandInput,
|
|
153
|
+
DeletePolicyCommandOutput,
|
|
154
|
+
} from "./commands/DeletePolicyCommand";
|
|
155
|
+
import {
|
|
156
|
+
DeletePolicyEngineCommandInput,
|
|
157
|
+
DeletePolicyEngineCommandOutput,
|
|
158
|
+
} from "./commands/DeletePolicyEngineCommand";
|
|
159
|
+
import {
|
|
160
|
+
DeleteResourcePolicyCommandInput,
|
|
161
|
+
DeleteResourcePolicyCommandOutput,
|
|
162
|
+
} from "./commands/DeleteResourcePolicyCommand";
|
|
127
163
|
import {
|
|
128
164
|
DeleteWorkloadIdentityCommandInput,
|
|
129
165
|
DeleteWorkloadIdentityCommandOutput,
|
|
@@ -148,6 +184,10 @@ import {
|
|
|
148
184
|
GetCodeInterpreterCommandInput,
|
|
149
185
|
GetCodeInterpreterCommandOutput,
|
|
150
186
|
} from "./commands/GetCodeInterpreterCommand";
|
|
187
|
+
import {
|
|
188
|
+
GetEvaluatorCommandInput,
|
|
189
|
+
GetEvaluatorCommandOutput,
|
|
190
|
+
} from "./commands/GetEvaluatorCommand";
|
|
151
191
|
import {
|
|
152
192
|
GetGatewayCommandInput,
|
|
153
193
|
GetGatewayCommandOutput,
|
|
@@ -164,6 +204,26 @@ import {
|
|
|
164
204
|
GetOauth2CredentialProviderCommandInput,
|
|
165
205
|
GetOauth2CredentialProviderCommandOutput,
|
|
166
206
|
} from "./commands/GetOauth2CredentialProviderCommand";
|
|
207
|
+
import {
|
|
208
|
+
GetOnlineEvaluationConfigCommandInput,
|
|
209
|
+
GetOnlineEvaluationConfigCommandOutput,
|
|
210
|
+
} from "./commands/GetOnlineEvaluationConfigCommand";
|
|
211
|
+
import {
|
|
212
|
+
GetPolicyCommandInput,
|
|
213
|
+
GetPolicyCommandOutput,
|
|
214
|
+
} from "./commands/GetPolicyCommand";
|
|
215
|
+
import {
|
|
216
|
+
GetPolicyEngineCommandInput,
|
|
217
|
+
GetPolicyEngineCommandOutput,
|
|
218
|
+
} from "./commands/GetPolicyEngineCommand";
|
|
219
|
+
import {
|
|
220
|
+
GetPolicyGenerationCommandInput,
|
|
221
|
+
GetPolicyGenerationCommandOutput,
|
|
222
|
+
} from "./commands/GetPolicyGenerationCommand";
|
|
223
|
+
import {
|
|
224
|
+
GetResourcePolicyCommandInput,
|
|
225
|
+
GetResourcePolicyCommandOutput,
|
|
226
|
+
} from "./commands/GetResourcePolicyCommand";
|
|
167
227
|
import {
|
|
168
228
|
GetTokenVaultCommandInput,
|
|
169
229
|
GetTokenVaultCommandOutput,
|
|
@@ -196,6 +256,10 @@ import {
|
|
|
196
256
|
ListCodeInterpretersCommandInput,
|
|
197
257
|
ListCodeInterpretersCommandOutput,
|
|
198
258
|
} from "./commands/ListCodeInterpretersCommand";
|
|
259
|
+
import {
|
|
260
|
+
ListEvaluatorsCommandInput,
|
|
261
|
+
ListEvaluatorsCommandOutput,
|
|
262
|
+
} from "./commands/ListEvaluatorsCommand";
|
|
199
263
|
import {
|
|
200
264
|
ListGatewaysCommandInput,
|
|
201
265
|
ListGatewaysCommandOutput,
|
|
@@ -212,6 +276,26 @@ import {
|
|
|
212
276
|
ListOauth2CredentialProvidersCommandInput,
|
|
213
277
|
ListOauth2CredentialProvidersCommandOutput,
|
|
214
278
|
} from "./commands/ListOauth2CredentialProvidersCommand";
|
|
279
|
+
import {
|
|
280
|
+
ListOnlineEvaluationConfigsCommandInput,
|
|
281
|
+
ListOnlineEvaluationConfigsCommandOutput,
|
|
282
|
+
} from "./commands/ListOnlineEvaluationConfigsCommand";
|
|
283
|
+
import {
|
|
284
|
+
ListPoliciesCommandInput,
|
|
285
|
+
ListPoliciesCommandOutput,
|
|
286
|
+
} from "./commands/ListPoliciesCommand";
|
|
287
|
+
import {
|
|
288
|
+
ListPolicyEnginesCommandInput,
|
|
289
|
+
ListPolicyEnginesCommandOutput,
|
|
290
|
+
} from "./commands/ListPolicyEnginesCommand";
|
|
291
|
+
import {
|
|
292
|
+
ListPolicyGenerationAssetsCommandInput,
|
|
293
|
+
ListPolicyGenerationAssetsCommandOutput,
|
|
294
|
+
} from "./commands/ListPolicyGenerationAssetsCommand";
|
|
295
|
+
import {
|
|
296
|
+
ListPolicyGenerationsCommandInput,
|
|
297
|
+
ListPolicyGenerationsCommandOutput,
|
|
298
|
+
} from "./commands/ListPolicyGenerationsCommand";
|
|
215
299
|
import {
|
|
216
300
|
ListTagsForResourceCommandInput,
|
|
217
301
|
ListTagsForResourceCommandOutput,
|
|
@@ -220,10 +304,18 @@ import {
|
|
|
220
304
|
ListWorkloadIdentitiesCommandInput,
|
|
221
305
|
ListWorkloadIdentitiesCommandOutput,
|
|
222
306
|
} from "./commands/ListWorkloadIdentitiesCommand";
|
|
307
|
+
import {
|
|
308
|
+
PutResourcePolicyCommandInput,
|
|
309
|
+
PutResourcePolicyCommandOutput,
|
|
310
|
+
} from "./commands/PutResourcePolicyCommand";
|
|
223
311
|
import {
|
|
224
312
|
SetTokenVaultCMKCommandInput,
|
|
225
313
|
SetTokenVaultCMKCommandOutput,
|
|
226
314
|
} from "./commands/SetTokenVaultCMKCommand";
|
|
315
|
+
import {
|
|
316
|
+
StartPolicyGenerationCommandInput,
|
|
317
|
+
StartPolicyGenerationCommandOutput,
|
|
318
|
+
} from "./commands/StartPolicyGenerationCommand";
|
|
227
319
|
import {
|
|
228
320
|
SynchronizeGatewayTargetsCommandInput,
|
|
229
321
|
SynchronizeGatewayTargetsCommandOutput,
|
|
@@ -248,6 +340,10 @@ import {
|
|
|
248
340
|
UpdateApiKeyCredentialProviderCommandInput,
|
|
249
341
|
UpdateApiKeyCredentialProviderCommandOutput,
|
|
250
342
|
} from "./commands/UpdateApiKeyCredentialProviderCommand";
|
|
343
|
+
import {
|
|
344
|
+
UpdateEvaluatorCommandInput,
|
|
345
|
+
UpdateEvaluatorCommandOutput,
|
|
346
|
+
} from "./commands/UpdateEvaluatorCommand";
|
|
251
347
|
import {
|
|
252
348
|
UpdateGatewayCommandInput,
|
|
253
349
|
UpdateGatewayCommandOutput,
|
|
@@ -264,6 +360,18 @@ import {
|
|
|
264
360
|
UpdateOauth2CredentialProviderCommandInput,
|
|
265
361
|
UpdateOauth2CredentialProviderCommandOutput,
|
|
266
362
|
} from "./commands/UpdateOauth2CredentialProviderCommand";
|
|
363
|
+
import {
|
|
364
|
+
UpdateOnlineEvaluationConfigCommandInput,
|
|
365
|
+
UpdateOnlineEvaluationConfigCommandOutput,
|
|
366
|
+
} from "./commands/UpdateOnlineEvaluationConfigCommand";
|
|
367
|
+
import {
|
|
368
|
+
UpdatePolicyCommandInput,
|
|
369
|
+
UpdatePolicyCommandOutput,
|
|
370
|
+
} from "./commands/UpdatePolicyCommand";
|
|
371
|
+
import {
|
|
372
|
+
UpdatePolicyEngineCommandInput,
|
|
373
|
+
UpdatePolicyEngineCommandOutput,
|
|
374
|
+
} from "./commands/UpdatePolicyEngineCommand";
|
|
267
375
|
import {
|
|
268
376
|
UpdateWorkloadIdentityCommandInput,
|
|
269
377
|
UpdateWorkloadIdentityCommandOutput,
|
|
@@ -281,30 +389,45 @@ export type ServiceInputTypes =
|
|
|
281
389
|
| CreateApiKeyCredentialProviderCommandInput
|
|
282
390
|
| CreateBrowserCommandInput
|
|
283
391
|
| CreateCodeInterpreterCommandInput
|
|
392
|
+
| CreateEvaluatorCommandInput
|
|
284
393
|
| CreateGatewayCommandInput
|
|
285
394
|
| CreateGatewayTargetCommandInput
|
|
286
395
|
| CreateMemoryCommandInput
|
|
287
396
|
| CreateOauth2CredentialProviderCommandInput
|
|
397
|
+
| CreateOnlineEvaluationConfigCommandInput
|
|
398
|
+
| CreatePolicyCommandInput
|
|
399
|
+
| CreatePolicyEngineCommandInput
|
|
288
400
|
| CreateWorkloadIdentityCommandInput
|
|
289
401
|
| DeleteAgentRuntimeCommandInput
|
|
290
402
|
| DeleteAgentRuntimeEndpointCommandInput
|
|
291
403
|
| DeleteApiKeyCredentialProviderCommandInput
|
|
292
404
|
| DeleteBrowserCommandInput
|
|
293
405
|
| DeleteCodeInterpreterCommandInput
|
|
406
|
+
| DeleteEvaluatorCommandInput
|
|
294
407
|
| DeleteGatewayCommandInput
|
|
295
408
|
| DeleteGatewayTargetCommandInput
|
|
296
409
|
| DeleteMemoryCommandInput
|
|
297
410
|
| DeleteOauth2CredentialProviderCommandInput
|
|
411
|
+
| DeleteOnlineEvaluationConfigCommandInput
|
|
412
|
+
| DeletePolicyCommandInput
|
|
413
|
+
| DeletePolicyEngineCommandInput
|
|
414
|
+
| DeleteResourcePolicyCommandInput
|
|
298
415
|
| DeleteWorkloadIdentityCommandInput
|
|
299
416
|
| GetAgentRuntimeCommandInput
|
|
300
417
|
| GetAgentRuntimeEndpointCommandInput
|
|
301
418
|
| GetApiKeyCredentialProviderCommandInput
|
|
302
419
|
| GetBrowserCommandInput
|
|
303
420
|
| GetCodeInterpreterCommandInput
|
|
421
|
+
| GetEvaluatorCommandInput
|
|
304
422
|
| GetGatewayCommandInput
|
|
305
423
|
| GetGatewayTargetCommandInput
|
|
306
424
|
| GetMemoryCommandInput
|
|
307
425
|
| GetOauth2CredentialProviderCommandInput
|
|
426
|
+
| GetOnlineEvaluationConfigCommandInput
|
|
427
|
+
| GetPolicyCommandInput
|
|
428
|
+
| GetPolicyEngineCommandInput
|
|
429
|
+
| GetPolicyGenerationCommandInput
|
|
430
|
+
| GetResourcePolicyCommandInput
|
|
308
431
|
| GetTokenVaultCommandInput
|
|
309
432
|
| GetWorkloadIdentityCommandInput
|
|
310
433
|
| ListAgentRuntimeEndpointsCommandInput
|
|
@@ -313,23 +436,35 @@ export type ServiceInputTypes =
|
|
|
313
436
|
| ListApiKeyCredentialProvidersCommandInput
|
|
314
437
|
| ListBrowsersCommandInput
|
|
315
438
|
| ListCodeInterpretersCommandInput
|
|
439
|
+
| ListEvaluatorsCommandInput
|
|
316
440
|
| ListGatewayTargetsCommandInput
|
|
317
441
|
| ListGatewaysCommandInput
|
|
318
442
|
| ListMemoriesCommandInput
|
|
319
443
|
| ListOauth2CredentialProvidersCommandInput
|
|
444
|
+
| ListOnlineEvaluationConfigsCommandInput
|
|
445
|
+
| ListPoliciesCommandInput
|
|
446
|
+
| ListPolicyEnginesCommandInput
|
|
447
|
+
| ListPolicyGenerationAssetsCommandInput
|
|
448
|
+
| ListPolicyGenerationsCommandInput
|
|
320
449
|
| ListTagsForResourceCommandInput
|
|
321
450
|
| ListWorkloadIdentitiesCommandInput
|
|
451
|
+
| PutResourcePolicyCommandInput
|
|
322
452
|
| SetTokenVaultCMKCommandInput
|
|
453
|
+
| StartPolicyGenerationCommandInput
|
|
323
454
|
| SynchronizeGatewayTargetsCommandInput
|
|
324
455
|
| TagResourceCommandInput
|
|
325
456
|
| UntagResourceCommandInput
|
|
326
457
|
| UpdateAgentRuntimeCommandInput
|
|
327
458
|
| UpdateAgentRuntimeEndpointCommandInput
|
|
328
459
|
| UpdateApiKeyCredentialProviderCommandInput
|
|
460
|
+
| UpdateEvaluatorCommandInput
|
|
329
461
|
| UpdateGatewayCommandInput
|
|
330
462
|
| UpdateGatewayTargetCommandInput
|
|
331
463
|
| UpdateMemoryCommandInput
|
|
332
464
|
| UpdateOauth2CredentialProviderCommandInput
|
|
465
|
+
| UpdateOnlineEvaluationConfigCommandInput
|
|
466
|
+
| UpdatePolicyCommandInput
|
|
467
|
+
| UpdatePolicyEngineCommandInput
|
|
333
468
|
| UpdateWorkloadIdentityCommandInput;
|
|
334
469
|
export type ServiceOutputTypes =
|
|
335
470
|
| CreateAgentRuntimeCommandOutput
|
|
@@ -337,30 +472,45 @@ export type ServiceOutputTypes =
|
|
|
337
472
|
| CreateApiKeyCredentialProviderCommandOutput
|
|
338
473
|
| CreateBrowserCommandOutput
|
|
339
474
|
| CreateCodeInterpreterCommandOutput
|
|
475
|
+
| CreateEvaluatorCommandOutput
|
|
340
476
|
| CreateGatewayCommandOutput
|
|
341
477
|
| CreateGatewayTargetCommandOutput
|
|
342
478
|
| CreateMemoryCommandOutput
|
|
343
479
|
| CreateOauth2CredentialProviderCommandOutput
|
|
480
|
+
| CreateOnlineEvaluationConfigCommandOutput
|
|
481
|
+
| CreatePolicyCommandOutput
|
|
482
|
+
| CreatePolicyEngineCommandOutput
|
|
344
483
|
| CreateWorkloadIdentityCommandOutput
|
|
345
484
|
| DeleteAgentRuntimeCommandOutput
|
|
346
485
|
| DeleteAgentRuntimeEndpointCommandOutput
|
|
347
486
|
| DeleteApiKeyCredentialProviderCommandOutput
|
|
348
487
|
| DeleteBrowserCommandOutput
|
|
349
488
|
| DeleteCodeInterpreterCommandOutput
|
|
489
|
+
| DeleteEvaluatorCommandOutput
|
|
350
490
|
| DeleteGatewayCommandOutput
|
|
351
491
|
| DeleteGatewayTargetCommandOutput
|
|
352
492
|
| DeleteMemoryCommandOutput
|
|
353
493
|
| DeleteOauth2CredentialProviderCommandOutput
|
|
494
|
+
| DeleteOnlineEvaluationConfigCommandOutput
|
|
495
|
+
| DeletePolicyCommandOutput
|
|
496
|
+
| DeletePolicyEngineCommandOutput
|
|
497
|
+
| DeleteResourcePolicyCommandOutput
|
|
354
498
|
| DeleteWorkloadIdentityCommandOutput
|
|
355
499
|
| GetAgentRuntimeCommandOutput
|
|
356
500
|
| GetAgentRuntimeEndpointCommandOutput
|
|
357
501
|
| GetApiKeyCredentialProviderCommandOutput
|
|
358
502
|
| GetBrowserCommandOutput
|
|
359
503
|
| GetCodeInterpreterCommandOutput
|
|
504
|
+
| GetEvaluatorCommandOutput
|
|
360
505
|
| GetGatewayCommandOutput
|
|
361
506
|
| GetGatewayTargetCommandOutput
|
|
362
507
|
| GetMemoryCommandOutput
|
|
363
508
|
| GetOauth2CredentialProviderCommandOutput
|
|
509
|
+
| GetOnlineEvaluationConfigCommandOutput
|
|
510
|
+
| GetPolicyCommandOutput
|
|
511
|
+
| GetPolicyEngineCommandOutput
|
|
512
|
+
| GetPolicyGenerationCommandOutput
|
|
513
|
+
| GetResourcePolicyCommandOutput
|
|
364
514
|
| GetTokenVaultCommandOutput
|
|
365
515
|
| GetWorkloadIdentityCommandOutput
|
|
366
516
|
| ListAgentRuntimeEndpointsCommandOutput
|
|
@@ -369,23 +519,35 @@ export type ServiceOutputTypes =
|
|
|
369
519
|
| ListApiKeyCredentialProvidersCommandOutput
|
|
370
520
|
| ListBrowsersCommandOutput
|
|
371
521
|
| ListCodeInterpretersCommandOutput
|
|
522
|
+
| ListEvaluatorsCommandOutput
|
|
372
523
|
| ListGatewayTargetsCommandOutput
|
|
373
524
|
| ListGatewaysCommandOutput
|
|
374
525
|
| ListMemoriesCommandOutput
|
|
375
526
|
| ListOauth2CredentialProvidersCommandOutput
|
|
527
|
+
| ListOnlineEvaluationConfigsCommandOutput
|
|
528
|
+
| ListPoliciesCommandOutput
|
|
529
|
+
| ListPolicyEnginesCommandOutput
|
|
530
|
+
| ListPolicyGenerationAssetsCommandOutput
|
|
531
|
+
| ListPolicyGenerationsCommandOutput
|
|
376
532
|
| ListTagsForResourceCommandOutput
|
|
377
533
|
| ListWorkloadIdentitiesCommandOutput
|
|
534
|
+
| PutResourcePolicyCommandOutput
|
|
378
535
|
| SetTokenVaultCMKCommandOutput
|
|
536
|
+
| StartPolicyGenerationCommandOutput
|
|
379
537
|
| SynchronizeGatewayTargetsCommandOutput
|
|
380
538
|
| TagResourceCommandOutput
|
|
381
539
|
| UntagResourceCommandOutput
|
|
382
540
|
| UpdateAgentRuntimeCommandOutput
|
|
383
541
|
| UpdateAgentRuntimeEndpointCommandOutput
|
|
384
542
|
| UpdateApiKeyCredentialProviderCommandOutput
|
|
543
|
+
| UpdateEvaluatorCommandOutput
|
|
385
544
|
| UpdateGatewayCommandOutput
|
|
386
545
|
| UpdateGatewayTargetCommandOutput
|
|
387
546
|
| UpdateMemoryCommandOutput
|
|
388
547
|
| UpdateOauth2CredentialProviderCommandOutput
|
|
548
|
+
| UpdateOnlineEvaluationConfigCommandOutput
|
|
549
|
+
| UpdatePolicyCommandOutput
|
|
550
|
+
| UpdatePolicyEngineCommandOutput
|
|
389
551
|
| UpdateWorkloadIdentityCommandOutput;
|
|
390
552
|
export interface ClientDefaults
|
|
391
553
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateEvaluatorRequest,
|
|
10
|
+
CreateEvaluatorResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateEvaluatorCommandInput extends CreateEvaluatorRequest {}
|
|
15
|
+
export interface CreateEvaluatorCommandOutput
|
|
16
|
+
extends CreateEvaluatorResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateEvaluatorCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateEvaluatorCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateEvaluatorCommandInput,
|
|
23
|
+
CreateEvaluatorCommandOutput,
|
|
24
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: CreateEvaluatorCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateEvaluatorCommandInput,
|
|
32
|
+
CreateEvaluatorCommandOutput,
|
|
33
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateEvaluatorCommand extends CreateEvaluatorCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateEvaluatorRequest;
|
|
43
|
+
output: CreateEvaluatorResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateEvaluatorCommandInput;
|
|
47
|
+
output: CreateEvaluatorCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateOnlineEvaluationConfigRequest,
|
|
10
|
+
CreateOnlineEvaluationConfigResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateOnlineEvaluationConfigCommandInput
|
|
15
|
+
extends CreateOnlineEvaluationConfigRequest {}
|
|
16
|
+
export interface CreateOnlineEvaluationConfigCommandOutput
|
|
17
|
+
extends CreateOnlineEvaluationConfigResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateOnlineEvaluationConfigCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateOnlineEvaluationConfigCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateOnlineEvaluationConfigCommandInput,
|
|
24
|
+
CreateOnlineEvaluationConfigCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateOnlineEvaluationConfigCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateOnlineEvaluationConfigCommandInput,
|
|
33
|
+
CreateOnlineEvaluationConfigCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateOnlineEvaluationConfigCommand extends CreateOnlineEvaluationConfigCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateOnlineEvaluationConfigRequest;
|
|
44
|
+
output: CreateOnlineEvaluationConfigResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateOnlineEvaluationConfigCommandInput;
|
|
48
|
+
output: CreateOnlineEvaluationConfigCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import { CreatePolicyRequest, CreatePolicyResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreatePolicyCommandInput extends CreatePolicyRequest {}
|
|
12
|
+
export interface CreatePolicyCommandOutput
|
|
13
|
+
extends CreatePolicyResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreatePolicyCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreatePolicyCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
CreatePolicyCommandInput,
|
|
20
|
+
CreatePolicyCommandOutput,
|
|
21
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: CreatePolicyCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
CreatePolicyCommandInput,
|
|
29
|
+
CreatePolicyCommandOutput,
|
|
30
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class CreatePolicyCommand extends CreatePolicyCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CreatePolicyRequest;
|
|
40
|
+
output: CreatePolicyResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CreatePolicyCommandInput;
|
|
44
|
+
output: CreatePolicyCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
CreatePolicyEngineRequest,
|
|
10
|
+
CreatePolicyEngineResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreatePolicyEngineCommandInput
|
|
15
|
+
extends CreatePolicyEngineRequest {}
|
|
16
|
+
export interface CreatePolicyEngineCommandOutput
|
|
17
|
+
extends CreatePolicyEngineResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreatePolicyEngineCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreatePolicyEngineCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreatePolicyEngineCommandInput,
|
|
24
|
+
CreatePolicyEngineCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreatePolicyEngineCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreatePolicyEngineCommandInput,
|
|
33
|
+
CreatePolicyEngineCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreatePolicyEngineCommand extends CreatePolicyEngineCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreatePolicyEngineRequest;
|
|
44
|
+
output: CreatePolicyEngineResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreatePolicyEngineCommandInput;
|
|
48
|
+
output: CreatePolicyEngineCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteEvaluatorRequest,
|
|
10
|
+
DeleteEvaluatorResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteEvaluatorCommandInput extends DeleteEvaluatorRequest {}
|
|
15
|
+
export interface DeleteEvaluatorCommandOutput
|
|
16
|
+
extends DeleteEvaluatorResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeleteEvaluatorCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteEvaluatorCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteEvaluatorCommandInput,
|
|
23
|
+
DeleteEvaluatorCommandOutput,
|
|
24
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: DeleteEvaluatorCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteEvaluatorCommandInput,
|
|
32
|
+
DeleteEvaluatorCommandOutput,
|
|
33
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeleteEvaluatorCommand extends DeleteEvaluatorCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DeleteEvaluatorRequest;
|
|
43
|
+
output: DeleteEvaluatorResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DeleteEvaluatorCommandInput;
|
|
47
|
+
output: DeleteEvaluatorCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteOnlineEvaluationConfigRequest,
|
|
10
|
+
DeleteOnlineEvaluationConfigResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteOnlineEvaluationConfigCommandInput
|
|
15
|
+
extends DeleteOnlineEvaluationConfigRequest {}
|
|
16
|
+
export interface DeleteOnlineEvaluationConfigCommandOutput
|
|
17
|
+
extends DeleteOnlineEvaluationConfigResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteOnlineEvaluationConfigCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteOnlineEvaluationConfigCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteOnlineEvaluationConfigCommandInput,
|
|
24
|
+
DeleteOnlineEvaluationConfigCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteOnlineEvaluationConfigCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteOnlineEvaluationConfigCommandInput,
|
|
33
|
+
DeleteOnlineEvaluationConfigCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteOnlineEvaluationConfigCommand extends DeleteOnlineEvaluationConfigCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteOnlineEvaluationConfigRequest;
|
|
44
|
+
output: DeleteOnlineEvaluationConfigResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteOnlineEvaluationConfigCommandInput;
|
|
48
|
+
output: DeleteOnlineEvaluationConfigCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|